/* ==========================================================================
   Tricoline — hoofdstijlblad
   Lettertypen worden lokaal gehost (geen externe verzoeken, geen cookies).
   ========================================================================== */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Merkkleuren (afgeleid van het logo) */
  --cyan: #01a7fb;
  --blue: #2f6cf8;
  --violet: #7631fa;
  --royal: #3247d3;
  --navy: #152584;
  --navy-900: #0b1461;
  --navy-950: #060d3a;

  --grad: linear-gradient(100deg, var(--cyan) 0%, var(--blue) 48%, var(--violet) 100%);
  --grad-text: linear-gradient(100deg, #0590e8 0%, #3a5cf5 50%, #7631fa 100%);
  --grad-btn: linear-gradient(135deg, #1f4fe0 0%, #6a2cf0 100%);

  /* Neutrale kleuren */
  --ink: #0c1236;
  --text: #2c3557;
  --muted: #5a6486;
  --line: #e4e8f4;
  --line-strong: #cfd6ea;
  --bg: #ffffff;
  --bg-soft: #f5f7fd;
  --bg-tint: #eef2ff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(12, 18, 54, .06), 0 1px 3px rgba(12, 18, 54, .05);
  --shadow: 0 10px 30px -12px rgba(12, 18, 54, .18), 0 2px 6px rgba(12, 18, 54, .05);
  --shadow-lg: 0 40px 80px -30px rgba(11, 20, 97, .35), 0 12px 30px -12px rgba(11, 20, 97, .18);

  --font-head: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 72px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--royal); text-underline-offset: .18em; }
