/* =========================================================
   Web500 — stylesheet
   Kleuren, lettertypes en afstanden staan allemaal in
   :root hieronder. Pas daar aan, niet verderop.
   ========================================================= */

:root {
  /* Kleuren (licht) */
  --bg:          #fcfbf8;
  --bg-alt:      #f4f1ea;
  --surface:     #ffffff;
  --ink:         #16181d;
  --ink-soft:    #4d525c;
  --ink-faint:   #7c828d;
  --line:        #e4e0d6;
  --accent:      #c2410c;
  --accent-deep: #9a3412;
  --accent-soft: #fdeee6;
  --accent-ink:  #ffffff;
  --ok:          #15803d;

  /* Typografie */
  --font-sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  /* Maten */
  --container: 1120px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 1px 2px rgba(22,24,29,.05), 0 8px 24px -12px rgba(22,24,29,.18);
  --shadow-lg: 0 2px 4px rgba(22,24,29,.05), 0 24px 60px -24px rgba(22,24,29,.30);

  color-scheme: light;
}

/* ---------------------------------------------------------
   Donker thema.
   Hieronder staan twee blokken met exact dezelfde waarden:
     1. automatisch, als het toestel op donker staat en de
        bezoeker zelf nog niets gekozen heeft;
     2. handmatig, als de bezoeker op het knopje in de header
        klikt (dat zet data-theme="dark" op <html>).
   Pas je een kleur aan, pas ze dan in allebei aan.
   --------------------------------------------------------- */

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg:          #101114;
    --bg-alt:      #16181d;
    --surface:     #191b21;
    --ink:         #f1efe9;
    --ink-soft:    #b6bac2;
    --ink-faint:   #8a8f99;
    --line:        #2b2e36;
    --accent:      #ff8a5e;
    --accent-deep: #ffa884;
    --accent-soft: #2a1a13;
    --accent-ink:  #1a0d07;
    --ok:          #4ade80;
    --shadow:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
    --shadow-lg: 0 2px 4px rgba(0,0,0,.4), 0 24px 60px -24px rgba(0,0,0,.75);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg:          #101114;
  --bg-alt:      #16181d;
  --surface:     #191b21;
  --ink:         #f1efe9;
  --ink-soft:    #b6bac2;
  --ink-faint:   #8a8f99;
  --line:        #2b2e36;
  --accent:      #ff8a5e;
  --accent-deep: #ffa884;
  --accent-soft: #2a1a13;
  --accent-ink:  #1a0d07;
  --ok:          #4ade80;
  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.4), 0 24px 60px -24px rgba(0,0,0,.75);
}

/* ---------- Basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 6.2vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.012em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }

em { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

.mono { font-family: var(--font-mono); font-size: .92em; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.container.narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Knoppen ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: var(--accent-ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink-faint);
  background: var(--surface);
}

.btn-sm { padding: 10px 18px; font-size: .92rem; white-space: nowrap; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(0,0,0,.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}
/* Beeldmerk: een luifeltje, zoals boven een winkel */
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  background: var(--accent);
}
.brand-mark svg {
  display: block;
  width: 26px;
  height: 26px;
}
.brand-mark .awn { fill: var(--accent-ink); }
.brand-mark .awn-stripe { fill: var(--accent); }
.brand-name { font-size: 1.12rem; }
.brand-name span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav > a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .96rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav > a:not(.btn):hover { color: var(--ink); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Knop om zelf tussen licht en donker te wisselen */
.theme-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}
.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--surface);
}
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-sun {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
}
.theme-toggle .icon-moon { fill: currentColor; }

/* In het lichte thema tonen we de maan (klik = donker aanzetten),
   in het donkere thema de zon (klik = licht aanzetten). */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Secties ---------- */

