/* ════════════════════════════════════════════════════════════
   Alenas v2 — Public site styling
   ════════════════════════════════════════════════════════════ */

/* ─── CSS variables (Alenas huisstijl) ─── */
:root {
    --gold:   #C8A84B;
    --gold-2: #D9BC6E;
    --gold-3: #EDD38D;
    --bg:     #05070A;
    --bg-2:   #080C12;
    --bg-3:   #0F1420;
    --bg-4:   #1A1F2E;
    --bg-card: #141926;
    --green:  #2ECC87;
    --red:    #ff4b6e;
    --text:   #F4F1E8;
    --body:   #b3b8c4;
    --muted:  #7a808d;

    --font-h: 'Outfit', system-ui, sans-serif;
    --font-b: 'DM Sans', system-ui, sans-serif;

    --wrap-max: 1180px;
    --wrap-pad: 24px;
}

/* ─── Reset / base ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-b);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap {
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: 0 var(--wrap-pad);
}

/* ─── Lab banner ─── */
.lab-banner {
    background: linear-gradient(90deg, rgba(255,159,67,0.15), rgba(200,168,75,0.08));
    border-bottom: 1px solid rgba(200,168,75,0.2);
    color: var(--gold-3);
    font-size: 0.78rem;
    padding: 6px 16px;
    text-align: center;
    font-family: var(--font-h);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.lab-banner strong { color: var(--text); }
.lab-banner__lang { margin-left: 12px; }
.lab-banner__lang a {
    color: var(--body);
    text-decoration: none;
    padding: 1px 7px;
    border-radius: 4px;
    margin: 0 2px;
}
.lab-banner__lang a.is-active { background: rgba(200,168,75,0.15); color: var(--gold-3); }

/* ─── Site header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 168, 75, 0.1);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.logo__mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.logo__name {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    color: var(--gold-3);
}
.nav {
    display: flex;
    gap: 6px;
}
.nav a {
    padding: 8px 14px;
    text-decoration: none;
    color: var(--body);
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 0.93rem;
    border-radius: 7px;
    transition: color .15s ease, background .15s ease;
}
.nav a:hover {
    color: var(--gold-3);
    background: rgba(200, 168, 75, 0.06);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: none;
    border-radius: 9px;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .12s ease, filter .15s ease, box-shadow .15s ease;
    line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg {
    padding: 15px 28px;
    font-size: 1rem;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    color: #0a0a0a;
    box-shadow: 0 4px 18px rgba(200, 168, 75, 0.18);
}
.btn--gold:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 24px rgba(200, 168, 75, 0.3);
}
.btn--ghost {
    background: transparent;
    border: 1px solid rgba(200, 168, 75, 0.3);
    color: var(--gold-3);
}
.btn--ghost:hover {
    background: rgba(200, 168, 75, 0.06);
    border-color: rgba(200, 168, 75, 0.5);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-h);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-3);
    margin-bottom: 14px;
}

/* ════════════════════════════════════════════════════════════
   HERO — "Dit is Alenas" (WP match)
   ════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background: linear-gradient(160deg, #1A1F2E 0%, #141926 40%, #0F1420 70%, #080C12 100%);
}

/* ─── Background layers ─── */
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Subtle white ceiling glow */
.hero__ceiling {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 280px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}

/* Animated perspective grid */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 168, 75, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 168, 75, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(600px) rotateX(20deg) scale(1.4);
    transform-origin: 50% 100%;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 75%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 75%);
    animation: gridDrift 20s ease-in-out infinite;
}
@keyframes gridDrift {
    0%, 100% { background-position: 0 0; }
    50%      { background-position: 40px 40px; }
}

/* Golden light cone from top */
.hero__light {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 900px;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(200,168,75,0.22) 0%, rgba(200,168,75,0.08) 35%, transparent 65%),
        radial-gradient(ellipse at 30% 50%, rgba(100,120,200,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(200,168,75,0.06) 0%, transparent 50%);
    max-width: 100vw;
}

/* Fade to dark at bottom */
.hero__fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 360px;
    background: linear-gradient(to top, #080C12, transparent);
}

/* Floating orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
}
.hero__orb--1 {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -100px;
    background: rgba(200, 168, 75, 0.12);
    animation: orbDrift 14s ease-in-out infinite;
}
.hero__orb--2 {
    width: 400px;
    height: 400px;
    bottom: 0;
    left: -80px;
    background: rgba(80, 100, 180, 0.08);
    animation: orbDrift 10s ease-in-out infinite reverse;
}
@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(20px, -28px); }
}

/* Logo watermark */
.hero__watermark {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 900px;
    opacity: 0.04;
    pointer-events: none;
}
.hero__watermark img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Candles decoration ─── */
.hero__candles {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 48%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 72%, transparent 100%),
                linear-gradient(to top, transparent 0%, black 12%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 72%, transparent 100%),
                        linear-gradient(to top, transparent 0%, black 12%, black 85%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    opacity: 0.5;
}
.hero__candles-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 80px 40px 100px;
    gap: 15px;
}
.candle {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: var(--h);
    opacity: var(--op);
    animation: candleBob var(--dur) ease-in-out infinite;
    animation-delay: var(--del);
}
@keyframes candleBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(var(--drift)); }
}
.candle__wick {
    width: 1.5px;
    background: currentColor;
    border-radius: 1px;
    opacity: 0.7;
}
.candle__body {
    width: var(--w);
    border-radius: 2px;
    box-shadow: 0 0 8px currentColor;
    background: currentColor;
}
.candle--bull { color: rgba(46, 204, 135, 0.7); }
.candle--bear { color: rgba(200, 168, 75, 0.6); }

/* ─── Hero content ─── */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.hero__content--about {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 100px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    margin: 0 auto 28px;
    background: rgba(200, 168, 75, 0.12);
    border: 1px solid rgba(200, 168, 75, 0.3);
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(200, 168, 75, 0.18);
}
.hero__badge-live {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: livePulse 2.5s ease-in-out infinite;
}
.hero__eyebrow {
    font-family: var(--font-h);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-3);
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green); }
    50%      { opacity: 0.4; box-shadow: none; }
}

.hero__title,
.hero__title--about {
    font-family: var(--font-h);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    margin: 18px 0 32px;
    line-height: 1;
    /* expliciet GEEN gradient — vaste cream kleur zoals WP */
    background: none;
    -webkit-text-fill-color: var(--text);
}

/* Quote */
.hero__quote {
    position: relative;
    margin: 0 auto 48px;
    max-width: 720px;
    padding: 0 32px;
}
.hero__quote-mark {
    position: absolute;
    top: -36px;
    left: 0;
    font-family: var(--font-h);
    font-size: 6rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 800;
    pointer-events: none;
}
.hero__quote p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    color: var(--body);
    font-weight: 400;
    margin: 0;
    font-style: italic;
}

