/* =========================================
   CTA BANNER (FINAL CONVERSION)
========================================= */
.cta-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, #1e5eff, #1746c9);
    color: white;
    position: relative;
    overflow: hidden;
}

/* SUBTLE GLOW BACKGROUND */
.cta-banner::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

/* INNER */
.cta-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* TEXT */
.cta-banner-text h2 {
    font-size: 28px;
    line-height: 1.3;
}

.cta-banner-text p {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
}

/* ACTION */
.cta-banner-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

/* WHITE BUTTON */
.btn-white {
    background: white;
    color: var(--primary-blue);
    padding: 12px 22px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: 0.25s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* NOTE */
.cta-banner-note {
    font-size: 12px;
    opacity: 0.85;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-action {
        align-items: center;
    }
}

@media (max-width: 600px) {

    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner-text h2 {
        font-size: 22px;
    }

    .cta-banner-text p {
        font-size: 13px;
    }

    .btn-white {
        width: 100%;
        text-align: center;
    }
}