/* Skipdoc landingspagina — mobile-first, één licht thema met twee contrasterende navy secties.
   Alle tokens komen uit de reader-app (web/src/index.css) en zijn uitgebreid
   met ambient dieptelagen, micro-interacties en interactieve componenten.
   Geen inline style-attributen: de CSP staat 'unsafe-inline' voor styles niet toe. */

/* De leesletter, self-hosted en identiek aan de app. Alleen de latin-subset:
   Nederlands valt daar volledig binnen, inclusief €, — en ·. */
@font-face {
  font-family: "Literata";
  src: url("./fonts/literata-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  accent-color: #15803d;

  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-2: #f0f0ee;
  --surface-3: #e8e8e4;
  --text: #1b1b1a;
  --text-soft: #4f4f4a;
  --text-muted: #6b6b66;
  --border: #e3e3df;
  --border-strong: #cecec9;

  --accent: #15803d;
  --accent-hover: #126d34;
  --accent-text: #166534;
  --accent-ink: #ffffff;
  --accent-soft: rgba(21, 128, 61, 0.08);
  --accent-border: rgba(21, 128, 61, 0.25);
  --success: #0f766e;
  --success-bg: #e6f5f2;
  --brand: #0b1120;
  --focus: #0b1120;

  /* Ambient Gloed & Diepte Tokens */
  --glow-emerald: radial-gradient(circle at 50% 50%, rgba(21, 128, 61, 0.14) 0%, transparent 70%);
  --glow-brand: radial-gradient(circle at 50% 30%, rgba(45, 212, 191, 0.15) 0%, transparent 60%);

  /* Het dark-palet van de app, voor de contrasterende navy secties. */
  --d-bg: #0b1120;
  --d-surface: #131a2a;
  --d-surface-2: #1b2438;
  --d-surface-3: #222d46;
  --d-text: #e8eaf0;
  --d-muted: #9aa3b8;
  --d-faint: #6f7a93;
  --d-border: #263149;
  --d-success: #2dd4bf;
  --d-brand: #c7d2fe;

  --r-1: 4px;
  --r-2: 8px;
  --r-3: 10px;
  --r-4: 12px;
  --r-5: 16px;
  --r-6: 20px;
  --r-pill: 999px;

  /* Verfijnde Schaduw Hiërarchie */
  --e-1: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --e-2: 0 8px 24px -4px rgba(11, 17, 32, 0.08), 0 2px 6px -1px rgba(11, 17, 32, 0.04);
  --e-3: 0 16px 36px -6px rgba(11, 17, 32, 0.12), 0 4px 12px -2px rgba(11, 17, 32, 0.05);
  --e-phone: 0 25px 60px -12px rgba(11, 17, 32, 0.24), 0 4px 16px rgba(11, 17, 32, 0.08), 0 0 0 1px rgba(11, 17, 32, 0.06);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.15s;
  --t-base: 0.25s;

  --font-body: "Literata", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;

  --measure: 640px;
  --wide: 1160px;
  --pad-x: 1.25rem;
  --pad-y: 4.5rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand);
  text-wrap: balance;
}

p {
  margin: 0;
}

svg {
  display: block;
  flex: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-text);
  text-decoration: none;
  transition: color var(--t-fast) ease;
}
a:hover {
  color: #14532d;
}

:where(a, button, summary, input, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-2);
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 60;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-4);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s var(--ease-out);
}
.skip:focus {
  top: 0.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Scroll Voortgangsbalk ------------------------------------------------ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #15803d, #2dd4bf);
  z-index: 100;
  transition: width 0.1s linear;
}

/* --- Layout ---------------------------------------------------------------- */

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
}
.wrap--prose {
  max-width: var(--measure);
}