/* Pillars */
.hero__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0 44px;
    text-align: left;
}
.hero-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .2s ease;
}
.hero-pillar:hover {
    border-color: rgba(200, 168, 75, 0.22);
    background: rgba(200, 168, 75, 0.04);
}
.hero-pillar__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-3);
    background: linear-gradient(135deg, rgba(200, 168, 75, 0.15), rgba(200, 168, 75, 0.05));
    border: 1px solid rgba(200, 168, 75, 0.2);
    border-radius: 10px;
}
.hero-pillar__title {
    font-family: var(--font-h);
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.hero-pillar__text {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}

.hero__cta {
    margin-top: 32px;
}

/* Scroll indicator onderaan */
.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    pointer-events: none;
}
.hero__scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero__scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.hero__scroll-dot {
    width: 3px;
    height: 7px;
    background: var(--gold);
    border-radius: 2px;
    animation: mouseDot 2s ease-in-out infinite;
}
@keyframes mouseDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    75%      { transform: translateY(13px); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION — "Klaar om te beginnen?"
   ════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 40px 0 80px;
    background: var(--bg);
}
.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 36px 44px;
    background:
        linear-gradient(135deg, rgba(200, 168, 75, 0.1), rgba(200, 168, 75, 0.02)),
        var(--bg-card);
    border: 1px solid rgba(200, 168, 75, 0.25);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.cta-card__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--text);
}
.cta-card__sub {
    color: var(--body);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

/* ════════════════════════════════════════════════════════════
   XALPING SECTION — strategie introductie
   ════════════════════════════════════════════════════════════ */
.xalping-section {
    padding: clamp(72px, 9vw, 120px) 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}
.xalping-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,168,75,0.22), transparent);
}
.xalping-section__wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    column-gap: 0;
}
.xalping-section__content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 36px 0;
}
.xalping-section__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    color: var(--text);
}
.xalping-section__sub {
    color: var(--body);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 26px;
    max-width: 460px;
}
.xalping-section__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.xalping-section__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text);
    font-size: 0.96rem;
}
.xalping-section__features .icon {
    color: var(--green);
    flex-shrink: 0;
    background: rgba(46, 204, 135, 0.12);
    padding: 4px;
    border-radius: 6px;
    width: 24px;
    height: 24px;
}

/* ─── Afbeelding rechts: begrensde maat, lichte overlap, volledig zichtbaar ─── */
.xalping-section__media {
    position: relative;
    z-index: 1;
    margin-left: -70px;                                   /* lichte overlap met de tekst */
    margin-right: max(calc(50% - 50vw + 24px), -240px);  /* groei naar rechts, max 240px,
                                                            nooit voorbij de viewport-rand */
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(200, 168, 75, 0.22),
        0 0 0 6px rgba(200, 168, 75, 0.05);
}
.xalping-section__media img {
    display: block;
    width: 100%;
    height: auto;                        /* natuurlijke verhouding -> niets bijgesneden */
}
/* Scrim: alleen de smalle overlap-strook links donkeren zodat de tekst
   die er net overheen valt leesbaar blijft */
.xalping-section__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
        var(--bg-2) 0%,
        rgba(12, 19, 34, 0.72) 13%,
        rgba(12, 19, 34, 0.22) 32%,
        transparent 50%);
}

/* ════════════════════════════════════════════════════════════
   Site footer — zie sectie helemaal onderaan dit bestand
   ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   SVG iconen
   ════════════════════════════════════════════════════════════ */
.icon {
    display: inline-block;
    vertical-align: middle;
    color: currentColor;
    flex-shrink: 0;
}
.icon--xs { width: 14px; height: 14px; }
.icon--sm { width: 16px; height: 16px; }
.icon--md { width: 20px; height: 20px; }
.icon--lg { width: 28px; height: 28px; }

/* ════════════════════════════════════════════════════════════
   Mobile / responsive
   ════════════════════════════════════════════════════════════ */
@media (max-width: 800px) {
    .nav { gap: 0; }
    .nav a { padding: 6px 10px; font-size: 0.88rem; }
    .site-header__inner { height: 60px; }

    .hero { padding: 70px 0 60px; min-height: 65vh; }
    .hero__content--about { padding-bottom: 60px; }
    .hero__pillars {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 28px 0 32px;
    }
    .hero__quote { padding: 0 8px; }
    .hero__quote-mark { font-size: 4rem; top: -20px; left: -8px; }
    .hero__title { font-size: 2.3rem; }
    .hero__candles { display: none; }
    .hero__watermark { display: none; }
    .hero__scroll { display: none; }

    /* Video op mobile: toon het midden, niet te ver ingezoomd */
    .hero__video video {
        object-position: center center;
    }

    .cta-section { padding: 30px 0 60px; }
    .cta-card {
        grid-template-columns: 1fr;
        padding: 28px;
        text-align: center;
    }
    .cta-card__sub { margin-left: auto; margin-right: auto; }

    .xalping-section { padding: 56px 0 64px; }

    /* Mobiel: simpele verticale stack — tekst eerst, dan de afbeelding eronder.
       Block i.p.v. grid zodat geen enkele desktop-overlap meer meespeelt. */
    .xalping-section__wrap {
        display: block;
    }
    .xalping-section__content {
        position: static;
        z-index: auto;
        max-width: none;
        padding: 0;
    }
    .xalping-section__media {
        position: static;
        z-index: auto;
        margin: 28px 0 0;
        border-radius: 14px;
        box-shadow:
            0 16px 40px rgba(0, 0, 0, 0.45),
            0 0 0 1px rgba(200, 168, 75, 0.18);
    }
    .xalping-section__media img {
        max-height: none;
        object-fit: contain;
    }
    .xalping-section__media::after { display: none; }

    /* Site footer responsive — zie sectie onderaan */
}

/* Extra mobile breakpoint voor de hero — zelfde aanpak als .partner-hero
   zodat de video op kleinere schermen niet te ver wordt ingezoomed. */
@media (max-width: 600px) {
    .hero {
        min-height: 0;
        padding: clamp(60px, 10vh, 90px) 0 clamp(48px, 7vh, 70px);
    }
    .hero__title { font-size: 2rem; margin: 14px 0 24px; }
    .hero__quote { margin-bottom: 32px; }
    .hero__quote p { font-size: 1rem; line-height: 1.6; }
    .hero__pillars { margin: 24px 0 28px; }
    .hero-pillar { padding: 14px 16px; gap: 12px; }
    .hero-pillar__icon { width: 34px; height: 34px; }
    .hero__cta { margin-top: 24px; }
    .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   ADMIN EDIT FAB — alleen op publieke pages voor ingelogde admins
   ════════════════════════════════════════════════════════════ */
.admin-edit-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    color: #0a0a0a;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(200, 168, 75, 0.3);
    z-index: 1000;
    transition: transform .15s ease, box-shadow .15s ease;
}
.admin-edit-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(200, 168, 75, 0.5);
}
.admin-edit-fab .icon { color: #0a0a0a; }
@media (max-width: 640px) {
    .admin-edit-fab span { display: none; }
    .admin-edit-fab {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
    }
}

/* ════════════════════════════════════════════════════════════
   APP DOWNLOAD BLOCK — Alenas Trading app promotie
   ════════════════════════════════════════════════════════════ */

.app-download {
    padding: 120px 0 100px;
    background:
        radial-gradient(ellipse 90% 60% at 20% 30%, rgba(200, 168, 75, 0.05), transparent 70%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
    position: relative;
    overflow: hidden;
}

.app-download__wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    align-items: center;
}

.app-download__content {
    max-width: 580px;
}

/* ─── Open beta badge ─── */
.app-download__beta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 12px;
    background: rgba(46, 204, 135, 0.1);
    border: 1px solid rgba(46, 204, 135, 0.25);
    border-radius: 999px;
    margin-bottom: 22px;
}
.app-download__beta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ECC87;
    box-shadow: 0 0 0 0 rgba(46, 204, 135, 0.6);
    animation: app-beta-pulse 1.8s infinite;
}
@keyframes app-beta-pulse {
    0%   { box-shadow: 0 0 0 0    rgba(46, 204, 135, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(46, 204, 135, 0); }
    100% { box-shadow: 0 0 0 0    rgba(46, 204, 135, 0); }
}
.app-download__beta-label {
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5fd9a4;
}

/* ─── Title + sub ─── */
.app-download__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: var(--text);
}
.app-download__sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--body);
    margin: 0 0 28px;
    max-width: 540px;
}

/* ─── Features lijst ─── */
.app-download__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.app-download__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.4;
}
.app-download__check {
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    border-radius: 50%;
    color: #0a0a0a;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(200, 168, 75, 0.25);
}
.app-download__check .icon { width: 12px; height: 12px; }

