/* ============================================================
   GGZ Innovatie Academy — Stylesheet v4
   Japandi-geïnspireerd: mistig blauwgrijs, veel wit, zachte schaduwen, geen harde contrasten.
   Newsreader (koppen, quotes) + DM Sans (body, ui)
   ============================================================ */

:root {
  --deep: #314A59;        /* mistig blauwgrijs — koppen, primaire knoppen, donkere secties */
  --deep-2: #222F37;      /* dieper blauwgrijs — footer */
  --deep-light: #3E5A6B;  /* iets lichter blauwgrijs — knop-hover, geen harde contrasten */
  --accent: #6E8793;      /* subtiele accentkleur — links, kleine highlights */
  --ink: #2B3A42;         /* lichaamstekst, koel donker leisteen */
  --muted: #64777F;       /* secundaire tekst */
  --paper: #FFFFFF;
  --bg: #FAFBFB;          /* bijna-wit paginabasis */
  --mist: #EEF3F5;        /* licht blauwgrijs — afwisselende secties */
  --mist-2: #E7EEF0;
  --line: #DCE6EA;        /* haarlijnen */
  --line-soft: #E4ECEE;

  --serif: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1240px;
  --max-narrow: 760px;
  --max-text: 640px;

  --radius-lg: 28px;
  --radius: 18px;
  --radius-sm: 3px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow { max-width: var(--max-narrow); }
.container-text { max-width: var(--max-text); margin-left: auto; margin-right: auto; }
.container-text.left { margin-left: 0; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--deep);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Newsreader heeft een variabele opsz-as (6-72). Vastzetten op een gematigde
   waarde houdt de letters rustig en klassiek, ook in grote koppen. */
h1, h2,
.statement p,
.wide-quote blockquote,
.path-row h3,
.feature-split-body h3,
.exec-title,
.leerlijn-title,
.stat-num,
.mod-num,
.price-panel .price,
.exec-price,
.contact-line,
.editorial-list .el-label,
.flowing-statement strong {
  font-optical-sizing: none;
  font-variation-settings: "opsz" 40;
}

h1 { font-size: clamp(3.2rem, 8.6vw, 7.6rem); font-weight: 500; line-height: 0.98; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.12; }
h3 { font-family: var(--sans); font-size: 1.22rem; font-weight: 700; color: var(--deep); letter-spacing: 0; }
h4 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--deep); letter-spacing: 0; }

p { margin: 0; }

.lead {
  font-family: var(--sans);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
}

.body-text {
  font-size: 1.06rem;
  color: var(--ink);
  line-height: 1.8;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
  display: block;
}
.eyebrow.on-deep { color: rgba(255,255,255,0.62); }

.editorial-link {
  color: var(--deep);
  font-weight: 600;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.editorial-link:hover { border-color: var(--deep); gap: 12px; }
.editorial-link .arrow { transition: transform 0.25s var(--ease); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 1.05rem 2.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary { background: var(--deep); color: var(--paper); }
.btn-primary:hover { background: var(--deep-light); }

.btn-outline { background: transparent; border-color: var(--line); color: var(--deep); }
.btn-outline:hover { border-color: var(--deep); background: var(--mist); }

.btn-on-deep { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--paper); }
.btn-on-deep:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }

.btn-ghost { padding: 1.05rem 0; color: var(--paper); border-bottom: 1px solid rgba(255,255,255,0.5); border-radius: 0; }
.btn-ghost:hover { border-color: var(--paper); }

.arrow { display: inline-block; transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-block { display: flex; justify-content: center; width: 100%; }
.btn-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.btn-row-center { justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--deep);
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.logo-img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; display: block; }
.logo-footer .logo-img { width: 34px; height: 34px; }
.logo-footer { font-size: 0.9rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--deep); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 0.75rem 1.6rem; font-size: 0.85rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255,250,235,0.16) 0%, rgba(255,250,235,0.06) 24%, rgba(255,250,235,0) 46%),
    linear-gradient(180deg, rgba(13,36,34,0.16) 0%, rgba(13,36,34,0.2) 40%, rgba(13,36,34,0.7) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 40px 9rem;
  max-width: 920px;
}

.hero-inner .eyebrow { color: rgba(255,255,255,0.7); }

.hero-inner h1 {
  color: var(--paper);
  font-size: clamp(3rem, 8vw, 6.8rem);
  margin-bottom: 3.2rem;
  max-width: 14ch;
}

/* Op desktop reflowt de titel vanzelf; de handmatige <br class="mobile-break">
   in de markup dienen alleen om op mobiel een prettigere regelverdeling te krijgen. */
@media (min-width: 861px) {
  .hero-inner h1 br.mobile-break { display: none; }
}

/* ---------- Sections ---------- */

.section { padding: 8.5rem 0; position: relative; }
.section-tight { padding: 6rem 0; }
.section-alt { background: var(--mist); }
.section-flush-bottom { padding-bottom: 3rem; }
.section-flush-top { padding-top: 3rem; }
.section-deep { background: var(--deep); color: rgba(255,255,255,0.9); }
.section-deep h2 { color: var(--paper); }