.section { padding: clamp(62px, 9vw, 108px) 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-top: -.2em;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto -20%;
  height: 600px;
  background: radial-gradient(45% 50% at 50% 50%, var(--accent-soft), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-inner { max-width: 880px; }
.hero h1 { margin-bottom: .35em; text-wrap: balance; }
.hero h1 em { color: var(--accent); font-size: 1.06em; }

.lead {
  font-size: clamp(1.06rem, 1.9vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 16px;
  font-size: .92rem;
  color: var(--ink-faint);
}

.trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: clamp(40px, 6vw, 64px) 0 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.trustbar li {
  background: var(--surface);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trustbar strong {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.trustbar span {
  font-size: .88rem;
  color: var(--ink-faint);
  line-height: 1.4;
}

/* ---------- Pills ---------- */

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pills li {
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .95rem;
  color: var(--ink-soft);
}
.pills .pill-you {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}

/* ---------- Kaarten ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.card-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 16px;
}
.card p {
  color: var(--ink-soft);
  font-size: .98rem;
  margin: 0;
}

/* ---------- Prijs ---------- */

.price-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 22px;
  padding: 38px 34px 32px;
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 34px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 5px 15px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--ink);
  line-height: 1;
  margin-top: 6px;
}
.price-amount .cur {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-top: .35em;
  color: var(--accent);
}
.price-amount .num {
  font-size: clamp(4rem, 11vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}
.price-amount .vat {
  align-self: flex-end;
  margin: 0 0 .9rem 12px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-faint);
  white-space: nowrap;
}

.price-sub {
  color: var(--ink-soft);
  margin: 6px 0 26px;
  font-size: 1.02rem;
}

.check-list, .cross-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 11px;
}
.check-list li, .cross-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  color: var(--ink-soft);
}
.check-list li strong,
.cross-list li strong { color: var(--ink); }

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ok);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat,
           linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat,
        linear-gradient(#000, #000);
  mask-composite: exclude;
}

.cross-list li::before {
  content: "\00d7";
  position: absolute;
  left: 2px;
  top: -.06em;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-faint);
}

.price-terms {
  text-align: center;
  font-size: .92rem;
  color: var(--ink-faint);
  margin: 16px 0 0;
}

.fineprint {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: .8rem;
  line-height: 1.55;
  color: var(--ink-faint);
}
.fineprint strong { color: var(--ink-soft); font-weight: 600; }

.no-costs {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
}
.no-costs h3 { font-size: 1.3rem; margin-bottom: 22px; }
.no-costs h3 em { color: var(--accent); }
.no-costs-note {
  font-size: .92rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 0;
}

/* ---------- Klanten ---------- */

.klanten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.klant-kaart {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.klant-kaart:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  color: inherit;
}

.klant-logo {
  display: grid;
  place-items: center;
  flex: none;
  width: 78px;
  height: 78px;
  border-radius: 14px;
  overflow: hidden;
}
.klant-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.klant-tekst {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.klant-tekst strong {
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.klant-wat {
  font-size: .94rem;
  color: var(--ink-soft);
}
.klant-link {
  margin-top: 4px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  word-break: break-word;
}
.klant-link::after {
  content: " \2197";
  font-weight: 400;
}

.klanten-noot {
  margin: 26px 0 0;
  font-size: .95rem;
  color: var(--ink-faint);
}

/* ---------- Stappen ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.step {
  position: relative;
  padding-top: 22px;
  border-top: 2px solid var(--line);
}
.step-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 14px;
}
.step p {
  color: var(--ink-soft);
  font-size: .98rem;
  margin: 0;
}

/* ---------- FAQ ---------- */

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-weight: 600;
  font-size: 1.03rem;
  position: relative;
  transition: background-color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-alt); }

.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2.2px solid var(--accent);
  border-bottom: 2.2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq-body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 62ch;
}

/* ---------- Contact ---------- */

.section-contact { background: var(--bg-alt); }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.req { color: var(--accent); }

input, textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
input[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.16);
}
textarea { resize: vertical; min-height: 120px; }

.form .btn-block { margin-top: 8px; }