/* ─── App store badges ─── */
.app-download__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 18px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all .18s ease;
    min-width: 175px;
}
.app-badge:hover {
    background: #111;
    border-color: rgba(200, 168, 75, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.app-badge__logo {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.app-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: left;
}
.app-badge__text small {
    font-size: 0.66rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    margin-bottom: 3px;
}
.app-badge__text strong {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ─── Phone mockup (CSS-only) ─── */
.app-download__visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.app-download__phone {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 19.5;
    background: #000;
    border: 9px solid #0F1420;
    border-radius: 38px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(200, 168, 75, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    z-index: 2;
}
.app-download__phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 22px;
    background: #0F1420;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}
.app-download__phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.app-download__phone-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1A1F2E, #080C12);
    color: rgba(200, 168, 75, 0.3);
}
.app-download__phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(200, 168, 75, 0.18), transparent 60%);
    pointer-events: none;
    z-index: 1;
    filter: blur(20px);
}

@media (max-width: 900px) {
    .app-download__wrap {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .app-download__content { max-width: none; margin: 0 auto; }
    .app-download__sub { margin-left: auto; margin-right: auto; }
    .app-download__features { max-width: 380px; margin-left: auto; margin-right: auto; text-align: left; }
    .app-download__badges { justify-content: center; }
    .app-download__beta { margin-left: auto; margin-right: auto; }
    .app-download__phone { width: 240px; }
}

@media (max-width: 480px) {
    .app-download { padding: 80px 0 60px; }
    .app-download__phone { width: 200px; border-width: 7px; border-radius: 32px; }
    .app-download__phone-notch { width: 90px; height: 18px; }
    .app-badge { min-width: 0; padding: 9px 16px; }
}

/* ════════════════════════════════════════════════════════════
   SITE FOOTER — uitgebreide 4-koloms layout (alenas.nl stijl)
   ════════════════════════════════════════════════════════════ */

.site-footer {
    background: linear-gradient(180deg, var(--bg-2) 0%, #05070A 100%);
    border-top: 1px solid rgba(200, 168, 75, 0.08);
    padding: 70px 0 0;
    color: var(--body);
}

.site-footer__wrap {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px 50px;
    padding-bottom: 50px;
}

/* ─── Brand kolom ─── */
.site-footer__brand { max-width: 380px; }

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 18px;
}
.site-footer__logo img {
    width: 32px; height: 32px;
    object-fit: contain;
}
.site-footer__logo span {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--gold-3);
    letter-spacing: -0.01em;
}

.site-footer__tagline {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--body);
    margin: 0 0 22px;
}

/* ─── Badges ─── */
.site-footer__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all .15s ease;
    font-family: var(--font-h);
}
.footer-badge:hover {
    background: rgba(200, 168, 75, 0.08);
    border-color: rgba(200, 168, 75, 0.25);
    transform: translateY(-1px);
}
.footer-badge__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-badge--telegram .footer-badge__icon { color: #2AABEE; }
.footer-badge--telegram { padding: 9px 10px; }

.footer-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.footer-badge__text small {
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.footer-badge__text strong {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ─── Language switcher ─── */
.site-footer__lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    color: var(--body);
    text-decoration: none;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.82rem;
    transition: all .15s ease;
}
.site-footer__lang:hover {
    background: rgba(200, 168, 75, 0.1);
    border-color: rgba(200, 168, 75, 0.3);
    color: var(--gold-3);
}

/* ─── Kolommen ─── */
.site-footer__col h4 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-3);
    margin: 0 0 16px;
}
.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__col a {
    color: var(--body);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color .15s ease;
}
.site-footer__col a:hover { color: var(--gold-3); }

/* ─── Bottom strip ─── */
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 0;
}
.site-footer__bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.site-footer__copy {
    margin: 0;
    font-size: 0.84rem;
    color: var(--muted);
}
.site-footer__version {
    margin-left: 8px;
    opacity: 0.6;
    font-size: 0.78rem;
}
.site-footer__bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.site-footer__bottom-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color .15s ease;
}
.site-footer__bottom-links a:hover { color: var(--gold-3); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .site-footer { padding-top: 50px; }
    .site-footer__wrap {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
        padding-bottom: 40px;
    }
    .site-footer__brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }
    .site-footer__logo,
    .site-footer__badges { justify-content: center; }
    .site-footer__badges { display: inline-flex; }
}

@media (max-width: 560px) {
    .site-footer__wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .site-footer__col { text-align: center; }
    .site-footer__col ul { align-items: center; }
    .site-footer__bottom-wrap {
        flex-direction: column;
        text-align: center;
    }
    .site-footer__bottom-links { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   COMMUNITY PULSE STRIP — smal balkje onder de hero
   ════════════════════════════════════════════════════════════ */

.community-pulse {
    background:
        linear-gradient(90deg,
            rgba(200, 168, 75, 0.03) 0%,
            rgba(200, 168, 75, 0.06) 50%,
            rgba(200, 168, 75, 0.03) 100%);
    border-top: 1px solid rgba(200, 168, 75, 0.12);
    border-bottom: 1px solid rgba(200, 168, 75, 0.12);
    padding: 20px 0;
}

.community-pulse__wrap {
    display: grid;
    gap: 0;
}
.community-pulse__wrap[data-stats="1"] { grid-template-columns: 1fr; }
.community-pulse__wrap[data-stats="2"] { grid-template-columns: repeat(2, 1fr); }
.community-pulse__wrap[data-stats="3"] { grid-template-columns: repeat(3, 1fr); }

.community-pulse__stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 6px 20px;
    position: relative;
}
.community-pulse__stat + .community-pulse__stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

.community-pulse__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.community-pulse__value {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gold-3);
    letter-spacing: -0.01em;
}
.community-pulse__label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.community-pulse__icon {
    color: rgba(200, 168, 75, 0.5);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

/* Pulse-dot — groene pulsing dot (suggereert "live") */
.community-pulse__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ECC87;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(46, 204, 135, 0.7);
    animation: community-pulse-dot 2s infinite;
}
@keyframes community-pulse-dot {
    0%   { box-shadow: 0 0 0 0    rgba(46, 204, 135, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(46, 204, 135, 0); }
    100% { box-shadow: 0 0 0 0    rgba(46, 204, 135, 0); }
}

/* Zoom stat met live data krijgt subtiele gouden glow */
.community-pulse__stat--zoom.has-live-data .community-pulse__value {
    text-shadow: 0 0 20px rgba(200, 168, 75, 0.3);
}

/* Responsive */
@media (max-width: 800px) {
    .community-pulse { padding: 14px 0; }
    .community-pulse__value { font-size: 1.2rem; }
    .community-pulse__label { font-size: 0.7rem; }
    .community-pulse__stat { gap: 10px; padding: 4px 12px; }
}
@media (max-width: 560px) {
    .community-pulse__wrap[data-stats="3"],
    .community-pulse__wrap[data-stats="2"] {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .community-pulse__stat + .community-pulse__stat::before {
        display: none;
    }
    .community-pulse__stat {
        padding: 4px 16px;
    }
}

/* ════════════════════════════════════════════════════════════
   DAILY TIMELINE — "Een dag in Alenas" verticale tijdlijn
   ════════════════════════════════════════════════════════════ */

.daily-timeline {
    padding: 110px 0 100px;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(200, 168, 75, 0.04), transparent 70%),
        var(--bg-1);
    position: relative;
}

.daily-timeline__head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}
.daily-timeline__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 8px 0 14px;
    color: var(--text);
}
.daily-timeline__sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--body);
    margin: 0;
}

/* ─── Tijdlijn lijst ─── */
.daily-timeline__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.daily-timeline__item {
    display: grid;
    grid-template-columns: 110px 40px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 0;
    position: relative;
    min-height: 90px;
}

/* ─── Tijd (links, prominent) ─── */
.daily-timeline__time {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gold-3);
    text-align: right;
    padding-top: 4px;
    letter-spacing: -0.01em;
}

