/* ============================================================
   ENTELL DESIGN SYSTEM
   Eén CSS-bestand voor alle pagina's en landingspages.
   Blokken: .nav, .hero, .section, .feature-grid, .steps,
   .pricing, .faq, .cta-band, .footer
   Zie FORMAT.md voor gebruik.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brandkleuren (brandbook) */
  --ink: #212121;
  --purple: #543D7D;
  --lilac: #A280FF;
  --mist: #F2F2F2;
  --white: #FFFFFF;

  /* Afgeleiden */
  --purple-deep: #2E2148;
  --purple-night: #1B1430;
  --lilac-soft: #E9E2FF;
  --ink-60: rgba(33, 33, 33, .72);
  --ink-40: rgba(33, 33, 33, .55);
  --line: rgba(33, 33, 33, .10);
  --line-dark: rgba(255, 255, 255, .12);
  --white-70: rgba(255, 255, 255, .72);

  /* Typografie */
  --font: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Maatvoering */
  --max: 1160px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 16px;
  --radius-lg: 24px;

  /* Schaal (brandbook usage chart: krappe line-heights, negatieve tracking) */
  --h1: clamp(2.5rem, 6vw, 4.25rem);
  --h2: clamp(1.9rem, 3.6vw, 2.75rem);
  --h3: clamp(1.15rem, 2vw, 1.35rem);
}

/* ---------- Reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--lilac); outline-offset: 3px; border-radius: 4px; }

[id] { scroll-margin-top: 96px; }

h1, h2, h3 { margin: 0 0 .5em; font-weight: 560; }
h1 { font-size: var(--h1); line-height: .95; letter-spacing: -.03em; }
h2 { font-size: var(--h2); line-height: 1.0; letter-spacing: -.025em; }
h3 { font-size: var(--h3); line-height: 1.15; letter-spacing: -.015em; }
p  { margin: 0 0 1em; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }

/* Eyebrow: klein label boven een kop */
.eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 560;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.on-dark .eyebrow { color: var(--lilac); }

.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-60); max-width: 34em; }
.on-dark .lead { color: var(--white-70); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font: 560 1rem/1 var(--font);
  letter-spacing: -.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--lilac); color: var(--ink); }
.btn--primary:hover { background: #B294FF; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.on-dark .btn--ghost { border-color: var(--line-dark); color: var(--white); }
.on-dark .btn--ghost:hover { border-color: var(--white); }

/* ---------- Navigatie: zwevende pill ---------- */
.nav { position: fixed; top: 12px; left: 0; right: 0; z-index: 50; }
.nav__bar {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 9px 9px 20px;
  box-shadow: 0 18px 44px -26px rgba(27, 20, 48, .55);
}
/* Zelfde logo-opmaak als app-gedeeld.css. Deze stylesheet bediende het oude
   paar nav__mark + nav__word; sinds de header een component is staat overal
   hetzelfde lockup, en zonder deze regels krijgt het geen hoogte. */
.nav__logo { position: relative; display: block; height: 30px; width: 109px; flex: none; margin-top: 0; }
/* Zelfde uitlijning als in app-gedeeld.css; deze stylesheet wordt geladen
   door privacy, voorwaarden en verwerkersovereenkomst. */
/* Zie app-gedeeld.css: geen marge, dan valt het logo op het midden. */
.nav__logoFull, .nav__mark { position: absolute; left: 0; top: 0; height: 30px; width: auto; transition: opacity .3s ease; }
.nav__mark { opacity: 0; }
.nav.is-scrolled .nav__logoFull { opacity: 0; }
.nav.is-scrolled .nav__mark { opacity: 1; }
.nav__mark { height: 26px; width: auto; }
.nav__word {
  height: 17px; width: auto; max-width: 90px;
  transition: max-width .3s ease, opacity .2s ease, margin-left .3s ease;
}
.nav.is-scrolled .nav__word { max-width: 0; opacity: 0; margin-left: -10px; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a:not(.btn) {
  text-decoration: none; font-weight: 480; font-size: .95rem; color: var(--ink-60);
}
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links .btn { padding: 10px 20px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border: 1px solid var(--line); border-radius: 22px;
    box-shadow: 0 18px 44px -26px rgba(27, 20, 48, .55);
    padding: 12px 20px 18px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { padding: 10px 0; }
}

/* ---------- Hero ---------- */
/* Radiale gradient: alleen hier, per brandbook */
.hero {
  position: relative;
  color: var(--white);
  padding-top: 78px;
  background:
    radial-gradient(1100px 700px at 72% 18%, rgba(162, 128, 255, .38), transparent 60%),
    radial-gradient(900px 600px at 15% 90%, rgba(84, 61, 125, .55), transparent 65%),
    linear-gradient(165deg, var(--purple-deep), var(--purple-night) 70%);
  overflow: hidden;
}
/* Decoratieve ringen: echo van de cirkel in het logomark */
.hero::before,
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  border-radius: 50%;
}
.hero::after {
  width: clamp(420px, 46vw, 760px); height: clamp(420px, 46vw, 760px);
  border: 1.5px solid rgba(162, 128, 255, .22);
  top: -16%; right: -9%;
}
.hero::before {
  width: 300px; height: 300px;
  border: 1px solid rgba(162, 128, 255, .13);
  bottom: -100px; left: -80px;
}
.hero__inner { position: relative; z-index: 1; }
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 128px);
}
.hero__inner h1 { font-size: clamp(2.1rem, 3.8vw, 2.9rem); }
.hero h1 .accent { color: var(--white); }
.nowrap { white-space: nowrap; }