section {
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}
.band {
  background: var(--surface);
  background-image: radial-gradient(rgba(11, 17, 32, 0.09) 1.25px, transparent 1.25px);
  background-size: 20px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* --- Typografie ------------------------------------------------------------ */

h1 {
  font-size: 2rem;
  line-height: 1.17;
  letter-spacing: -0.018em;
}
h2 {
  font-size: 1.6875rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
h3 {
  font-size: 1.1875rem;
  line-height: 1.3;
}

.lead,
.prose {
  font-family: var(--font-body);
  line-height: 1.72;
  color: var(--text-soft);
}
.prose {
  color: var(--text);
}
:where(.lead, .prose) + p:where(.lead, .prose) {
  margin-top: 1rem;
}
.note {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.fine {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* --- Trust & Status Badges ------------------------------------------------ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  width: fit-content;
}
.badge--accent {
  background: var(--accent-soft);
  color: var(--accent-text);
  border: 1px solid var(--accent-border);
}
.badge--brand {
  background: rgba(11, 17, 32, 0.06);
  color: var(--brand);
  border: 1px solid var(--border);
}
.badge--dark {
  background: rgba(45, 212, 191, 0.12);
  color: var(--d-success);
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(21, 128, 61, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(21, 128, 61, 0);
  }
}

/* --- Knoppen met Tactiele Micro-interacties ------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  padding: 0.9375rem 1.25rem;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--r-4);
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-spring),
    box-shadow var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out),
    filter var(--t-fast) var(--ease-out);
  position: relative;
  user-select: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0px) scale(0.98);
  filter: brightness(0.94);
}
.btn svg {
  transition: transform var(--t-fast) var(--ease-spring);
}
.btn:hover svg {
  transform: translateX(3px);
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.2);
}
.btn--accent:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
  box-shadow: 0 6px 16px rgba(21, 128, 61, 0.28);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--e-1);
}
.btn--ghost:hover {
  background: var(--surface-2);
  color: var(--brand);
  border-color: var(--border-strong);
  box-shadow: var(--e-2);
}
.btn--sm {
  font-size: 0.9375rem;
  padding: 0.5625rem 0.9375rem;
  min-height: 38px;
}
.btn--block {
  display: flex;
  width: 100%;
}

/* --- Navigatie & Menu ------------------------------------------------------ */

.nav {
  padding: 0.75rem var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--wide);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--brand);
  flex: none;
}
.brand svg {
  width: 22px;
  height: 24px;
  transition: transform var(--t-fast) var(--ease-spring);
}
.brand:hover svg {
  transform: rotate(-5deg) scale(1.05);
}
.brand__word {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.brand__word b {
  font-weight: 800;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.375rem 0.125rem;
  position: relative;
  transition: color var(--t-fast) ease;
}
.nav__link:hover {
  color: var(--brand);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  border-radius: var(--r-pill);
  transition: width var(--t-fast) var(--ease-out);
}
.nav__link:hover::after {
  width: 100%;
}

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

.hero {
  padding-bottom: 2rem;
  overflow: hidden;
  background-image: radial-gradient(rgba(11, 17, 32, 0.11) 1.25px, transparent 1.25px);
  background-size: 20px 20px;
}
.hero__badge {
  margin-bottom: 1.25rem;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.625rem;
}
.hero__lead {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
}
.hero__note {
  margin-top: 1rem;
}
.hero__device-wrap {
  position: relative;
  margin-top: 2.5rem;
}
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.14) 0%, rgba(45, 212, 191, 0.08) 45%, transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}
.hero__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.hero__tab-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.375rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}
.hero__tab-btn:hover {
  color: var(--brand);
  border-color: var(--border-strong);
}
.hero__tab-btn.is-active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: var(--e-1);
}
.hero__device {
  position: relative;
  z-index: 1;
  height: 320px;
  overflow: hidden;
}

/* --- Telefoonmockup & App Screens ----------------------------------------- */