/* ─── Rail (midden, dot + verbindende lijn) ─── */
.daily-timeline__rail {
    position: relative;
    display: flex;
    justify-content: center;
    align-self: stretch;
    width: 40px;
}
/* Verticale stippellijn tussen dots */
.daily-timeline__rail::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background-image: linear-gradient(
        to bottom,
        rgba(200, 168, 75, 0.35) 50%,
        transparent 50%
    );
    background-size: 2px 8px;
    background-repeat: repeat-y;
}
/* Eerste item: lijn begint pas vanaf de dot */
.daily-timeline__item.is-first .daily-timeline__rail::before {
    top: 18px;
}
/* Laatste item: lijn stopt bij de dot */
.daily-timeline__item.is-last .daily-timeline__rail::before {
    bottom: calc(100% - 18px);
}

.daily-timeline__dot {
    width: 18px;
    height: 18px;
    background: var(--bg-1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-top: 6px;
    box-shadow: 0 0 0 4px rgba(200, 168, 75, 0.08);
}
.daily-timeline__dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(200, 168, 75, 0.5);
}

/* ─── Content (rechts, titel + tekst) ─── */
.daily-timeline__content {
    padding-bottom: 28px;
}
.daily-timeline__item.is-last .daily-timeline__content {
    padding-bottom: 0;
}
.daily-timeline__moment-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 6px;
    color: var(--text);
}
.daily-timeline__moment-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--body);
    margin: 0;
    max-width: 480px;
}

/* ─── CTA onderaan ─── */
.daily-timeline__cta {
    margin-top: 48px;
    text-align: center;
}

/* ─── Responsive ─── */
@media (max-width: 720px) {
    .daily-timeline { padding: 80px 0 70px; }
    .daily-timeline__item {
        grid-template-columns: 70px 32px 1fr;
        gap: 16px;
        min-height: 80px;
    }
    .daily-timeline__time {
        font-size: 1.05rem;
        padding-top: 2px;
    }
    .daily-timeline__rail { width: 32px; }
    .daily-timeline__dot {
        width: 14px; height: 14px;
        margin-top: 4px;
    }
    .daily-timeline__item.is-first .daily-timeline__rail::before { top: 14px; }
    .daily-timeline__item.is-last .daily-timeline__rail::before { bottom: calc(100% - 14px); }
    .daily-timeline__moment-title { font-size: 1rem; }
    .daily-timeline__moment-text { font-size: 0.9rem; }
    .daily-timeline__content { padding-bottom: 22px; }
}
@media (max-width: 480px) {
    .daily-timeline__item {
        grid-template-columns: 56px 24px 1fr;
        gap: 12px;
    }
    .daily-timeline__time { font-size: 0.94rem; }
    .daily-timeline__rail { width: 24px; }
}

/* ════════════════════════════════════════════════════════════
   FEATURES GRID — "Wat krijg je gratis" raster van feature-cards
   ════════════════════════════════════════════════════════════ */

.features-section {
    padding: 120px 0 100px;
    background:
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(200, 168, 75, 0.04), transparent 70%),
        var(--bg-2);
    position: relative;
}

.features-section__head {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}
.features-section__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
    color: var(--text);
}
.features-section__sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--body);
    margin: 0;
}

/* ─── Grid (auto-fit, met expliciete varianten) ─── */
.features-grid {
    display: grid;
    gap: 18px;
}
.features-grid--auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.features-grid--3    { grid-template-columns: repeat(3, 1fr); }
.features-grid--4    { grid-template-columns: repeat(4, 1fr); }
.features-grid--6    { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 1100px) {
    .features-grid--6 { grid-template-columns: repeat(3, 1fr); }
    .features-grid--auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* ─── Feature card ─── */
.feature-card {
    position: relative;
    padding: 26px 22px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 168, 75, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(200, 168, 75, 0.08);
}

.feature-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 3px 9px;
    background: rgba(200, 168, 75, 0.15);
    border: 1px solid rgba(200, 168, 75, 0.3);
    border-radius: 999px;
    font-family: var(--font-h);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-3);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(200, 168, 75, 0.18), rgba(200, 168, 75, 0.08));
    border: 1px solid rgba(200, 168, 75, 0.2);
    border-radius: 12px;
    color: var(--gold-3);
    margin-bottom: 6px;
    transition: all .2s ease;
}
.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, rgba(200, 168, 75, 0.28), rgba(200, 168, 75, 0.12));
    border-color: rgba(200, 168, 75, 0.4);
}
.feature-card__icon .icon { width: 22px; height: 22px; }

.feature-card__title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text);
}
.feature-card__text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--body);
    margin: 0;
}

/* ─── CTA onderaan ─── */
.features-section__cta {
    margin-top: 56px;
    text-align: center;
}
.features-section__cta-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-h);
    font-weight: 600;
}
.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .features-section { padding: 90px 0 80px; }
    .features-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .features-grid--6 { grid-template-columns: repeat(2, 1fr); }
    .features-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .features-section { padding: 70px 0 60px; }
    .features-grid,
    .features-grid--3,
    .features-grid--4,
    .features-grid--6,
    .features-grid--auto { grid-template-columns: 1fr; gap: 14px; }
    .feature-card { padding: 22px 18px; }
}

/* ════════════════════════════════════════════════════════════
   HERO — VIDEO ACHTERGROND (cinematic mode)
   ════════════════════════════════════════════════════════════ */

/* Bij video aan: verberg alle decoratieve achtergrond elementen */
.hero--video .hero__bg,
.hero--video .hero__candles {
    display: none;
}

/* Video container */
.hero__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    /* Poster als fallback background (zichtbaar tijdens loading + reduced motion) */
    background-size: cover;
    background-position: center;
    background-color: var(--bg-2);
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Initieel onzichtbaar — fade in als de video begint te spelen */
    opacity: 0;
    transition: opacity .6s ease;
}
.hero__video video[autoplay] {
    /* Browsers die autoplay toestaan: meteen tonen */
    opacity: 1;
}

/* Dark overlay voor tekst leesbaarheid */
.hero__video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(8, 12, 18, 0.35) 100%),
        linear-gradient(180deg,
            rgba(8, 12, 18, 0.55) 0%,
            rgba(8, 12, 18, 0.50) 40%,
            rgba(8, 12, 18, 0.85) 100%);
    pointer-events: none;
}

/* Subtiele gouden glow randen (vignette met goud accent) */
.hero__video-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 30% at 50% 100%,
        rgba(200, 168, 75, 0.08) 0%,
        transparent 70%);
    pointer-events: none;
}

/* Hero content moet boven de overlay zitten */
.hero--video .wrap,
.hero--video .hero__scroll {
    position: relative;
    z-index: 3;
}

/* Respect prefers-reduced-motion: pauzeer video, poster blijft zichtbaar */
@media (prefers-reduced-motion: reduce) {
    .hero__video video {
        display: none;
    }
}

/* Mobile: niet zwaarder maken dan nodig */
@media (max-width: 600px) {
    /* Op klein scherm gebruiken we ook de video maar met meer overlay donker */
    .hero__video-overlay {
        background:
            linear-gradient(180deg,
                rgba(8, 12, 18, 0.65) 0%,
                rgba(8, 12, 18, 0.55) 40%,
                rgba(8, 12, 18, 0.90) 100%);
    }
}

/* ════════════════════════════════════════════════════════════
   SHOWCASE ROW — akashx stijl: text + image, omkeerbaar
   ════════════════════════════════════════════════════════════ */

.showcase {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-1);
}

/* Achter elke even/odd showcase een subtiel ander accent */
.showcase + .showcase {
    background: var(--bg-2);
}
.showcase + .showcase + .showcase {
    background: var(--bg-1);
}

