@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,600..900,60..100,0..1&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #17120f;
  --ink-2: #302a24;
  --ink-soft: #5f554b;
  --paper: #f6efe5;
  --paper-2: #fff9ef;
  --paper-3: #eee1cf;
  --white: #ffffff;
  --yellow: #f5c84b;
  --yellow-soft: #fff0bc;
  --red: #c94a3b;
  --red-dark: #9e3329;
  --green: #316f58;
  --blue: #23394d;
  --muted: #796e63;
  --line: rgba(23, 18, 15, 0.14);
  --line-strong: rgba(23, 18, 15, 0.92);
  --shadow: 10px 10px 0 rgba(23, 18, 15, 0.14);
  --soft-shadow: 0 22px 70px rgba(23, 18, 15, 0.10);
  --radius: 26px;
  --radius-lg: 38px;
  --max: 1180px;
  --sans: "Inter", "Aptos", "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 200, 75, 0.22), transparent 28rem),
    radial-gradient(circle at 93% 8%, rgba(201, 74, 59, 0.10), transparent 30rem),
    linear-gradient(180deg, #fbf5ea 0%, var(--paper) 38%, #f2e7d9 100%);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(23, 18, 15, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 18, 15, .028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}
a { color: inherit; text-underline-offset: 0.18em; }
::selection { background: var(--yellow); color: var(--ink); }
.wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
section, .hero, .final-cta, .form-section { scroll-margin-top: 104px; }

.top-strip {
  background: var(--ink);
  color: var(--paper-2);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.top-strip .wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top-strip b {
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-right: 8px;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 239, 229, 0.88);
  border-bottom: 1px solid rgba(23, 18, 15, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
  min-width: 238px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), #ffd970);
  border: 2px solid var(--ink);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 4px 4px 0 rgba(23,18,15,.92);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand {
  font-family: var(--serif);
  font-weight: 850;
  font-size: 22px;
  letter-spacing: -0.045em;
}
.brand-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: -0.01em;
  font-weight: 650;
}
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 780;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.74);
}
.menu a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.menu a:hover { background: var(--ink); color: var(--paper-2); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 860;
  font-size: 14.5px;
  letter-spacing: -0.015em;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  cursor: pointer;
  white-space: nowrap;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); background: var(--red-dark); }
.button.secondary { background: var(--paper-2); color: var(--ink) !important; }
.button.secondary:hover { background: var(--yellow-soft); }
.button.dark { background: var(--ink); color: var(--yellow) !important; border-color: var(--ink); }
.button.yellow { background: var(--yellow); color: var(--ink) !important; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 17%, rgba(201, 74, 59, .13), transparent 27rem),
    radial-gradient(circle at 11% 16%, rgba(245, 200, 75, .30), transparent 30rem),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  padding: clamp(76px, 8vw, 118px) 0 clamp(76px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  background: rgba(23,18,15,.94);
  color: var(--yellow-soft);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(23,18,15,.10);
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 8px; height: 8px; flex: 0 0 auto;
  background: var(--red);
  border-radius: 99px;
  box-shadow: 0 0 0 4px rgba(201,74,59,.18);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(56px, 8.4vw, 112px);
  line-height: .84;
  letter-spacing: -0.082em;
  font-weight: 875;
  max-width: 980px;
  text-wrap: balance;
}
h1 .highlight { background: linear-gradient(180deg, transparent 58%, var(--yellow) 58%); padding: 0 .04em; }
h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.15vw, 72px);
  line-height: .91;
  letter-spacing: -0.068em;
  font-weight: 850;
  max-width: 980px;
  text-wrap: balance;
}
h3 { margin-bottom: 11px; font-size: 23px; line-height: 1.08; letter-spacing: -0.044em; font-weight: 880; }
p { font-size: 17.5px; color: var(--ink-2); max-width: 850px; }
.lead {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.34;
  letter-spacing: -0.035em;
  color: var(--ink-2);
  margin-bottom: 22px;
  font-weight: 560;
}
.hero-copy { font-size: 18px; color: var(--ink-soft); margin-bottom: 0; max-width: 720px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.microcopy { font-size: 13px; line-height: 1.45; color: var(--muted); margin-top: 16px; font-weight: 720; }

.hero-panel, .panel, .card, .report-preview-paper, .offer {
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,249,239,.98));
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--soft-shadow);
}
.hero-panel { padding: clamp(24px, 3vw, 34px); position: relative; transform: rotate(0.8deg); }
.hero-panel::before {
  content: "leesnotitie";
  position: absolute;
  top: -17px; right: 26px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 920;
  letter-spacing: .09em;
  text-transform: uppercase;
  transform: rotate(4deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.panel-label, .label, .report-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-dark);
  margin-bottom: 9px;
}
.panel-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: .94;
  letter-spacing: -0.055em;
  color: var(--ink);
  margin: 0;
  font-weight: 850;
  text-wrap: balance;
}
.panel-text { font-size: 15.5px; color: var(--ink-soft); margin: 18px 0 0; }
.mini-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.mini-list li {
  border: 1px solid rgba(23,18,15,.20);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  padding: 11px 12px;
  background: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 760;
}
.diagonal-band {
  background: var(--yellow);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: skewY(-1.4deg);
  margin: -18px 0 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 20px 60px rgba(23,18,15,.10);
}
.diagonal-band .wrap {
  padding: clamp(26px, 4vw, 40px) 20px;
  transform: skewY(1.4deg);
  text-align: center;
}
.diagonal-band strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 5.2vw, 64px);
  line-height: .90;
  letter-spacing: -0.065em;
  font-weight: 860;
  max-width: 1040px;
  margin: 0 auto;
  text-wrap: balance;
}