/* Visueel verborgen, wel voorleesbaar (screenreaders en SEO) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Roterend woord in de hero-h1 (WhatsApp / VoIP / je contacten) */
.swap { display: inline-grid; vertical-align: bottom; transition: width .4s ease; }
.swap__items { display: inline-grid; justify-items: start; }
.swap__item {
  grid-area: 1 / 1;
  display: inline-flex; align-items: center; gap: .2em;
  white-space: nowrap;
  opacity: 0; transform: translateY(.45em);
  transition: opacity .45s ease, transform .45s ease;
}
.swap__item.is-active { opacity: 1; transform: none; }
.swap__icon {
  display: inline-block;
  width: .8em; height: .8em;
  border-radius: .16em;
}
.h1__icon {
  display: inline-block;
  width: .78em; height: .78em;
  vertical-align: -.08em;
  margin-left: .16em;
}
@media (prefers-reduced-motion: reduce) {
  .swap__item { transition: none; }
}

/* Teams Store badge onder de hero-CTA's */
.hero__badge { display: inline-block; margin-top: 30px; }
.hero__badge img { height: 50px; width: auto; }
.hero__badge:hover img { opacity: .85; }


/* Icoon-chips in de titel (WhatsApp, telefonie, Teams) */
.chip {
  display: inline-grid; place-items: center;
  width: .92em; height: .92em;
  border-radius: .22em;
  vertical-align: -.08em;
  margin-inline: .02em .06em;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .45);
}
.chip svg { width: 60%; height: 60%; }
.chip--wa { background: #25D366; }
.chip--tel { background: var(--lilac); }
.chip--teams { background: #5059C7; }
.hero .lead { color: var(--white-70); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  margin-top: 18px; padding: 0; list-style: none;
  font-size: .9rem; color: var(--white-70);
}
.hero__meta li::before { content: "✓"; color: var(--lilac); margin-right: 8px; font-weight: 600; }

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

/* ---------- Productmock (hero-signatuur, gemodelleerd op de echte app) ---------- */
.mock {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
}
.mock__window {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  display: grid;
  grid-template-columns: 46px 1fr;
  min-height: 464px;
  font-size: .8rem;
}

/* Teams-rail links (donker, zoals in Teams zelf) */
.mock__rail {
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center;
  padding-top: 14px; gap: 14px;
}
.mock__railIcon { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.14); }
.mock__railIcon--active { background: var(--lilac); }

/* App-gebied: kopbalk met logo + kanaal-pills, daaronder lijst + gesprek */
.mock__app { display: flex; flex-direction: column; min-width: 0; }
.mock__appbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.mock__appbar img { width: 18px; height: 18px; }
.mock__appbar strong { font-size: .875rem; font-weight: 560; letter-spacing: -.01em; }
.mock__tabs { display: flex; gap: 6px; margin-left: auto; }
.mock__pill {
  font-size: .7rem; font-weight: 560;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-60); background: var(--white);
}
.mock__pill--active { background: var(--purple); border-color: var(--purple); color: var(--white); }

.mock__body {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  flex: 1;
  min-height: 0;
}