/* Grid: 2 kolommen */
.showcase__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image positie via grid-template-areas */
.showcase--left .showcase__wrap {
    grid-template-areas: "visual content";
}
.showcase--right .showcase__wrap {
    grid-template-areas: "content visual";
}
.showcase__content { grid-area: content; }
.showcase__visual  { grid-area: visual; position: relative; display: flex; justify-content: center; }

/* ─── Tekst kolom ─── */
.showcase__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 8px 0 18px;
    color: var(--text);
}
.showcase__text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--body);
    margin: 0 0 24px;
    max-width: 520px;
}

/* ─── Bullets ─── */
.showcase__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.showcase__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    line-height: 1.4;
    color: var(--text);
}
.showcase__bullet-icon {
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    border-radius: 50%;
    color: #0a0a0a;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(200, 168, 75, 0.25);
}
.showcase__bullet-icon .icon { width: 12px; height: 12px; }

.showcase__cta { margin-top: 6px; }

/* ─── Glow rondom visual ─── */
.showcase__glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(200, 168, 75, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(20px);
}

/* ─── Phone mockup (CSS-only) ─── */
.showcase-phone {
    position: relative;
    width: 290px;
    aspect-ratio: 9 / 19.5;
    background: #000;
    border: 9px solid #0F1420;
    border-radius: 38px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(200, 168, 75, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
    z-index: 2;
}
.showcase-phone__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 22px;
    background: #0F1420;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}
.showcase-phone img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.showcase-phone__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1A1F2E, #080C12);
    color: rgba(200, 168, 75, 0.3);
}

/* ─── Browser window mockup ─── */
.showcase-browser {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 16 / 10;
    background: #0a0e16;
    border: 1px solid rgba(200, 168, 75, 0.15);
    border-radius: 12px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(200, 168, 75, 0.06);
    overflow: hidden;
    z-index: 2;
}
.showcase-browser__chrome {
    height: 30px;
    background: linear-gradient(180deg, #1a1f2e, #141926);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    position: relative;
}
.showcase-browser__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.showcase-browser__dot--red   { background: #ff5f57; }
.showcase-browser__dot--amber { background: #febc2e; }
.showcase-browser__dot--green { background: #28c840; }
.showcase-browser__url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 16px;
    border-radius: 6px;
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.showcase-browser img {
    width: 100%;
    height: calc(100% - 30px);
    object-fit: cover;
    object-position: top;
    display: block;
}
.showcase-browser__placeholder {
    height: calc(100% - 30px);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #141926, #080C12);
    color: rgba(200, 168, 75, 0.3);
}

/* ─── Plain image (geen frame) ─── */
.showcase-plain {
    position: relative;
    width: 100%;
    max-width: 540px;
    z-index: 2;
}
.showcase-plain img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.showcase-plain__placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #141926, #080C12);
    border: 1px solid rgba(200, 168, 75, 0.15);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: rgba(200, 168, 75, 0.3);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .showcase { padding: 70px 0; }
    .showcase__wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    /* Op mobile: image altijd BOVEN tekst, ongeacht positie setting */
    .showcase--left .showcase__wrap,
    .showcase--right .showcase__wrap {
        grid-template-areas: "visual" "content";
    }
    .showcase__content { text-align: center; }
    .showcase__text { margin-left: auto; margin-right: auto; }
    .showcase__bullets { max-width: 380px; margin-left: auto; margin-right: auto; text-align: left; }
}

@media (max-width: 560px) {
    .showcase-phone { width: 240px; }
    .showcase-phone__notch { width: 90px; height: 18px; }
}

/* ════════════════════════════════════════════════════════════
   Admin form helpers — showcase position toggle
   ════════════════════════════════════════════════════════════ */
/* Wordt in admin.css verder gespecificeerd */

/* ════════════════════════════════════════════════════════════
   AESTHETIC REFINEMENT — globale premium polish
   ════════════════════════════════════════════════════════════
   Geen kleurwijzigingen, geen layout changes — alleen subtiele
   refinements voor luxury feel.
*/

:root {
    /* Wijdere container voor meer ademruimte */
    --wrap-max: 1240px;
    --wrap-pad: 28px;

    /* Modernere easing function voor transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Section padding scale — responsive */
    --space-section: clamp(80px, 12vw, 140px);
}

/* ─── Body: iets ruimer line-height ─── */
body {
    line-height: 1.65;
}

/* ─── Eyebrow refinement — net iets meer spacing voor luxury ─── */
.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    margin-bottom: 18px;
}

/* ─── Knoppen — modernere hover (lift + glow) ─── */
.btn {
    transition: transform .25s var(--ease-out),
                box-shadow .25s var(--ease-out),
                background .2s var(--ease-out),
                border-color .2s var(--ease-out);
    will-change: transform;
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 168, 75, 0.35);
    filter: none; /* overschrijft de bestaande filter brightness */
}
.btn--ghost:hover {
    transform: translateY(-2px);
}

/* ─── Type scale upgrade (refined) ─── */

/* Hero titel — groter en cinematic */
.hero__title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

/* Section headings — uniform vergroot */
.daily-timeline__title,
.features-section__title,
.app-download__title,
.showcase__title {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

/* Subtekst onder titels — iets groter voor balans */
.hero__quote p,
.daily-timeline__sub,
.features-section__sub,
.app-download__sub {
    font-size: 1.12rem;
    line-height: 1.65;
}

/* ─── Section padding — meer ademruimte ─── */
.daily-timeline,
.features-section,
.app-download,
.showcase {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

/* Showcase iets compacter want het komt vaak in series */
.showcase {
    padding-top: calc(var(--space-section) * 0.85);
    padding-bottom: calc(var(--space-section) * 0.85);
}

/* Hero: behoud minimum 100vh maar voeg meer top/bottom padding toe */
.hero {
    padding-top: clamp(110px, 14vh, 160px);
    padding-bottom: clamp(80px, 10vh, 120px);
}

/* ─── Section header spacing — meer ruimte onder eyebrow ─── */
.daily-timeline__head,
.features-section__head {
    margin-bottom: clamp(50px, 7vw, 80px);
}

/* ─── Scroll fade-in animatie (subtiel premium effect) ─── */
.fade-in-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s var(--ease-out),
                transform .9s var(--ease-out);
    will-change: opacity, transform;
}
.fade-in-target.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Respect prefers-reduced-motion volledig */
@media (prefers-reduced-motion: reduce) {
    .fade-in-target {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .btn--gold:hover,
    .btn--ghost:hover {
        transform: none;
    }
}

/* ─── Smoother feature card hover (refinement) ─── */
.feature-card {
    transition: transform .3s var(--ease-out),
                border-color .25s var(--ease-out),
                box-shadow .3s var(--ease-out);
}
.feature-card:hover {
    transform: translateY(-4px);  /* was -3px */
}

/* ─── Mobile aesthetic: minder agressief vergroten ─── */
@media (max-width: 600px) {
    :root { --wrap-pad: 22px; }

    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        margin-bottom: 14px;
    }
}

/* ════════════════════════════════════════════════════════════
   SECTION CONTRAST FIX — duidelijker onderscheid tussen blokken
   ════════════════════════════════════════════════════════════
   - --bg-2 was 2% lightness verschil met --bg → nauwelijks zichtbaar
   - Nu: 9% lightness + meer blauwtint → duidelijk anders maar nog donker
   - --bg-1 alias voor --bg (fix stille bug — werd op meerdere plekken
     gebruikt maar bestond niet, viel terug op default transparent)
   - Subtle gouden dividers tussen aaneengrenzende secties
*/

:root {
    /* Alias zodat --bg-1 valid is — gelijk aan --bg */
    --bg-1: #05070A;

    /* Overschrijf --bg-2 met duidelijker contrast */
    --bg-2: #0C1322;   /* was #080C12 — nu blauwer en lichter */
}

/* ─── Subtle gouden dividers tussen secties ─── */
.daily-timeline,
.features-section,
.app-download,
.showcase {
    position: relative;
}
.daily-timeline::before,
.features-section::before,
.app-download::before,
.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(70%, 900px);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200, 168, 75, 0.18) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Hero heeft geen divider erboven nodig (eerste blok) */
.hero + section::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(200, 168, 75, 0.25) 50%,
        transparent 100%);
}