.phone {
  --phone-w: 300px;
  --scale: 0.7179;
  width: var(--phone-w);
  margin: 0 auto;
  padding: 10px;
  border-radius: 44px;
  background: var(--brand);
  box-shadow: var(--e-phone);
  position: relative;
}
.phone--cut {
  border-radius: 44px 44px 0 0;
  padding-bottom: 0;
}
.phone__screen {
  width: calc(var(--phone-w) - 20px);
  height: calc(844px * var(--scale));
  border-radius: 35px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.phone--cut .phone__screen {
  border-radius: 35px 35px 0 0;
}

.app-screen {
  display: none;
  width: 390px;
  height: 844px;
  transform: scale(var(--scale));
  transform-origin: top left;
  background: var(--bg);
  flex-direction: column;
}
.app-screen.is-active {
  display: flex;
}

.app {
  width: 390px;
  height: 844px;
  transform: scale(var(--scale));
  transform-origin: top left;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.app__topbar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 9.6px;
  padding: 12px 12.8px 9.6px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.app__iconbtn {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  background: var(--surface);
  color: var(--text);
}
.app__progress {
  flex: 1 1 auto;
  min-width: 0;
  padding: 3.2px 1.6px;
}
.app__progress-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 9.6px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 4.8px;
}
.app__progress-pos {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app__progress-toc {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 2.4px;
  font-weight: 700;
  color: var(--accent-text);
}
.app__track {
  height: 4px;
  background: var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.app__fill {
  height: 100%;
  background: var(--success);
  border-radius: var(--r-pill);
}
.app__page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px 32px;
  overflow: hidden;
}
.app__eyebrow {
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.app__title {
  font-family: var(--font-body);
  font-size: 25.6px;
  line-height: 1.2;
  margin: 6.4px 0 19.2px;
  color: var(--text);
}
.app__prose {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}
.app__prose p + p {
  margin-top: 16px;
}
.app__btn {
  align-self: flex-start;
  margin-top: 24px;
  padding: 11.2px 17.6px;
  border-radius: var(--r-4);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 16px;
  font-weight: 600;
}
.app__share {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6.4px;
  margin-top: 24px;
  font-size: 15.3px;
  color: var(--text-muted);
}

.app__screen {
  padding: 20px 20px 32px;
  display: flex;
  flex-direction: column;
}
.app__head {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12.8px;
  margin-bottom: 16px;
}
.app__head-title {
  flex: 1 1 auto;
  font-size: 25.6px;
  font-weight: 600;
  color: var(--text);
}
.app__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  box-shadow: var(--e-1);
  padding: 17.6px;
  margin-bottom: 16px;
}
.app__meta {
  font-size: 12.8px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.app__card-title {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
  margin: 5.6px 0 16px;
  color: var(--text);
}
.app__answer {
  padding: 14.4px 16px;
  border-radius: var(--r-4);
  background: var(--surface-2);
  font-size: 17px;
  line-height: 1.6;
}
.app__answer p {
  margin-top: 10.4px;
}
.app__ref {
  font-size: 15.3px;
  color: var(--text-muted);
}
.app__row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.app__row > * {
  flex: 1 1 0;
  text-align: center;
  padding: 11.2px 17.6px;
  border-radius: var(--r-4);
  font-size: 16px;
  font-weight: 600;
}
.app__ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.app__accent {
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid transparent;
}

/* --- Transformatie Widget (Probleem Sectie) -------------------------------- */

.transform-box {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-6);
  box-shadow: var(--e-2);
  overflow: hidden;
}
.transform-nav {
  display: flex;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem;
  gap: 0.5rem;
}
.transform-tab {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}
.transform-tab:hover {
  color: var(--brand);
}
.transform-tab.is-active {
  background: var(--surface);
  color: var(--brand);
  border-color: var(--border);
  box-shadow: var(--e-1);
}
.transform-view {
  display: none;
  padding: 1.75rem 1.375rem;
}
.transform-view.is-active {
  display: block;
  animation: view-in 0.25s var(--ease-out) both;
}
@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.pdf-mock {
  background: #fdfdfc;
  border: 1px solid #dcdcd7;
  border-radius: var(--r-3);
  padding: 1.25rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
}
.pdf-mock__bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #888880;
  border-bottom: 1px solid #eaeae5;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.pdf-mock__title {
  font-size: 1.125rem;
  color: #333330;
  margin-bottom: 0.75rem;
}
.pdf-mock__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #666660;
}
.pdf-mock__text + .pdf-mock__text {
  margin-top: 0.625rem;
}
.pdf-mock__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.3125rem 0.625rem;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: var(--r-2);
  color: #991b1b;
  font-size: 0.8125rem;
  font-weight: 600;
}

.app-mock-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: 1.25rem;
  box-shadow: var(--e-1);
}
.app-mock-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.app-mock-card__pill {
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--r-pill);
}
.app-mock-card__title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--brand);
  margin-bottom: 0.625rem;
}
.app-mock-card__prose {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.app-mock-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.app-mock-card__btn {
  background: var(--accent);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: var(--r-3);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* --- Hoe het werkt: Process Timeline --------------------------------------- */

.process-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}
.process-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: 1.5rem 1.375rem;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
  position: relative;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--e-2);
  border-color: var(--border-strong);
}
.process-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.process-step__num {
  font-family: var(--font-body);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.28;
}
.process-step__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.process-step h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.5rem;
}

