/* ==================================================================
   UNSTOPPABLE ACADEMY  Huisstijl
   Zwart fundament, gouden accenten. Premium en zakelijk.
   ================================================================== */

:root {
    --black:        #0A0A0A;
    --black-soft:   #101010;
    --anthracite:   #1A1A1A;
    --grey:         #333333;
    --grey-line:    #2A2A2A;
    --gold:         #D4AF37;
    --gold-bright:  #F2C14E;
    --light:        #F5F5F5;
    --muted:        rgba(245, 245, 245, 0.66);
    --muted-soft:   rgba(245, 245, 245, 0.40);

    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;

    --maxw: 1200px;
    --radius: 14px;
    --gold-gradient: linear-gradient(135deg, #F2C14E 0%, #D4AF37 55%, #B8902A 100%);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }

/* Sectie-opbouw -------------------------------------------------- */
section { position: relative; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-intro {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.05rem;
}

.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* Gouden scheidingslijntje */
.rule {
    width: 64px; height: 2px;
    background: var(--gold-gradient);
    border: none; margin: 24px 0;
}
.center .rule { margin-left: auto; margin-right: auto; }

/* Knoppen -------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 15px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    border: 1px solid transparent;
}
.btn-gold {
    background: var(--gold-gradient);
    color: #1A1205;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212, 175, 55, 0.40); }

.btn-ghost {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(245, 245, 245, 0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn svg { width: 18px; height: 18px; flex: none; }
.btn-arrow svg { width: 16px; height: 16px; }

/* ==================================================================
   Header / navigatie
   ================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .35s ease, border-color .35s ease, padding .35s ease;
    padding: 22px 0;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid var(--grey-line);
    padding: 14px 0;
}
.nav-wrap { display: flex; align-items: center; }
/* menu wordt naar rechts geduwd, naast de knop */
.main-nav { margin-left: auto; }

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; }
.logo .emblem { width: 46px; height: 46px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name {
    font-family: var(--font-head); font-weight: 700;
    font-size: 1.2rem; letter-spacing: 0.04em; color: var(--light);
}
.logo-text .sub {
    font-size: 0.62rem; letter-spacing: 0.42em;
    color: var(--gold); text-transform: uppercase; margin-top: 4px;
}

/* Menu */
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 34px; }
.main-nav a {
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
    color: var(--muted); position: relative; padding: 6px 0;
    transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--light); }
.main-nav a.active::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 100%; height: 2px; background: var(--gold-gradient);
}

/* Dropdown cursussen */
.has-drop { position: relative; }
.drop-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.drop-toggle svg { width: 11px; height: 11px; transition: transform .25s ease; }
.has-drop:hover .drop-toggle svg { transform: rotate(180deg); }
.dropdown {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
    background: var(--anthracite);
    border: 1px solid var(--grey-line);
    border-radius: var(--radius);
    padding: 10px; min-width: 280px;
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: var(--shadow);
}
/* onzichtbare brug zodat de muis van 'Cursussen' naar het menu kan zonder dat het wegvalt */
.dropdown::before {
    content: ''; position: absolute; top: -30px; left: 0; right: 0; height: 30px;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
    display: block; padding: 12px 16px; border-radius: 8px;
    color: var(--muted); font-size: 0.9rem;
}
.dropdown a:hover { background: rgba(212, 175, 55, 0.08); color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 18px; margin-left: 40px; }

/* CTA-knop die alleen in het mobiele uitschuifmenu verschijnt */
.nav-mobile-cta { display: none; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 26px; height: 2px; background: var(--light); transition: .3s; }