section {
  padding: clamp(76px, 8vw, 112px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  position: relative;
}
section.alt {
  background:
    radial-gradient(circle at 95% 6%, rgba(245, 200, 75, 0.18), transparent 24rem),
    var(--paper);
}
section.dark {
  background: radial-gradient(circle at 10% 0%, rgba(245,200,75,.14), transparent 28rem), var(--ink);
  color: var(--white);
  border-top: 0;
}
section.dark p, section.dark .section-intro { color: #e8ded1; }
.section-intro {
  color: var(--ink-soft);
  max-width: 920px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.55;
  margin-bottom: 0;
  font-weight: 520;
}
.grid-2, .grid-3, .grid-4, .choice-grid, .fit-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}
.grid-2, .fit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3, .choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .choice-card, .fit-card {
  background: rgba(255, 249, 239, 0.88);
  border: 1px solid rgba(23,18,15,.18);
  border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 18px 46px rgba(23,18,15,.06);
  position: relative;
  overflow: hidden;
}
.card.yellow, .choice-card-accent {
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  border-color: rgba(23,18,15,.34);
  box-shadow: 7px 7px 0 rgba(23,18,15,.12);
}
.card p, .card li, .choice-card p, .fit-card li { font-size: 15.8px; line-height: 1.58; color: var(--ink-soft); }
.choice-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.choice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23,18,15,.40);
  box-shadow: 0 28px 70px rgba(23,18,15,.11);
}
.choice-number {
  width: 42px; height: 42px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 900;
  font-size: 13px;
}
.choice-card strong { color: var(--red-dark); font-weight: 900; }
.quote {
  margin: 38px 0 0;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(135deg, var(--yellow), #ffe07c);
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 7px 7px 0 rgba(23,18,15,.15);
  font-family: var(--serif);
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: .98;
  letter-spacing: -0.055em;
  font-weight: 850;
  max-width: 980px;
  text-wrap: balance;
}

.silent-questions {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  max-width: 900px;
}
.silent-questions div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(23,18,15,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}
.silent-questions span {
  width: 28px; height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
}
.silent-questions strong { font-size: clamp(18px, 2vw, 25px); letter-spacing: -0.04em; }

.examples { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.example {
  background: rgba(255, 249, 239, .92);
  border: 1px solid rgba(23,18,15,.18);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(23,18,15,.06);
}
.example.now { background: linear-gradient(180deg, var(--yellow-soft), rgba(245,200,75,.94)); }
.example strong { display: block; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.18; letter-spacing: -0.038em; font-weight: 860; }

.tabset { position: relative; margin-top: 38px; }
.tabset > input { position: absolute; opacity: 0; pointer-events: none; }
.tab-labels { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.tab-labels label {
  cursor: pointer;
  border: 1px solid rgba(23,18,15,.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.66);
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.tab-labels label:hover { background: var(--yellow-soft); color: var(--ink); }
.tab-panels {
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.6vw, 34px);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,249,239,.95));
  box-shadow: var(--shadow), var(--soft-shadow);
}
.tab-panel { display: none; grid-template-columns: 0.95fr 1fr 1.15fr; gap: 16px; align-items: stretch; }
#tab-dienst:checked ~ .tab-labels label[for="tab-dienst"],
#tab-lokaal:checked ~ .tab-labels label[for="tab-lokaal"],
#tab-webshop:checked ~ .tab-labels label[for="tab-webshop"],
#tab-coach:checked ~ .tab-labels label[for="tab-coach"] {
  background: var(--ink); color: var(--yellow-soft); border-color: var(--ink);
}
#tab-dienst:checked ~ .tab-panels .panel-dienst,
#tab-lokaal:checked ~ .tab-panels .panel-lokaal,
#tab-webshop:checked ~ .tab-panels .panel-webshop,
#tab-coach:checked ~ .tab-panels .panel-coach { display: grid; }
.compare-card {
  border: 1px solid rgba(23,18,15,.18);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.68);
}
.compare-card span, .report-preview-paper span {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--red-dark);
}
.compare-card p {
  margin: 0; max-width: none;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.36;
  letter-spacing: -0.03em;
  color: var(--ink-2);
  font-weight: 650;
}
.compare-card.bad { background: rgba(201, 74, 59, .08); border-left: 6px solid var(--red); }
.compare-card.note { background: rgba(255,255,255,.72); }
.compare-card.good { background: rgba(49, 111, 88, .10); border-left: 6px solid var(--green); }

.report-preview-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
  margin-top: 42px;
}
.report-preview-paper { position: relative; overflow: hidden; }
.report-preview-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--paper-2);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 850;
}
.report-preview-meta span:first-child { color: var(--yellow); }
.report-preview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid rgba(23,18,15,.14);
}
.report-preview-head h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .92;
  letter-spacing: -0.06em;
  margin: 0;
  max-width: 760px;
}
.report-stamp {
  display: grid;
  place-items: center;
  width: 78px; height: 78px;
  border-radius: 999px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(23,18,15,.18);
  transform: rotate(7deg);
  flex: 0 0 auto;
}
.report-fragment {
  padding: 26px clamp(26px, 3vw, 38px);
  background: rgba(201,74,59,.08);
  border-bottom: 1px solid rgba(23,18,15,.14);
}
.report-fragment p, .better-direction p {
  margin: 0;
  max-width: none;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 780;
  color: var(--ink);
}
.report-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(23,18,15,.14);
}
.report-columns article {
  padding: 26px;
  border-right: 1px solid rgba(23,18,15,.14);
  background: rgba(255,255,255,.42);
}
.report-columns article:last-child { border-right: 0; }
.report-columns p, .report-side-notes p {
  margin: 0; max-width: none;
  color: var(--ink-soft);
  font-size: 15.8px;
  line-height: 1.55;
}
.better-direction {
  padding: clamp(28px, 3.4vw, 44px);
  background: radial-gradient(circle at top right, rgba(49,111,88,.18), transparent 24rem), rgba(49,111,88,.10);
  border-bottom: 1px solid rgba(23,18,15,.14);
  border-left: 8px solid var(--green);
}
.better-direction p { font-size: clamp(28px, 3.5vw, 50px); line-height: 1.02; font-weight: 820; }
.report-verdict {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px clamp(26px, 3vw, 38px);
  background: var(--yellow);
}
.report-verdict span { margin: 0; color: var(--ink); }
.report-verdict strong {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -0.06em;
  text-align: right;
}
.report-side-notes { display: grid; gap: 14px; position: sticky; top: 112px; }
.report-side-notes div {
  border: 1px solid rgba(23,18,15,.18);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 16px 42px rgba(23,18,15,.06);
}
.report-side-notes span {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
  margin-bottom: 16px;
}
.report-side-notes p { font-weight: 720; color: var(--ink-2); }

.offer {
  padding: clamp(28px, 4vw, 44px);
  margin-top: 38px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}