/* --- Wat je krijgt: Feature Grid ------------------------------------------- */

.features {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  box-shadow: var(--e-1);
  padding: 1.5rem 1.375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--e-2);
}
.feature svg.feature__icon {
  width: 26px;
  height: 26px;
  color: var(--brand);
  margin-bottom: 0.875rem;
}
.feature h3 {
  margin-bottom: 0.5rem;
}
.feature__snippet {
  margin-top: 1.125rem;
  padding: 0.5rem 0.75rem;
  background: var(--surface-2);
  border-radius: var(--r-3);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
}

/* --- Controleerbaarheid (Donkere Navy Sectie #1) --------------------------- */

.proof {
  background: var(--d-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--d-border);
  border-bottom: 1px solid var(--d-border);
}
.proof__glow {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, rgba(199, 210, 254, 0.05) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.proof h2,
.proof h3 {
  color: var(--d-text);
}
.proof .lead,
.proof .prose {
  color: var(--d-muted);
}
.proof .note {
  color: var(--d-muted);
}
.proof__title {
  margin-top: 1rem;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.875rem;
  list-style: none;
  padding: 0;
}
.steps-list li {
  display: flex;
  gap: 0.875rem;
}
.steps-list b {
  flex: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--d-border);
  background: var(--d-surface);
  color: var(--d-brand);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
}
.steps-list h3 {
  font-size: 1.125rem;
  line-height: 1.35;
}
.steps-list p {
  margin-top: 0.4375rem;
}
.pull {
  margin-top: 1.875rem;
  border-left: 2px solid var(--d-border);
  padding-left: 1rem;
}

.quiz-widget {
  background: var(--d-surface);
  border: 1px solid var(--d-border);
  border-radius: var(--r-5);
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
}
.quiz-widget__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--d-success);
  margin-bottom: 0.5rem;
}
.quiz-widget__stem {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--d-text);
  margin-bottom: 1.125rem;
}
.quiz-widget__options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--d-surface-2);
  border: 1px solid var(--d-border);
  border-radius: var(--r-4);
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--d-text);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all var(--t-fast) var(--ease-out);
}
.quiz-opt:hover {
  background: var(--d-surface-3);
  border-color: var(--d-brand);
  transform: translateX(3px);
}
.quiz-opt__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--d-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 0.75rem;
  color: transparent;
  transition: all var(--t-fast) var(--ease-out);
}
.quiz-opt.is-correct {
  background: #0e2b28;
  border-color: var(--d-success);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.25);
  animation: pop 0.3s var(--ease-spring);
}
.quiz-opt.is-correct .quiz-opt__icon {
  background: var(--d-success);
  border-color: var(--d-success);
  color: #0b1120;
}
.quiz-opt.is-wrong {
  background: #2b1111;
  border-color: #f87171;
  animation: shake 0.35s ease-in-out;
}
.quiz-opt.is-wrong .quiz-opt__icon {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}

@keyframes pop {
  0% { transform: scale(0.97); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.quiz-feedback {
  display: none;
  margin-top: 1.125rem;
  padding: 1rem 1.125rem;
  border-radius: var(--r-4);
  background: var(--d-surface-2);
  border: 1px solid var(--d-border);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--d-text);
  animation: reveal-in var(--t-base) var(--ease-out) both;
}
.quiz-feedback.is-visible {
  display: block;
}
.quiz-feedback b {
  color: var(--d-success);
}
.quiz-ref {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-3);
  background: rgba(45, 212, 191, 0.12);
  border: 1px dashed rgba(45, 212, 191, 0.45);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--d-success);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Vergelijkingstabel --------------------------------------------------- */