/* Overlay achter het mobiele menu (volgt de scroll niet, blijft altijd in beeld) */
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 85; opacity: 0; visibility: hidden; transition: opacity .3s ease; }
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ==================================================================
   Hero
   ================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 120px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 72% 38%, rgba(212, 175, 55, 0.18), transparent 55%),
        radial-gradient(ellipse at 18% 80%, rgba(212, 175, 55, 0.06), transparent 50%),
        linear-gradient(180deg, #0A0A0A 0%, #0E0C07 60%, #0A0A0A 100%);
}
/* De echte leeuwfoto, rechts, vervaagd naar zwart aan de linkerkant */
.hero-lion {
    position: absolute; top: 0; right: 0; bottom: 0; width: 64%; z-index: 1;
    background-image: url("../img/hero-leeuw.png");
    background-size: cover; background-position: center right;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 44%);
    mask-image: linear-gradient(90deg, transparent, #000 44%);
}

.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 660px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--grey-line); border-radius: 50px;
    padding: 8px 18px; font-size: 0.78rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 30px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    letter-spacing: -0.01em; margin-bottom: 26px; white-space: nowrap;
}
.hero h1 .line2 { color: var(--gold); }
.hero p.lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--muted); max-width: 520px; margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-stats { display: flex; gap: 0; margin-top: 58px; flex-wrap: wrap; }
.hero-stats .stat { padding: 0 40px; position: relative; }
.hero-stats .stat:first-child { padding-left: 0; }
.hero-stats .stat:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 40px; background: var(--grey-line);
}
.hero-stats .stat .num { font-family: var(--font-head); font-size: 2rem; color: var(--gold); line-height: 1.1; }
.hero-stats .stat .lbl { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* ==================================================================
   Pijlers (Leer. Bouw. Groei.)
   ================================================================== */
.pillars { background: var(--black-soft); border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
.pillar {
    text-align: center; padding: 36px 22px;
    border: 1px solid var(--grey-line); border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    transition: transform .3s ease, border-color .3s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); }
.pillar .ico {
    width: 58px; height: 58px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid rgba(212,175,55,0.35);
    color: var(--gold);
}
.pillar .ico svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pillar p { font-size: 0.9rem; color: var(--muted); }

/* ==================================================================
   Filosofie band
   ================================================================== */
.philosophy { text-align: center; background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.10), transparent 60%), var(--black); }
.philosophy .lines { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.philosophy .lines p {
    font-family: var(--font-head); font-size: clamp(1.5rem, 3.4vw, 2.5rem);
    color: var(--light);
}
.philosophy .lines p span { color: var(--gold); }
.philosophy .closing { margin-top: 34px; color: var(--muted); letter-spacing: 0.06em; }

/* ==================================================================
   Cursuscategorieen
   ================================================================== */
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; }
.course-card {
    position: relative; overflow: hidden;
    padding: 40px; border-radius: var(--radius);
    border: 1px solid var(--grey-line);
    background: linear-gradient(160deg, var(--anthracite), var(--black-soft));
    transition: transform .35s ease, border-color .35s ease;
}
.course-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
    background: var(--gold-gradient); transform: scaleY(0); transform-origin: top; transition: transform .4s ease;
}
.course-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); }
.course-card:hover::before { transform: scaleY(1); }
.course-card .ico {
    width: 54px; height: 54px; margin-bottom: 24px; color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: rgba(212,175,55,0.08);
}
.course-card .ico svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.course-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.course-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 22px; }
.course-card .more { color: var(--gold); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 8px; }
.course-card .more svg { width: 15px; height: 15px; transition: transform .25s ease; }
.course-card:hover .more svg { transform: translateX(5px); }

/* ==================================================================
   Over de oprichter
   ================================================================== */
.founder { background: var(--black-soft); border-top: 1px solid var(--grey-line); }
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.founder-photo {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4 / 5; border: 1px solid var(--grey-line);
    background: linear-gradient(160deg, var(--anthracite), #0c0c0c);
    display: flex; align-items: flex-end; justify-content: center;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.65)); pointer-events: none; }