.section-head { max-width: 640px; margin-bottom: 3.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.lead { margin-top: 1.3rem; }

.hr-line { height: 1px; background: var(--line); border: none; margin: 0; }

/* ---------- Trust strip ---------- */

.trust-band { padding: 4.5rem 0 3.5rem; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { padding: 0 2.2rem; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-item h4 { margin-bottom: 0.7rem; font-size: 1rem; }
.trust-item p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

/* ---------- Editorial statement block ---------- */

.statement {
  max-width: 780px;
}
.statement.center { margin: 0 auto; text-align: center; }
.statement p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.35;
}
.statement p + p { margin-top: 1.4rem; }

/* ---------- Waar ben je naar op zoek: editorial index ---------- */

.path-list { border-top: 1px solid var(--line); }
.path-row {
  display: grid;
  grid-template-columns: 2.4fr 3fr auto;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.path-row:hover { padding-left: 0.6rem; }
.path-row h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--deep); }
.path-row p { color: var(--muted); font-size: 0.98rem; }
.path-row .editorial-link { justify-self: end; white-space: nowrap; }

@media (max-width: 760px) {
  .path-row { grid-template-columns: 1fr; gap: 0.8rem; text-align: left; }
  .path-row .editorial-link { justify-self: start; }
}

/* ---------- Feature split (afbeelding / tekst, alternerend) ---------- */

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5.5rem;
  align-items: center;
}
.feature-split.reverse .feature-split-media { order: 2; }
.feature-split.reverse .feature-split-body { order: 1; }

.feature-split-media { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius-lg); }
.feature-split-media img,
.feature-split-media .bg { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center 40%; }

.feature-split-body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.9rem; color: var(--deep); margin-bottom: 1.3rem; }
.feature-split-body > p { color: var(--ink); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.6rem; }

.feature-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.8rem; margin: 0 0 2rem; padding: 1.6rem 0 0; border-top: 1px solid var(--line); }
.feature-facts li { font-size: 0.88rem; font-weight: 600; color: var(--deep); }

@media (max-width: 960px) {
  .feature-split { grid-template-columns: 1fr; gap: 2.6rem; }
  .feature-split.reverse .feature-split-media,
  .feature-split.reverse .feature-split-body { order: initial; }
  .feature-split-media { aspect-ratio: 16 / 10; }
}

/* ---------- Rustige feature-kolommen (geen kaarten) ---------- */

.quiet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.2rem; }
.quiet-item { }
.quiet-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
.quiet-icon svg { width: 30px; height: 30px; }
.quiet-item h3 { margin-bottom: 0.7rem; font-size: 1.12rem; }
.quiet-item p { color: var(--muted); font-size: 0.98rem; line-height: 1.7; }

@media (max-width: 860px) { .quiet-grid { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ---------- Kwaliteitslijst (tekst + checklist naast elkaar) ---------- */

.split-list { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 5rem; align-items: start; }
.split-list-text > p { margin-bottom: 1.2rem; color: var(--ink); font-size: 1.05rem; line-height: 1.8; }

.quality-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; }
.quality-list li { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.quality-list li:first-child { padding-top: 0; border-top: none; }
.quality-list strong { display: block; color: var(--deep); font-size: 1.05rem; margin-bottom: 0.3rem; font-family: var(--sans); font-weight: 700; }
.quality-list span { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 860px) { .split-list { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ---------- Brede quote (persoonlijk statement) ---------- */

.wide-quote { padding: 11rem 0; }
.wide-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.28;
  color: var(--paper);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.wide-quote-support {
  max-width: 780px;
  margin: 2.4rem auto 0;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.8;
}
.wide-quote-sig {
  display: block;
  margin: 2.6rem auto 0;
  text-align: center;
  font-weight: 700;
  color: var(--paper);
  font-size: 0.95rem;
}
.wide-quote-sig span { display: block; font-weight: 400; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 0.2rem; }

/* ---------- CTA band ---------- */

.cta-band { background: var(--deep); color: var(--paper); padding: 7.5rem 0; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-band h2 { color: var(--paper); margin-bottom: 2.4rem; }
.cta-contact { font-size: 0.92rem; margin-top: 2.2rem; color: rgba(255,255,255,0.6); }
.cta-contact a { color: var(--paper); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.4); }

/* ---------- Footer ---------- */

.site-footer { background: var(--deep-2); color: rgba(255,255,255,0.62); padding: 5.5rem 0 2.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; }
.logo-footer { color: var(--paper); margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 { color: rgba(255,255,255,0.85); font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.55); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 3.5rem; padding-top: 1.8rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

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

/* ---------- Stats rij (donker, editorial) ---------- */

.stats-band { background: var(--deep); color: var(--paper); padding: 4.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.4rem; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--serif); font-size: clamp(2.1rem, 3.4vw, 2.8rem); font-weight: 500; color: var(--paper); line-height: 1; margin-bottom: 0.6rem; }
.stat-label { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
@media (max-width: 680px){ .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2.2rem; } }

/* ---------- Voor wie (professies) — editorial lijst ---------- */

.audience-list { columns: 2; column-gap: 3rem; }
.audience-list li { break-inside: avoid; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--ink); font-weight: 500; }
@media (max-width: 640px){ .audience-list { columns: 1; } }

/* ---------- Vraagstukken (quiet, geen kaarten) ---------- */

.question-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem; margin: 2.8rem 0; padding: 2.6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.question-row .q-num { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); display: block; margin-bottom: 0.9rem; }
.question-row p { font-size: 1.02rem; font-weight: 500; color: var(--deep); line-height: 1.5; }
@media (max-width: 860px){ .question-row { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Vergelijking, zonder tabelkaders ---------- */

.compare-editorial { max-width: 880px; margin: 0 auto; }
.compare-head-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--deep); margin-bottom: 0.4rem; }
.compare-head-row span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-head-row .ch-other { color: var(--muted); }
.compare-head-row .ch-us { color: var(--deep); }
.compare-editorial-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.compare-editorial-row .c-no { color: var(--muted); font-size: 0.98rem; }
.compare-editorial-row .c-yes { color: var(--deep); font-weight: 600; font-size: 0.98rem; }
@media (max-width: 640px){ .compare-head-row, .compare-editorial-row { grid-template-columns: 1fr; gap: 0.4rem; } .compare-editorial-row { padding: 1rem 0; } }

/* ---------- Programma / modules — editorial lijst ---------- */

.leerlijn { margin-bottom: 3.4rem; }
.leerlijn:last-child { margin-bottom: 0; }
.leerlijn-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--deep); margin-bottom: 1.4rem; }
.module-list { list-style: none; margin: 0; padding: 0; }
.module-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 1rem; line-height: 1.5; align-items: baseline; }
.leerlijn .module-list li:last-child { border-bottom: 1px solid var(--line); }
.mod-num { font-family: var(--serif); color: var(--muted); font-size: 0.95rem; }