/* Community pulse: subtle dunne goud-tint scheidslijnen versterken */
.community-pulse {
    border-top: 1px solid rgba(200, 168, 75, 0.18);
    border-bottom: 1px solid rgba(200, 168, 75, 0.18);
}

/* Showcase varianten: meer onderscheid bij afgewisselde achtergronden */
.showcase {
    background: var(--bg-1);
}
.showcase + .showcase {
    background: var(--bg-2);
}
.showcase + .showcase + .showcase {
    background: var(--bg-1);
}
.showcase + .showcase + .showcase + .showcase {
    background: var(--bg-2);
}

/* Daily timeline duidelijk anders dan features section */
.daily-timeline {
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(200, 168, 75, 0.05), transparent 70%),
        var(--bg-1);
}
.features-section {
    background:
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(200, 168, 75, 0.06), transparent 70%),
        var(--bg-2);
}
/* App download: meer eigen karakter — gradient + accent */
.app-download {
    background:
        radial-gradient(ellipse 90% 60% at 20% 30%, rgba(200, 168, 75, 0.06), transparent 70%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

/* ════════════════════════════════════════════════════════════
   PARTNER PAGE — navy restyle (hero, content, CTA's, shell)
   Zelf-bevattend. Inter + JetBrains Mono, goud-accent.
   ════════════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.partner-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: clamp(110px, 15vh, 168px) 0 clamp(84px, 11vh, 128px);
    background:
        radial-gradient(ellipse 78% 55% at 50% 12%, rgba(230, 190, 99, 0.07), transparent 68%),
        #080B12;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
/* Fijne grid-textuur, vervaagd naar de randen */
.partner-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(100% 70% at 50% 22%, #000 22%, transparent 72%);
            mask-image: radial-gradient(100% 70% at 50% 22%, #000 22%, transparent 72%);
}

/* Video-achtergrond modus */
.partner-hero--video { background: #05070C; }
.partner-hero__video {
    position: absolute; inset: 0; z-index: 1; overflow: hidden;
    background-size: cover; background-position: center; background-color: #05070C;
}
.partner-hero__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner-hero__video-overlay {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
        radial-gradient(ellipse 85% 60% at 50% 45%, transparent 0%, rgba(8, 11, 18, 0.55) 100%),
        linear-gradient(180deg,
            rgba(8, 11, 18, 0.62) 0%,
            rgba(8, 11, 18, 0.5) 38%,
            rgba(8, 11, 18, 0.96) 100%);
}
.partner-hero__video-overlay::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 55% 32% at 50% 100%, rgba(230, 190, 99, 0.12) 0%, transparent 70%);
}

/* Hero content */
.partner-hero__wrap { position: relative; z-index: 3; }
.partner-hero__content { text-align: center; max-width: 760px; margin: 0 auto; }

/* Profielfoto */
.partner-hero__photo {
    width: clamp(84px, 18vw, 124px); height: clamp(84px, 18vw, 124px);
    margin: 0 auto 30px; border-radius: 50%; overflow: hidden;
    border: 1px solid rgba(230, 190, 99, 0.45);
    box-shadow: 0 0 0 6px rgba(230, 190, 99, 0.06), 0 24px 60px rgba(0, 0, 0, 0.5);
}
.partner-hero__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Gecentreerd Alenas-logo (vervangt de partnerfoto) */
.partner-hero__logo {
    width: clamp(72px, 14vw, 104px); margin: 0 auto 30px;
    display: grid; place-items: center;
}
.partner-hero__logo img {
    width: 100%; height: auto; display: block;
    filter: drop-shadow(0 10px 30px rgba(230, 190, 99, 0.28));
}

/* Eyebrow met flankerende lijnen (mono) */
.partner-hero .eyebrow {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-family: 'JetBrains Mono', 'SFMono-Regular', monospace;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
    color: #E6BE63; margin: 0 0 1.25rem;
}
.partner-hero .eyebrow::before, .partner-hero .eyebrow::after {
    content: ''; width: 28px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 190, 99, 0.7));
}
.partner-hero .eyebrow::after { background: linear-gradient(90deg, rgba(230, 190, 99, 0.7), transparent); }

/* Titel */
.partner-hero__title {
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: clamp(2rem, 5.6vw, 4.3rem); line-height: 1.04; letter-spacing: -0.025em;
    margin: 6px 0 16px; color: #EAEFF6;
}
.partner-hero__subtitle {
    font-family: 'Inter', sans-serif; font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.22rem); letter-spacing: 0.01em; margin: 0 0 26px;
    background: linear-gradient(180deg, #F6DD93, #D9A53C);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.partner-hero__intro {
    font-size: 1.1rem; line-height: 1.68; color: #9AA3B2; max-width: 580px; margin: 0 auto;
}

/* Scroll-cue */
.partner-hero__scroll {
    margin-top: 50px; display: inline-flex; flex-direction: column; align-items: center; gap: 11px;
    color: #7C8494; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.22em;
}
.partner-hero__scroll-arrow {
    font-size: 1.3rem; color: #E6BE63;
    animation: partner-scroll-bounce 2s infinite ease-in-out;
}
@keyframes partner-scroll-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) {
    .partner-hero__video video { display: none; }
    .partner-hero__scroll-arrow { animation: none; }
}

/* ─── Content (YouTube + CTA's) ─── */
.partner-content {
    position: relative; padding: clamp(84px, 12vw, 140px) 0; background: #080B12;
    font-family: 'Inter', sans-serif;
}
/* Gouden divider boven de content */
.partner-content::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: min(70%, 900px); height: 1px; pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(230, 190, 99, 0.3) 50%, transparent);
}
/* Subtiele diepte-aurora, goud-dominant */
.partner-content::after {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px) 0 0 / 34px 34px,
        radial-gradient(ellipse 58% 48% at 76% 16%, rgba(230, 190, 99, 0.14), transparent 66%),
        radial-gradient(ellipse 50% 55% at 16% 84%, rgba(63, 209, 126, 0.06), transparent 68%);
    -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
            mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent 100%);
}
.partner-content .wrap { position: relative; z-index: 1; }