.form-note {
  margin: 14px 0 0;
  font-size: .86rem;
  color: var(--ink-faint);
  text-align: center;
}
.form-note.is-error { color: #dc2626; font-weight: 600; }
.form-note.is-ok { color: var(--ok); font-weight: 600; }

/* Spamval: onzichtbaar voor mensen, wel ingevuld door bots */
.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  display: none;
  background: var(--surface);
  border: 1px solid var(--ok);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.form-success.is-shown { display: block; }
.form-success h3 {
  color: var(--ok);
  margin-bottom: .5em;
}
.form-success p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 44ch;
  margin-inline: auto;
}

.form-privacy {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  line-height: 1.55;
  color: var(--ink-faint);
  text-align: center;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.contact-chip {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
}
.contact-chip:hover {
  color: var(--ink);
  border-color: var(--accent);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 52px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px 40px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand p {
  font-size: .95rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .94rem;
}
.footer-nav a:hover { color: var(--accent); }

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.footer-legal .fineprint {
  border-top: 0;
  padding-top: 0;
  margin: 0 0 12px;
  max-width: 78ch;
}
.copyright {
  font-size: .84rem;
  color: var(--ink-faint);
  margin: 0;
}
.copyright a { color: var(--ink-faint); }
.copyright a:hover { color: var(--accent); }

/* ---------- Juridische pagina's ---------- */

.legal-page { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 96px); }

.doc-warning {
  background: var(--accent-soft);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 30px;
  font-size: .92rem;
  color: var(--ink-soft);
}
.doc-warning strong { color: var(--accent); }

.legal-back {
  font-size: .92rem;
  margin: 0 0 28px;
}
.legal-back a { text-decoration: none; font-weight: 600; }
.legal-back a:hover { text-decoration: underline; }
.legal-back-bottom {
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
}

.legal-head { margin-bottom: 36px; }
.legal-head h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: .3em;
}
.legal-head .lead { font-size: 1.08rem; }
.legal-meta {
  margin-top: 14px;
  font-size: .86rem;
  color: var(--ink-faint);
}

.toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 44px;
}
.toc-title {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.toc ol {
  margin: 0;
  padding-left: 1.3em;
  columns: 2;
  column-gap: 32px;
  font-size: .95rem;
}
.toc li { margin-bottom: 6px; break-inside: avoid; }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--accent); text-decoration: underline; }

.legal { font-size: 1.01rem; }
.legal h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  margin: 46px 0 .6em;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 {
  font-size: 1.04rem;
  margin: 30px 0 .5em;
  color: var(--ink);
}
.legal p { color: var(--ink-soft); max-width: 68ch; }
.legal strong { color: var(--ink); }

.legal ul, .legal ol {
  color: var(--ink-soft);
  max-width: 68ch;
  padding-left: 1.4em;
  margin: 0 0 1.1em;
}
.legal li { margin-bottom: 9px; }
.legal ol { counter-reset: none; }

.legal-address {
  font-style: normal;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 0 0 1.2em;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: .97rem;
}

.legal-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-size: .9rem;
  color: var(--ink-faint);
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 1.4em;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.legal-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .93rem;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
.legal-table th {
  background: var(--bg-alt);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}
.legal-table tr:last-child td { border-bottom: 0; }

.footer-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 620px) {
  .toc ol { columns: 1; }
}

/* ---------- Animatie bij scrollen ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsief ---------- */

@media (max-width: 960px) {
  .price-wrap { grid-template-columns: 1fr; }
  .trustbar { grid-template-columns: 1fr 1fr; }
}

/* Het menu klapt al om bij 900px: met zes items wordt het daaronder te krap. */
@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }

  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 22px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav > a:not(.btn) {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }
  .nav .btn { margin-top: 16px; }
}

@media (max-width: 760px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .price-card { padding: 34px 22px 28px; }
  .price-badge { left: 22px; }
  .no-costs { padding: 28px 22px; }
  .form { padding: 24px 20px; }
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 460px) {
  .trustbar { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .nav-toggle, .hero::before, .contact-direct { display: none; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