.founder-badge {
    position: absolute; left: 22px; bottom: 22px;
    background: rgba(10,10,10,0.8); backdrop-filter: blur(6px);
    border: 1px solid var(--grey-line); border-radius: 10px;
    padding: 12px 18px;
}
.founder-badge .n { font-family: var(--font-head); font-size: 1.05rem; }
.founder-badge .r { font-size: 0.76rem; color: var(--gold); letter-spacing: 0.08em; }

.founder-body h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 22px; }
.founder-body p { color: var(--muted); margin-bottom: 18px; }
.founder-body .signature { font-family: var(--font-head); font-style: italic; color: var(--gold); font-size: 1.25rem; margin-top: 10px; }
.founder-quote {
    border-left: 2px solid var(--gold); padding-left: 22px; margin: 28px 0;
    font-family: var(--font-head); font-size: 1.2rem; color: var(--light);
}

/* ==================================================================
   Voor wie
   ================================================================== */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; }
.audience-card { padding: 44px; border-radius: var(--radius); border: 1px solid var(--grey-line); background: var(--anthracite); }
.audience-card h3 { font-size: 1.6rem; margin-bottom: 18px; }
.audience-card ul { list-style: none; }
.audience-card li { padding: 12px 0 12px 34px; position: relative; color: var(--muted); border-bottom: 1px solid var(--grey-line); }
.audience-card li:last-child { border-bottom: none; }
.audience-card li::before {
    content: ''; position: absolute; left: 0; top: 18px;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(212,175,55,0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* ==================================================================
   Quote band met sfeerfoto
   ================================================================== */
.quote-band {
    position: relative; padding: 150px 0; text-align: center;
    background-image: url("../img/sfeer-pad.png");
    background-size: cover; background-position: center 35%;
    background-repeat: no-repeat;
}
.quote-band::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.78), rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.85));
}
.quote-band .container { position: relative; z-index: 1; }
.quote-band h2 {
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    max-width: 820px; margin: 0 auto; line-height: 1.25;
}
.quote-band h2 span { color: var(--gold); }
.quote-band .sub {
    color: var(--gold); margin-top: 22px; letter-spacing: 0.28em;
    text-transform: uppercase; font-size: 0.78rem; font-weight: 600;
}

/* ==================================================================
   CTA band
   ================================================================== */
.cta-band { text-align: center; background:
    radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.12), transparent 65%), var(--black-soft);
    border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 22px; }
.cta-band p { color: var(--muted); max-width: 540px; margin: 0 auto 36px; }

/* ==================================================================
   Footer
   ================================================================== */
.site-footer { background: var(--black); border-top: 1px solid var(--grey-line); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-about p { color: var(--muted); font-size: 0.92rem; margin: 18px 0; max-width: 320px; }
.footer-about .logo { margin-bottom: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--grey-line); color: var(--muted-soft); font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--muted); }
.socials { display: flex; gap: 14px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--grey-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: .25s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

/* ==================================================================
   Reveal animatie
   ================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ==================================================================
   Binnenpaginas (kop, cursussen, detail, vragen, contact)
   ================================================================== */
.container-narrow { max-width: 820px; }

/* Paginakop */
.page-hero { position: relative; padding: 180px 0 70px; overflow: hidden; }
.page-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(212,175,55,0.16), transparent 55%),
        linear-gradient(180deg, #0E0C07, #0A0A0A 70%);
    border-bottom: 1px solid var(--grey-line);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 10px 0 18px; }
.page-hero-intro { color: var(--muted); max-width: 640px; font-size: 1.08rem; }