/* Gesprekkenlijst met toewijzing per gesprek */
.mock__list {
  border-right: 1px solid var(--line);
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  background: #FAFAFA;
}
.mock__item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 8px;
  border-radius: 10px;
}
.mock__item--active { background: var(--lilac-soft); }
.mock__dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.mock__dot--wa { background: #25D366; }
.mock__dot--tel { background: var(--lilac); }
.mock__itemText { min-width: 0; line-height: 1.2; }
.mock__itemText strong {
  display: block; font-size: .74rem; font-weight: 560;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock__itemText span { font-size: .64rem; color: var(--ink-40); }
.mock__item time { margin-left: auto; font-size: .62rem; color: var(--ink-40); flex: none; }

/* Gesprek */
.mock__chat { display: flex; flex-direction: column; position: relative; min-width: 0; }
.mock__head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
}
.mock__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lilac-soft); color: var(--purple);
  display: grid; place-items: center; font-weight: 600; font-size: .8rem;
  flex: none;
}
.mock__who { line-height: 1.15; min-width: 0; }
.mock__who strong { font-size: .85rem; font-weight: 560; display: block; }
.mock__who span { font-size: .7rem; color: var(--ink-40); }
.mock__tag {
  margin-left: auto;
  font-size: .66rem; font-weight: 560; letter-spacing: .04em;
  color: #1FA855; background: rgba(37, 211, 102, .14);
  padding: 4px 10px; border-radius: 999px;
  flex: none;
}
.mock__msgs {
  flex: 1;
  padding: 14px 14px 76px;
  display: flex; flex-direction: column; gap: 9px;
  background: #FAFAFA;
}
.mock__msg {
  max-width: 92%;
  padding: 9px 12px;
  border-radius: 13px;
  font-size: .78rem; line-height: 1.4;
  opacity: 0;
  animation: msg-in .5s ease forwards;
}
.mock__msg--in  { background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.mock__msg--out { background: var(--purple); color: var(--white); border-bottom-right-radius: 4px; align-self: flex-end; }
.mock__msg--auto { background: var(--lilac-soft); color: var(--ink); border-bottom-right-radius: 4px; align-self: flex-end; }
.mock__auto {
  display: block;
  font-size: .58rem; font-weight: 560;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 3px;
}
.mock__msg:nth-child(1) { animation-delay: .4s; }
.mock__msg:nth-child(2) { animation-delay: 1.3s; }
.mock__msg:nth-child(3) { animation-delay: 2.2s; }
.mock__msg time { display: block; font-size: .6rem; opacity: .55; margin-top: 3px; }

.mock__call {
  position: absolute; right: 12px; bottom: 12px;
  display: flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--white);
  padding: 11px 14px; border-radius: 13px;
  font-size: .78rem;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.45);
  opacity: 0;
  animation: msg-in .5s ease 3.2s forwards;
  max-width: calc(100% - 24px);
}
.mock__callDot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--lilac); color: var(--ink);
  display: grid; place-items: center;
  animation: ring 1.6s ease 3.8s infinite;
  flex: none;
}
.mock__call strong { display: block; font-weight: 560; }
.mock__call span { opacity: .65; font-size: .68rem; }

@media (max-width: 560px) {
  .mock__body { grid-template-columns: 1fr; }
  .mock__list { display: none; }
}

@keyframes msg-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes ring { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(-12deg); } 20% { transform: rotate(10deg); } 30% { transform: rotate(-8deg); } 40% { transform: rotate(0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mock__msg, .mock__call { animation: none; opacity: 1; }
  .mock__callDot { animation: none; }
  .btn:hover { transform: none; }
}

/* ---------- Secties ---------- */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tint { background: var(--mist); }
.section--dark { background: var(--ink); color: var(--white); }
.section__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.section--tint .feature { border-color: transparent; }
.feature__label {
  font-size: .78rem; font-weight: 560; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--ink-60); font-size: .95rem; margin: 0; }

