/* =============================================================
   arjenhouweling.nl  —  v2 stylesheet
   Schoon en modern, behoudt blauw/wit uitstraling en Open Sans
   ============================================================= */

/* --- Design tokens ------------------------------------------ */
:root {
    --primary:        #2563EB;   /* dieper, eigentijdser blauw */
    --primary-dark:   #1D4ED8;
    --primary-soft:   #EFF6FF;

    --ink:            #0F172A;
    --ink-soft:       #334155;
    --ink-muted:      #64748B;
    --ink-faded:      #94A3B8;

    --paper:          #FFFFFF;
    --paper-alt:      #F8FAFC;
    --paper-border:   #E2E8F0;

    --accent:         #F59E0B;   /* warm accent (RouteGGN highlight) */

    --font-body:      'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --maxw:           1180px;
    --gutter:         clamp(1.25rem, 4vw, 2.5rem);
    --radius:         8px;
    --radius-lg:      14px;

    --nav-h:          72px;
}

/* --- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 1rem);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); }
a:hover { color: var(--primary-dark); }

p { margin: 0 0 1.1rem; }

h1, h2, h3 { color: var(--ink); margin-top: 0; }

/* --- Accessibility ------------------------------------------ */
.skip-link {
    position: absolute;
    left: 0; top: 0;
    background: var(--ink);
    color: white;
    padding: .5rem 1rem;
    transform: translateY(-110%);
    transition: transform .2s;
    z-index: 200;
    border-radius: 0 0 6px 0;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --- Container ----------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--paper-border);
    z-index: 100;
}

.navbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.navbar__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.75rem;
}

.navbar__menu a {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    padding: .5rem 0;
    position: relative;
    transition: color .15s ease;
}

.navbar__menu a:hover,
.navbar__menu a.active { color: var(--primary); }

.navbar__menu a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.navbar__toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.navbar__toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .2s, opacity .2s;
}

@media (max-width: 820px) {
    .navbar__toggle { display: block; }
    .navbar__menu {
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: white;
        border-bottom: 1px solid var(--paper-border);
        padding: 1rem 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }
    .navbar__menu.is-open {
        max-height: 500px;
    }
    .navbar__menu li {
        border-bottom: 1px solid var(--paper-border);
    }
    .navbar__menu li:last-child { border-bottom: none; }
    .navbar__menu a {
        display: block;
        padding: .9rem 0;
    }
    .navbar__menu a.active::after { display: none; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--paper) 100%);
    overflow: hidden;
}

/* --- Splashy background uit het origineel ---
   De verfspat-afbeelding zit links-boven, vanachter de tekst.
   Op mobiel verkleinen we hem zodat hij niet de leesbaarheid stoort. */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(640px, 70%);
    height: min(480px, 60%);
    background: url('/img/bg-header.png') left top no-repeat;
    background-size: contain;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 720px) {
    .hero::before {
        width: min(420px, 80%);
        height: 280px;
        opacity: 0.5;
    }
}

/* Zorg dat de content boven de splash zit */
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

@media (max-width: 860px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__portrait { max-width: 380px; margin: 0 auto; }
}

.hero__greeting {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 .5rem;
}

.hero__name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0 0 1rem;
}

.hero__roles {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--ink-soft);
    min-height: 1.6em;
    margin: 0 0 2.5rem;
}

.hero__cursor {
    display: inline-block;
    color: var(--primary);
    animation: blink 1s steps(2) infinite;
    margin-left: 2px;
    font-weight: 400;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* --- Boek-teaser in hero --- */
.hero__teaser {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    border: 1px solid var(--paper-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.hero__teaser-cover {
    flex-shrink: 0;
    width: 90px;
    aspect-ratio: 2 / 3;
    background: var(--ink);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(15, 23, 42, .12), 0 1px 2px rgba(15, 23, 42, .08);
    position: relative;
}

.hero__teaser-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teaser-cover-placeholder {
    position: absolute;
    inset: 0;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: white;
}

.teaser-cover-placeholder__top {
    font-size: 6px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink-faded);
}

.teaser-cover-placeholder__title {
    font-size: 12px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.teaser-cover-placeholder__sub {
    font-size: 7px;
    color: var(--ink-faded);
    letter-spacing: .15em;
}

.hero__teaser-text { flex: 1; min-width: 0; }

.hero__teaser-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary);
    margin-bottom: .5rem;
}

.hero__teaser-pitch {
    margin: 0 0 .75rem;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
}

.hero__teaser-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap .15s ease, color .15s ease;
}