.price {
  font-family: var(--serif);
  font-size: clamp(66px, 7.5vw, 104px);
  line-height: .82;
  letter-spacing: -0.075em;
  font-weight: 880;
  margin: 13px 0 12px;
}
.price small {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 750;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding: 13px 14px 13px 44px;
  border: 1px solid rgba(23,18,15,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  font-size: 14.8px;
  line-height: 1.42;
  font-weight: 760;
  color: var(--ink-2);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 13px; top: 12px;
  width: 21px; height: 21px;
  display: grid; place-items: center;
  background: var(--yellow);
  border: 1px solid rgba(23,18,15,.78);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.form-section {
  background:
    radial-gradient(circle at 7% 0%, rgba(245,200,75,.18), transparent 30rem),
    radial-gradient(circle at 92% 28%, rgba(201,74,59,.16), transparent 28rem),
    var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 0;
}
.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.form-copy { position: sticky; top: 112px; }
.form-copy h2 { color: var(--white); }
.form-copy p { color: #e8ded1; }
.form-box {
  background: var(--paper-2);
  color: var(--ink);
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 34px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 10px 10px 0 rgba(245,200,75,.28), 0 24px 80px rgba(0,0,0,.24);
}
form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
label, legend { font-weight: 860; line-height: 1.22; letter-spacing: -0.035em; font-size: 16px; }
.help { color: var(--muted); font-size: 14px; line-height: 1.45; font-weight: 650; margin: 0; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(23,18,15,.24);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  outline: none;
}
textarea { min-height: 122px; resize: vertical; }
input:focus, textarea:focus, select:focus { background: var(--white); border-color: rgba(23,18,15,.68); box-shadow: 0 0 0 4px rgba(245,200,75,.34); }
fieldset { border: 0; padding: 0; margin: 0; }
.radio-grid { display: grid; gap: 10px; margin-top: 12px; }
.radio-option {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(23,18,15,.18);
  border-radius: 18px;
  padding: 13px;
  background: rgba(255,255,255,.62);
  cursor: pointer;
}
.radio-option:hover { background: var(--yellow-soft); border-color: rgba(23,18,15,.38); }
.radio-option input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--red); }
.radio-option strong { display: block; font-size: 15.2px; line-height: 1.28; margin-bottom: 2px; letter-spacing: -0.03em; }
.radio-option span { display: block; font-size: 13.5px; line-height: 1.42; color: var(--muted); font-weight: 640; }
.form-note { color: var(--muted); font-size: 13.5px; font-weight: 650; margin: -4px 0 0; }

.faq { display: grid; gap: 14px; margin-top: 36px; }
details {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(23,18,15,.18);
  border-radius: 22px;
  padding: 19px 20px;
  box-shadow: 0 12px 32px rgba(23,18,15,.05);
}
summary { cursor: pointer; font-weight: 860; font-size: 17px; letter-spacing: -0.035em; }
details[open] { background: rgba(255,249,239,.96); border-color: rgba(23,18,15,.28); }
details p { margin: 14px 0 0; font-size: 15.8px; color: var(--ink-soft); }

.final-cta {
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.32), transparent 26rem), linear-gradient(135deg, var(--yellow), #ffe17d);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.final-cta h2, .final-cta p { margin-inline: auto; }
.final-cta p { color: var(--ink-2); }

footer { background: var(--ink); color: var(--white); padding: 48px 0; }
.footer-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: start; }
footer p { color: #d9d1c8; font-size: 13.5px; margin-bottom: 10px; max-width: 760px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; font-size: 13px; font-weight: 760; }
.footer-links a {
  color: var(--paper-2);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 8px 10px;
}
.footer-links a:hover { color: var(--ink); background: var(--yellow); }

.mobile-sticky-cta { display: none; }

@media (max-width: 1080px) {
  .menu { display: none; }
  .brand-block { min-width: auto; }
}
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .choice-grid, .fit-grid, .offer, .form-grid, .footer-grid, .report-preview-stage {
    grid-template-columns: 1fr;
  }
  .form-copy, .report-side-notes { position: relative; top: auto; }
  .hero-panel { transform: rotate(0); }
  .footer-links { justify-content: flex-start; }
  .tab-panel,
  #tab-dienst:checked ~ .tab-panels .panel-dienst,
  #tab-lokaal:checked ~ .tab-panels .panel-lokaal,
  #tab-webshop:checked ~ .tab-panels .panel-webshop,
  #tab-coach:checked ~ .tab-panels .panel-coach {
    grid-template-columns: 1fr;
  }
  .report-columns { grid-template-columns: 1fr; }
  .report-columns article, .report-columns article:last-child { border-right: 0; border-bottom: 1px solid rgba(23,18,15,.14); }
  .report-columns article:last-child { border-bottom: 0; }
}
@media (max-width: 760px) {
  body { padding-bottom: 74px; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .top-strip { font-size: 12px; }
  .nav { min-height: 70px; }
  .brand-sub, .nav-actions { display: none; }
  .hero { padding: 60px 0 66px; }
  h1 { font-size: clamp(48px, 15vw, 70px); letter-spacing: -0.075em; }
  h2 { font-size: clamp(36px, 11vw, 54px); }
  .lead { font-size: 19px; }
  section { padding: 60px 0; }
  .examples { grid-template-columns: 1fr; }
  .hero-actions { display: grid; align-items: stretch; }
  .button { width: 100%; text-align: center; }
  .hero-panel, .offer, .form-box { padding: 22px; border-radius: 26px; }
  .tab-labels { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .tab-labels::-webkit-scrollbar { display: none; }
  .tab-labels label { flex: 0 0 auto; }
  .report-preview-meta, .report-preview-head, .report-verdict { flex-direction: column; align-items: start; }
  .report-verdict strong { text-align: left; }
  .report-stamp { width: 64px; height: 64px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 10px; right: 10px; bottom: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(23,18,15,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 54px rgba(0,0,0,.28);
  }
  .mobile-sticky-cta a {
    display: grid; place-items: center;
    min-height: 42px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--paper-2);
    font-size: 12.5px;
    font-weight: 850;
  }
  .mobile-sticky-cta a:last-child { background: var(--yellow); color: var(--ink); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}


/* --- Mobile overflow correction v5.1 ---
   Fixes subtle right-side drift on mobile by preventing horizontal overflow
   and forcing large layout components to stay inside the viewport. */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

.hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.choice-grid > *,
.fit-grid > *,
.offer > *,
.form-grid > *,
.footer-grid > *,
.report-preview-stage > *,
.report-columns > *,
.tab-panel > * {
  min-width: 0;
}

.hero-panel,
.panel,
.card,
.choice-card,
.fit-card,
.report-preview-paper,
.offer,
.form-box,
.tab-panels,
.compare-card,
.example,
details,
.silent-questions,
.demo-report {
  max-width: 100%;
}

@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero,
  section,
  footer {
    overflow-x: clip;
  }

  .brand-block {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand {
    font-size: 20px;
  }

  .hero-panel,
  .offer,
  .form-box,
  .report-preview-paper,
  .tab-panels {
    box-shadow: 6px 6px 0 rgba(23,18,15,.12), 0 18px 52px rgba(23,18,15,.08);
  }

  .diagonal-band {
    margin-left: 0;
    margin-right: 0;
  }

  .report-preview-meta {
    word-break: break-word;
  }

  .report-fragment p,
  .better-direction p,
  .report-verdict strong,
  h1,
  h2,
  h3 {
    overflow-wrap: anywhere;
  }

  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
  }
}


/* =========================================================
   ONLINE BEGREPEN v6 — EDITORIAL AUDIT DESK
   Visual-system override: warm paper, black ink, red pen,
   marker yellow, premium editorial report feel.
   ========================================================= */

:root {
  --ink: #17120f;
  --ink-2: #2d261f;
  --ink-soft: #5f554a;
  --muted: #7a6e61;

  --paper: #f3ecdf;
  --paper-2: #fffaf1;
  --paper-3: #eadcc7;
  --sand: #dcc9ac;

  --yellow: #f3c64f;
  --yellow-soft: #fff0bd;
  --red: #bf463a;
  --red-dark: #8f2e27;
  --green: #2f6c55;
  --blue: #24394b;

  --line: rgba(23, 18, 15, 0.14);
  --line-strong: rgba(23, 18, 15, 0.86);

  --radius: 24px;
  --radius-lg: 34px;
  --radius-xl: 46px;
  --shadow: 7px 7px 0 rgba(23, 18, 15, 0.16);
  --soft-shadow: 0 24px 70px rgba(23, 18, 15, 0.10);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 12% -4%, rgba(243,198,79,.28), transparent 31rem),
    radial-gradient(circle at 94% 5%, rgba(191,70,58,.10), transparent 31rem),
    linear-gradient(180deg, #fff8ee 0%, var(--paper) 42%, #efe2d0 100%);
}

body::before {
  opacity: .30;
  background-size: 44px 44px;
}

.top-strip {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-weight: 760;
}

.top-strip b {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(23,18,15,.18);
}

header {
  background: rgba(243, 236, 223, .86);
  border-bottom: 1px solid rgba(23,18,15,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand-mark {
  border-radius: 15px;
  background: linear-gradient(135deg, var(--yellow), #ffe18a);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand {
  font-size: 22px;
  font-weight: 850;
}

.menu {
  border: 1px solid rgba(23,18,15,.13);
  background: rgba(255,250,241,.74);
  box-shadow: 0 10px 28px rgba(23,18,15,.04);
}

.button {
  border-radius: 999px;
  background: var(--red);
  font-weight: 860;
  box-shadow: 5px 5px 0 var(--ink);
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 8px 8px 0 var(--ink);
}

.button.secondary {
  background: var(--paper-2);
}

.button.secondary:hover {
  background: var(--yellow-soft);
}

.hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(191,70,58,.12), transparent 28rem),
    radial-gradient(circle at 11% 14%, rgba(243,198,79,.32), transparent 31rem),
    linear-gradient(180deg, var(--paper-2), var(--paper));
}

h1 {
  font-size: clamp(58px, 8.6vw, 116px);
  letter-spacing: -.086em;
}

h2 {
  font-size: clamp(39px, 5.15vw, 74px);
  letter-spacing: -.07em;
}

.eyebrow,
.section-kicker {
  background: rgba(23,18,15,.94);
  color: var(--yellow-soft);
  box-shadow: 0 12px 30px rgba(23,18,15,.10);
}

.eyebrow::before,
.section-kicker::before {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(191,70,58,.18);
}

/* Premium editorial cards */
.hero-panel,
.panel,
.report-preview-paper,
.offer {
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,250,241,.98));
  box-shadow: var(--shadow), var(--soft-shadow);
}

.hero-panel {
  transform: rotate(.7deg);
}

.hero-panel::before {
  content: "leesnotitie";
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.card,
.choice-card,
.fit-card,
.example,
details {
  border: 1px solid rgba(23,18,15,.16);
  background: rgba(255,250,241,.82);
  box-shadow: 0 10px 28px rgba(23,18,15,.06);
}

.card.yellow,
.choice-card-accent {
  border-color: rgba(23,18,15,.32);
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  box-shadow: var(--shadow);
}

.card::after,
.choice-card::after,
.fit-card::after,
.form-box::after,
.report-preview-paper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}

.card,
.choice-card,
.fit-card,
.form-box,
.report-preview-paper {
  position: relative;
}

/* More document-like report preview */
.report-preview-paper {
  overflow: hidden;
}

.report-preview-paper::before {
  opacity: .20;
  background-size: 34px 34px;
}

.report-preview-meta {
  background: var(--ink);
}

.report-preview-meta span:first-child {
  color: var(--yellow);
}

.report-fragment {
  background: rgba(191,70,58,.08);
}

.better-direction {
  background:
    radial-gradient(circle at top right, rgba(47,108,85,.18), transparent 24rem),
    rgba(47,108,85,.10);
  border-left-color: var(--green);
}

.report-verdict {
  background: var(--yellow);
}

.report-side-notes div {
  border: 1px solid rgba(23,18,15,.16);
  background: rgba(255,255,255,.64);
  box-shadow: 0 10px 28px rgba(23,18,15,.06);
}

/* Stronger red-pen / green-note comparison */
.compare-card.bad {
  border-left-color: var(--red);
  background: rgba(191,70,58,.08);
}

.compare-card.good {
  border-left-color: var(--green);
  background: rgba(47,108,85,.10);
}

.compare-card.note {
  background: rgba(255,255,255,.72);
}

/* Statement band */
.diagonal-band {
  background: var(--yellow);
  transform: skewY(-1.2deg);
}

.diagonal-band .wrap {
  transform: skewY(1.2deg);
}

/* Form becomes a redactional intake desk */
.form-section {
  background:
    radial-gradient(circle at 7% 0%, rgba(243,198,79,.18), transparent 30rem),
    radial-gradient(circle at 92% 28%, rgba(191,70,58,.16), transparent 28rem),
    var(--ink);
}

.form-box {
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  box-shadow:
    10px 10px 0 rgba(243,198,79,.25),
    0 24px 80px rgba(0,0,0,.24);
}

input,
textarea,
select {
  border: 1px solid rgba(23,18,15,.24);
  background: rgba(255,255,255,.82);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(23,18,15,.68);
  box-shadow: 0 0 0 4px rgba(243,198,79,.34);
}

.radio-option {
  border: 1px solid rgba(23,18,15,.18);
  background: rgba(255,255,255,.62);
}

.radio-option:hover {
  background: var(--yellow-soft);
}

/* Footer + CTA */
.final-cta {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.32), transparent 26rem),
    linear-gradient(135deg, var(--yellow), #ffe17d);
}