a:hover { color: var(--violet); }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h3 { letter-spacing: -.015em; font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Secties die via een ankerlink focus krijgen: geen rand eromheen */
[tabindex="-1"]:focus { outline: none; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.icon-sm { width: 18px; height: 18px; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Knoppen ---------- */
.btn {
  --btn-pad-y: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) 24px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .icon-arrow { transform: translateX(3px); }

.btn-primary {
  color: #fff;
  background: var(--grad-btn);
  box-shadow: 0 10px 24px -10px rgba(58, 60, 230, .65);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(58, 60, 230, .75);
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--navy-900);
  background: #fff;
}
.btn-light:hover { color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(0,0,0,.5); }

.btn-sm { --btn-pad-y: 10px; padding-inline: 18px; font-size: .9375rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(12, 18, 54, .35);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -.03em;
}
.brand:hover { color: var(--ink); }
.brand img { width: 36px; height: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 500;
  font-size: .96875rem;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}
.nav-list a:hover { background: var(--bg-tint); color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px var(--gutter) 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(12, 18, 54, .35);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { padding: 12px 14px; font-size: 1.0625rem; border-radius: 12px; }
  .nav .btn { width: 100%; }
}

/* ---------- Secties ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); position: relative; }
.section-soft { background: var(--bg-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.section-head p { font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); color: var(--muted); margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--royal);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 3px;
  border-radius: 3px;
  background: var(--grad);
}
.center .eyebrow { justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(40px, 7vw, 88px);
  padding-bottom: clamp(64px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(40rem 28rem at 88% 8%, rgba(118, 49, 250, .14), transparent 70%),
    radial-gradient(36rem 26rem at 4% 30%, rgba(1, 167, 251, .13), transparent 70%),
    linear-gradient(180deg, #f7f9ff 0%, #fff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(21, 37, 132, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 37, 132, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: clamp(1.125rem, 1.7vw, 1.25rem);
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list .tick {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--royal);
}
.check-list .tick .icon { width: 14px; height: 14px; stroke-width: 3; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: .96875rem;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: left; }
}

/* ---------- Voor/na vergelijking ---------- */
.ba {
  --pos: 50%;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(21, 37, 132, .12);
  overflow: hidden;
  container-type: inline-size;
}
.ba-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  background: #f1f3f9;
  border-bottom: 1px solid var(--line);
}
.ba-bar i { width: 10px; height: 10px; border-radius: 50%; background: #d5dae8; }
.ba-bar i:nth-child(1) { background: #ff6159; }
.ba-bar i:nth-child(2) { background: #ffbd2e; }
.ba-bar i:nth-child(3) { background: #28c941; }
.ba-url {
  flex: 1;
  max-width: 260px;
  margin-inline: auto;
  padding: 3px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ba-stage {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  user-select: none;
}
.ba-layer { position: absolute; inset: 0; overflow: hidden; }
.ba-old { clip-path: inset(0 calc(100% - var(--pos)) 0 0); z-index: 2; }

.ba-tag {
  position: absolute;
  bottom: 3cqw;
  z-index: 4;
  padding: .6cqw 1.8cqw;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: max(11px, 2.1cqw);
  letter-spacing: .02em;
  pointer-events: none;
}
.ba-tag-old { left: 3cqw; background: rgba(12, 18, 54, .82); color: #fff; }
.ba-tag-new { right: 3cqw; background: var(--grad-btn); color: #fff; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 0;
  pointer-events: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -1.5px;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(12, 18, 54, .12), 0 0 18px rgba(12, 18, 54, .25);
}
.ba-knob {
  position: absolute;
  top: 50%; left: 0;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--royal);
  box-shadow: 0 6px 18px rgba(12, 18, 54, .3);
}
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
}
.ba-range:focus-visible ~ .ba-handle .ba-knob { outline: 3px solid var(--blue); outline-offset: 3px; }
.ba-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .875rem;
  color: var(--muted);
}

/* --- Oude website (bewust gedateerd) --- */
.old {
  height: 100%;
  background: #c9c4b5;
  background-image: radial-gradient(rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 1.2cqw 1.2cqw;
  font-family: "Times New Roman", Times, serif;
  color: #000;
  padding: 2.4cqw;
}
.old-page {
  height: 100%;
  background: #fffff4;
  border: .5cqw outset #bbb;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}
.old-banner {
  background: #000080;
  color: #ffff00;
  text-align: center;
  padding: 1.6cqw 1cqw;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-weight: bold;
  font-size: 3.1cqw;
  text-shadow: .25cqw .25cqw 0 #ff0000;
  border-bottom: .5cqw ridge #c0c0c0;
}
.old-body { display: grid; grid-template-columns: 22% 1fr; min-height: 0; }
.old-side {
  background: #c0c0c0;
  border-right: .4cqw groove #eee;
  padding: 1.4cqw 1.2cqw;
  display: grid;
  align-content: start;
  gap: .9cqw;
}
.old-side span {
  display: block;
  background: #d4d0c8;
  border: .35cqw outset #fff;
  padding: .5cqw .8cqw;
  font-family: Arial, sans-serif;
  font-size: 1.9cqw;
  color: #0000ee;
  text-decoration: underline;
}
.old-main { padding: 1.6cqw 2.2cqw; font-size: 2cqw; line-height: 1.35; overflow: hidden; }
.old-main h4 {
  font-family: "Times New Roman", Times, serif;
  font-size: 3.2cqw;
  letter-spacing: 0;
  color: #800000;
  margin: 0 0 1cqw;
  font-weight: bold;
  text-decoration: underline;
}
.old-main p { margin: 0 0 1.2cqw; }
.old-new { color: #ff0000; font-weight: bold; font-family: Arial, sans-serif; }
.old-link { color: #0000ee; text-decoration: underline; }
.old-img {
  float: right;
  width: 30%;
  aspect-ratio: 4 / 3;
  margin: 0 0 1cqw 1.6cqw;
  border: .3cqw inset #999;
  background: #eee;
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 1.5cqw;
  color: #777;
  text-align: center;
  padding: 1cqw;
}
.old-img b { display: block; font-size: 3cqw; color: #c00; line-height: 1; }
.old-construction {
  clear: both;
  margin-top: 1cqw;
  padding: .9cqw;
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.8cqw;
  color: #000;
  background: repeating-linear-gradient(-45deg, #ffd800 0 1.6cqw, #111 1.6cqw 3.2cqw);
}
.old-construction span { background: #ffd800; padding: .2cqw 1cqw; }
.old-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1cqw;
  padding: 1cqw 1.6cqw;
  background: #e8e8e0;
  border-top: .3cqw solid #999;
  font-size: 1.55cqw;
  font-family: Arial, sans-serif;
  color: #333;
}
.old-counter {
  font-family: "Courier New", monospace;
  background: #000;
  color: #33ff33;
  padding: .2cqw .8cqw;
  letter-spacing: .4cqw;
}

/* --- Nieuwe website (modern) --- */
.new {
  height: 100%;
  background: #fff;
  font-family: var(--font-body);
  color: var(--ink);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.new-nav {
  display: flex;
  align-items: center;
  gap: 2cqw;
  padding: 2.6cqw 4cqw;
  border-bottom: 1px solid #eef0f6;
}
.new-logo {
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.3cqw;
  letter-spacing: -.02em;
  margin-right: auto;
}
.new-logo i { width: 3.4cqw; height: 3.4cqw; border-radius: 1cqw; background: var(--grad); }
.new-nav span { font-size: 1.7cqw; color: var(--muted); font-weight: 500; }
.new-nav b {
  font-size: 1.7cqw;
  padding: .9cqw 2cqw;
  border-radius: 99px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 600;
}
.new-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4cqw;
  align-items: center;
  padding: 3.4cqw 4cqw 1.6cqw;
  background:
    radial-gradient(40cqw 26cqw at 90% 10%, rgba(118, 49, 250, .12), transparent 70%),
    radial-gradient(30cqw 20cqw at 0% 80%, rgba(1, 167, 251, .12), transparent 70%);
}
.new-pill {
  display: inline-block;
  font-size: 1.45cqw;
  font-weight: 600;
  color: var(--royal);
  background: var(--bg-tint);
  padding: .5cqw 1.4cqw;
  border-radius: 99px;
  margin-bottom: 1.6cqw;
}
.new-hero h4 {
  font-size: 4.6cqw;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 1.6cqw;
}
.new-hero h4 em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.new-hero p { font-size: 1.75cqw; line-height: 1.5; color: var(--muted); margin: 0 0 2.4cqw; }
.new-btns { display: flex; gap: 1.2cqw; }
.new-btns b, .new-btns span {
  font-size: 1.6cqw;
  font-weight: 600;
  padding: 1.1cqw 2.2cqw;
  border-radius: 99px;
}
.new-btns b { background: var(--grad-btn); color: #fff; }
.new-btns span { border: 1px solid var(--line-strong); color: var(--ink); }
.new-visual {
  position: relative;
  aspect-ratio: 1 / .78;
  border-radius: 3cqw;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 40%),
    linear-gradient(135deg, #01a7fb 0%, #2f6cf8 45%, #7631fa 100%);
  box-shadow: 0 3cqw 5cqw -2.5cqw rgba(47, 108, 248, .55);
  overflow: hidden;
}
.new-visual::before, .new-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}
.new-visual::before { width: 60%; aspect-ratio: 1; right: -12%; bottom: -18%; }
.new-visual::after { width: 34%; aspect-ratio: 1; left: 10%; top: 12%; background: rgba(255, 255, 255, .22); }
.new-float {
  position: absolute;
  left: -4%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 1cqw;
  padding: 1.2cqw 1.6cqw;
  border-radius: 1.6cqw;
  background: #fff;
  box-shadow: 0 2cqw 4cqw -1.5cqw rgba(12, 18, 54, .35);
  font-size: 1.45cqw;
  font-weight: 600;
  color: var(--ink);
  z-index: 1;
}
.new-float i {
  width: 2.6cqw; height: 2.6cqw;
  border-radius: 50%;
  background: #22c55e;
  display: grid; place-items: center;
  color: #fff;
  font-style: normal;
  font-size: 1.5cqw;
  font-weight: 800;
}
.new-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2cqw;
  padding: 1.6cqw 4cqw 3cqw;
}
.new-card {
  padding: 1.8cqw;
  border-radius: 1.8cqw;
  border: 1px solid #eef0f6;
  background: #fff;
  box-shadow: 0 1cqw 2.4cqw -1.6cqw rgba(12, 18, 54, .25);
}
.new-card i { display: block; width: 3.2cqw; height: 3.2cqw; border-radius: 1cqw; background: var(--bg-tint); margin-bottom: 1.2cqw; position: relative; }
.new-card i::after { content: ""; position: absolute; inset: 30%; border-radius: 50%; background: var(--grad); }
.new-card b { display: block; font-size: 1.6cqw; margin-bottom: .6cqw; font-family: var(--font-head); }
.new-card span { display: block; height: .9cqw; border-radius: 99px; background: #eef0f6; margin-top: .6cqw; }
.new-card span + span { width: 70%; }

/* ---------- Kaarten: problemen ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 1rem; }

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff1f2;
  color: #e11d48;
}
@media (max-width: 620px) {
  .card { display: grid; grid-template-columns: 48px minmax(0, 1fr); column-gap: 16px; padding: 22px 20px; }
  .card-icon { grid-row: span 2; margin: 0; }
  .card h3 { margin: 2px 0 4px; }
}
.card-icon.brand-icon {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 10px 20px -10px rgba(58, 60, 230, .7);
}

.solve-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--ink);
}

/* ---------- Werkwijze ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(1,167,251,.5), rgba(118,49,250,.5));
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding-inline: 8px; }
.step-num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-900);
  box-shadow: 0 8px 20px -10px rgba(47, 108, 248, .6);
}
.step h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 1rem; margin: 0; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 0; max-width: 560px; margin-inline: auto; }
  .steps::before { top: 28px; bottom: 28px; left: 27px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, rgba(1,167,251,.5), rgba(118,49,250,.5)); }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; text-align: left; padding: 0 0 32px; }
  .step:last-child { padding-bottom: 0; }
  .step-num { margin: 0; }
}

/* ---------- Zorgeloos (donker) ---------- */
.band {
  position: relative;
  color: rgba(255, 255, 255, .78);
  background: var(--navy-950);
  overflow: hidden;
  isolation: isolate;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(40rem 30rem at 100% 0%, rgba(118, 49, 250, .35), transparent 65%),
    radial-gradient(36rem 28rem at 0% 100%, rgba(1, 167, 251, .25), transparent 65%);
}
.band h2 { color: #fff; }
.band .eyebrow { color: #8fc9ff; }
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.band-grid h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.band-grid > div > p { font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); }
.band-list { display: grid; gap: 16px; list-style: none; margin: 0; padding: 0; }
.band-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
}
.band-list strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.0625rem; margin-bottom: 2px; }
.band-list span { font-size: .96875rem; }
.band-list .icon-wrap {
  flex: none;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-btn);
  color: #fff;
}
.band-list .icon { width: 20px; height: 20px; }
@media (max-width: 900px) { .band-grid { grid-template-columns: 1fr; } }

/* ---------- Prijzen ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin-inline: auto;
}
@media (max-width: 820px) { .pricing { grid-template-columns: 1fr; max-width: 560px; } }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.price-card.featured {
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: clamp(28px, 4vw, 40px);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--grad-btn);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .02em;
}
.price-card h3 { font-size: 1.375rem; margin-bottom: 6px; }
.price-desc { color: var(--muted); margin-bottom: 24px; font-size: 1rem; }
.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--font-head);
}
.price-from { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-amount { font-size: clamp(2.75rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.price-unit { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-monthly { margin-top: 10px; }
.price-plus { font-size: 1.5rem; font-weight: 700; color: var(--royal); line-height: 1; }
.price-amount-sm { font-size: clamp(1.875rem, 3.2vw, 2.25rem); font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.price-vat { font-size: .9375rem; color: var(--muted); margin: 10px 0 28px; }
.list-label {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--royal);
}
.price-card .check-list { margin-bottom: 28px; font-size: 1rem; }
.price-card .btn { margin-top: auto; }

.price-note {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: .96875rem;
  color: var(--muted);
}

/* Compacte prijskaarten */
#prijzen .section-head { max-width: 900px; margin-bottom: 36px; }
#prijzen .section-head h2 { font-size: clamp(2rem, 3.6vw, 2.5rem); }
#prijzen .section-head .eyebrow { margin-bottom: 10px; }
.pricing { max-width: 900px; gap: 20px; }
.price-card { padding: 26px 28px 28px; border-radius: 20px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 2px; }
.price-card .price-desc { font-size: .9375rem; margin-bottom: 14px; }
.price-card .price-amount { font-size: clamp(2.25rem, 4vw, 2.625rem); }
.price-card .price-amount-sm { font-size: clamp(1.5rem, 2.6vw, 1.75rem); }
.price-card .price-plus { font-size: 1.25rem; }
.price-card .price-monthly { margin-top: 4px; }
.price-card .price-vat { font-size: .8125rem; margin: 8px 0 18px; }
.price-card .list-label { font-size: .75rem; margin-bottom: 8px; }
.price-card .check-list { gap: 5px; margin-bottom: 16px; font-size: .9375rem; }
.price-card .check-list .tick { width: 20px; height: 20px; }
.price-card .btn { margin-top: auto; --btn-pad-y: 12px; }
.price-card .check-list:last-of-type { margin-bottom: 22px; }
.price-badge { top: -12px; left: 28px; padding: 4px 12px; font-size: .75rem; }
.price-note { margin-top: 28px; font-size: .875rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(var(--royal), var(--royal)) center / 12px 2px no-repeat,
    linear-gradient(var(--royal), var(--royal)) center / 2px 12px no-repeat,
    var(--bg-tint);
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq-body p:last-child, .faq-body ul:last-child { margin-bottom: 0; }
.faq-body ul { padding-left: 1.2em; margin: 0 0 1em; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, .8);
  background: var(--navy-950);
  overflow: hidden;
  isolation: isolate;
}
.contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(26rem 20rem at 100% 0%, rgba(118, 49, 250, .45), transparent 65%),
    radial-gradient(22rem 18rem at 0% 100%, rgba(1, 167, 251, .3), transparent 65%);
}
.contact-info h2 { color: #fff; font-size: clamp(1.875rem, 3.6vw, 2.5rem); }
.contact-info .eyebrow { color: #8fc9ff; }
.contact-lines { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-lines li { display: flex; align-items: center; gap: 14px; }
.contact-lines .icon-wrap {
  flex: none;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}
.contact-lines .icon { width: 20px; height: 20px; }
.contact-lines a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-lines a:hover { text-decoration: underline; color: #fff; }
.contact-lines small { display: block; font-size: .8125rem; color: rgba(255, 255, 255, .6); }

.form-card {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--ink);
}
.field .opt { font-weight: 400; color: var(--muted); }
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #98a0bb; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 108, 248, .15);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #e11d48; }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-foot { margin-top: 22px; display: grid; gap: 14px; }
.form-privacy { font-size: .875rem; color: var(--muted); margin: 0; }
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: .96875rem;
}
.form-status.is-success { display: block; background: #ecfdf3; color: #065f46; border: 1px solid #a7f3d0; }
.form-status.is-error { display: block; background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }

/* ---------- Footer ---------- */
.site-footer {
  color: rgba(255, 255, 255, .7);
  background: var(--navy-950);
  padding-top: clamp(56px, 8vw, 88px);
  font-size: .96875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand img { width: 42px; padding: 6px; border-radius: 11px; background: #fff; }
.footer-about { max-width: 30em; margin: 0; }
.site-footer h3 {
  color: #fff;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-legal { margin: 0; font-style: normal; display: grid; gap: 6px; }
.footer-legal a { color: rgba(255, 255, 255, .85); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
}

/* ---------- Juridische pagina's ---------- */
.page-hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 88px) clamp(36px, 5vw, 56px);
  background:
    radial-gradient(36rem 20rem at 90% 0%, rgba(118, 49, 250, .12), transparent 70%),
    radial-gradient(30rem 20rem at 0% 40%, rgba(1, 167, 251, .1), transparent 70%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 12px; }
.page-hero p { color: var(--muted); margin: 0; max-width: 46em; }
.page-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 24px; font-size: .9375rem; color: var(--muted); }
.breadcrumb { font-size: .9375rem; margin-bottom: 20px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(40px, 6vw, 72px) clamp(72px, 10vw, 112px);
}
@media (max-width: 960px) { .legal-layout { grid-template-columns: minmax(0, 1fr); } }

.toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow: auto;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: .90625rem;
}
.toc h2 { font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.toc a { display: block; padding: 5px 8px; border-radius: 8px; color: var(--text); text-decoration: none; line-height: 1.35; }
.toc a:hover { background: #fff; color: var(--ink); }
@media (max-width: 960px) {
  .toc { position: static; max-height: none; }
}

.prose { max-width: 76ch; color: var(--text); overflow-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; }
.prose h2 {
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  margin: 2.4em 0 .7em;
  padding-top: .2em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.125rem; margin: 1.8em 0 .5em; }
.prose ol, .prose ul { padding-left: 1.4em; margin: 0 0 1em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--royal); font-weight: 600; }
.prose ol.clauses { list-style: none; padding-left: 0; }
.prose ol.clauses > li { position: relative; padding-left: 3.2em; margin-bottom: .7em; }
.prose ol.clauses > li > .n {
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--royal);
  font-variant-numeric: tabular-nums;
}
.prose ol.alpha { list-style: lower-alpha; margin: .4em 0 .2em; }
.prose ol.alpha li { margin-bottom: .25em; }
.prose dl { margin: 0 0 1em; }
.prose dt { font-weight: 700; color: var(--ink); margin-top: .8em; }
.prose dd { margin: .15em 0 0; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 1.6em;
  font-size: .9375rem;
}
.table-wrap { overflow-x: auto; margin: 1em 0 1.6em; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.table-wrap table { margin: 0; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.prose th { background: var(--bg-soft); color: var(--ink); font-family: var(--font-head); font-weight: 700; }
.prose tr:last-child td { border-bottom: 0; }
@media (max-width: 640px) {
  .stack-table { border: 0; overflow: visible; }
  .stack-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .stack-table table, .stack-table tbody, .stack-table tr, .stack-table td { display: block; width: 100%; }
  .stack-table tr { margin-bottom: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
  .stack-table td { padding: 10px 14px; }
  .stack-table tr:last-child td { border-bottom: 1px solid var(--line); }
  .stack-table tr td:last-child { border-bottom: 0; }
  .stack-table td::before { content: attr(data-label); display: block; margin-bottom: 2px; font-family: var(--font-head); font-size: .8125rem; font-weight: 700; color: var(--ink); }
  .stack-table td:first-child { background: var(--bg-soft); font-weight: 600; color: var(--ink); }
}
.callout {
  margin: 1.2em 0 1.6em;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
  border-left: 4px solid var(--royal);
  font-size: .96875rem;
}
.callout p:last-child { margin-bottom: 0; }
.model-form {
  margin: 1em 0 1.6em;
  padding: 20px 22px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: .96875rem;
}
.model-form p:last-child { margin-bottom: 0; }
.appendix {
  margin-top: 3.5em;
  padding-top: 2.5em;
  border-top: 2px solid var(--line);
}

/* Bedankt-pagina */
.center-page {
  min-height: calc(100vh - var(--header-h) - 240px);
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 96px;
}
.center-page .card-icon { width: 64px; height: 64px; border-radius: 20px; margin-inline: auto; }
.center-page .card-icon .icon { width: 30px; height: 30px; }
.center-page h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
.center-page p { color: var(--muted); max-width: 36em; margin-inline: auto; margin-bottom: 28px; }

/* ---------- Scroll-animaties (alleen als JS actief is) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Print (voorwaarden en privacyverklaring) ---------- */
@media print {
  .site-header, .site-footer, .toc, .no-print, .skip-link { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .page-hero { background: none; border: 0; padding: 0 0 12pt; }
  .legal-layout { display: block; padding: 0; }
  .prose { max-width: none; }
  .prose h2 { break-after: avoid; }
  a { color: #000; }
}