.cmp {
  margin-top: 2rem;
}
.cmp__stack {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.cmp__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: 1.375rem 1.25rem;
  box-shadow: var(--e-1);
}
.cmp__col--ours {
  border-top: 4px solid var(--accent);
  background: #fdfefe;
  box-shadow: var(--e-2);
}
.cmp__col > p {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-muted);
}
.cmp__col--ours > p {
  font-weight: 700;
  color: var(--brand);
}
.cmp__col dl {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 0.75rem 0.875rem;
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.45;
}
.cmp__col dt {
  color: var(--text);
}
.cmp__col dd {
  margin: 0;
  text-align: right;
  align-self: start;
  color: var(--text-muted);
}
.cmp__col--ours dd {
  font-weight: 600;
  color: var(--text);
}
.cmp__col dd svg {
  margin-left: auto;
  color: var(--accent-text);
}
.cmp__none {
  color: #a5a5a0;
}
.cmp__table {
  display: none;
}

/* --- Voor wie -------------------------------------------------------------- */

.audience {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.audience .card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: 1.75rem 1.5rem;
}
.audience .card h3 {
  font-size: 1.3125rem;
  margin-top: 0.5rem;
}
.audience .card p {
  margin-top: 0.75rem;
}
.audience__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1rem;
}
.audience__tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--r-2);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* --- Prijs & ROI Calculator ------------------------------------------------ */

.pricing h2 {
  text-align: center;
}
.price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-6);
  box-shadow: var(--e-3);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  position: relative;
}
.price__head {
  text-align: center;
}
.price__amount {
  display: block;
  font-family: var(--font-body);
  font-size: 3.25rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-top: 0.5rem;
}
.price__vat {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.price hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.75rem 0 1.5rem;
}
.price h3 {
  font-size: 1.125rem;
}
.price h3 span {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price h3 + ul {
  margin-top: 0.875rem;
}
.price ul + h3 {
  margin-top: 1.5rem;
}
.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ticks li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
}
.ticks svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent-text);
}
.price .btn {
  margin-top: 1.75rem;
}
.price--addon {
  margin-top: 1.5rem;
  box-shadow: var(--e-1);
  padding: 1.75rem 1.5rem;
}
.price--addon h3 {
  margin-bottom: 0.5rem;
}
.price--addon .note {
  margin-top: 1rem;
}

.calc {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--e-2);
}
.calc__head {
  margin-bottom: 1.25rem;
}
.calc__head h3 {
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}
.calc__sliders {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.calc__control {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.calc__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.calc__val {
  font-family: var(--font-mono);
  color: var(--accent-text);
}
.calc__range {
  width: 100%;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  accent-color: var(--accent);
  cursor: pointer;
}
.calc__results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.calc__metric {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: 0.875rem 0.75rem;
  text-align: center;
}
.calc__metric-num {
  display: block;
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--brand);
}
.calc__metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* --- Demo & 3D Flashcard (Vaste & Responsieve Maatvoering) ----------------- */

.demo__qr {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
}
.demo__qr-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.demo__qr-code {
  flex: none;
  width: 110px;
  height: 110px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
}
.demo__qr-code svg {
  width: 100%;
  height: 100%;
}
.demo__device {
  margin: 2rem auto 0;
  width: 100%;
  max-width: 380px;
}

/* 3D Flashcard Simulator */
.card-3d-wrap {
  perspective: 1000px;
  width: 100%;
  max-width: 380px;
  height: 290px;
  margin: 0 auto;
}
.card-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-spring);
  cursor: pointer;
}
.card-3d.is-flipped {
  transform: rotateY(180deg);
}
.card-3d__face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  box-shadow: var(--e-2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-3d__face--back {
  transform: rotateY(180deg);
  background: #fdfefe;
  border-color: var(--accent-border);
}
.card-3d__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.card-3d__eyebrow--back {
  color: var(--accent-text);
}
.card-3d__question {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  line-height: 1.35;
  color: var(--brand);
  margin: 0.75rem 0;
}
.card-3d__answer {
  background: var(--surface-2);
  border-radius: var(--r-3);
  padding: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
  margin-top: 0.5rem;
}
.card-3d__note {
  margin-top: 0.625rem;
}
.card-3d__btn-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-text);
  align-self: flex-start;
}
.card-3d__btn-hint--muted {
  color: var(--text-muted);
}

/* --- FAQ: Vloeiende CSS Grid Accordeons ------------------------------------- */

.faq {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.faq details {
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast) ease;
}
.faq details[open] {
  background: var(--surface);
  border-radius: var(--r-3);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding: 1.25rem 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--brand);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease-spring);
}
.faq details[open] summary svg {
  transform: rotate(180deg);
  color: var(--accent-text);
}
.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s var(--ease-out);
}
.faq details[open] .faq__content {
  grid-template-rows: 1fr;
}
.faq__inner {
  overflow: hidden;
}
.faq__inner p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-soft);
  padding: 0 1rem 1.25rem 0.5rem;
}