/* Filterbalk */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }
.filter-pill {
    padding: 10px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
    border: 1px solid var(--grey-line); color: var(--muted); transition: .25s;
}
.filter-pill:hover { border-color: var(--gold); color: var(--gold); }
.filter-pill.active { background: var(--gold-gradient); color: #1A1205; border-color: transparent; font-weight: 600; }

/* Cursusoverzicht */
.course-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.course-list-card {
    display: flex; flex-direction: column; overflow: hidden;
    border: 1px solid var(--grey-line); border-radius: var(--radius);
    background: linear-gradient(160deg, var(--anthracite), var(--black-soft));
    transition: transform .35s ease, border-color .35s ease;
}
.course-list-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); }
.clc-media {
    position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center;
    background-color: #121212; display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--grey-line);
}
.clc-watermark { width: 54px; height: 54px; color: rgba(212,175,55,0.35); }
.clc-cat {
    position: absolute; top: 14px; left: 14px;
    background: rgba(10,10,10,0.75); backdrop-filter: blur(4px);
    border: 1px solid var(--grey-line); border-radius: 50px;
    padding: 5px 14px; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--gold);
}
.clc-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.clc-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.clc-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }
.clc-meta { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.clc-meta span { font-size: 0.74rem; color: var(--muted); border: 1px solid var(--grey-line); border-radius: 50px; padding: 4px 12px; }
.clc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--grey-line); }
.clc-price { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold); }
.clc-more { color: var(--light); font-size: 0.84rem; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.clc-more svg { width: 14px; height: 14px; transition: transform .25s ease; }
.course-list-card:hover .clc-more svg { transform: translateX(4px); }
.course-list-card:hover .clc-more { color: var(--gold); }

/* Lege staat */
.empty-state { text-align: center; padding: 70px 20px; border: 1px dashed var(--grey-line); border-radius: var(--radius); }
.empty-state .ico { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--muted-soft); }
.empty-state .ico svg { width: 100%; height: 100%; }
.empty-state h3 { font-size: 1.4rem; margin-bottom: 10px; }
.empty-state p { color: var(--muted); max-width: 420px; margin: 0 auto; }

/* Cursusdetail */
.crumbs { display: flex; gap: 10px; font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); } .crumbs a:hover { color: var(--gold); }
.course-hero-meta { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.chm { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); border: 1px solid var(--grey-line); border-radius: 50px; padding: 8px 16px; }
.chm svg { width: 16px; height: 16px; color: var(--gold); }

.course-layout { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }
.course-block { margin-bottom: 44px; }
.course-block h2 { font-size: 1.7rem; margin-bottom: 18px; }
.course-block p { color: var(--muted); }
.course-promise { padding: 30px; border: 1px solid var(--grey-line); border-radius: var(--radius); background: var(--black-soft); }
.benefit-list { list-style: none; }
.benefit-list li { position: relative; padding: 14px 0 14px 38px; border-bottom: 1px solid var(--grey-line); color: var(--light); }
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before {
    content: ''; position: absolute; left: 0; top: 16px; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(212,175,55,0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 13px; background-repeat: no-repeat; background-position: center;
}

/* Koopkaart */
.course-aside { position: sticky; top: 100px; }
.course-cover { margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-line); aspect-ratio: 16 / 9; background: #121212; }
.course-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.buy-card { border: 1px solid var(--grey-line); border-radius: var(--radius); background: linear-gradient(160deg, var(--anthracite), var(--black-soft)); padding: 32px; }
.buy-price { display: flex; align-items: baseline; gap: 4px; }
.bp-cur { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); }
.bp-num { font-family: var(--font-head); font-size: 3rem; color: var(--gold); line-height: 1; }
.bp-note { color: var(--muted); font-size: 0.85rem; margin: 6px 0 22px; text-transform: uppercase; letter-spacing: 0.1em; }
.btn-block { width: 100%; justify-content: center; }
.buy-secure { text-align: center; font-size: 0.78rem; color: var(--muted-soft); margin-top: 12px; }
.buy-perks { list-style: none; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--grey-line); }
.buy-perks li { position: relative; padding: 9px 0 9px 28px; font-size: 0.9rem; color: var(--muted); }
.buy-perks li::before {
    content: ''; position: absolute; left: 0; top: 12px; width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
}

