/*
|--------------------------------------------------------------------------
| CTA Banner
|--------------------------------------------------------------------------
*/

.cta-banner {
    background: var(--blue-900);
    padding: var(--space-4xl) var(--space-2xl);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--teal);
    border-bottom: 3px solid var(--teal);
}

/* Gradient glow overlays */
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.cta-banner::before {
    top: -40%;
    left: -10%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(26, 106, 158, 0.15) 0%, transparent 70%);
}

.cta-banner::after {
    bottom: -30%;
    right: -5%;
    width: 40%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(26, 106, 158, 0.1) 0%, transparent 70%);
}

/* Inner layout */
.cta-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
}

/* Content side */
.cta-banner-label {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal);
    margin-bottom: var(--space-md);
}

.cta-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.cta-banner-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 440px;
}

/* Action side */
.cta-banner-action {
    flex-shrink: 0;
}

.cta-banner-btn {
    padding: 18px 44px;
    font-size: var(--text-lg);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.cta-banner-btn:hover svg {
    transform: translateX(4px);
    transition: transform 0.25s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-banner {
        padding: var(--space-3xl) var(--space-xl);
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }

    .cta-banner-subtitle {
        max-width: 100%;
    }

    .cta-banner-btn {
        padding: 16px 36px;
    }
}