/* ---------- Split (tekst + beeld/blok naast elkaar) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split__panel {
  background: var(--purple-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.stat { border-top: 1px solid var(--line-dark); padding-top: 18px; margin-top: 18px; }
.stat:first-child { border: 0; padding-top: 0; margin-top: 0; }
.stat strong { font-size: clamp(1.9rem, 3vw, 2.5rem); letter-spacing: -.03em; line-height: 1; display: block; color: var(--lilac); }
.stat span { color: var(--white-70); font-size: .95rem; }

/* ---------- Stappen ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 20px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: counter(step, decimal-leading-zero);
  grid-column: 1; grid-row: 1 / span 2;
  font-size: 1.5rem; font-weight: 560; letter-spacing: -.02em;
  color: var(--purple);
}
.step h3, .step p { grid-column: 2; }
.section--dark .step::before { color: var(--lilac); }
.section--dark .step { border-color: var(--line-dark); }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-60); max-width: 46em; }
.section--dark .step p { color: var(--white-70); }

/* ---------- Prijzen ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column;
}
.plan--featured { border: 2px solid var(--purple); position: relative; }
.plan__badge {
  position: absolute; top: -13px; left: 26px;
  background: var(--purple); color: var(--white);
  font-size: .72rem; font-weight: 560; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan h3 { font-size: 1.2rem; }
.plan__price { margin: 10px 0 4px; letter-spacing: -.03em; }
.plan__price strong { font-size: 2.4rem; font-weight: 560; }
.plan__price span { color: var(--ink-40); font-size: .9rem; }
.plan__desc { color: var(--ink-60); font-size: .95rem; min-height: 3em; }
.plan ul { list-style: none; margin: 18px 0 26px; padding: 0; display: grid; gap: 10px; font-size: .95rem; }
.plan ul li { padding-left: 26px; position: relative; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--purple); font-weight: 600; }
.plan .btn { margin-top: auto; justify-content: center; }
.plan__note { font-size: .78rem; color: var(--ink-40); margin: 12px 0 0; }
.pricing-meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center;
  margin-top: 30px; padding: 0; list-style: none;
  color: var(--ink-60); font-size: .9rem;
}
.pricing-meta li::before { content: "✓"; color: var(--purple); margin-right: 8px; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px;
  font-size: 1.1rem; font-weight: 560; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--purple); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 4px 22px; color: var(--ink-60); max-width: 60ch; }

/* ---------- CTA-band ---------- */
.cta-band {
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(162, 128, 255, .30), transparent 60%),
    var(--purple-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 80px);
  text-align: center;
}
.cta-band .lead { margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--white-70); padding-block: 64px 40px; font-size: .925rem; }
.footer a { color: var(--white-70); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__grid img { height: 24px; width: auto; margin-bottom: 16px; }
.footer h3, .footer h4 { color: var(--white); font-size: .95rem; font-weight: 560; margin: 0 0 14px; line-height: inherit; letter-spacing: inherit; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 24px; font-size: .85rem; color: rgba(255,255,255,.45);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Sectie-afsluiter (regel onder een grid of lijst) ---------- */
.section__foot { margin: 28px 0 0; color: var(--ink-60); max-width: 65ch; }
.section--dark .section__foot { color: var(--white-70); }

/* ---------- Modal (demo boeken via Microsoft Bookings) ---------- */









/* ---------- Prose (juridische en andere tekstpagina's) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.35rem; margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--purple); }
.prose__table { overflow-x: auto; margin: 0 0 1em; max-width: 100%; -webkit-overflow-scrolling: touch; }
.prose, .wrap { min-width: 0; }
h1, h2, h3, p, li { overflow-wrap: break-word; }
.prose table { border-collapse: collapse; font-size: .9rem; min-width: 640px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 10px 14px; border: 1px solid var(--line); }
.prose th { background: var(--mist); font-weight: 560; }
.prose__meta { color: var(--ink-40); font-size: .875rem; }

/* ---------- Logostrip (partners) ---------- */
.logostrip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  opacity: .55; filter: grayscale(1);
}
.logostrip img { height: 28px; width: auto; }

/* ---------- Scroll-reveal (subtiel, optioneel via .reveal) ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.skiplink { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--purple); color: var(--white); padding: 12px 20px; border-radius: 0 0 10px 10px; font-weight: 560; text-decoration: none; transition: top .16s ease; }
.skiplink:focus { top: 0; outline: 3px solid var(--lilac); outline-offset: 2px; }

/* ---------- Nav-verfijning: gelijk aan de overige pagina's ---------- */
@media (max-width: 1100px) {
  .nav__toggle { display: block; margin-left: auto; margin-right: -12px; padding: 10px; }
  .nav__links { display: none; }
  .nav__links.is-open { display: flex; }
  .nav__logo { width: 92px; }
  .nav__bar { padding-left: 16px; padding-right: 12px; }
}
.nav__bar { min-height: 65px; }
.nav__links a:not(.btn) { font-size: 1.02rem; color: var(--ink); font-weight: 500; }

/* ---------- Mobiel menu: scheidingslijnen (menu-scheidingslijnen) ---------- */
@media (max-width: 1100px) {
  .nav__links { gap: 0; }
  .nav__links li { padding: 0; }
  .nav__links li:not(:last-child) { border-bottom: 1px solid var(--line); }
  .nav__links a:not(.btn) { padding: 14px 4px; line-height: 1.35; }
  .nav__links li:has(.btn) { border-bottom: 0; padding-top: 12px; }
}
/* Footer gelijk aan de overige pagina's */
.footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px 32px; }
@media (max-width: 1100px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }
.footer__partner img { width: 90px; height: auto; max-height: 26px; object-fit: contain; }