/* YouTube-frame */
.partner-video {
    position: relative; width: 100%; max-width: 900px; margin: 0 auto 64px;
    aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 190, 99, 0.08);
}
.partner-video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Actions */
.partner-actions { max-width: 760px; margin: 0 auto; text-align: center; }
.partner-actions__title {
    font-family: 'Inter', sans-serif; font-weight: 900;
    font-size: clamp(1.65rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; margin: 0 0 34px; color: #EAEFF6;
}

.partner-cta-grid { display: flex; flex-direction: column; gap: 14px; max-width: 480px; margin: 0 auto; }
.partner-cta {
    display: grid; grid-template-columns: 32px 1fr 20px; gap: 14px; align-items: center;
    padding: 18px 22px; border-radius: 14px;
    background: rgba(16, 22, 34, 0.72); border: 1px solid rgba(255, 255, 255, 0.08);
    color: #EAEFF6; text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s, border-color .2s, background .2s;
}
.partner-cta:hover { transform: translateY(-2px); border-color: rgba(230, 190, 99, 0.4); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4); }
.partner-cta__icon { display: grid; place-items: center; color: #E6BE63; font-size: 1.05rem; }
.partner-cta__label { text-align: left; }
.partner-cta__arrow { font-size: 1.2rem; color: #E6BE63; opacity: 0.55; transition: opacity .2s, transform .2s; }
.partner-cta:hover .partner-cta__arrow { opacity: 1; transform: translateX(4px); }

/* Goud (primair — reviews) */
.partner-cta--gold {
    background: linear-gradient(180deg, #F2D27C, #DCA942); color: #231905;
    border-color: rgba(230, 190, 99, 0.5); font-weight: 700;
    box-shadow: 0 10px 30px -8px rgba(230, 190, 99, 0.4);
}
.partner-cta--gold .partner-cta__icon, .partner-cta--gold .partner-cta__arrow { color: #231905; opacity: 0.8; }
.partner-cta--gold:hover { box-shadow: 0 16px 40px -8px rgba(230, 190, 99, 0.55); border-color: rgba(230, 190, 99, 0.7); }

/* WhatsApp (groen) */
.partner-cta--whatsapp { background: rgba(63, 209, 126, 0.08); border-color: rgba(63, 209, 126, 0.3); }
.partner-cta--whatsapp .partner-cta__icon { color: #3FD17E; }
.partner-cta--whatsapp .partner-cta__arrow { color: #3FD17E; }
.partner-cta--whatsapp:hover { background: rgba(63, 209, 126, 0.12); border-color: rgba(63, 209, 126, 0.5); box-shadow: 0 14px 36px rgba(63, 209, 126, 0.16); }

/* Ghost (extra links) — default card-styling is OK */
.partner-cta--ghost { }

/* Register (primaire conversie) — blauwe accent + gloed, zelfde signatuur
   als het frontpage CTA-blok (#5B8CFF). */
.partner-cta--register {
    background:
        radial-gradient(120% 180% at 0% 50%, rgba(91, 140, 255, 0.18) 0%, transparent 60%),
        rgba(16, 22, 34, 0.72);
    border-color: rgba(91, 140, 255, 0.45);
    box-shadow: 0 0 22px 1px rgba(91, 140, 255, 0.28), 0 14px 36px -16px rgba(91, 140, 255, 0.55);
}
.partner-cta--register .partner-cta__icon,
.partner-cta--register .partner-cta__arrow { color: #8FB0FF; }
.partner-cta--register:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 140, 255, 0.7);
    box-shadow: 0 0 26px 2px rgba(91, 140, 255, 0.4), 0 18px 44px -14px rgba(91, 140, 255, 0.7);
}

/* Responsive */
@media (max-width: 700px) {
    .partner-hero { min-height: 66vh; }
    .partner-hero__photo { width: 96px; height: 96px; margin-bottom: 22px; }
    .partner-content { padding: 64px 0; }
    .partner-video { margin-bottom: 44px; }
    .partner-cta { padding: 15px 18px; font-size: 0.95rem; }
}

/* ════════════════════════════════════════════════════════════
   PARTNER-ONLY SHELL — footer (navy). Header is verwijderd:
   merk en taal stonden al in de pagina-inhoud zelf.
   ════════════════════════════════════════════════════════════ */
.partner-footer { background: rgba(5, 7, 12, 0.6); border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 26px 0; margin-top: 0; }
.partner-footer__inner { display: flex; align-items: center; justify-content: center; text-align: center; }
.partner-footer__copy { color: #7C8494; font-size: 0.8rem; font-family: 'Inter', sans-serif; }

@media (max-width: 600px) {
    .partner-footer__copy { font-size: 0.76rem; }
}

/* ════════════════════════════════════════════════════════════
   CTA CARD ENHANCEMENT — premium look + decoratieve elementen
   ════════════════════════════════════════════════════════════ */

/* Card als geheel: positioning context + hover effect */
.cta-card {
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease-out),
                box-shadow .3s var(--ease-out),
                border-color .25s var(--ease-out);
}
.cta-card:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 168, 75, 0.45);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(200, 168, 75, 0.25);
}

/* Decoratieve gouden glow rechtsboven (akashx-stijl) */
.cta-card__glow {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center,
        rgba(200, 168, 75, 0.22) 0%,
        rgba(200, 168, 75, 0.08) 30%,
        transparent 65%);
    pointer-events: none;
    filter: blur(20px);
}

/* Subtle dot pattern background */
.cta-card__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(200, 168, 75, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: 0.6;
    /* Fade-out van linksonder naar rechtsboven (zorgt voor visueel ritme) */
    -webkit-mask-image: linear-gradient(135deg, transparent 35%, rgba(0,0,0,0.7) 75%);
            mask-image: linear-gradient(135deg, transparent 35%, rgba(0,0,0,0.7) 75%);
}

/* Content moet boven de decorations zitten */
.cta-card__content,
.cta-card__action {
    position: relative;
    z-index: 1;
}

/* Eyebrow met optionele pulse-dot */
.cta-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-3);
}
.cta-card__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ECC87;
    box-shadow: 0 0 0 0 rgba(46, 204, 135, 0.7);
    animation: cta-card-pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes cta-card-pulse {
    0%   { box-shadow: 0 0 0 0    rgba(46, 204, 135, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(46, 204, 135, 0); }
    100% { box-shadow: 0 0 0 0    rgba(46, 204, 135, 0); }
}

/* Pills onderaan met checkmark iconen */
.cta-card__pills {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cta-card__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(200, 168, 75, 0.08);
    border: 1px solid rgba(200, 168, 75, 0.22);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--gold-3);
    font-family: var(--font-h);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.cta-card__pill .icon {
    color: #2ECC87;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Knop iets meer prominent met gouden glow */
.cta-card__btn {
    box-shadow: 0 8px 24px rgba(200, 168, 75, 0.28);
}
.cta-card:hover .cta-card__btn {
    box-shadow: 0 12px 32px rgba(200, 168, 75, 0.42);
}

/* Reduced motion: animatie uit */
@media (prefers-reduced-motion: reduce) {
    .cta-card__pulse { animation: none; }
}

/* Mobile responsive */
@media (max-width: 700px) {
    .cta-card__eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        margin-bottom: 10px;
    }
    .cta-card__pills {
        margin-top: 16px;
    }
    .cta-card__pill {
        font-size: 0.76rem;
        padding: 5px 10px;
    }
    .cta-card__glow {
        width: 280px;
        height: 280px;
        top: -80px;
        right: -60px;
    }
}
@media (max-width: 480px) {
    .cta-card__pill {
        font-size: 0.72rem;
        padding: 4px 9px;
    }
}

/* ════════════════════════════════════════════════════════════
   RICH TEXT BLOCK — legal pagina's, long-form content
   ════════════════════════════════════════════════════════════ */

.rich-text-block {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--bg-1, #0C1322);
}
.rich-text-block__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.rich-text-block--narrow .rich-text-block__inner {
    max-width: 720px;
}

.rich-text-block__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 12px;
    color: var(--text);
}
.rich-text-block__updated {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 36px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Body typography */
.rich-text-block__body {
    color: var(--body);
    font-size: 1.05rem;
    line-height: 1.75;
}
.rich-text-block__body > * + * {
    margin-top: 1.1em;
}

/* Headings binnen markdown */
.rich-text-block__body h2 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    color: var(--text);
    margin-top: 2em;
    margin-bottom: 0.6em;
    letter-spacing: -0.015em;
    line-height: 1.25;
}
.rich-text-block__body h3 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.4vw, 1.35rem);
    color: var(--text);
    margin-top: 1.6em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}
.rich-text-block__body h4 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin-top: 1.4em;
    margin-bottom: 0.4em;
}

.rich-text-block__body p {
    margin: 0;
}

/* Lijsten */
.rich-text-block__body ul,
.rich-text-block__body ol {
    margin: 0;
    padding-left: 1.6em;
}
.rich-text-block__body ul li,
.rich-text-block__body ol li {
    margin: 0.4em 0;
}
.rich-text-block__body ul li::marker {
    color: var(--gold-3);
}
.rich-text-block__body ol li::marker {
    color: var(--gold-3);
    font-weight: 700;
}

/* Bold + italic */
.rich-text-block__body strong {
    color: var(--text);
    font-weight: 700;
}
.rich-text-block__body em {
    font-style: italic;
}