/* ---------- Kijkje in de training — fotoreportage ---------- */

.photo-essay { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.4rem; }
.photo-essay-main { grid-row: span 2; }
.photo-essay figure { margin: 0; }
.photo-essay img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }
.photo-essay-main img { aspect-ratio: 4/3.1; }
.photo-essay-side img { aspect-ratio: 4/3.4; }
.photo-essay figcaption { margin-top: 1rem; font-size: 0.92rem; color: var(--muted); font-style: italic; line-height: 1.6; }
@media (max-width: 860px){ .photo-essay { grid-template-columns: 1fr; } .photo-essay-main { grid-row: auto; } }
.photo-essay-quad { grid-template-columns: 1fr 1fr; }
.photo-essay-quad .photo-essay-main { grid-row: auto; }
.photo-essay-quad .photo-essay-main img { aspect-ratio: 4/3.2; }
@media (max-width: 860px){ .photo-essay-quad { grid-template-columns: 1fr; } }

/* ---------- Prijs / inschrijfpaneel (minimalistisch) ---------- */

.price-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem 2.4rem;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(49,74,89,0.04);
}
.price-panel-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.price-panel .price { font-family: var(--serif); font-size: 3rem; font-weight: 500; color: var(--deep); line-height: 1; margin: 0.9rem 0 0.7rem; }
.price-panel .price-note { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.8rem; line-height: 1.6; }
.price-panel .btn { margin-bottom: 0.9rem; }
.price-staffel { font-size: 0.86rem; color: var(--muted); margin-top: 1.1rem; line-height: 1.6; }
.price-staffel a { color: var(--deep); font-weight: 600; border-bottom: 1px solid var(--line); }

.training-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 4.5rem; align-items: start; }
.training-layout-body > p { margin-bottom: 1.3rem; color: var(--ink); font-size: 1.05rem; line-height: 1.8; }
.feature-subhead { margin: 2.6rem 0 1.3rem; font-family: var(--sans); font-size: 1.02rem; font-weight: 700; color: var(--deep); }
.feature-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1rem; }
.feature-list li { position: relative; padding-left: 1.9rem; color: var(--ink); font-size: 0.99rem; line-height: 1.6; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.audience-note { border-top: 1px solid var(--line); padding-top: 1.4rem; color: var(--ink); font-size: 0.98rem; }
.audience-note strong { color: var(--deep); }

.training-highlights { list-style: none; margin: 0 0 3.4rem; padding: 2rem 0; display: flex; flex-wrap: wrap; gap: 0.9rem 2.4rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.training-highlights li { font-weight: 600; color: var(--deep); font-size: 0.94rem; }

@media (max-width: 960px) {
  .training-layout { grid-template-columns: 1fr; gap: 2.6rem; }
}

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.7rem 2.4rem 1.7rem 0;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--deep);
  font-size: 1.06rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 300; color: var(--accent); transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { content: '\2212'; }
.faq-body { padding: 0 3rem 1.8rem 0; }
.faq-body p { color: var(--muted); font-size: 1rem; line-height: 1.8; }

/* ---------- Info note / contact ---------- */

.info-note { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2rem 0; margin-top: 2.5rem; color: var(--ink); font-size: 1rem; max-width: 62ch; line-height: 1.8; }
.info-note strong { color: var(--deep); }

.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 2.8rem 2.6rem; margin-top: 2.6rem; max-width: 460px; }
.contact-card a.contact-line { display: block; font-family: var(--serif); font-size: 1.35rem; color: var(--deep); margin-bottom: 1.8rem; }
.contact-card a.contact-line:hover { color: var(--accent); }

/* ---------- Portret / about-pauline ---------- */

.about-pauline { max-width: 760px; }
.about-pauline-text > p { margin-bottom: 1.2rem; color: var(--ink); font-size: 1.05rem; line-height: 1.8; }
.credibility { list-style: none; margin: 2rem 0 0; padding: 1.8rem 0 0; border-top: 1px solid var(--line); display: grid; gap: 0.9rem; }
.credibility li { position: relative; padding-left: 1.7rem; color: var(--ink); font-size: 0.98rem; }
.credibility li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Juridische pagina's ---------- */

.legal { padding: 6.5rem 0 7rem; }
.legal .container { max-width: 760px; }
.legal-back { display: inline-block; margin-bottom: 2rem; color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.legal h1 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 0.6rem; }
.legal .legal-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 3rem; }
.legal h2 { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; margin: 2.6rem 0 0.8rem; }
.legal h3 { font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--deep); margin: 1.5rem 0 0.4rem; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; line-height: 1.8; }
.legal p { margin-bottom: 1.1rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--deep); font-weight: 600; word-break: break-word; border-bottom: 1px solid var(--line); }
.legal strong { color: var(--deep); }