footer {
  background: var(--ink);
}

/* Preserve mobile overflow fix and improve mobile polish */
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: clamp(48px, 15vw, 70px);
    letter-spacing: -.075em;
  }

  h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hero-panel,
  .offer,
  .form-box,
  .report-preview-paper,
  .tab-panels {
    border-radius: 26px;
    box-shadow:
      6px 6px 0 rgba(23,18,15,.12),
      0 18px 52px rgba(23,18,15,.08);
  }

  .hero-panel {
    transform: rotate(0);
  }

  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
    background: rgba(23,18,15,.92);
  }

  .mobile-sticky-cta a:last-child {
    background: var(--yellow);
    color: var(--ink);
  }
}


/* =========================================================
   ONLINE BEGREPEN v7 — WARM INK / DIGITAL SAGE / ELECTRIC BLUE
   Visual correction based on Palette A.
   ========================================================= */

:root {
  --ink: #171A1F;
  --ink-2: #2B3038;
  --paper: #F5F1E8;
  --paper-2: #FFFCF6;
  --paper-3: #E8E0D2;
  --white: #FFFFFF;

  --accent: #2F6BFF;
  --accent-dark: #1F49B6;
  --accent-soft: #E7EEFF;

  --sage: #8FAE9D;
  --sage-dark: #4F7562;
  --sage-soft: #EAF2EC;

  --clay: #B98268;
  --clay-dark: #865943;
  --clay-soft: #F1DDD4;

  --muted: #6F6A61;
  --line: #D8D0C2;

  --yellow: var(--accent);
  --yellow-soft: var(--accent-soft);
  --red: var(--clay);
  --red-dark: var(--clay-dark);
  --green: var(--sage-dark);
  --blue: var(--accent);

  --shadow: 0 18px 50px rgba(23, 26, 31, 0.10);
  --soft-shadow: 0 18px 50px rgba(23, 26, 31, 0.10);
  --hard-shadow: 5px 5px 0 rgba(23, 26, 31, 0.16);

  --radius: 22px;
  --max: 1160px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

body {
  background:
    radial-gradient(circle at 84% 10%, rgba(47,107,255,.08), transparent 32rem),
    radial-gradient(circle at 12% 18%, rgba(143,174,157,.15), transparent 30rem),
    linear-gradient(180deg, var(--paper), var(--paper-2) 46%, var(--paper) 100%);
  color: var(--ink);
}

body::before {
  opacity: .18;
  background-size: 48px 48px;
}

.top-strip {
  background: var(--ink);
  color: var(--paper-2);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.top-strip b {
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: none;
}

header {
  background: rgba(23, 26, 31, .94);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand,
.brand-block,
.brand-sub {
  color: var(--paper-2);
}

.brand-sub {
  color: rgba(255,252,246,.68);
}

.brand-mark {
  background: var(--paper-2);
  color: var(--ink);
  border: 2px solid var(--accent);
  box-shadow: 3px 3px 0 var(--sage);
}

.menu {
  background: rgba(255,252,246,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: none;
}

.menu a {
  color: rgba(255,252,246,.76);
}

.menu a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.button {
  background: var(--accent);
  color: #fff !important;
  border: 2px solid var(--ink);
  box-shadow: var(--hard-shadow);
}

.button:hover {
  background: var(--accent-dark);
  transform: translate(-1px, -1px);
  box-shadow: 7px 7px 0 rgba(23,26,31,.18);
}

.button.secondary {
  background: var(--paper-2);
  color: var(--ink) !important;
}

.button.secondary:hover {
  background: var(--accent-soft);
  color: var(--accent-dark) !important;
}

.hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(47,107,255,.10), transparent 30rem),
    radial-gradient(circle at 12% 18%, rgba(143,174,157,.16), transparent 28rem),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.eyebrow,
.section-kicker {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(47,107,255,.28);
  box-shadow: none;
}

.eyebrow::before,
.section-kicker::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47,107,255,.12);
}

.hero-panel,
.card,
.choice-card,
.fit-card,
.offer,
.form-box,
details,
.report-preview-paper,
.tab-panels,
.example {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel {
  background: rgba(255,252,246,.92);
  border-radius: 30px;
  transform: rotate(.2deg);
}

.hero-panel::before {
  content: "leesnotitie";
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(47,107,255,.30);
  box-shadow: none;
}

.card,
.choice-card,
.fit-card,
.example,
details {
  background: rgba(255,252,246,.86);
}

.card.yellow,
.choice-card-accent {
  background: var(--accent-soft);
  border-color: rgba(47,107,255,.35);
  box-shadow: var(--shadow);
}

.choice-number,
.report-side-notes span {
  background: var(--ink);
  color: var(--accent-soft);
}

.choice-card strong {
  color: var(--accent-dark);
}

.panel-label,
.label,
.report-label,
.compare-card span,
.report-preview-paper span {
  color: var(--accent-dark);
}

.mini-list li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  box-shadow: none;
}

.check-list li::before {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: rgba(47,107,255,.35);
}

.diagonal-band {
  background: var(--ink);
  color: var(--paper-2);
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}

.quote {
  background: var(--sage-soft);
  border: 1px solid rgba(79,117,98,.35);
  box-shadow: none;
}

.tab-labels label:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

#tab-dienst:checked ~ .tab-labels label[for="tab-dienst"],
#tab-lokaal:checked ~ .tab-labels label[for="tab-lokaal"],
#tab-webshop:checked ~ .tab-labels label[for="tab-webshop"],
#tab-coach:checked ~ .tab-labels label[for="tab-coach"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.compare-card.bad {
  background: var(--clay-soft);
  border-left-color: var(--clay);
}