/* Links */
.rich-text-block__body a {
    color: var(--gold-3);
    text-decoration: underline;
    text-decoration-color: rgba(200, 168, 75, 0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color .15s;
}
.rich-text-block__body a:hover {
    text-decoration-color: var(--gold-3);
}

/* Horizontal rule */
.rich-text-block__body hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.25), transparent);
    margin: 2em 0;
}

/* Mobile */
@media (max-width: 600px) {
    .rich-text-block__body {
        font-size: 1rem;
    }
    .rich-text-block__updated {
        margin-bottom: 28px;
    }
}

/* ════════════════════════════════════════════════════════════
   LEGAL PAGE BLOCK — disclaimer, privacy, cookies
   ════════════════════════════════════════════════════════════ */

.legal-page {
    background: var(--bg-1, #0C1322);
}

/* ─── Hero ─── */
.legal-page__hero {
    position: relative;
    padding: clamp(70px, 12vw, 130px) 0 clamp(40px, 6vw, 60px);
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(200, 168, 75, 0.10), transparent 65%),
        radial-gradient(ellipse 50% 60% at 15% 90%, rgba(46, 204, 135, 0.06), transparent 65%),
        var(--bg-1);
}
.legal-page__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px) 0 0 / 32px 32px;
    mask-image: radial-gradient(ellipse 80% 70% at center, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black, transparent);
}
.legal-page__hero > .wrap {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.legal-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    margin-bottom: 24px;
    font-family: var(--font-h);
}
.legal-page__breadcrumb a {
    color: var(--gold-3);
    text-decoration: none;
    transition: opacity .15s;
}
.legal-page__breadcrumb a:hover { opacity: 0.7; }
.legal-page__breadcrumb-current { color: var(--text); }

/* Titel */
.legal-page__title {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
    color: var(--text);
}

/* Meta row: updated + tag */
.legal-page__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.legal-page__updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.88rem;
}
.legal-page__updated svg {
    color: var(--gold-3);
    flex-shrink: 0;
}
.legal-page__tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 168, 75, 0.10);
    border: 1px solid rgba(200, 168, 75, 0.25);
    color: var(--gold-3);
    border-radius: 999px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Pills */
.legal-page__pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.legal-page__pill {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(200, 168, 75, 0.25);
    background: rgba(200, 168, 75, 0.04);
    color: var(--body);
    text-decoration: none;
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all .15s;
}
.legal-page__pill:hover {
    color: var(--gold-3);
    border-color: rgba(200, 168, 75, 0.5);
    background: rgba(200, 168, 75, 0.08);
}
.legal-page__pill--current {
    background: var(--gold-3);
    color: var(--bg, #05070A);
    border-color: var(--gold-3);
}
.legal-page__pill--current:hover {
    background: var(--gold-3);
    color: var(--bg, #05070A);
    opacity: 0.92;
}

/* ─── Body content ─── */
.legal-page__content {
    padding: clamp(40px, 6vw, 80px) 0;
}
.legal-page__body {
    max-width: 760px;
    margin: 0 auto;
    color: var(--body);
    font-size: 1.05rem;
    line-height: 1.75;
}
.legal-page__body > * + * {
    margin-top: 1.1em;
}

.legal-page__body h2 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    color: var(--text);
    margin-top: 2.2em;
    margin-bottom: 0.6em;
    letter-spacing: -0.015em;
    line-height: 1.25;
    padding-bottom: 0.4em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-page__body h3 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.4vw, 1.35rem);
    color: var(--text);
    margin-top: 1.8em;
    margin-bottom: 0.5em;
    line-height: 1.3;
}
.legal-page__body h4 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin-top: 1.4em;
    margin-bottom: 0.4em;
}

.legal-page__body p { margin: 0; }

.legal-page__body strong { color: var(--text); font-weight: 700; }
.legal-page__body em { font-style: italic; }

.legal-page__body a {
    color: var(--gold-3);
    text-decoration: underline;
    text-decoration-color: rgba(200, 168, 75, 0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color .15s;
}
.legal-page__body a:hover { text-decoration-color: var(--gold-3); }

.legal-page__body ul,
.legal-page__body ol {
    margin: 0;
    padding-left: 1.6em;
}
.legal-page__body ul li,
.legal-page__body ol li {
    margin: 0.4em 0;
}
.legal-page__body ul li::marker { color: var(--gold-3); }
.legal-page__body ol li::marker { color: var(--gold-3); font-weight: 700; }

.legal-page__body hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.25), transparent);
    margin: 2em 0;
}

/* Tabellen — uit markdown parser */
.legal-page__body .md-table-wrap {
    margin: 1.5em 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}
.legal-page__body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}
.legal-page__body thead {
    background: rgba(200, 168, 75, 0.06);
}
.legal-page__body th {
    text-align: left;
    padding: 14px 18px;
    color: var(--gold-3);
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(200, 168, 75, 0.2);
}
.legal-page__body td {
    padding: 13px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: top;
}
.legal-page__body tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Mobile: tabel horizontaal scrollbaar */
@media (max-width: 600px) {
    .legal-page__body .md-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .legal-page__body table { min-width: 480px; }
}

/* Terug naar home link */
.legal-page__back {
    display: inline-block;
    margin-top: 50px;
    color: var(--gold-3);
    text-decoration: none;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.94rem;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .15s;
}
.legal-page__back:hover {
    border-bottom-color: var(--gold-3);
}

/* ─── CTA card ─── */
.legal-page__cta-section {
    padding: 0 0 clamp(60px, 8vw, 100px);
}
.legal-page__cta {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
    border: 1px solid rgba(200, 168, 75, 0.22);
    border-radius: 18px;
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%, rgba(200, 168, 75, 0.08), transparent 70%),
        linear-gradient(180deg, rgba(200, 168, 75, 0.03), rgba(200, 168, 75, 0.01));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.legal-page__cta-eyebrow {
    display: inline-block;
    color: var(--gold-3);
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}
.legal-page__cta-title {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--text);
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.015em;
}
.legal-page__cta-body {
    color: var(--body);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 auto 28px;
    max-width: 580px;
}
.legal-page__cta-btn {
    display: inline-block;
}

/* Mobile */
@media (max-width: 600px) {
    .legal-page__body { font-size: 1rem; }
    .legal-page__meta { gap: 10px; }
    .legal-page__pills { gap: 6px; }
    .legal-page__pill {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* Inline code styling binnen legal page body */
.legal-page__body code {
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 0.88em;
    padding: 2px 6px;
    background: rgba(200, 168, 75, 0.08);
    border: 1px solid rgba(200, 168, 75, 0.15);
    border-radius: 4px;
    color: var(--gold-3);
}

/* ════════════════════════════════════════════════════════════
   HEADER LOGIN / DASHBOARD KNOP
   ════════════════════════════════════════════════════════════ */

.site-header__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header__login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(200, 168, 75, 0.3);
    background: rgba(200, 168, 75, 0.04);
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.86rem;
    transition: all .15s ease;
    white-space: nowrap;
}
.site-header__login svg {
    color: var(--gold-3);
    flex-shrink: 0;
    transition: transform .15s ease;
}
.site-header__login:hover {
    border-color: var(--gold-3);
    background: rgba(200, 168, 75, 0.10);
    color: var(--gold-3);
}
.site-header__login:hover svg {
    transform: translateX(1px);
}

/* Mobile — compact: alleen icoon zichtbaar, tekst verstopt */
@media (max-width: 800px) {
    .site-header__right { gap: 8px; }
    .site-header__login {
        padding: 8px 10px;
        font-size: 0.82rem;
    }
}
@media (max-width: 520px) {
    .site-header__login span {
        display: none;
    }
    .site-header__login {
        padding: 8px 10px;
    }
    .site-header__login svg {
        width: 16px;
        height: 16px;
    }
}