/* ---------- Simpele intro (advies/contact) ---------- */

.simple-hero { padding: 7rem 0 2rem; }

/* ---------- Reveal (subtiele fade/slide) ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
.quiet-grid .quiet-item:nth-child(2),
.trust-grid .trust-item:nth-child(2) { transition-delay: 0.08s; }
.quiet-grid .quiet-item:nth-child(3),
.trust-grid .trust-item:nth-child(3) { transition-delay: 0.16s; }
.trust-grid .trust-item:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Algemene responsive ---------- */

@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .section { padding: 5.5rem 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.6rem; }
  .trust-item { border-left: none; padding-left: 0; }
  .trust-item:nth-child(2n) { border-left: 1px solid var(--line); padding-left: 1.6rem; }
  .hero-inner { padding: 3rem 24px 4.5rem; }
  .hero-inner h1 { max-width: none; font-size: clamp(2.2rem, 9.5vw, 2.7rem); }
}

/* ---------- Mobiel navigatiemenu: hamburger-knop ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; padding: 0;
  cursor: pointer; flex-shrink: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--deep); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
}

/* ---------- Mobiel navigatiemenu: slide-over paneel ---------- */

body.menu-open { overflow: hidden; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
}
.mobile-menu.is-open { visibility: visible; }

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21,35,41,0.5);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}
.mobile-menu.is-open .mobile-menu-overlay { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--paper);
  box-shadow: -24px 0 60px -20px rgba(20,35,42,0.35);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.mobile-menu-logo { font-size: 0.76rem; }

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0;
  color: var(--deep);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus-visible { background: var(--mist); }
.mobile-menu-close svg { width: 20px; height: 20px; }

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 12px 10px;
  overflow-y: auto;
}
.mobile-menu-links a {
  display: block;
  padding: 15px 14px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--deep);
  border-radius: var(--radius);
  transition: background 0.2s var(--ease);
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible { background: var(--mist); }
.mobile-menu-links a[aria-current="page"] { color: var(--accent); }
.mobile-menu-divider { height: 1px; background: var(--line-soft); margin: 8px 14px; }

.mobile-menu-foot {
  margin-top: auto;
  padding: 18px 22px 26px;
  border-top: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.mobile-menu-foot .btn { width: 100%; }

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item:nth-child(2n) { border-left: none; padding-left: 0; }
  .trust-item { border-top: 1px solid var(--line); padding-top: 1.6rem; }
  .trust-item:first-child { border-top: none; padding-top: 0; }
}

/* ============================================================
   v4 — Editorial refinement: minder knoppen, minder kaarten,
   asymmetrische/magazine-achtige lay-outs, donkere wow-sectie
   ============================================================ */

/* ---------- Tekstlinks op donkere achtergrond (i.p.v. knoppen) ---------- */

.editorial-link-on-deep {
  color: var(--paper);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.editorial-link-on-deep:hover { border-color: rgba(255,255,255,0.95); gap: 12px; }
.editorial-link-on-deep .arrow { transition: transform 0.25s var(--ease); }
.editorial-link-on-deep:hover .arrow { transform: translateX(3px); }

.editorial-link-lg { font-size: 1.1rem; }

/* ---------- Index-nummer (magazine-achtige sectiemarkering) ---------- */

.index-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.1rem; }
.index-num { font-family: var(--serif); font-size: 0.95rem; color: var(--accent); letter-spacing: 0.02em; }
.index-row .eyebrow { margin: 0; }

/* ---------- Asymmetrische editorial split (magazine-kolommen) ---------- */

.asym-split { display: grid; grid-template-columns: 7fr 5fr; gap: 4rem; align-items: start; }
.asym-split.reverse { grid-template-columns: 5fr 7fr; }
.asym-split.reverse .asym-main { order: 2; }
.asym-split.reverse .asym-aside { order: 1; }
.asym-main .statement p { text-align: left; }
.asym-aside { padding-top: 0.4rem; }
.asym-aside p { color: var(--muted); font-size: 0.98rem; line-height: 1.8; max-width: 34ch; }
@media (max-width: 900px) {
  .asym-split, .asym-split.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .asym-split.reverse .asym-main, .asym-split.reverse .asym-aside { order: initial; }
}

/* ---------- Executive programma-layout (trainingenpagina) ---------- */

.exec-media-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 3.5rem;
}
.exec-media-full img,
.exec-media-full .bg { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center 42%; }

.exec-title { font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom: 2.6rem; max-width: 22ch; }

.exec-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 5rem; align-items: start; }
.exec-content > p { color: var(--ink); font-size: 1.06rem; line-height: 1.85; margin-bottom: 1.4rem; }