.compare-card.good {
  background: var(--sage-soft);
  border-left-color: var(--sage-dark);
}

.compare-card.note {
  background: var(--paper-2);
}

.report-preview-meta {
  background: var(--ink);
  color: var(--paper-2);
}

.report-preview-meta span:first-child {
  color: var(--accent-soft);
}

.report-stamp {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid rgba(47,107,255,.35);
  box-shadow: none;
}

.report-fragment {
  background: var(--clay-soft);
}

.better-direction {
  background:
    radial-gradient(circle at top right, rgba(143,174,157,.22), transparent 24rem),
    var(--sage-soft);
  border-left-color: var(--sage-dark);
}

.report-verdict {
  background: var(--accent-soft);
}

.report-verdict strong {
  color: var(--accent-dark);
}

.report-side-notes div {
  background: rgba(255,252,246,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.silent-questions span {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: rgba(47,107,255,.35);
}

.form-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(47,107,255,.14), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(143,174,157,.16), transparent 26rem),
    var(--ink);
}

.form-box {
  background: var(--paper-2);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(47,107,255,.65);
  box-shadow: 0 0 0 4px rgba(47,107,255,.14);
}

.radio-option:hover {
  background: var(--accent-soft);
  border-color: rgba(47,107,255,.35);
}

.radio-option:has(input:checked) {
  background: var(--accent-soft);
  border-color: var(--accent);
  box-shadow: 4px 4px 0 rgba(47,107,255,.16);
}

.final-cta {
  background: var(--sage-soft);
  color: var(--ink);
  border-top: 1px solid rgba(79,117,98,.28);
  border-bottom: 1px solid rgba(79,117,98,.28);
}

.footer-links a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.mobile-sticky-cta {
  background: rgba(23,26,31,.94);
}

.mobile-sticky-cta a:last-child {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 760px) {
  header {
    background: rgba(23, 26, 31, .96);
  }

  .hero-panel,
  .offer,
  .form-box,
  .report-preview-paper,
  .tab-panels {
    box-shadow: 0 18px 46px rgba(23,26,31,.10);
  }

  .mobile-sticky-cta {
    background: rgba(23,26,31,.94);
  }

  .mobile-sticky-cta a:last-child {
    background: var(--accent);
    color: #fff;
  }
}
/* =========================================================
   FIX — Intake hero overlap
   Voorkomt dat de kaart "Waarom deze vragen?" over de grote kop valt.
   Alleen bedoeld voor de intakepagina.
   ========================================================= */

body.intake-page .hero {
  overflow: hidden;
}

body.intake-page .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

body.intake-page .hero-grid > * {
  min-width: 0;
}

body.intake-page h1 {
  max-width: 8.2ch;
  font-size: clamp(58px, 7.1vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.078em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

body.intake-page .hero-panel {
  position: relative;
  z-index: 3;
  justify-self: end;
  max-width: 480px;
  margin-top: clamp(34px, 4vw, 70px);
  transform: rotate(0.2deg);
}

/* Op smallere schermen: kaart netjes onder de kop */
@media (max-width: 1180px) {
  body.intake-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.intake-page h1 {
    max-width: 10ch;
    font-size: clamp(52px, 12vw, 86px);
  }

  body.intake-page .hero-panel {
    justify-self: start;
    max-width: 680px;
    margin-top: 0;
  }
}

/* Mobiel: kop mag vrijer breken */
@media (max-width: 760px) {
  body.intake-page h1 {
    max-width: 100%;
    font-size: clamp(44px, 15vw, 70px);
    line-height: 0.92;
    overflow-wrap: break-word;
  }
}
/* =========================================================
   FIX — Hero overlap algemeen
   Voorkomt dat grote hero-koppen onder rechterkaarten doorlopen.
   Geldt voor alle Online Begrepen-pagina's met .hero-grid + .hero-panel.
   ========================================================= */

.hero {
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 480px);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.hero-grid > * {
  min-width: 0;
}

.hero-grid h1 {
  max-width: 8.6ch;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.078em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-grid .hero-panel {
  position: relative;
  z-index: 3;
  justify-self: end;
  max-width: 480px;
  margin-top: clamp(28px, 4vw, 68px);
}

/* Op smallere schermen gaat de kaart onder de kop */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-grid h1 {
    max-width: 10.5ch;
    font-size: clamp(52px, 12vw, 86px);
  }

  .hero-grid .hero-panel {
    justify-self: start;
    max-width: 680px;
    margin-top: 0;
  }
}

/* Mobiel: kop mag weer natuurlijker breken */
@media (max-width: 760px) {
  .hero-grid h1 {
    max-width: 100%;
    font-size: clamp(44px, 15vw, 70px);
    line-height: 0.92;
    overflow-wrap: break-word;
  }
}
/* =========================================================
   FIX — Homepage form-section overlap
   Voorkomt dat de grote tekst links onder het formulier doorloopt.
   ========================================================= */

.form-section {
  overflow: hidden;
}

.form-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}

.form-grid > * {
  min-width: 0;
}

.form-copy {
  max-width: 460px;
}

.form-copy h2 {
  max-width: 8.8ch;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.form-box {
  position: relative;
  z-index: 3;
  justify-self: end;
  width: 100%;
  max-width: 640px;
}

/* Op smallere schermen: formulier netjes onder de tekst */
@media (max-width: 1180px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-copy {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .form-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(46px, 10vw, 76px);
  }

  .form-box {
    justify-self: start;
    max-width: 760px;
  }
}

/* Mobiel */
@media (max-width: 760px) {
  .form-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.95;
    overflow-wrap: break-word;
  }

  .form-box {
    max-width: 100%;
  }
}
/* =========================================================
   FIX v2 — Homepage formulier-overlap definitief
   Zorgt dat de grote kop links nooit meer onder het formulier doorloopt.
   ========================================================= */

.form-section .form-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(520px, 1fr);
  gap: clamp(64px, 7vw, 120px);
  align-items: start;
}

