/* CTA Banner Modern */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    filter: blur(50px);
}

.cta-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--pure-white);
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.btn-white {
    background: var(--pure-white);
    color: var(--primary-color);
    border: 2px solid var(--pure-white);
    font-weight: 700;
}

.btn-white:hover {
    background: transparent;
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background: rgba(255,255,255,0.1);
    color: var(--pure-white);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.btn-outline-white:hover {
    background: var(--pure-white);
    color: var(--primary-color);
    border-color: var(--pure-white);
}

@media (max-width: 992px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .cta-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}