/* =================================================
   CTA SECTION
   Minimal CSS - Bootstrap handles layout
   ================================================= */
.cta {
    background: var(--gradient-black);
    color: var(--primary-white);
}

.cta-background {
    background: radial-gradient(ellipse at center,
            rgba(199, 21, 133, 0.2) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-magenta);
    border-radius: 50%;
    font-size: 3rem;
    color: var(--text-on-magenta);
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
    color: var(--magenta);
    font-size: 1.2rem;
}

.cta-button {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 1200px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .cta-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 479.98px) {
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-description {
        font-size: 0.85rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .benefit-item {
        font-size: 0.85rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .cta-title {
        font-size: 1.25rem;
    }
    
    .cta-description {
        font-size: 0.8rem;
    }
    
    .cta-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
    }
}