.exec-specs { border-top: 1px solid var(--deep); padding-top: 1.6rem; }
.exec-spec-row { display: flex; justify-content: space-between; gap: 1.2rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.exec-spec-row .k { color: var(--muted); }
.exec-spec-row .v { color: var(--deep); font-weight: 600; text-align: right; }

.exec-price-block { margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.exec-price-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.exec-price { font-size: 2.6rem; font-weight: 500; color: var(--deep); line-height: 1; margin: 0.8rem 0 1.5rem; }
.exec-price-note { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; line-height: 1.6; }

@media (max-width: 960px) {
  .exec-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .exec-media-full { aspect-ratio: 4/3; }
}

/* ---------- Professional Scan — donkere editorial sectie (wow) ---------- */

.scan-feature { background: var(--deep); color: rgba(255,255,255,0.88); padding: 8rem 0; }
.scan-feature .eyebrow.on-deep { color: rgba(255,255,255,0.55); }
.scan-feature h2 { color: var(--paper); margin-bottom: 1.6rem; }
.scan-feature .scan-lead {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.5rem); color: rgba(255,255,255,0.92); line-height: 1.5; margin-bottom: 1.8rem; max-width: 30ch;
}
.scan-feature-body p { color: rgba(255,255,255,0.72); font-size: 1.02rem; line-height: 1.85; }
.scan-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; }
.scan-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.scan-list-label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.3rem; }
.scan-list li { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); font-size: 1rem; }
.scan-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
@media (max-width: 900px) { .scan-split { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ---------- Contact — kaderloos ---------- */

.contact-plain { max-width: 460px; margin-top: 2.6rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.contact-plain .contact-line { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--deep); margin-bottom: 1.4rem; }
.contact-plain .contact-line:hover { color: var(--accent); }

/* ============================================================
   v5 — Editorial verdieping: minder herhaling, groter statement
   ============================================================ */

/* ---------- Editorial lijst (vervangt symmetrische iconkaarten) ---------- */

.editorial-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.editorial-list li {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 2.6rem;
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--line);
}
.editorial-list .el-label {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep);
  line-height: 1.2;
}
.editorial-list .el-desc { color: var(--muted); font-size: 1.02rem; line-height: 1.8; max-width: 52ch; padding-top: 0.3rem; }
@media (max-width: 720px) {
  .editorial-list li { grid-template-columns: 1fr; gap: 0.7rem; }
}

/* ---------- Grote editorial foto/tekst-sectie ---------- */

.editorial-photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.editorial-photo-split .ep-media { aspect-ratio: auto; min-height: 480px; }
.editorial-photo-split .ep-media .bg { width: 100%; height: 100%; object-fit: cover; background-size: cover; background-position: center center; }
.editorial-photo-split .ep-text { display: flex; flex-direction: column; justify-content: center; padding: 4rem 5rem; }
.editorial-photo-split.reverse .ep-media { order: 2; }
.editorial-photo-split.reverse .ep-text { order: 1; }
.editorial-photo-split .ep-text h2 { margin-bottom: 1.8rem; }
.editorial-photo-split .ep-text p { color: var(--muted); font-size: 1.06rem; line-height: 1.85; max-width: 44ch; }
.editorial-photo-split .ep-text p + p { margin-top: 1.2rem; }
.editorial-photo-split .ep-text .statement-line {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--deep); line-height: 1.5; margin-top: 1.8rem; max-width: 30ch;
}
@media (max-width: 900px) {
  .editorial-photo-split, .editorial-photo-split.reverse { grid-template-columns: 1fr; }
  .editorial-photo-split.reverse .ep-media, .editorial-photo-split.reverse .ep-text { order: initial; }
  .editorial-photo-split .ep-media { min-height: 300px; }
  .editorial-photo-split .ep-text { padding: 3rem 24px; }
}

/* ============================================================
   v6 — Meer ritme-variatie, minder iconen, groter statement
   ============================================================ */

/* Editorial foto/tekst-sectie: asymmetrischer en dramatischer */
.editorial-photo-split { grid-template-columns: 0.85fr 1.15fr; }
.editorial-photo-split .ep-media { min-height: 640px; }
@media (max-width: 900px) { .editorial-photo-split .ep-media { min-height: 340px; } }

/* Editorial foto/tekst-sectie: mobiel — boven elkaar i.p.v. naast elkaar.
   Staat bewust na de asymmetrische regel hierboven, zodat deze wint op smalle schermen. */