/* --- Slot-CTA (Donkere Navy Sectie #2 voor Krachtige Finale) ---------------- */

.close--dark {
  background: var(--d-bg);
  color: var(--d-text);
  border-top: 1px solid var(--d-border);
  border-bottom: 1px solid var(--d-border);
  position: relative;
  overflow: hidden;
}
.close__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.16) 0%, rgba(45, 212, 191, 0.08) 50%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.close--dark h2 {
  font-size: 1.75rem;
  color: var(--d-text);
}
.close--dark .lead {
  margin-top: 1.25rem;
  color: var(--d-muted);
}
.close--dark .btn {
  margin-top: 1.75rem;
}
.close__guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--d-muted);
}
.close__alt {
  margin-top: 1rem;
  text-align: center;
  color: var(--d-muted);
}
.close--dark .close__alt a {
  color: var(--d-success);
}
.booking {
  margin-top: 2rem;
  width: 100%;
}

.booking-frame {
  width: 100%;
  min-height: 650px;
  height: 680px;
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  background: var(--surface);
  box-shadow: var(--e-2);
  display: block;
}

.close--dark .booking-frame {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0f172a;
}

/* --- Dedicated Intake Pagina Layout ---------------------------------------- */

.intake-page {
  padding: 3rem var(--pad-x) 5rem;
}

.intake-layout {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .intake-layout {
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 3.5rem;
    align-items: start;
  }
}

.intake-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intake-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: 1.5rem;
  box-shadow: var(--e-1);
}

.intake-card h2,
.intake-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.intake-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.intake-card p + p {
  margin-top: 0.75rem;
}