.hero__teaser-link:hover {
    color: var(--primary-dark);
    gap: .65rem;
}

@media (max-width: 520px) {
    .hero__teaser { flex-direction: column; align-items: flex-start; }
    .hero__teaser-cover { width: 80px; }
}

/* --- Showcase blok (RouteGGN, gebruikt in Over mij) --- */
.showcase {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--paper-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.showcase__text { flex: 1; min-width: 0; }

.showcase__text p {
    margin: 0 0 .65rem;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.showcase__text strong { color: var(--ink); }

.showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--primary);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background .15s;
}

.btn-play:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.btn-play__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 9px;
    padding-left: 2px;
}

@media (max-width: 480px) {
    .showcase { flex-direction: column; align-items: flex-start; }
}

/* --- Portret --- */
.hero__portrait { margin: 0; }
.hero__portrait-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 11px 22px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s, background .15s, color .15s, border-color .15s;
    border-radius: 6px;
    font-family: inherit;
    line-height: 1.2;
}

.btn--primary {
    background: var(--primary);
    color: white;
}

.btn--primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.btn--lg {
    padding: 14px 28px;
    font-size: 15.5px;
}

/* =============================================================
   SECTIONS — gemeenschappelijk
   ============================================================= */
.section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section--alt { background: var(--paper-alt); }

.section__head {
    margin-bottom: 3rem;
    max-width: 720px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    margin-bottom: .5rem;
}

.section__title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
}

.lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

/* =============================================================
   BOEK
   ============================================================= */
.section--book { background: var(--paper-alt); }

.book__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

@media (max-width: 760px) {
    .book__grid { grid-template-columns: 1fr; }
    .book__cover-wrap { max-width: 240px; margin: 0 auto; }
}

.book__cover {
    aspect-ratio: 2 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--ink);
    color: white;
    box-shadow:
        0 8px 16px rgba(15, 23, 42, .15),
        0 2px 4px rgba(15, 23, 42, .08);
    position: relative;
}

.cover-placeholder {
    position: absolute;
    inset: 0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.cover-placeholder__top {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-faded);
    align-self: center;
}

.cover-placeholder__title {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: white;
}

.cover-placeholder__sub {
    font-size: 11px;
    color: var(--ink-faded);
    letter-spacing: .12em;
    align-self: center;
    text-transform: lowercase;
}

.book__meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.75rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--paper-border);
    border-bottom: 1px solid var(--paper-border);
}

.book__meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.book__meta-label {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.book__meta-value {
    font-size: 15.5px;
    color: var(--ink);
    font-weight: 600;
}

/* --- Mailerlite formulier --- */
.signup {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--paper-border);
    border-radius: var(--radius);
    position: relative;
}

.signup__label {
    display: block;
    font-size: 17px;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 1rem;
}

.signup__row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.signup__input {
    flex: 1 1 220px;
    padding: 11px 14px;
    font-size: 15px;
    border: 1px solid var(--paper-border);
    background: white;
    color: var(--ink);
    border-radius: 6px;
    font-family: inherit;
}

.signup__input::placeholder { color: var(--ink-faded); }

.signup__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

.signup__small {
    font-size: 13px;
    color: var(--ink-muted);
    margin: .85rem 0 0;
    line-height: 1.55;
}

/* Error-melding onder formulier */
.signup__error {
    margin: .75rem 0 0;
    padding: .65rem .85rem;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: 6px;
    color: #991B1B;
    font-size: 13.5px;
    line-height: 1.5;
}

/* Loading state op de inschrijfknop */
.btn[disabled] {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}

