/* ============================================================
   CTA BANNER — Dark App Style (style.css tokens ke mutabiq)
   ============================================================ */

.cta-banner {
    position: relative;
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border-accent, rgba(61, 126, 255, 0.32));
    box-shadow: var(--shadow-md, 0 4px 22px rgba(0,0,0,0.55)),
                var(--shadow-glow, 0 0 48px rgba(61,126,255,0.12));
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

/* Top-edge accent line — .card jaise */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
    z-index: 3;
    pointer-events: none;
}

.cta-banner img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.62);
    transition: transform 0.6s var(--ease, ease), filter 0.4s;
}

.cta-banner:hover img {
    transform: scale(1.03);
    filter: brightness(0.72);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 13, 26, 0.90) 0%,
        rgba(8, 13, 26, 0.42) 52%,
        rgba(8, 13, 26, 0.74) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

/* Gold → white gradient text — site-title jaise feel */
.cta-overlay h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: var(--lh-heading, 1.15);
    margin-bottom: 0.75rem;
    border: none;
    padding: 0;
    background: linear-gradient(125deg, var(--gold, #FBBF24) 0%, #fff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.cta-overlay p {
    font-family: var(--font-body);
    max-width: 56ch;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: var(--lh-body, 1.65);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Mobile (600px) ── */
@media (max-width: 600px) {

    .cta-banner {
        display: flex;
        flex-direction: column;
        border-radius: var(--radius-md, 14px);
    }

    /* Mobile pe hover zoom band — horizontal scroll avoid */
    .cta-banner:hover img {
        transform: none;
    }

    .cta-banner img {
        height: 175px;
        flex-shrink: 0;
    }

    /* Static flow mein aa jata hai — image ke neeche */
    .cta-overlay {
        position: static;
        padding: 1.25rem 1rem 1.5rem;
        background: linear-gradient(
            180deg,
            var(--bg-elevated, #162038) 0%,
            var(--bg-surface, #0F1629) 100%
        );
    }

    .cta-overlay h2 {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
        margin-bottom: 0.5rem;
    }

    .cta-overlay p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* ── Very small (360px) ── */
@media (max-width: 360px) {
    .cta-banner img  { height: 145px; }
    .cta-overlay     { padding: 1rem 0.875rem 1.25rem; }
    .cta-overlay h2  { font-size: 1.05rem; }
}