@media (max-width: 800px) {
  .editorial-photo-split,
  .editorial-photo-split.reverse {
    grid-template-columns: 1fr;
  }
  .editorial-photo-split.reverse .ep-media,
  .editorial-photo-split.reverse .ep-text {
    order: initial;
  }
  .editorial-photo-split .ep-media {
    min-height: 0;
    height: clamp(280px, 40vw, 340px);
  }
  .editorial-photo-split .ep-media .bg {
    background-position: center 42%;
  }
  .editorial-photo-split .ep-text {
    padding: 2.4rem 24px 3rem;
  }
  .editorial-photo-split .ep-text h2 {
    font-size: clamp(2.5rem, 11vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
  }
  .editorial-photo-split .ep-text p {
    font-size: 1.15rem;
    line-height: 1.65;
  }
  .editorial-photo-split .ep-text .statement-line {
    font-size: 1.2rem;
    max-width: none;
  }
}

/* Tekst-gedreven sectie zonder beeld (bijv. trainingsteaser op de homepage) */
.text-feature { max-width: 720px; }
.text-feature .hr-accent { width: 64px; height: 2px; background: var(--deep); border: none; margin: 0 0 2rem; }
.text-feature h2 { margin-bottom: 1.4rem; }
.text-feature p { color: var(--muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.6rem; max-width: 56ch; }

/* Vloeiende alinea met ingebedde nadruk (vervangt losse iconkaarten) */
.flowing-statement { max-width: 860px; }
.flowing-statement p { font-size: 1.2rem; line-height: 1.85; color: var(--ink); }
.flowing-statement strong { font-family: var(--serif); font-optical-sizing: none; font-variation-settings: "opsz" 24; font-weight: 500; color: var(--deep); font-style: italic; }

/* Curriculum-lijst: rustige 2-koloms lijst zonder bullet-stippen */
.curriculum-list { list-style: none; margin: 0 0 2rem; padding: 1.6rem 0 0; border-top: 1px solid var(--line); columns: 2; column-gap: 3rem; }
.curriculum-list li { break-inside: avoid; padding: 0 0 1.3rem; color: var(--ink); font-size: 0.99rem; line-height: 1.65; }
@media (max-width: 720px) { .curriculum-list { columns: 1; } }

/* ============================================================
   v7 — Adviespagina: rustige kaarten, uitdagingen-checklist,
   Growth Scan-verdieping, processtappen
   ============================================================ */

/* ---------- Rustige kaarten (uitzondering: "waarmee kan ik helpen") ---------- */

.soft-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.soft-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem 2.1rem;
  background: var(--paper);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.soft-card { box-shadow: 0 1px 2px rgba(49,74,89,0.04); }
.soft-card:hover { border-color: var(--deep); transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(49,74,89,0.28); }
.soft-card .sc-num { font-family: var(--serif); font-size: 0.92rem; color: var(--accent); display: block; margin-bottom: 1.6rem; }
.soft-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.22rem; color: var(--deep); margin-bottom: 0.9rem; letter-spacing: -0.01em; }
.soft-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
@media (max-width: 960px) { .soft-card-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }
@media (max-width: 640px) { .soft-card-grid { grid-template-columns: 1fr; } }

/* ---------- Uitdagingen-checklist (herkenbare situaties) ---------- */

.challenge-list { list-style: none; margin: 3.6rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.challenge-list li { display: flex; gap: 1.8rem; align-items: flex-start; padding: 2.8rem 0; border-bottom: 1px solid var(--line); }
.challenge-list .cl-mark {
  flex-shrink: 0; width: 34px; height: 34px; margin-top: 0.15rem;
  border-radius: 50%; border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 700;
}
.challenge-list .cl-body strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.34rem; color: var(--deep); margin-bottom: 0.6rem; line-height: 1.35; }
.challenge-list .cl-body span { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.challenge-close { margin-top: 3.2rem; font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--deep); line-height: 1.5; max-width: 58ch; }

/* Grotere sectie: voor onderdelen die extra nadruk verdienen */
.section-emphasis { padding: 11rem 0; }

/* ---------- Growth Scan: vervolg binnen de donkere sectie ---------- */

.scan-feature-followup {
  margin-top: 5rem; padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start;
}
.scan-feature-followup .sf-facts-label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.scan-feature-followup .sf-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.7rem 2.2rem; }
.scan-feature-followup .sf-facts li { font-weight: 600; color: rgba(255,255,255,0.88); font-size: 0.96rem; }
.scan-feature-followup p { color: rgba(255,255,255,0.66); font-size: 0.98rem; line-height: 1.8; }
@media (max-width: 860px) { .scan-feature-followup { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Processtappen (van vraagstuk naar implementatie) ---------- */

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-top: 3.6rem; }
.process-step { padding-top: 2.2rem; border-top: 1px solid var(--line); }
.process-step .ps-num { font-family: var(--serif); font-size: 2.1rem; color: var(--accent); display: block; margin-bottom: 1.4rem; font-optical-sizing: none; font-variation-settings: "opsz" 30; }
.process-step h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; color: var(--deep); margin-bottom: 0.9rem; letter-spacing: -0.01em; }
.process-step p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
@media (max-width: 860px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

/* ---------- Afsluitende, bijna filosofische quote ---------- */

.closing-quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--deep);
  text-align: center; max-width: 46ch; margin: 0 auto; line-height: 1.55;
}

/* ============================================================
   v8 — Polish-pass: schaduwen, hover, spacing-utilities,
   foto-hero voor interne pagina's, premium Growth Scan-media
   ============================================================ */

/* ---------- Kleine, herbruikbare utilities (vervangen losse inline stijlen) ---------- */

.eyebrow.center { text-align: center; display: block; }
.section-head.tight { margin-bottom: 2.4rem; }

.split-list-text h2,
.scan-feature-body h2 { margin-bottom: 1.6rem; }

.mt-sm { margin-top: 1.4rem; }
.mt-note { margin-top: 1.8rem; }
.mt-row { margin-top: 2.4rem; }

.cta-band .cta-lead { color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.cta-band .cta-note { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 2.4rem; }

.contact-plain .contact-note { margin-top: 1.8rem; color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

.text-link { color: var(--deep); font-weight: 600; border-bottom: 1px solid var(--line); transition: border-color 0.2s var(--ease); }
.text-link:hover { border-color: var(--deep); }
.text-link-on-deep { color: var(--paper); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.4); transition: border-color 0.2s var(--ease); }
.text-link-on-deep:hover { border-color: rgba(255,255,255,0.9); }

/* ---------- Foto-hero voor interne pagina's ---------- */

.page-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 2; padding: 4rem 40px 5rem; max-width: 820px; }
.page-hero-inner .eyebrow { color: rgba(255,255,255,0.72); }
.page-hero-inner h1 { color: var(--paper); font-size: clamp(2.6rem, 6vw, 5rem); max-width: 18ch; margin-bottom: 1.4rem; }
.page-hero-inner .lead { color: rgba(255,255,255,0.84); max-width: 48ch; }
@media (max-width: 860px) { .page-hero-inner { padding: 3rem 24px 3.5rem; } .page-hero { min-height: 52vh; } }

/* ---------- Generiek beeldkader (mockups/illustraties in tekstkolommen) ---------- */

.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(49,74,89,0.35); aspect-ratio: 3 / 2; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .img-frame { aspect-ratio: 16 / 10; } }

/* ---------- Growth Scan: prominente productafbeelding ---------- */

.scan-hero-media { margin-bottom: 4.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5); }
.scan-hero-media img { width: 100%; height: auto; display: block; }
.scan-feature .eyebrow.scan-eyebrow-top { margin-bottom: 2rem; }