/* Succes-blok dat na inschrijving het formulier vervangt */
.signup-success {
    margin-top: 1.5rem;
    padding: 2rem 1.75rem;
    background: white;
    border: 1px solid var(--paper-border);
    border-left: 4px solid #059669;
    border-radius: var(--radius);
    text-align: left;
}

.signup-success__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ECFDF5;
    color: #059669;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.signup-success__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 .65rem;
    letter-spacing: -0.01em;
}

.signup-success p {
    margin: 0;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* =============================================================
   OVER MIJ
   ============================================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

@media (max-width: 760px) {
    .about__grid { grid-template-columns: 1fr; }
}

.about__years {
    display: inline-flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: 1rem;
}

.about__years-num {
    font-size: 80px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.04em;
}

.about__years-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.about__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}

.about__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.about__list li {
    padding: .65rem 0;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    color: var(--ink);
    font-size: 15.5px;
    border-top: 1px solid var(--paper-border);
}

.about__list li:last-child { border-bottom: 1px solid var(--paper-border); }

.about__check {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__side {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--paper-border);
}

.about__side p:last-child { margin-bottom: 0; }

/* =============================================================
   VIBETHINKING
   ============================================================= */
.section--vibe {
    background: linear-gradient(180deg, var(--paper) 0%, var(--primary-soft) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtiele gele spat als echo van de hero */
.section--vibe::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -80px;
    width: 360px;
    height: 280px;
    background: url('/img/bg-header.png') right top no-repeat;
    background-size: contain;
    opacity: 0.35;
    transform: scaleX(-1); /* spiegelen zodat hij rechts-boven energie geeft */
    pointer-events: none;
    z-index: 0;
}

.section__head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section__head--center .section__lead {
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
    color: var(--ink-soft);
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0;
}

.section__head--center .section__lead em {
    color: var(--primary);
    font-style: italic;
    font-weight: 700;
}

.vibe__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-top: 2.5rem;
}

@media (max-width: 820px) {
    .vibe__grid { grid-template-columns: 1fr; }
}

.vibe__text .lead {
    font-size: 20px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.vibe__text p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
}

.vibe__text strong {
    color: var(--ink);
    font-weight: 700;
}

.vibe__cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--paper-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.vibe__cta-note {
    margin: 1rem 0 0;
    font-size: 13.5px;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* Rechterkolom — de drie vormen */
.vibe__forms-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-muted);
    margin: 0 0 1.25rem;
}

.vibe-form {
    background: white;
    border: 1px solid var(--paper-border);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.1rem 1.25rem;
    margin-bottom: .85rem;
    transition: transform .15s, border-left-color .15s;
}

.vibe-form:hover {
    transform: translateX(2px);
    border-left-color: var(--primary-dark);
}

.vibe-form:nth-child(2) { border-left-color: var(--primary); }
.vibe-form:nth-child(3) { border-left-color: #6366F1; }
.vibe-form:nth-child(4) { border-left-color: var(--accent); }

.vibe-form__tag {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .35rem;
}

.vibe-form p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* =============================================================
   INNOVATIESESSIES
   ============================================================= */
.sessions__intro {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-bottom: 3rem;
}

@media (max-width: 760px) {
    .sessions__intro { grid-template-columns: 1fr; }
}

.image-placeholder {
    aspect-ratio: 4 / 3;
    background: white;
    border: 2px dashed var(--paper-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-faded);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* --- Pullquote — vervangt de denktank-placeholder --- */
.pullquote {
    position: relative;
    margin: 0;
    padding: 1.5rem 2rem 1.5rem 4.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.pullquote__mark {
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    color: #FCC433;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.pullquote p {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 1rem;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.pullquote p em {
    font-style: italic;
    color: var(--ink);
}

.pullquote p:last-of-type { margin-bottom: 1.25rem; }

.pullquote footer {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: .04em;
    font-style: normal;
}

@media (max-width: 760px) {
    .pullquote {
        padding: 1rem 0.5rem 1rem 3rem;
    }
    .pullquote__mark {
        font-size: 6rem;
        top: -0.25rem;
        left: 0;
    }
}

/* --- Stappen --- */
.sessions__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    counter-reset: session-step;
}

/* Drie-blokken variant: bij voorkeur 3 kolommen op desktop */
.sessions__steps--three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .sessions__steps--three { grid-template-columns: 1fr; }
}

.session-step {
    background: white;
    border: 1px solid var(--paper-border);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform .2s, box-shadow .2s;
}

.session-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}