.form-section .form-grid > * {
  min-width: 0;
}

.form-section .form-copy {
  max-width: 420px;
  width: 100%;
  position: sticky;
  top: 112px;
  z-index: 1;
}

.form-section .form-copy h2 {
  max-width: 7.6ch;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.074em;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.form-section .form-box {
  position: relative;
  z-index: 5;
  justify-self: end;
  width: 100%;
  max-width: 720px;
}

/* Vanaf smallere schermen: tekst boven, formulier eronder */
@media (max-width: 1180px) {
  .form-section .form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-section .form-copy {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .form-section .form-copy h2 {
    max-width: 10ch;
    font-size: clamp(44px, 10vw, 76px);
    overflow-wrap: break-word;
  }

  .form-section .form-box {
    justify-self: start;
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .form-section .form-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.95;
    overflow-wrap: break-word;
  }

  .form-section .form-box {
    max-width: 100%;
  }
}
/* --- Redactionele routes navigatieblok v2 — editorial routekaart --- */

.route-nav {
  background:
    radial-gradient(circle at 12% 0%, rgba(47,107,255,.16), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(143,174,157,.12), transparent 26rem),
    var(--ink);
  color: var(--paper-2);
  border-top: 0;
  border-bottom: 0;
}

.route-nav-box {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,252,246,.08), rgba(255,252,246,.04));
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  padding: clamp(26px, 3.4vw, 42px);
}

.route-nav-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 28px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.route-nav .section-kicker {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: rgba(47,107,255,.28);
  box-shadow: none;
}

.route-nav h2 {
  color: var(--paper-2);
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.058em;
}

.route-nav .section-intro {
  color: rgba(255,252,246,.74);
  max-width: 760px;
}

.route-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,252,246,.08);
  color: var(--paper-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 850;
  white-space: nowrap;
}

.route-back:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.route-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.route-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,252,246,.07);
  color: var(--paper-2);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.route-link:hover {
  transform: translateY(-2px);
  background: rgba(255,252,246,.12);
  border-color: rgba(231,238,255,.40);
}

.route-link span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.route-link strong {
  display: block;
  color: var(--paper-2);
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 5px;
}

.route-link p {
  margin: 0;
  color: rgba(255,252,246,.68);
  font-size: 14.2px;
  line-height: 1.42;
  max-width: none;
}

@media (max-width: 980px) {
  .route-nav-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .route-back {
    justify-self: start;
  }

  .route-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .route-nav-box {
    border-radius: 26px;
    padding: 22px;
  }

  .route-link {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .route-link span {
    width: 34px;
    height: 34px;
  }
}
/* --- Fix redactionele routes: tekst netjes onder titel --- */

.route-link {
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
}

.route-link span {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.route-link strong {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.route-link p {
  grid-column: 2;
  grid-row: 2;
  margin-top: 2px;
  max-width: 520px;
}

@media (max-width: 760px) {
  .route-link {
    grid-template-columns: 36px minmax(0, 1fr);
  }
}
/* --- Mobile dropdown menu --- */

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,252,246,.08);
  color: var(--paper-2);
  font-size: 13.5px;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::after {
  content: "↓";
  font-size: 13px;
  transform: translateY(-1px);
}

.mobile-menu[open] summary {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: rgba(47,107,255,.35);
}

.mobile-menu[open] summary::after {
  content: "↑";
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(23,26,31,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
  z-index: 80;
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--paper-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: -.02em;
}

.mobile-menu-panel a:hover {
  background: rgba(255,252,246,.10);
}

.mobile-menu-panel a.mobile-menu-primary {
  margin-top: 6px;
  background: var(--accent);
  color: #fff;
}

.mobile-menu-panel a.mobile-menu-secondary {
  background: rgba(255,252,246,.08);
}

@media (max-width: 1080px) {
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 760px) {
  .nav {
    position: relative;
  }

  .mobile-menu summary {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .mobile-menu-panel {
    right: 0;
  }
}
/* --- Mobile dropdown menu v2 — premium compact panel --- */

.mobile-menu {
  display: none;
  position: relative;
  flex: 0 0 auto;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(231,238,255,.34);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47,107,255,.12);
}

.mobile-menu summary::after {
  content: "↓";
  font-size: 12px;
  line-height: 1;
  opacity: .82;
  transform: translateY(-1px);
}

.mobile-menu[open] summary {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255,255,255,.72);
}

.mobile-menu[open] summary::after {
  content: "↑";
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(360px, calc(100vw - 28px));
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(47,107,255,.20), transparent 18rem),
    linear-gradient(180deg, rgba(35,39,48,.98), rgba(23,26,31,.98));
  box-shadow:
    0 26px 80px rgba(0,0,0,.34),
    inset 0 0 0 1px rgba(255,255,255,.05);
  z-index: 90;
}

.mobile-menu-panel a {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  color: rgba(255,252,246,.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: -.025em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-panel a::after {
  content: "→";
  opacity: .38;
  font-size: 13px;
}

.mobile-menu-panel a:hover {
  background: rgba(255,252,246,.09);
  color: #fff;
}

.mobile-menu-panel a.mobile-menu-secondary {
  margin-top: 6px;
  background: rgba(255,252,246,.08);
  color: var(--paper-2);
}

.mobile-menu-panel a.mobile-menu-primary {
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 34px rgba(47,107,255,.26);
}

.mobile-menu-panel a.mobile-menu-primary::after {
  opacity: .72;
}

@media (max-width: 1080px) {
  .mobile-menu {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav {
    position: relative;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
    gap: 12px;
  }

  .brand-block {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 14px;
  }

  .brand {
    font-size: 19px;
    letter-spacing: -.045em;
  }

  .mobile-menu summary {
    min-height: 40px;
    padding: 0 13px;
    font-size: 12.5px;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

  .mobile-menu-panel a {
    min-height: 47px;
    font-size: 14px;
  }
}
/* --- FIX: mobile menu button wrapper moet onderdeel van header zijn --- */

.mobile-menu {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  position: relative;
  flex: 0 0 auto;
}

.mobile-menu[open] {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.mobile-menu summary {
  background: var(--paper-2) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.18) !important;
}

.mobile-menu[open] summary {
  background: var(--paper-2) !important;
  color: var(--ink) !important;
  border-color: rgba(231,238,255,.55) !important;
}

@media (max-width: 1080px) {
  .mobile-menu {
    display: block !important;
  }
}

@media (min-width: 1081px) {
  .mobile-menu {
    display: none !important;
  }
}
/* =========================================================
   FIX — leesnotitie hero-uitlijning gelijk aan homepage
   Doel: Gratis Eerste Lezing, Kennisbank en kennisbankartikelen
   tonen de rechter leesnotitiekaart even hoog als de homepage.
   ========================================================= */

@media (min-width: 1181px) {
  body.gratis-lezing-page .hero-grid,
  body.kennisbank-page .hero-grid,
  body.article-page .hero-grid {
    align-items: start !important;
  }

  body.gratis-lezing-page .hero-grid .hero-panel,
  body.kennisbank-page .hero-grid .hero-panel,
  body.article-page .hero-grid .hero-panel {
    align-self: start !important;
    margin-top: clamp(28px, 4vw, 68px) !important;
  }
}

/* Op tablet en mobiel blijft de kaart netjes onder de hero-tekst staan. */
@media (max-width: 1180px) {
  body.gratis-lezing-page .hero-grid .hero-panel,
  body.kennisbank-page .hero-grid .hero-panel,
  body.article-page .hero-grid .hero-panel {
    align-self: auto !important;
    justify-self: start !important;
    margin-top: 0 !important;
    max-width: 680px;
  }
}
/* =========================================================
   WIE LEEST JE WEBSITE — persoonlijke vertrouwenssectie
   ========================================================= */

.about-split {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.about-photo-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-0.35deg);
}

.about-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

.about-photo-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.92);
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(23, 26, 31, 0.12);
}

.about-copy p {
  font-size: 17.5px;
  color: var(--ink-2);
}

.about-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.about-mini-grid .card {
  padding: clamp(20px, 2vw, 26px);
}

.about-mini-grid .card p {
  font-size: 15.5px;
}

@media (max-width: 1180px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-photo-card {
    max-width: 460px;
  }

  .about-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-photo-card {
    max-width: 100%;
    border-radius: 26px;
    transform: none;
  }

  .about-photo-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
/* =========================================================
   FIX v2 — Wie leest je website rustiger en leesbaarder
   ========================================================= */

#wie-leest-je-website .about-split {
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

#wie-leest-je-website .about-copy h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

#wie-leest-je-website .about-copy .section-intro {
  max-width: 760px;
}

#wie-leest-je-website .about-photo-card {
  max-width: 380px;
  justify-self: start;
}

#wie-leest-je-website .about-photo-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

#wie-leest-je-website .about-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

#wie-leest-je-website .about-mini-grid .card h3 {
  font-size: 21px;
  line-height: 1.12;
}