.intake-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.intake-step {
  display: flex;
  gap: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.intake-step__num {
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intake-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.intake-guarantees span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intake-frame-wrap {
  position: relative;
  width: 100%;
}

.intake-frame-wrap .booking-frame {
  min-height: 700px;
  height: 740px;
}

.intake-fallback {
  margin-top: 0.875rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.intake-fallback a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.footer {
  padding: 2.5rem var(--pad-x) 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.footer .brand {
  margin-bottom: 0.75rem;
}
.footer a {
  color: var(--text-muted);
}
.footer a:hover {
  color: var(--text);
}
.footer__cookies {
  margin-top: 0.75rem;
}

/* --- Sticky CTA (mobiel) -------------------------------------------------- */

.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 0.625rem var(--pad-x) calc(0.625rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform var(--t-base) var(--ease-out), visibility var(--t-base);
}
.stickybar.is-visible {
  transform: none;
  visibility: visible;
}
.stickybar .btn {
  max-width: 350px;
}

/* --- Scroll-onthulling & Micro-animaties ---------------------------------- */

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal.is-in {
  animation: reveal-in 0.4s var(--ease-out) both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal.is-in {
    animation: none;
  }
  .card-3d {
    transition: none;
  }
}

/* --- Desktop Layout (min-width: 900px) ------------------------------------- */

@media (min-width: 900px) {
  :root {
    --pad-x: 3rem;
    --pad-y: 6.5rem;
  }

  h1 {
    font-size: 3.125rem;
    line-height: 1.13;
    letter-spacing: -0.021em;
  }
  h2 {
    font-size: 2.375rem;
    line-height: 1.22;
    letter-spacing: -0.015em;
  }
  h3 {
    font-size: 1.25rem;
  }

  .nav {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1rem var(--pad-x);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .nav__menu {
    display: flex;
  }
  section {
    scroll-margin-top: 4.5rem;
  }
  .brand svg {
    width: 27px;
    height: 30px;
  }
  .brand__word {
    font-size: 1.3125rem;
  }

  .lead,
  .prose {
    font-size: 1.1875rem;
  }

  /* Hero Desktop */
  .hero {
    padding: 5.5rem var(--pad-x) 6.5rem;
  }
  .hero .wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .hero__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 660px;
  }
  .hero__lead {
    margin-top: 1.625rem;
    font-size: 1.1875rem;
  }
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2.125rem;
  }
  .hero__cta .btn {
    padding: 0.875rem 1.5rem;
  }
  .hero__note {
    margin-top: 1.25rem;
    max-width: 460px;
  }
  .hero__device-wrap {
    margin-top: 0;
    flex: none;
  }
  .hero__device {
    height: auto;
    overflow: visible;
  }
  .hero .phone {
    --phone-w: 320px;
    --scale: 0.769;
    border-radius: 46px;
    padding: 10px;
    animation: float 6s ease-in-out infinite;
  }
  .hero .phone__screen {
    border-radius: 37px;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* Process Grid */
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .process-step {
    padding: 2rem 1.75rem;
  }

  /* Features Grid */
  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .feature {
    padding: 1.875rem 1.625rem;
  }

  /* Proof Sectie */
  .proof .wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .proof__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 560px;
  }
  .proof__aside {
    flex: none;
    width: 440px;
  }

  /* Vergelijkingstabel Desktop */
  .cmp__stack {
    display: none;
  }
  .cmp__table {
    display: table;
    width: 100%;
    margin-top: 3.5rem;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-5);
    box-shadow: var(--e-2);
    overflow: hidden;
    text-align: left;
  }
  .cmp__table th,
  .cmp__table td {
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    line-height: 1.45;
    font-weight: 400;
    color: var(--text-muted);
    vertical-align: middle;
  }
  .cmp__table tbody th {
    font-size: 1rem;
    color: var(--text);
    width: 40%;
  }
  .cmp__table thead th {
    padding-top: 1.375rem;
    font-weight: 600;
  }
  .cmp__table tbody tr:last-child th,
  .cmp__table tbody tr:last-child td {
    border-bottom: 0;
  }
  .cmp__table .is-ours {
    background: #f4faf5;
    font-weight: 600;
    color: var(--text);
  }
  .cmp__table thead .is-ours {
    border-top: 4px solid var(--accent);
    padding-top: 1.1875rem;
    font-weight: 700;
    color: var(--brand);
  }
  .cmp__table svg {
    width: 19px;
    height: 19px;
    color: var(--accent-text);
  }

  /* Audience Desktop */
  .audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.75rem;
  }
  .audience .card {
    padding: 2.25rem 2rem;
  }

  /* Prijs Desktop */
  .price {
    padding: 2.75rem 2.75rem 2.5rem;
    margin-top: 2.5rem;
  }
  .price__amount {
    font-size: 3.875rem;
  }
  .calc__results {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Demo Desktop: Vaste 380px breedte voor device en flex layout */
  .demo .wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .demo__text {
    flex: 1 1 0;
    min-width: 0;
    max-width: 600px;
  }
  .demo__device {
    flex: 0 0 380px;
    width: 380px;
    margin-top: 0;
  }
  .demo__qr {
    margin-top: 2.25rem;
    padding: 1.75rem;
  }

  /* Slot CTA Desktop */
  .close--dark {
    text-align: center;
  }
  .close--dark h2 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .close--dark .btn {
    margin-top: 2.125rem;
    padding: 0.9375rem 1.75rem;
  }
  .close__guarantees {
    flex-direction: row;
    justify-content: center;
    gap: 1.75rem;
  }

  /* Footer Desktop */
  .footer {
    padding: 3rem var(--pad-x) 3.5rem;
  }
  .footer .wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .footer .brand {
    margin-bottom: 0;
  }
  .footer__cookies {
    margin-top: 0;
    max-width: 280px;
  }

  .stickybar {
    display: none;
  }
}

/* ==========================================================================
   Juridische Documentatie & Voorwaarden Pagina's (Algemene Voorwaarden & Privacy)
   ========================================================================== */

.doc-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem var(--pad-x) 3rem;
  position: relative;
  overflow: hidden;
}

.doc-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.07) 0%, rgba(11, 17, 32, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

.doc-hero__inner {
  max-width: var(--wide);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.doc-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color var(--t-fast) var(--ease-out);
}

.doc-breadcrumb:hover {
  color: var(--accent);
}

.doc-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.doc-hero h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-top: 0.75rem;
  margin-bottom: 0.875rem;
}

.doc-hero__lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 0 1.5rem;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.doc-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.doc-meta__sep {
  color: var(--border-strong);
}