/* Uitklapmenu op de juridische pagina's (menu-open-uitklap) */
@media (max-width: 1100px) {
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: var(--white); border: 1px solid var(--line);
    border-radius: 16px; padding: 8px 20px 12px;
    box-shadow: 0 24px 54px -28px rgba(27,20,48,.5);
  }
  .nav__links.is-open a:not(.btn) { display: block; padding: 14px 4px; font-size: 1.02rem; color: var(--ink); font-weight: 500; }
}
body.menu-open { overflow: hidden; padding-right: var(--sb-w, 0px); }

/* ---------- Taalschakelaar ---------- */
.taal { display: inline-flex; align-items: center; gap: 2px; flex: none; }
.taal a, .taal span {
  font-size: .88rem; font-weight: 600; letter-spacing: .01em;
  padding: 6px 8px; border-radius: 8px; text-decoration: none; line-height: 1;
}
.taal .taal--uit {
  color: var(--ink-60); opacity: .55; cursor: not-allowed;
  background: rgba(84,61,125,.07); border: 1px solid var(--line);
}
.nav__taal { display: flex; align-items: center; flex: none; margin-left: -6px; }

.footer .taal .taal--uit { color: var(--white-70); opacity: .5; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
@media (max-width: 1100px) {
  .nav__links .taal { margin: 10px 0 0; padding-top: 12px; border-top: 1px solid var(--line); width: 100%; }
}

/* Footer-partners en taalschakelaar (ontbraken op deze pagina) */
.footer__partners { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 20px; padding: 26px 0 22px; border-bottom: 1px solid var(--line-dark); }
.footer__partnersLabel { font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; color: var(--white-70); font-weight: 600; }
.footer__partnerLogos { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer__partner { display: inline-flex; align-items: center; }
.footer__partner img { width: 90px; height: auto; max-height: 26px; object-fit: contain; filter: brightness(0) invert(1); opacity: .72; transition: opacity .18s ease; }
a.footer__partner:hover img { opacity: 1; }
.footer__partnerDot { width: 4px; height: 4px; border-radius: 50%; background: var(--white-70); opacity: .45; }
@media (max-width: 560px) { .footer__partner img { width: 74px; } }
.taal { display: inline-flex; align-items: center; gap: 2px; flex: none; }
.taal span { font-size: .88rem; font-weight: 600; padding: 6px 8px; border-radius: 8px; line-height: 1; }
.taal .taal--uit { color: var(--ink-60); opacity: .55; cursor: not-allowed; background: rgba(84,61,125,.07); border: 1px solid var(--line); }
.footer .taal .taal--uit { color: var(--white-70); opacity: .5; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.nav__taal { display: flex; align-items: center; flex: none; }

/* Juridische tekst: leesbare regellengte, links uitgelijnd */
.juridisch, .juridisch p, .juridisch li, .juridisch h2, .juridisch h3 { text-align: left; }
.juridisch p, .juridisch li { max-width: 68ch; }
.juridisch h1 + p, .juridisch .lead { max-width: 68ch; }

/* Meldingsbalk en navpositie, gelijk aan de overige pagina's */
.announce { background: var(--purple-night); color: var(--white); font-size: .85rem; text-align: center; padding: 9px 16px; }
.announce a { color: var(--lilac); }
.nav { position: fixed; top: var(--announce-h, 50px); left: 0; right: 0; z-index: 50; transition: top .3s ease; }
.nav.is-scrolled { top: 12px; }

/* Contentkolom gelijk aan de overige pagina's; leesbreedte zit op de alinea's */
.wrap { max-width: 1160px; }
.hero .wrap, main .wrap { margin-left: auto; margin-right: auto; }
main p, main li { max-width: 68ch; }

/* ---------- Gelijktrekken met index ---------- */
/* footerlogo was 24px, op index 37px */
.footer__grid img { height: 37px; width: auto; margin-bottom: 20px; }
/* meldingsbalk was 53px hoog door de standaardmarge van de alinea */
.announce p { margin: 0; }
/* introblok: zelfde koptekstgrootte en ademruimte als index */
.hero.on-dark { padding-block: clamp(72px, 8vw, 100px) clamp(34px, 4vw, 46px); }
.hero.on-dark h1 { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 28px; }
/* tabellen binnen de leeskolom houden, geen horizontale schuifbalk */
main table { width: 100%; max-width: 100%; table-layout: fixed; border-collapse: collapse; font-size: .92rem; }
main table th, main table td { word-break: break-word; overflow-wrap: anywhere; vertical-align: top; }
main .tabelwrap { overflow-x: auto; }
