/* -------------------------------------------------------------------
 *  DESIGN 2 - PREMIUM CTA SECTION (LOW ROUNDED CORNERS)
 * ------------------------------------------------------------------- */
.d2-cta-premium-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Main Card with Sharp/Low Rounded Corners */
.d2-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px !important; /* Low Rounded Corners */
    padding: 90px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.2);
}

/* Decorative Blurred Shapes */
.d2-cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.35;
}

.d2-cta-shape-1 {
    width: 350px;
    height: 350px;
    background: #22C55E; /* Brand Primary */
    top: -150px;
    left: -100px;
}

.d2-cta-shape-2 {
    width: 250px;
    height: 250px;
    background: #3b82f6; /* Accent Blue */
    bottom: -100px;
    right: -50px;
}

/* Content above shapes */
.d2-cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.d2-cta-title {
    font-size: 3.2rem !important;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.d2-cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 45px;
}

/* Low Rounded Button */
.d2-cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #0f172a;
    border-radius: 8px !important; /* Low Rounded Corners for Button */
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.d2-cta-btn:hover {
    background: #22C55E;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .d2-cta-card { padding: 60px 25px; }
    .d2-cta-title { font-size: 2.2rem !important; }
    .d2-cta-desc { font-size: 1.05rem; }
}