/* ============================================================
   v9 — Adviespagina: laatste verfijningen
   ============================================================ */

.section-head.wide { max-width: 880px; }

/* Growth Scan: mock-up die over de onderkant van de donkere sectie heen valt */
.scan-feature-overlap { padding-bottom: 4rem; }
.scan-overlap-wrap { position: relative; margin-top: -9rem; margin-bottom: 3rem; z-index: 3; }
.scan-overlap-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 90px -24px rgba(24,34,41,0.4); }
.scan-overlap-media img { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .scan-overlap-wrap { margin-top: -5rem; } }

/* Klein, rustig afsluitend blok */
.closing-note {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--muted);
  text-align: center; line-height: 1.7; max-width: 56ch; margin: 0 auto;
}

/* ============================================================
   v10 — Trainingenpagina: resultaat-checklist, leerlijn-accordion
   ============================================================ */

/* ---------- Wat levert het je op: checklist ---------- */

.outcome-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 3.4rem; }
.outcome-list li { display: flex; gap: 1.1rem; align-items: flex-start; font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.outcome-list .ol-mark {
  flex-shrink: 0; width: 26px; height: 26px; margin-top: 0.1rem;
  border-radius: 50%; border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.76rem; font-weight: 700;
}
@media (max-width: 720px) { .outcome-list { grid-template-columns: 1fr; } }

/* ---------- Leerlijn-accordion (rustiger programma-overzicht) ---------- */

.leerlijn-accordion { border-top: 1px solid var(--line); }
.leerlijn-item { border-bottom: 1px solid var(--line); }
.leerlijn-item summary {
  cursor: pointer; list-style: none;
  padding: 2rem 2.6rem 2rem 0;
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem;
}
.leerlijn-item summary::-webkit-details-marker { display: none; }
.leerlijn-item summary::after {
  content: '+'; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.8rem; font-weight: 300; color: var(--accent); transition: transform 0.25s var(--ease);
}
.leerlijn-item[open] summary::after { content: '\2212'; }
.leerlijn-item summary .leerlijn-title { margin: 0; }
.leerlijn-item .leerlijn-count { font-size: 0.82rem; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.leerlijn-item .module-list { padding-bottom: 2rem; }
.leerlijn-item .module-list li:first-child { border-top: none; }

/* ============================================================
   v11 — Kleine sitewide fixes
   ============================================================ */

/* Contactblok direct in een eigen sectie: geen dubbele top-marge/rand nodig */
.contact-plain-flush { margin-top: 0; padding-top: 0; border-top: none; }

/* ============================================================
   v12 — Bezoekersperspectief: pijnpunt-opening, kleinere
   productafbeelding, persoonlijke noot met signatuur
   ============================================================ */

/* Trainingsposter: kleiner en met meer witruimte, geen full-bleed meer */
.exec-media-full.compact {
  width: auto; position: static; left: auto; right: auto;
  margin-left: auto; margin-right: auto;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -30px rgba(49,74,89,0.3);
  margin-bottom: 4.5rem;
}
@media (max-width: 860px) { .exec-media-full.compact { max-width: 100%; aspect-ratio: 4/3; } }

/* Persoonlijke noot: kleine signatuur onder een closing-note */
.personal-note-sig {
  display: block; text-align: center; margin-top: 1.4rem;
  font-family: var(--sans); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.04em; color: var(--muted);
}

/* Over-pagina: openingsstatement en subkopjes binnen de bio */
.about-statement {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1.32rem; color: var(--deep);
  line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 2.2rem !important;
}
.about-subhead { margin: 2.2rem 0 1rem; }

/* Alleen binnen de bio op de over-pagina: subkopjes op dezelfde schaal als het openingsstatement,
   zodat alle drie de koppen ('Van pionieren...', 'Waarom ik...' en 'Mijn achtergrond') echt gelijk ogen */
.about-pauline-text .about-subhead {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-size: 1.32rem; line-height: 1.4; letter-spacing: -0.01em;
}

/* ============================================================
   v16 — Contactpagina: persoonlijk blok onder de hero
   ============================================================ */

.contact-highlight { max-width: 620px; }
.contact-highlight .stars { display: block; letter-spacing: 0.3em; color: var(--deep); font-size: 0.95rem; margin-bottom: 1.6rem; }
.contact-highlight .ch-statement {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--deep);
  line-height: 1.4; margin-bottom: 1.4rem;
}
.contact-highlight p { margin-bottom: 1.1rem; }
.contact-highlight .ch-note { font-weight: 600; color: var(--deep); }
.contact-highlight .ch-closing { font-style: italic; color: var(--muted); }
.contact-highlight .outcome-list { grid-template-columns: 1fr; gap: 1rem; margin: 1.6rem 0 2.2rem; }
.contact-highlight .ch-links { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.6rem; }

/* ---------- Contactpagina: persoonlijke signatuur + klein accent ---------- */
.contact-signature { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; }
.contact-signature-photo,
.contact-signature-photo-placeholder {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
}
.contact-signature-photo { object-fit: cover; border: 1px solid var(--line); }
.contact-signature-photo-placeholder {
  background: var(--mist); border: 1px solid var(--line); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.contact-signature-photo-placeholder svg { width: 24px; height: 24px; opacity: 0.5; }
.contact-signature-text { display: flex; flex-direction: column; }
.contact-signature-name { font-weight: 700; color: var(--deep); font-size: 0.98rem; }
.contact-signature-role { font-size: 0.85rem; color: var(--muted); }
.contact-accent-icon { width: 32px; height: 32px; color: var(--accent); opacity: 0.8; margin-bottom: 1.4rem; }

/* ============================================================
   v17 — Landingspagina training: hero-badges, pijnpuntenlijst,
   categorie-grid, portret/tekst-split, gerelateerde training-band
   ============================================================ */

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem; margin-bottom: 1.6rem;
  border: 1px solid rgba(255,255,255,0.35); border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.92);
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #9fd8b8; flex-shrink: 0; }

.hero-meta-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; margin-top: 2rem; }
.hero-meta-row span { font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.68); }