/* Waardenkaarten (over ons) */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 54px; }
.value-card { padding: 32px 26px; border: 1px solid var(--grey-line); border-radius: var(--radius); background: var(--anthracite); }
.value-card h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

/* FAQ accordion */
.faq-list { border-top: 1px solid var(--grey-line); }
.faq-item { border-bottom: 1px solid var(--grey-line); }
.faq-q {
    width: 100%; background: none; border: none; cursor: pointer; color: var(--light);
    font-family: var(--font-body); font-size: 1.08rem; font-weight: 500; text-align: left;
    padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-q svg { width: 22px; height: 22px; color: var(--gold); flex: none; transition: transform .3s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 26px; color: var(--muted); }
.faq-cta { text-align: center; margin-top: 70px; padding: 50px; border: 1px solid var(--grey-line); border-radius: var(--radius); background: var(--black-soft); }
.faq-cta h3 { font-size: 1.6rem; margin-bottom: 10px; }
.faq-cta p { color: var(--muted); margin-bottom: 26px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.9rem; margin-bottom: 10px; }
.contact-lead { color: var(--muted); margin-bottom: 32px; }
.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--grey-line); }
.ci-ico { width: 44px; height: 44px; flex: none; border-radius: 10px; border: 1px solid rgba(212,175,55,0.35); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.ci-ico svg { width: 20px; height: 20px; }
.ci-label { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-soft); margin-bottom: 3px; }
.contact-details a:hover { color: var(--gold); }
.contact-quote { margin-top: 32px; padding-left: 20px; border-left: 2px solid var(--gold); font-family: var(--font-head); font-size: 1.15rem; color: var(--light); }

.contact-form-wrap { border: 1px solid var(--grey-line); border-radius: var(--radius); background: var(--anthracite); padding: 40px; }
.contact-form-wrap h2 { font-size: 1.7rem; margin-bottom: 24px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
    width: 100%; background: var(--black); border: 1px solid var(--grey-line); border-radius: 10px;
    padding: 14px 16px; color: var(--light); font-family: var(--font-body); font-size: 0.95rem; transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; }
.form-errors { background: rgba(220,60,60,0.1); border: 1px solid rgba(220,60,60,0.4); border-radius: 10px; padding: 14px 18px; margin-bottom: 22px; color: #f3b5b5; font-size: 0.9rem; }
.form-errors div { padding: 2px 0; }
.form-success { text-align: center; padding: 30px 10px; }
.fs-ico { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.fs-ico svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--muted); }

/* ==================================================================
   Manifest
   ================================================================== */
.manifesto-band {
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08), transparent 60%), var(--black-soft);
    border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line);
}
.manifesto { margin-top: 10px; }
.manifesto p { color: var(--muted); font-size: 1.06rem; margin-bottom: 20px; }
.manifesto p:last-child { margin-bottom: 0; }
.manifesto .accent {
    font-family: var(--font-head); font-size: clamp(1.2rem, 2.3vw, 1.55rem);
    color: var(--light); line-height: 1.45;
}
.manifesto-full { text-align: left; margin-top: 24px; }
.manifesto-full .accent { color: var(--gold); }
.manifesto-close {
    font-family: var(--font-head); font-size: clamp(1.35rem, 3vw, 2rem);
    color: var(--muted); margin-top: 34px; line-height: 1.3;
}
.manifesto-close span { color: var(--gold); display: block; }
.manifesto-welcome {
    margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--grey-line); text-align: center;
}
.manifesto-welcome p {
    font-family: var(--font-head); font-size: clamp(1.2rem, 2.6vw, 1.55rem);
    color: var(--light); line-height: 1.4;
}

/* ==================================================================
   Trajecten (coaching)
   ================================================================== */