#wie-leest-je-website .about-mini-grid .card p {
  font-size: 15.4px;
  line-height: 1.5;
}

/* Iets eerder naar één kolom, zodat de sectie niet krap wordt. */
@media (max-width: 1280px) {
  #wie-leest-je-website .about-split {
    grid-template-columns: 1fr;
  }

  #wie-leest-je-website .about-photo-card {
    max-width: 420px;
  }

  #wie-leest-je-website .about-copy h2 {
    max-width: 860px;
  }

  #wie-leest-je-website .about-mini-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  #wie-leest-je-website .about-copy h2 {
    font-size: clamp(36px, 10vw, 54px);
    line-height: 1;
    letter-spacing: -0.058em;
  }

  #wie-leest-je-website .about-photo-card {
    max-width: 100%;
  }

  #wie-leest-je-website .about-photo-note {
    font-size: 12.8px;
  }
}

/* Print/PDF-fix: voorkomt smalle kolommen bij Safari/PDF-export. */
@media print {
  #wie-leest-je-website .about-split {
    display: block;
  }

  #wie-leest-je-website .about-photo-card {
    max-width: 420px;
    margin-bottom: 32px;
  }

  #wie-leest-je-website .about-mini-grid {
    display: block;
  }

  #wie-leest-je-website .about-mini-grid .card {
    margin-bottom: 16px;
  }
}
/* =========================================================
   FIX — verwijder fotolabel in Wie leest je website
   ========================================================= */

#wie-leest-je-website .about-photo-note {
  display: none !important;
}
/* =========================================================
   HERO TARGETLINE — doelgroep direct zichtbaar maken
   ========================================================= */

.hero-targetline {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.22;
  letter-spacing: -0.04em;
  font-weight: 850;
}

@media (max-width: 760px) {
  .hero-targetline {
    font-size: 19px;
    line-height: 1.28;
    margin-bottom: 18px;
  }
}
/* =========================================================
   HERO v3 — doelgroep en aanbod directer zichtbaar
   ========================================================= */