.pain-list { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.pain-list li { position: relative; padding-left: 1.8rem; color: var(--ink); font-size: 1.04rem; line-height: 1.7; }
.pain-list li::before {
  content: ''; position: absolute; left: 0; top: 0.5rem;
  width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--muted); background: transparent;
}

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; margin-top: 3rem; }
.content-grid-item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.28rem; color: var(--deep); margin-bottom: 1.1rem; letter-spacing: -0.01em; }
.content-grid-item ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.content-grid-item li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: 0.99rem; line-height: 1.6; }
.content-grid-item li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@media (max-width: 760px) { .content-grid { grid-template-columns: 1fr; gap: 2.2rem; } }

.portrait-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4.5rem; align-items: center; }
.portrait-split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px -30px rgba(49,74,89,0.3); }
.portrait-split-media img { width: 100%; height: 100%; object-fit: cover; }
.portrait-split-text > p { margin-bottom: 1.2rem; color: var(--ink); font-size: 1.05rem; line-height: 1.8; }
@media (max-width: 900px) {
  .portrait-split { grid-template-columns: 1fr; gap: 2.2rem; }
  .portrait-split-media { max-width: 340px; margin: 0 auto; }
}

.waaier-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 3.5rem; box-shadow: 0 40px 90px -30px rgba(49,74,89,0.35); }
.waaier-media img { width: 100%; height: auto; display: block; }

.feedback-callout {
  border-left: 3px solid var(--accent);
  padding: 0.3rem 0 0.3rem 1.8rem;
  margin: 2.4rem 0;
  font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--deep); line-height: 1.55; max-width: 60ch;
}

.infographic-media { border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem; box-shadow: 0 1px 2px rgba(49,74,89,0.06); }
.infographic-media img { width: 100%; height: auto; display: block; }

.toolkit-media { border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem; box-shadow: 0 1px 2px rgba(49,74,89,0.06); }
.toolkit-media img { width: 100%; height: auto; display: block; }

.stats-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 860px) { .stats-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.4rem; } }
@media (max-width: 560px) { .stats-grid-5 { grid-template-columns: repeat(2, 1fr); } }

.result-stem { max-width: 640px; }
.result-stem .lead { margin-bottom: 0; }
.result-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1rem; }
.result-list li { position: relative; padding-left: 1.6rem; color: var(--ink); font-size: 1.08rem; line-height: 1.7; }
.result-list li::before { content: ''; position: absolute; left: 0; top: 0.62rem; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   v18 — Landingspagina training: autoriteitsblok, compactere waaier
   ============================================================ */

.authority-strip { text-align: left; }
.authority-label { display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.55rem; }
.authority-name { display: block; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; letter-spacing: -0.01em; color: var(--deep); margin-bottom: 1.9rem; }
.authority-facts { list-style: none; margin: 0; padding: 0; }
.authority-facts li { font-size: 0.93rem; font-weight: 500; color: var(--ink); line-height: 1.4; padding: 0.85rem 0; border-top: 1px solid var(--line); }
.authority-facts li:last-child { border-bottom: 1px solid var(--line); }

.waaier-media-compact { max-width: 880px; margin-left: auto; margin-right: auto; box-shadow: 0 20px 50px -28px rgba(49,74,89,0.25); }

/* ============================================================
   v19 — Landingspagina training: CRO-ronde
   ============================================================ */

/* Geruststelling direct onder de hero */
.reassurance-strip { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 2.6rem; }
.reassurance-strip li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; font-weight: 600; color: var(--deep); }
.reassurance-strip li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; background: var(--deep); color: var(--paper);
  font-size: 0.65rem; flex-shrink: 0;
}
@media (max-width: 640px) { .reassurance-strip { flex-direction: column; align-items: flex-start; gap: 0.7rem; } }

/* Tweekoloms: Waarom deze training */
.story-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start; }
.story-split-aside { padding-top: 0.3rem; border-left: 2px solid var(--line); padding-left: 2.2rem; }
.story-split-aside .feedback-callout { border-left: none; padding: 0.3rem 0 0; margin: 2.3rem 0 0; }
@media (max-width: 860px) { .story-split { grid-template-columns: 1fr; gap: 2.6rem; } }
@media (max-width: 640px) { .story-split-aside { padding-left: 1.6rem; } }

/* 55/45: Herken je dit */
.pain-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .pain-split { grid-template-columns: 1fr; gap: 2.6rem; } }

/* Compacte prijs-teaser halverwege */
.price-teaser {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 2.4rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem 2rem;
}
.price-teaser-facts { font-size: 1.02rem; font-weight: 600; color: var(--deep); }
.price-teaser-facts span:not(:last-child)::after { content: '·'; margin: 0 0.7rem; color: var(--muted); font-weight: 400; }

/* Micro-CTA (subtiele tussentijdse link) */
.micro-cta { text-align: center; margin-top: 3rem; }

/* CTA-blok na de waaier */
.kijkje-cta { text-align: center; margin-top: 2.4rem; }
.kijkje-cta p { max-width: 560px; margin: 0 auto 1.4rem; color: var(--ink); font-size: 1.02rem; }
.kijkje-cta .btn-row { justify-content: center; }