.doc-meta__actions {
  margin-left: auto;
  display: flex;
  gap: 0.75rem;
}

.doc-meta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}

.doc-meta__btn:hover {
  background: var(--surface-3);
  border-color: var(--border-strong);
  color: var(--brand);
}

.doc-meta__btn svg {
  width: 14px;
  height: 14px;
}

/* Document Layout Grid */
.doc-page {
  padding: 3rem var(--pad-x) 5rem;
}

.doc-layout {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 960px) {
  .doc-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
  }
}

/* Sidebar & Inhoudsopgave (TOC) */
.doc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .doc-sidebar__sticky {
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
  }
}

.doc-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: 1.25rem;
  box-shadow: var(--e-1);
}

.doc-toc__header {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.doc-toc__link {
  display: block;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.375rem 0.5rem;
  border-radius: var(--r-2);
  transition: all var(--t-fast) var(--ease-out);
}

.doc-toc__link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.doc-toc__link.is-active {
  background: var(--accent-soft);
  color: var(--accent-text);
  font-weight: 600;
  padding-left: 0.625rem;
  border-left: 3px solid var(--accent);
}

.doc-sidebar__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: 1.25rem;
  font-size: 0.875rem;
  box-shadow: var(--e-1);
}

.doc-sidebar__card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.doc-sidebar__card p {
  margin: 0 0 0.75rem;
  color: var(--text-soft);
  line-height: 1.5;
}

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

.doc-sidebar__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--accent-text);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
}

.doc-sidebar__link-btn:hover {
  text-decoration: underline;
}

/* Hoofdcontent Styling */
.doc-article {
  max-width: 800px;
}

.doc-summary-box {
  background: var(--surface);
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-4);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.75rem;
  box-shadow: var(--e-1);
}

.doc-summary-box__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.875rem;
}

.doc-summary-box p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 0.875rem;
}

.doc-summary-box ul {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.doc-summary-box li + li {
  margin-top: 0.375rem;
}

/* Secties & Artikelen */
.doc-section {
  scroll-margin-top: 6rem;
  padding-top: 1.75rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.doc-section:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.doc-section h2 {
  font-size: 1.4375rem;
  line-height: 1.3;
  color: var(--brand);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.doc-section h3 {
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--brand);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.doc-section h4 {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.doc-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin: 0 0 1rem;
}

.doc-section ul,
.doc-section ol {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin: 0 0 1.25rem;
  padding-left: 1.375rem;
}

.doc-section li + li {
  margin-top: 0.5rem;
}

.doc-section strong {
  color: var(--text);
}

/* Callouts in juridische tekst */
.doc-callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: 1.125rem 1.25rem;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.doc-callout--accent {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent-text);
}

.doc-callout--accent strong {
  color: var(--accent-text);
}

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

/* Tabellen in documentatie */
.doc-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  background: var(--surface);
  box-shadow: var(--e-1);
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.55;
}

.doc-table th {
  background: var(--surface-2);
  padding: 0.875rem 1rem;
  font-weight: 700;
  color: var(--brand);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.doc-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
  vertical-align: top;
}

.doc-table tr:last-child td {
  border-bottom: none;
}

.doc-table tr:nth-child(even) td {
  background: rgba(247, 247, 245, 0.5);
}

/* Contact Badge Footer inside doc */
.doc-contact-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-5);
  padding: 2rem;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--e-2);
}

@media (min-width: 640px) {
  .doc-contact-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.doc-contact-banner h3 {
  margin: 0 0 0.375rem;
  font-size: 1.25rem;
}

.doc-contact-banner p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Print Stylesheet */
@media print {
  .nav,
  .footer,
  .stickybar,
  .scroll-progress,
  .doc-sidebar,
  .doc-meta__actions,
  .doc-breadcrumb,
  .doc-contact-banner {
    display: none !important;
  }

  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt !important;
  }

  .doc-hero {
    border-bottom: 2px solid #000 !important;
    padding: 1rem 0 !important;
  }

  .doc-hero::before {
    display: none !important;
  }

  .doc-layout {
    display: block !important;
    max-width: 100% !important;
  }

  .doc-article {
    max-width: 100% !important;
  }

  .doc-section {
    page-break-inside: avoid;
  }

  a {
    color: #000000 !important;
    text-decoration: underline !important;
  }
}