.hero-audience {
  display: block;
  max-width: 900px;
  margin: 0 0 24px;
  padding: 17px 22px 18px 24px;
  border-left: 6px solid var(--accent);
  border-radius: 0 24px 24px 0;
  background: rgba(231, 238, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(23, 26, 31, 0.08);
  font-size: clamp(22px, 2.55vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.052em;
  font-weight: 920;
}

.hero .lead {
  max-width: 760px;
  font-weight: 680;
}

.hero .hero-copy + .hero-copy {
  margin-top: 12px;
}

.hero-panel .mini-list li strong {
  color: var(--accent-dark);
  font-weight: 920;
}

@media (max-width: 760px) {
  .hero-audience {
    margin-bottom: 20px;
    padding: 15px 17px;
    border-left-width: 5px;
    border-radius: 0 20px 20px 0;
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.16;
  }
}
/* =========================================================
   ONLINE BEGREPEN v8 — SALIE & INKT
   Rustiger, menselijker kleurensysteem op basis van de foto.
   ========================================================= */

:root {
  --ink: #171A1F;
  --ink-2: #263129;
  --ink-soft: #59635A;
  --muted: #6C675E;

  --paper: #F4EFE6;
  --paper-2: #FFFCF6;
  --paper-3: #E6DDCE;

  --moss: #263629;
  --moss-2: #324735;

  --sage: #71886F;
  --sage-dark: #405A43;
  --sage-soft: #E6EEE4;

  --clay: #B47A63;
  --clay-dark: #784839;
  --clay-soft: #F0DDD4;

  --marker: #D5B756;
  --marker-soft: #F6E8B8;

  --accent: var(--sage-dark);
  --accent-dark: var(--moss);
  --accent-soft: var(--sage-soft);

  --yellow: var(--marker);
  --yellow-soft: var(--marker-soft);
  --red: var(--clay);
  --red-dark: var(--clay-dark);
  --green: var(--sage-dark);
  --blue: var(--sage-dark);

  --line: rgba(23, 26, 31, 0.14);
  --shadow: 0 18px 50px rgba(23, 26, 31, 0.10);
  --soft-shadow: 0 18px 50px rgba(23, 26, 31, 0.10);
  --hard-shadow: 5px 5px 0 rgba(23, 26, 31, 0.16);
}

/* Algemene sfeer */
body {
  background:
    radial-gradient(circle at 82% 8%, rgba(113,136,111,.18), transparent 30rem),
    radial-gradient(circle at 12% 18%, rgba(213,183,86,.14), transparent 28rem),
    linear-gradient(180deg, var(--paper), var(--paper-2) 46%, var(--paper) 100%);
  color: var(--ink);
}

body::before {
  opacity: .16;
}

/* Topbar en header */
.top-strip {
  background: var(--moss);
  color: var(--paper-2);
}

.top-strip b {
  background: var(--sage-soft);
  color: var(--moss);
}

header {
  background: rgba(38, 54, 41, .96);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand,
.brand-block,
.brand-sub {
  color: var(--paper-2);
}

.brand-sub {
  color: rgba(255,252,246,.70);
}

.brand-mark {
  background: var(--paper-2);
  color: var(--moss);
  border: 2px solid var(--sage);
  box-shadow: 3px 3px 0 rgba(113,136,111,.85);
}

.menu {
  background: rgba(255,252,246,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.menu a {
  color: rgba(255,252,246,.78);
}

.menu a:hover {
  background: var(--sage-soft);
  color: var(--moss);
}

/* Knoppen */
.button {
  background: var(--sage-dark);
  color: #fff !important;
  border-color: var(--moss);
  box-shadow: var(--hard-shadow);
}

.button:hover {
  background: var(--moss);
  box-shadow: 7px 7px 0 rgba(23,26,31,.18);
}

.button.secondary {
  background: var(--paper-2);
  color: var(--moss) !important;
}

.button.secondary:hover {
  background: var(--sage-soft);
  color: var(--moss) !important;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 84% 10%, rgba(113,136,111,.20), transparent 30rem),
    radial-gradient(circle at 10% 18%, rgba(213,183,86,.16), transparent 28rem),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.hero-targetline {
  display: block;
  max-width: 860px;
  margin: 0 0 24px;
  padding: 18px 22px;
  border-left: 7px solid var(--sage-dark);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(230,238,228,.96), rgba(255,252,246,.78));
  color: var(--moss);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.045em;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(23,26,31,.07);
}

/* Labels */
.eyebrow,
.section-kicker {
  background: var(--sage-soft);
  color: var(--moss);
  border: 1px solid rgba(64,90,67,.24);
  box-shadow: none;
}

.eyebrow::before,
.section-kicker::before {
  background: var(--sage-dark);
  box-shadow: 0 0 0 4px rgba(64,90,67,.13);
}

/* Hero kaart / leesnotitie */
.hero-panel {
  background: rgba(255,252,246,.94);
  border: 1px solid rgba(38,54,41,.18);
  box-shadow: 0 22px 58px rgba(23,26,31,.11);
}

.hero-panel::before {
  background: var(--sage-soft);
  color: var(--moss);
  border: 1px solid rgba(64,90,67,.28);
  box-shadow: none;
}

.panel-label,
.label,
.report-label,
.compare-card span,
.report-preview-paper span {
  color: var(--clay-dark);
}

.mini-list li {
  background: var(--paper-2);
  border: 1px solid rgba(38,54,41,.14);
  border-left: 4px solid var(--sage-dark);
}

/* Statementband */
.diagonal-band {
  background: var(--moss);
  color: var(--paper-2);
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}

/* Kaarten */
.card,
.choice-card,
.fit-card,
.example,
details {
  background: rgba(255,252,246,.88);
  border: 1px solid rgba(38,54,41,.14);
  box-shadow: 0 14px 36px rgba(23,26,31,.07);
}

.card.yellow,
.choice-card-accent {
  background:
    linear-gradient(180deg, var(--sage-soft), rgba(230,238,228,.88));
  border-color: rgba(64,90,67,.28);
  box-shadow: 0 18px 44px rgba(23,26,31,.08);
}

.choice-number,
.report-side-notes span {
  background: var(--moss);
  color: var(--sage-soft);
}

.choice-card strong {
  color: var(--sage-dark);
}

/* Quote / tussenconclusies */
.quote {
  background: var(--sage-soft);
  border: 1px solid rgba(64,90,67,.30);
  color: var(--moss);
  box-shadow: none;
}

/* Voorbeelden: fout / richting */
.compare-card.bad {
  background: var(--clay-soft);
  border-left-color: var(--clay);
}

.compare-card.good {
  background: var(--sage-soft);
  border-left-color: var(--sage-dark);
}

.compare-card.note {
  background: var(--paper-2);
}

/* Rapportpreview */
.report-preview-paper,
.offer,
.tab-panels,
.form-box {
  border: 1px solid rgba(38,54,41,.16);
  box-shadow: 0 22px 60px rgba(23,26,31,.10);
}

.report-preview-meta {
  background: var(--moss);
  color: var(--paper-2);
}

.report-preview-meta span:first-child {
  color: var(--marker-soft);
}

.report-stamp {
  background: var(--sage-soft);
  color: var(--moss);
  border: 1px solid rgba(64,90,67,.28);
  box-shadow: none;
}

.report-fragment {
  background: var(--clay-soft);
}

.better-direction {
  background:
    radial-gradient(circle at top right, rgba(113,136,111,.22), transparent 24rem),
    var(--sage-soft);
  border-left-color: var(--sage-dark);
}

.report-verdict {
  background: var(--marker-soft);
}

.report-verdict strong {
  color: var(--moss);
}

.report-side-notes div {
  background: rgba(255,252,246,.84);
  border: 1px solid rgba(38,54,41,.14);
  box-shadow: 0 14px 36px rgba(23,26,31,.07);
}

/* Stille vragen */
.silent-questions span {
  background: var(--sage-soft);
  color: var(--moss);
  border-color: rgba(64,90,67,.28);
}

/* Formulier */
.form-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(113,136,111,.16), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(213,183,86,.10), transparent 26rem),
    var(--moss);
}

.form-box {
  background: var(--paper-2);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(64,90,67,.72);
  box-shadow: 0 0 0 4px rgba(113,136,111,.18);
}

.radio-option:hover,
.radio-option:has(input:checked) {
  background: var(--sage-soft);
  border-color: rgba(64,90,67,.35);
}

/* CTA onderaan */
.final-cta {
  background: var(--sage-soft);
  color: var(--ink);
  border-top: 1px solid rgba(64,90,67,.26);
  border-bottom: 1px solid rgba(64,90,67,.26);
}

/* Footer */
footer {
  background: var(--moss);
}

/* Mobiel */
.mobile-sticky-cta {
  background: rgba(38,54,41,.96);
}

.mobile-sticky-cta a:last-child {
  background: var(--sage-dark);
  color: #fff;
}

.mobile-menu summary {
  background: var(--sage-soft) !important;
  color: var(--moss) !important;
}

.mobile-menu-panel {
  background:
    radial-gradient(circle at 12% 0%, rgba(113,136,111,.20), transparent 18rem),
    linear-gradient(180deg, rgba(50,71,53,.98), rgba(38,54,41,.98));
}

.mobile-menu-panel a.mobile-menu-primary {
  background: var(--sage-dark);
  color: #fff;
}

@media (max-width: 760px) {
  header {
    background: rgba(38,54,41,.97);
  }

  .hero-targetline {
    font-size: 19.5px;
    line-height: 1.25;
    padding: 15px 17px;
    border-radius: 18px;
  }

  .hero-panel,
  .offer,
  .form-box,
  .report-preview-paper,
  .tab-panels {
    box-shadow: 0 18px 46px rgba(23,26,31,.10);
  }
}
/* =========================================================
   FIX — mobiele foto in Wie leest je website kleiner
   ========================================================= */

@media (max-width: 760px) {
  #wie-leest-je-website .about-photo-card {
    width: 45% !important;
    max-width: 220px !important;
    min-width: 165px !important;
    margin: 0 auto 28px !important;
    justify-self: center !important;
  }

  #wie-leest-je-website .about-photo-card img {
    width: 100% !important;
    height: auto !important;
  }
}