/* ═══════════════════════════════════════════════════════════════
   ASLY TECHNIEK — Component: cta-banner.css
   BEM blok: .cta-banner
   Afhankelijkheden: global.css (tokens, .text-gradient, .btn--, .reveal)
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   § 1. SECTIE-WRAPPER
   ════════════════════════════════════════════════════════════════ */

.cta-section {
    padding: 0 0 clamp(5rem, 10vw, 9rem);
    background: var(--color-bg-root);
}

/* ════════════════════════════════════════════════════════════════
   § 2. BANNER KAART — De grote prominente box
   ════════════════════════════════════════════════════════════════ */

.cta-banner {
    background: var(--gradient-bg-dark);
    border: 1px solid var(--color-pink-border);
    border-radius: var(--radius-lg);
    padding: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 6vw, 6rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Zachte buitenste glow */
    box-shadow:
        0 0 0 1px var(--color-pink-border),
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(233, 30, 140, 0.06);
}

/* Radiale gloed vanuit de onderkant (sfeer) */
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 60% at 50% 110%,
        rgba(233, 30, 140, 0.14) 0%,
        transparent 65%
    );
    pointer-events: none;
}

/* Grote diffuse blob rechtsboven */
.cta-banner::after {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    background: radial-gradient(
        circle,
        rgba(233, 30, 140, 0.07),
        transparent 65%
    );
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

/* ── .cta-banner__eyebrow — Pill-badge ── */
.cta-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-pink);
    background: var(--color-pink-subtle);
    border: 1px solid var(--color-pink-border);
    padding: 0.38rem 0.95rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

/* ── .cta-banner__title — H2 ── */
.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* ── .cta-banner__text — Beschrijvende tekst ── */
.cta-banner__text {
    font-size: clamp(1rem, 1.5vw, 1.08rem);
    color: var(--color-text-2);
    line-height: 1.8;
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* ── .cta-banner__actions — Knoppen rij ── */
.cta-banner__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Mobiel: knoppen volle breedte */
@media (max-width: 480px) {
    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner__actions .btn {
        width: 100%;
        max-width: 320px;
    }
}