/* Disney-figuren — elk een eigen kleur-accent */
.session-step--optimist  { border-top-color: #F59E0B; } /* warm geel/oranje — verbeelding */
.session-step--pessimist { border-top-color: #DC2626; } /* rood — kritisch prikken */
.session-step--realist   { border-top-color: #059669; } /* groen — doorzetten */

.session-step--optimist .step-icon  { color: #B45309; }
.session-step--pessimist .step-icon { color: #B91C1C; }
.session-step--realist .step-icon   { color: #047857; }

/* --- Spat-icoon uit het origineel ---
   Gebruikt /img/bg-icon.png (paars-gele spat) als achtergrond achter
   het SVG-icoon. Net als in de oude site. */
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: url('/img/bg-icon.png') center center no-repeat;
    background-size: contain;
    color: var(--ink);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.step-icon svg {
    display: block;
    width: 32px;
    height: 32px;
}

/* Rol-naam ('De Optimist') vervangt het volgnummer */
.session-step__num {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .65rem;
}

.session-step--optimist  .session-step__num { color: #B45309; }
.session-step--pessimist .session-step__num { color: #B91C1C; }
.session-step--realist   .session-step__num { color: #047857; }

.session-step__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 .5rem;
    letter-spacing: -0.01em;
}

.session-step__lead {
    font-size: 15.5px;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 .85rem;
}

.session-step p:last-child { margin-bottom: 0; }

/* --- Aanvraag-formulier --- */
.sessions__cta {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--paper-border);
    padding: clamp(1.75rem, 4vw, 2.5rem);
}

.sessions__cta h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    margin: 0 0 .75rem;
    color: var(--ink);
}

.sessions__cta > p {
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 1.75rem;
}

.request-form { position: relative; }

.request-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 560px) {
    .request-form__row { grid-template-columns: 1fr; }
}

.field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 1rem;
}

.field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

.field__opt {
    color: var(--ink-muted);
    font-weight: 400;
}

.field input,
.field textarea {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid var(--paper-border);
    background: white;
    color: var(--ink);
    border-radius: 6px;
    font-family: inherit;
    line-height: 1.5;
    transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

.field textarea { resize: vertical; min-height: 120px; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.contact__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 1.5rem 1.5rem;
    background: white;
    border: 1px solid var(--paper-border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--ink);
    transition: transform .15s, border-color .15s, background .15s;
    position: relative;
}

.contact__card:hover:not(.contact__card--static) {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--ink);
}

.contact__card--static { cursor: default; }

.contact__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact__value {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.contact__card:hover:not(.contact__card--static) .contact__value {
    color: var(--primary);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
    border-top: 1px solid var(--paper-border);
    background: var(--paper-alt);
    padding: 2.5rem 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy,
.footer__meta {
    margin: 0;
    font-size: 13.5px;
    color: var(--ink-muted);
}

.footer__meta { font-weight: 600; }

/* =============================================================
   MODAL — video
   ============================================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.is-open { display: flex; }

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .6);
}

.modal__dialog {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(15, 23, 42, .3);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--paper-border);
}

.modal__header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.modal__close {
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 0 8px;
}

.modal__close:hover { color: var(--ink); }

.modal__body { padding: 0; }

.modal__video {
    aspect-ratio: 16 / 9;
    background: black;
}

.modal__video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero__cursor { animation: none; }
}

/* =============================================================
   PRINT
   ============================================================= */
@media print {
    .navbar, .footer, .modal, .signup, .sessions__cta, .btn-play {
        display: none !important;
    }
    body { color: black; background: white; }
    .hero { padding-top: 0; background: white; }
}