.traject-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.to-card {
    position: relative; text-align: center; padding: 32px 24px;
    border: 1px solid var(--grey-line); border-radius: var(--radius);
    background: linear-gradient(160deg, var(--anthracite), var(--black-soft));
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    transition: transform .3s ease, border-color .3s ease;
}
.to-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.45); }
.to-card.featured { border-color: rgba(212,175,55,0.55); }
.to-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold-gradient); color: #1A1205; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px;
}
.to-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--light); }
.to-price { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); line-height: 1.1; }
.to-note { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-soft); }
.to-dur { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

.traject { border-top: 1px solid var(--grey-line); scroll-margin-top: 90px; }
.traject:nth-of-type(even) { background: var(--black-soft); }
.traject-featured { background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08), transparent 60%), var(--black-soft) !important; }
.traject-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.traject-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.traject-tagline { color: var(--gold); font-family: var(--font-head); font-style: italic; font-size: 1.15rem; margin-top: 8px; }
.traject-price { text-align: right; }
.tp-amount { display: block; font-family: var(--font-head); font-size: 2.6rem; color: var(--light); line-height: 1; }
.tp-note { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
.tp-note .dot-sep { margin: 0 8px; color: var(--gold); }

.traject-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.traject-intro p { color: var(--muted); margin-bottom: 16px; }
.traject-intro h3 { font-size: 1.2rem; margin: 30px 0 16px; }
.traject-card { border: 1px solid var(--grey-line); border-radius: var(--radius); background: var(--anthracite); padding: 32px; position: sticky; top: 100px; }
.traject-card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.traject-closing { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--grey-line); color: var(--muted); font-size: 0.9rem; }

/* Gedeelde vinklijst */
.check-list { list-style: none; }
.check-list li { position: relative; padding: 10px 0 10px 32px; color: var(--light); font-size: 0.95rem; }
.check-list li::before {
    content: ''; position: absolute; left: 0; top: 12px; width: 20px; height: 20px; border-radius: 50%;
    background: rgba(212,175,55,0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ==================================================================
   Responsive
   ================================================================== */
@media (max-width: 980px) {
    .founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .course-list { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .course-layout { grid-template-columns: 1fr; gap: 36px; }
    .course-aside { position: static; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .traject-body { grid-template-columns: 1fr; gap: 30px; }
    .traject-card { position: static; }
}
@media (max-width: 820px) {
    .main-nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
        background: var(--anthracite); border-left: 1px solid var(--grey-line);
        flex-direction: column; padding: 100px 30px 40px; transform: translateX(100%);
        transition: transform .35s ease; z-index: 90; overflow-y: auto; }
    /* verduistert de pagina achter het menu zonder extra element */
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
    .main-nav li { width: 100%; }
    .main-nav a { display: block; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--grey-line); }
    .dropdown, .has-drop:hover .dropdown {
        position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
        background: transparent; border: none; padding: 0 0 6px 14px; min-width: 0; display: none; }
    .dropdown::before { display: none; }
    .has-drop.open .dropdown { display: block; }
    .has-drop .drop-toggle { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--grey-line); justify-content: space-between; }
    .hamburger { display: flex; z-index: 95; }
    .nav-cta { margin-left: auto; }
    .nav-cta .btn { display: none; }
    .nav-mobile-cta {
        display: inline-flex; margin-top: 30px;
        justify-content: center; align-self: stretch;
        padding: 15px 32px; font-size: 0.95rem;
    }
}
@media (max-width: 620px) {
    .section { padding: 80px 0; }
    .quote-band { background-attachment: scroll; padding: 100px 0; }
    .hero h1 { white-space: normal; }
    .hero-stats .stat { padding: 0 22px; }
    .course-list { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .page-hero { padding: 150px 0 60px; }
    .contact-form-wrap { padding: 28px; }
    .courses-grid, .audience-grid { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr; }
    .traject-overview { grid-template-columns: 1fr; gap: 26px; }
    .traject-price { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 28px; }
    .hero-lion { display: none; }
}
