@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/plexsans-latin.woff2') format('woff2');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/plexsans-latin-ext.woff2') format('woff2');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --blue: #0000ff;
  --blue-hover: #0000c2;
  --blue-deep: #00007a;

  --ink: #000000;
  --ink-2: #3c3c3c;
  --ink-3: #545454;
  --ink-4: #6e6e6e;

  --kop: 57px;
  --kier: 44px;

  --paper: #ffffff;
  --paper-2: #f5f6f7;
  --paper-3: #f5f5f5;
  --line: #e5e5e5;
  --line-2: #cccccc;

  --sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: 24px;
  --maxw: 1430px;
  --sec-y: 56px;
  --head-h: 56px;
  --btn-h: 44px;
  --r: 8px;
}

@media (min-width: 768px) {
  :root { --gutter: 40px; --sec-y: 72px; }
}

@media (min-width: 1200px) {
  :root { --gutter: 72px; --sec-y: 96px; --head-h: 60px; }
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--head-h) + 24px);
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 { color: var(--ink); }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
::selection { background: var(--blue); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

.skip {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

.h1 {
  font-size: clamp(2.25rem, 1.3rem + 3.4vw, 3.5625rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.h2 {
  font-size: clamp(1.625rem, 1.2rem + 1.7vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
}

.h3 {
  font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.125rem, 0.95rem + 0.75vw, 1.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-2);
}

.body-lg { font-size: 1.0625rem; line-height: 1.5; color: var(--ink-2); }

.sec { padding-block: var(--sec-y); }
.sec--tint { background: var(--paper-2); }

.sec-head { max-width: 62rem; margin-bottom: 64px; }
/* Alleen op de beginpagina: sectiekoppen lopen verder door naar rechts. */
.sec-head--breed { max-width: 78rem; }
.sec-head .lede { margin-top: 16px; }

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-h);
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); }

.btn--secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--secondary:hover { background: #eaeaff; }

.btn--neutraal { background: transparent; color: var(--ink-2); border-color: var(--line-2); }
.btn--neutraal:hover { border-color: var(--ink); color: var(--ink); }

.btn--zacht { background: #e8ecfb; color: var(--blue); border-color: #c9d3f7; }
.btn--zacht:hover { background: #dde3f8; border-color: #b3c1f2; }

.btn--block { width: 100%; }

.arrowlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}
.arrowlink:hover { text-decoration: underline; text-underline-offset: 3px; }
.arrowlink svg { flex: none; transition: transform 0.15s ease; }
.arrowlink:hover svg { transform: translateX(3px); }

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

@media (min-width: 1024px) { :root { --kop: 61px; } }

.site-head.is-scrolled {
  border-bottom-color: var(--line);
}

.site-head__in {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  height: var(--head-h);
}

.brand {
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding-right: 24px;
}
@media (min-width: 1200px) { .brand { font-size: 2rem; } }
.brand--foot { padding-right: 0; margin-bottom: 12px; font-size: 2rem; }
/* Het woordmerk staat als svg in de kop en de voet. De hoogte volgt de
   regelhoogte van de tekst die er stond, zodat de balk niet verspringt. */
.brand__logo { display: block; width: auto; height: 1.1em; }

.nav { display: none; }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-self: center;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-3);
  transition: transform 0.15s ease;
}
.burger[aria-expanded='true'] .burger__bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mnav {
  position: fixed;
  inset: var(--head-h) 0 0;
  z-index: 99;
  background: var(--paper);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mnav[hidden] { display: none; }
.mnav__in { padding-block: 8px 40px; }
.mnav__list > li { border-bottom: 1px solid var(--line); }
.mnav__link {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.mnav__link.is-active { color: var(--blue); }
.mnav__sub { padding-bottom: 12px; }
.mnav__sub a {
  display: block;
  padding: 8px 0 8px 16px;
  color: var(--ink-2);
  font-size: 1rem;
  text-decoration: none;
}
.mnav__sub a:hover { color: var(--blue); }
.mnav__foot { display: grid; gap: 8px; margin-top: 24px; }
.mnav__foot a { color: var(--blue); font-weight: 600; text-decoration: none; }

@media (min-width: 1200px) {
  .burger, .mnav { display: none; }
  .nav { display: block; }
  .nav__list { display: flex; align-items: stretch; height: 100%; }
  .nav__item { position: relative; display: flex; }

  .nav__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-inline: 14px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--ink-3);
    text-decoration: none;
    border-bottom: 2px solid transparent;
  }
  .nav__link:hover { color: var(--blue); }
  .nav__link.is-active { color: var(--ink); border-bottom-color: var(--blue); }

  .nav__link--cta {
    align-self: center;
    min-height: 36px;
    margin-left: 12px;
    padding-inline: 18px;
    background: var(--blue);
    color: #fff;
    font-weight: 500;
    border-radius: var(--r);
    border-bottom: 0;
  }
  .nav__link--cta:hover { background: var(--blue-hover); color: #fff; }
  .nav__link--cta.is-active { color: #fff; border-bottom: 0; }

  .sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 340px;
    padding: 12px 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--r) var(--r);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
  }
  .has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; }

  .sub__link { display: block; padding: 10px 20px; text-decoration: none; }
  .sub__link:hover .sub__title, .sub__link.is-active .sub__title { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
  .sub__title { display: block; font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
  .sub__desc { display: block; font-size: 0.875rem; color: var(--ink-4); line-height: 1.35; margin-top: 2px; }
}

.crumbs { background: var(--paper); border-bottom: 1px solid var(--line); }
.crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 12px;
  font-size: 0.875rem;
  color: var(--ink-4);
}
.crumbs__item { display: inline-flex; align-items: center; gap: 8px; }
.crumbs__item a { color: var(--ink-4); text-decoration: none; }
.crumbs__item a:hover { color: var(--blue); text-decoration: underline; }
.crumbs__item [aria-current] { color: var(--ink-2); }
.crumbs__sep { color: var(--line-2); flex: none; }

.hero {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero__grid { display: grid; gap: 40px; }
.hero__grid > * { min-width: 0; }
.hero__body { padding-block: 48px 0; }
.hero__title { max-width: 18ch; }
.hero__lede { max-width: 46rem; margin-top: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }

@media (min-width: 768px) {
  .hero__body { padding-block: 72px 0; }
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 64px;
    align-items: center;
    padding-block: 88px 96px;
  }
  .hero__body { padding-block: 0; }
  .hero__title { font-size: clamp(3.25rem, 1.8rem + 3.6vw, 4.5rem); }
}

.rev {
  background: #fcfcfd;
  border: 1px solid #ececef;
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) { .rev { margin-bottom: 0; } }

.rev__head { display: flex; align-items: center; gap: 12px; }
.g-logo { width: 26px; height: 26px; flex: none; }
.rev__bron { font-size: 1.0625rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.rev__score {
  margin-left: auto;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.sterren { display: inline-flex; gap: 3px; margin-top: 14px; }
.sterren svg { width: 18px; height: 18px; fill: #f2a600; }

.rev__stage { display: grid; }
.rev__groep { grid-area: 1 / 1; }
.rev__groep[hidden] { display: block; visibility: hidden; }

.rev__item {
  margin: 0;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ececef;
}
.rev__quote {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.rev__quote::before { content: '“'; }
.rev__quote::after { content: '”'; }
.rev__auteur { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.rev__wanneer { display: block; font-weight: 400; font-size: 0.875rem; color: var(--ink-4); }

.rev__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
}
.rev__foot .arrowlink { font-size: 0.9375rem; min-height: 0; }

.rev__pauze {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--line-2);
}
.rev__pauze:hover { color: var(--ink-3); }
.rev__pauze svg { width: 13px; height: 13px; fill: currentColor; }
.rev__pauze[data-lopend='false'] svg rect:first-child { display: none; }
.rev__pauze[data-lopend='false'] svg rect:last-child {
  x: 4px;
  width: 9px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.trust { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.trust__in { padding-block: 36px 40px; text-align: center; }
.trust__label {
  font-size: 0.875rem;
  color: var(--ink-4);
  margin-bottom: 40px;
}

.ervaring {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 168px;
}
.ervaring__item { display: flex; align-items: center; }
.ervaring__logo {
  height: 30px;
  width: auto;
}
.ervaring__logo[alt="Rijksoverheid"] { height: 42px; }
.ervaring__logo[alt="ABN AMRO"] { height: 26px; }
.ervaring__logo[alt="NS"] { height: 34px; }
.ervaring__naam { font-size: 1rem; font-weight: 600; color: var(--ink-3); }

.items {
  display: grid;
  gap: 56px 40px;
}
@media (min-width: 768px) { .items { grid-template-columns: repeat(2, 1fr); gap: 80px 64px; } }
@media (min-width: 1200px) { .items--3 { grid-template-columns: repeat(3, 1fr); gap: 88px 72px; } }

.item { display: flex; flex-direction: column; min-width: 0; }
.item__panel {
  background: var(--paper-3);
  border-radius: var(--r);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  padding: 24px;
}
.item__panel svg { width: 100%; height: 100%; }
.item__h { margin-bottom: 10px; }
.item__p { color: var(--ink-2); margin-bottom: 16px; }
.item__link { margin-top: auto; }

.flow { display: grid; gap: 40px; }
@media (min-width: 768px) { .flow { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; } }
@media (min-width: 1200px) { .flow { grid-template-columns: repeat(4, 1fr); } }

.flow__step { border-top: 1px solid var(--ink); padding-top: 20px; }
.flow__n { display: block; font-size: 0.875rem; font-weight: 600; color: var(--blue); margin-bottom: 10px; }
.flow__step h3 { margin-bottom: 8px; }
.flow__step p { color: var(--ink-2); }

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.split--flip .split__art { order: -1; }
.split__art {
  background:
    radial-gradient(circle at -12% 50%, rgba(0, 0, 255, 0.02) 0 44%, transparent 44.4%),
    radial-gradient(circle at -12% 50%, rgba(0, 0, 255, 0.015) 0 56%, transparent 56.4%),
    var(--paper-3);
  border-radius: var(--r);
  padding: 32px;
}

.stat-row { display: grid; gap: 32px; }
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat b {
  display: block;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: 8px; color: var(--ink-3); }

.faq { max-width: 62rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--blue); }
.faq__icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: currentColor;
}
.faq__icon::after { transform: rotate(90deg); }
[open] .faq__icon::after { display: none; }
.faq__a { padding-bottom: 24px; max-width: 68ch; }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem); font-weight: 500; margin: 40px 0 12px; }
.prose h3 { font-size: 1.125rem; font-weight: 600; margin: 28px 0 8px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin-bottom: 24px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.prose ol { counter-reset: n; }
.prose ol li { position: relative; padding-left: 34px; counter-increment: n; }
.prose ol li::before {
  content: counter(n);
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.prose a { color: var(--blue); }
.prose strong { color: var(--ink); font-weight: 600; }

.datatable { width: 100%; border-collapse: collapse; font-size: 1rem; }
.datatable th {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top;
}
.datatable td { padding: 16px 20px 16px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.datatable td:last-child, .datatable th:last-child { padding-right: 0; }
.datatable td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tablewrap { overflow-x: auto; min-width: 0; }

.form { max-width: 40rem; }
.form__grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .form__grid { grid-template-columns: repeat(2, 1fr); } }
.form__full { grid-column: 1 / -1; }

.field { display: grid; gap: 6px; }
.field > label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%;
  font-size: 16px;
  min-height: var(--btn-h);
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 128px; resize: vertical; line-height: 1.5; }
.field input:hover, .field textarea:hover { border-color: var(--ink-4); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px #d6d6ff;
}
.field input:disabled, .field textarea:disabled { background: var(--paper-2); color: var(--ink-4); cursor: not-allowed; }
.field [aria-invalid='true'] { border-color: #b00020; }
.field__error { font-size: 0.875rem; color: #b00020; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { margin-top: 16px; font-size: 0.875rem; color: var(--ink-4); }
.form__note a { color: var(--blue); }

.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-nap { display: grid; gap: 4px; margin-top: 24px; font-style: normal; }
.contact-nap a { color: var(--blue); font-weight: 600; text-decoration: none; }
.contact-nap span { color: var(--ink-2); }

.site-foot { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: 48px 32px; }
.foot-top { display: grid; gap: 40px; }
@media (min-width: 1024px) { .foot-top { grid-template-columns: 1fr 2.4fr; gap: 64px; } }

.brand--foot { padding: 0; margin-bottom: 12px; }
.foot-pitch { font-size: 0.9375rem; color: var(--ink-3); max-width: 34ch; }
.foot-nap { display: grid; gap: 2px; margin-top: 20px; font-style: normal; font-size: 0.9375rem; color: var(--ink-3); }
.foot-nap a { color: var(--blue); text-decoration: none; }
.foot-nap a:hover { text-decoration: underline; }

.foot-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
@media (min-width: 768px) { .foot-cols { grid-template-columns: repeat(4, 1fr); } }
.foot-h { font-size: 0.9375rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.foot-col ul { display: grid; gap: 8px; }
.foot-col a { color: var(--ink-3); font-size: 0.9375rem; text-decoration: none; }
.foot-col a:hover { color: var(--blue); text-decoration: underline; }

.foot-bottom {
  display: grid;
  gap: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--ink-4);
}
.foot-bottom a { color: var(--ink-4); text-decoration: none; }
.foot-bottom a:hover { color: var(--blue); text-decoration: underline; }
.foot-bottom ul { display: flex; flex-wrap: wrap; gap: 20px; }
@media (min-width: 768px) {
  .foot-bottom { grid-auto-flow: column; justify-content: space-between; align-items: center; }
}

.nf { padding-block: var(--sec-y); }
.nf__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.item__shot {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--paper);
}
.proj__foto { width: 100%; height: auto; display: block; }

.proj__feiten {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .proj__feiten { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.proj__feiten dt {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-4);
  margin-bottom: 4px;
}
.proj__feiten dd { margin: 0; color: var(--ink-2); }

.toer { display: grid; gap: 72px; }

.toer__rij { display: grid; gap: 28px; align-items: center; }
@media (min-width: 1024px) {
  .toer { gap: 96px; }
  .toer__rij { grid-template-columns: 1.35fr 1fr; gap: 56px; }
  .toer__rij--om { grid-template-columns: 1fr 1.35fr; }
  .toer__rij--om .toer__beeld { order: 2; }
}

.toer__beeld {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
  min-width: 0;
}

.toer__tekst { min-width: 0; }
.toer__nr {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.toer__tekst h3 { margin-bottom: 12px; }
.toer__tekst p { color: var(--ink-2); }

.proj__kop { max-width: 46rem; }

.opbrengst { display: grid; gap: 16px; }
.opbrengst li {
  position: relative;
  padding-left: 34px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink);
}
.opbrengst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px;
  height: 9px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.uitgelicht { display: grid; gap: 56px; }
@media (min-width: 768px) { .uitgelicht { grid-template-columns: repeat(2, 1fr); gap: 64px 40px; } }
@media (min-width: 1200px) { .uitgelicht { grid-template-columns: repeat(2, 1fr); gap: 64px 56px; } }

.uit { display: flex; flex-direction: column; min-width: 0; }

.uit__beeld {
  margin: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
  min-width: 0;
}
.uit__h { margin-bottom: 10px; }
.uit__cta {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.uit__cta .btn { width: 100%; padding-inline: 12px; text-align: center; }

.uit__p { color: var(--ink-2); margin: 12px 0 20px; }
.uit__lijst { display: grid; gap: 10px; margin-bottom: 28px; }
.uit__lijst li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  color: var(--ink-2);
}
.uit__lijst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.modal {
  width: min(600px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink-2);
  overflow: hidden;
}
.modal::backdrop { background: rgba(11, 16, 32, 0.5); }

.modal__in {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 0;
}

.modal__kop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 20px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.modal__kop .eyebrow { margin-bottom: 6px; }
.modal__kop .h3 { color: var(--ink); }

.modal__sluit {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  margin: -4px -6px 0 0;
  padding: 0;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--r);
  color: var(--ink-3);
  cursor: pointer;
}
.modal__sluit:hover { background: var(--paper); border-color: var(--line); color: var(--ink); }

.modal__body { padding: 24px 28px; }
.modal__lead { font-size: 0.9375rem; margin-bottom: 20px; }

.modal__stappen {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px 18px;
  background: var(--paper-2);
  border-radius: var(--r);
}
.modal__stappen li {
  position: relative;
  padding-left: 30px;
  font-size: 0.875rem;
  color: var(--ink-2);
  counter-increment: stap;
}
.modal__stappen li::before {
  content: counter(stap);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 600;
}

.modal__voet {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.modal__voet .btn { flex: 1 1 auto; }
.modal__voet .form__note { flex: 1 1 100%; margin: 0; }

.artikel { max-width: 46rem; }

.contactblok { border-top: 1px solid var(--line); }

.item__beeld {
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-3);
}
.blogfoto { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.artikel__beeld {
  margin: 40px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-3);
}

.cases { display: grid; gap: 56px 40px; }
@media (min-width: 768px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.case { border-top: 1px solid var(--ink); padding-top: 20px; min-width: 0; }
.case__n {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.case h3 { margin-bottom: 20px; }
.case dt { font-size: 0.8125rem; font-weight: 600; color: var(--ink-3); margin-bottom: 4px; }
.case dd { margin: 0 0 18px; color: var(--ink-2); }
.case dd:last-child { margin-bottom: 0; }

.num__sub { color: var(--ink-3); font-size: 0.8125rem; }
.tag {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  padding: 3px 8px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-3);
}
.prijs { font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.prijs__eenheid { font-size: 0.9375rem; font-weight: 400; color: var(--ink-3); }

.prijsband {
  display: grid;
  gap: 32px;
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--paper-2);
  min-width: 0;
}
@media (min-width: 1024px) { .prijsband { grid-template-columns: 1fr auto; align-items: center; gap: 56px; } }
.prijsband .prijs { font-size: 1.5rem; }
.prijsband__p { color: var(--ink-2); max-width: 54rem; }
.prijsband__cta { display: grid; gap: 16px; justify-items: start; }

.scorekaart {
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--paper);
  padding: 32px;
  min-width: 0;
}
.scorekaart__bron { display: flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: 0.9375rem; }
.scorekaart__cijfer {
  font-size: clamp(3rem, 2rem + 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin: 16px 0 12px;
  font-variant-numeric: tabular-nums;
}
.scorekaart__aantal { color: var(--ink-3); margin: 12px 0 20px; }

.case__titel { margin-bottom: 24px; }
.caseblok { margin-bottom: 24px; }
.caseblok dt {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.caseblok dd { margin: 0 0 20px; color: var(--ink-2); }
.caseblok dd:last-child { margin-bottom: 0; }
.caseblok__lijst { margin-bottom: 28px; }
.caseblok__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.caseblok__cta .btn { flex: 1 1 200px; justify-content: center; }

.quotes { display: grid; gap: 40px; }
@media (min-width: 768px) { .quotes { grid-template-columns: repeat(2, 1fr); gap: 48px 40px; } }
@media (min-width: 1200px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 56px 48px; } }
.quote { margin: 0; border-top: 1px solid var(--ink); padding-top: 20px; min-width: 0; }
.quote__tekst { margin: 16px 0 20px; color: var(--ink-2); }
.quote__auteur { display: grid; gap: 2px; }
.quote__naam { font-weight: 600; color: var(--ink); }
.quote__bedrijf { color: var(--ink-3); font-size: 0.9375rem; }

@supports (grid-template-rows: subgrid) {
  @media (min-width: 768px) {
    .quotes { grid-template-rows: repeat(3, auto); row-gap: 0; }
    .quote { display: grid; grid-template-rows: subgrid; grid-row: span 3; }
    .quote + .quote + .quote { margin-top: 0; }
  }
}

.uc { display: grid; gap: 56px 40px; }
@media (min-width: 768px) { .uc { grid-template-columns: repeat(2, 1fr); gap: 64px 56px; } }
@media (min-width: 1200px) { .uc { grid-template-columns: repeat(3, 1fr); gap: 72px 64px; } }
.uc__item { border-top: 1px solid var(--ink); padding-top: 20px; min-width: 0; }
.uc__sector {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.uc__vraag { margin-bottom: 16px; }
.uc__gebouwd { color: var(--ink-2); margin-bottom: 16px; }
.uc__oplevert {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 500;
}
.uc__oplevert::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

@supports (grid-template-rows: subgrid) {
  @media (min-width: 768px) {
    .uc { grid-template-rows: repeat(4, auto); row-gap: 0; }
    .uc__item { display: grid; grid-template-rows: subgrid; grid-row: span 4; }
    .uc__oplevert { padding-bottom: 64px; }
  }
}

.branchefoto { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.branchebeeld {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-3);
  min-width: 0;
}

@supports (grid-template-rows: subgrid) {
  @media (min-width: 1200px) {
    .cases { grid-template-rows: repeat(8, auto); row-gap: 0; }
    .case { display: grid; grid-template-rows: subgrid; grid-row: span 8; }
    .case dl { display: grid; grid-template-rows: subgrid; grid-row: span 6; margin: 0; }
  }
}

.verder {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--paper-2);
}
.verder h2 { margin-bottom: 8px; }
.verder p { color: var(--ink-2); margin-bottom: 12px; }
.verder p:last-child { margin-bottom: 0; }

.faq__kop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  font: inherit;
  color: inherit;
  margin: 0;
}

.tablewrap:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.formfout {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid #c0392b;
  border-left-width: 3px;
  border-radius: var(--r);
  background: #fdf3f2;
  color: #8e2a20;
  font-size: 0.9375rem;
}

.bronnen { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.bronnen h2 { margin-bottom: 12px; }
.bronnen ol { padding-left: 20px; }
.bronnen li { margin-bottom: 8px; color: var(--ink-2); font-size: 0.9375rem; }
.auteur {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--paper-2);
}
.auteur__naam { font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.auteur__bio { color: var(--ink-2); margin-bottom: 12px; }

.beginscherm { display: grid; grid-template-rows: 1fr auto; }
.beginscherm .hero {
  display: grid;
  align-items: center;
  border-bottom: 0;
}
.beginscherm .hero__body { padding-block: 0; }
.beginscherm .hero__grid { padding-block: clamp(32px, 5vh, 88px); }
.beginscherm .rev { margin-bottom: 0; }
.beginscherm .trust__in { padding-block: clamp(20px, 3.5vh, 40px); }
.beginscherm .trust__label { margin-bottom: clamp(16px, 2.5vh, 40px); }

@media (min-width: 1024px) {
  .beginscherm { min-height: calc(100svh - var(--kop, 61px) - var(--kier, 44px)); }
}

@media (min-width: 1024px) and (max-height: 900px) {
  .beginscherm .hero__title { font-size: clamp(2.25rem, 1rem + 3vh, 3.25rem); }
  .beginscherm .hero__lede { margin-top: 16px; font-size: 1rem; }
  .beginscherm .hero__cta { margin-top: 24px; }
  .beginscherm .rev { padding: 20px; }
  .beginscherm .rev__groep .rev__item + .rev__item { display: none; }
  .beginscherm .rev__score { font-size: 2rem; }
  .beginscherm .ervaring__logo { height: 24px; }
  .beginscherm .ervaring__logo[alt="Rijksoverheid"] { height: 34px; }
  .beginscherm .ervaring__logo[alt="ABN AMRO"] { height: 21px; }
  .beginscherm .ervaring__logo[alt="NS"] { height: 27px; }
}

@media (min-width: 1024px) and (max-height: 780px) {
  .beginscherm .hero__grid { padding-block: clamp(20px, 3vh, 40px); gap: 40px; }
  .beginscherm .trust__in { padding-block: 16px; }
  .beginscherm .trust__label { margin-bottom: 14px; font-size: 0.8125rem; }
  .beginscherm .rev__foot { display: none; }
}

@media (min-width: 1024px) {
  .beginscherm .hero__grid { grid-template-columns: minmax(0, 1fr) clamp(390px, 26vw, 460px); }
  .beginscherm .rev { padding: clamp(24px, 2.2vh, 30px); }
  .beginscherm .rev__bron { font-size: 1.0625rem; }
  .beginscherm .rev__score { font-size: clamp(2rem, 1.2rem + 1.4vh, 2.5rem); }
  .beginscherm .rev__quote { font-size: clamp(1.0625rem, 0.95rem + 0.3vh, 1.1875rem); line-height: 1.5; }
  .beginscherm .rev__auteur { font-size: 0.9375rem; }
  .beginscherm .rev__wanneer { font-size: 0.875rem; }
}

.reglijst { list-style: none; margin: 0 0 20px; padding: 0; }
.reglijst li { border-top: 1px solid var(--line); }
.reglijst li:last-child { border-bottom: 1px solid var(--line); }
.reglijst a {
  display: block;
  padding: 12px 0;
  font-size: .95rem;
  line-height: 1.45;
  color: var(--ink-2);
  text-decoration: none;
}
.reglijst a:hover { color: var(--blue); }
.reglijst a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

@media (max-width: 767px) {
  :root { --sec-y: 44px; }

  .h1 { line-height: 1.15; }
  .h2 { line-height: 1.18; }
  .lede { line-height: 1.45; }
  .sec-head { margin-bottom: 32px; }
  .sec-head .lede { margin-top: 12px; }

  .items { gap: 28px; }
  .item {
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .item:has(.item__beeld),
  .item:has(.item__panel) {
    border-top: 0;
    padding-top: 0;
  }
  .item__h { margin-bottom: 8px; }
  .item__p { margin-bottom: 12px; }
  .item__beeld { margin-bottom: 16px; }

  .cases { gap: 32px; }
  .case { padding-top: 16px; }

  .flow { gap: 28px; }
  .quotes { gap: 32px; }
  .uitgelicht { gap: 32px; }

  .prose p { margin-bottom: 18px; }
  .prose h2 { margin: 30px 0 10px; }
  .prose h3 { margin: 24px 0 8px; }
  .prose ul, .prose ol { margin-bottom: 22px; gap: 10px; }

  .opbrengst li { padding-top: 14px; padding-bottom: 14px; }

  .arrowlink { padding-block: 4px; }

  .foot-col ul { gap: 0; }
  .foot-col a { display: block; padding-block: 7px; }
  .foot-bottom ul { gap: 0; }
  .foot-bottom a { display: inline-block; padding-block: 6px; }
  .foot-nap a { display: inline-block; padding-block: 4px; }
  .crumbs__item a { display: inline-block; padding-block: 5px; }
  .prose li > a:only-child { display: inline-block; padding-block: 4px; }
  table a { display: inline-block; padding-block: 4px; }

  .item:has(.item__beeld) {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
  }
  .item:has(.item__beeld) > * { grid-column: 2; }
  .item:has(.item__beeld) > .item__beeld {
    grid-column: 1;
    grid-row: 1 / span 5;
    margin: 0;
  }
  .item:has(.item__beeld) .blogfoto,
  .item:has(.item__beeld) .branchefoto { aspect-ratio: 1 / 1; }
  .item:has(.item__beeld) .eyebrow { margin-bottom: 2px; }
  .item:has(.item__beeld) .item__h { margin-bottom: 6px; }
  .item:has(.item__beeld) .item__p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .item:has(.item__beeld) .item__link { margin-top: 0; }

  .faq__q { padding-block: 14px; }
  .prijsband { margin-top: 40px; padding: 24px; }
  .case dd { margin-bottom: 14px; }
}

@media (max-width: 359px) {
  .foot-cols { grid-template-columns: 1fr; }
  .foot-top > * { min-width: 0; }
  .h1 { font-size: 1.875rem; }
  .h2 { font-size: 1.5rem; }
  .split > * { min-width: 0; }
  .h1, .h2, .h3, .item__h { overflow-wrap: break-word; }
}

@media (max-width: 767px) {
  .hero__title { font-size: 1.75rem; }
  .hero__lede { font-size: 1rem; line-height: 1.5; margin-top: 14px; }
  .hero__cta { flex-direction: row; gap: 10px; margin-top: 20px; }
  .hero__cta .btn { flex: 1 1 0; min-width: 0; padding-inline: 8px; text-align: center; justify-content: center; }

  .rev { padding: 18px; margin-bottom: 32px; }
  .rev__score { font-size: 1.5rem; }
  .rev__bron { font-size: 1rem; }
  .g-logo { width: 22px; height: 22px; }
  .sterren { margin-top: 10px; }
  .sterren svg { width: 16px; height: 16px; }
  .rev__item { margin-top: 14px; padding-top: 14px; }
  .rev__quote { font-size: 1rem; line-height: 1.5; margin-bottom: 10px; }
  .rev__foot { margin-top: 14px; }

  .trust__in { padding-block: 22px 26px; }
  .trust__label { margin-bottom: 16px; }
  .ervaring {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }
  .ervaring__item { flex: 1 1 0; min-width: 0; justify-content: center; }
  .ervaring__logo { height: 15px; max-width: 100%; object-fit: contain; }
  .ervaring__logo[alt="Rijksoverheid"] { height: 21px; }
  .ervaring__logo[alt="ABN AMRO"] { height: 13px; }
  .ervaring__logo[alt="NS"] { height: 17px; }

  .items--kort { gap: 0; counter-reset: opl; }
  .items--kort .item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 22px;
    column-gap: 10px;
    align-items: start;
    border-top: 1px solid var(--line);
    padding: 15px 0;
    counter-increment: opl;
  }
  .items--kort .item:last-child { border-bottom: 1px solid var(--line); }
  .items--kort .item::before {
    content: counter(opl, decimal-leading-zero);
    grid-column: 1;
    grid-row: 1;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    font-variant-numeric: tabular-nums;
    line-height: 1.6;
  }
  .items--kort .item__h { grid-column: 2; grid-row: 1; margin: 0; }
  .items--kort .item__p {
    grid-column: 2 / -1;
    grid-row: 2;
    margin: 5px 0 0;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .items--kort .item__link { grid-column: 3; grid-row: 1; margin: 0; }
  .items--kort .item__link .arrowlink {
    font-size: 0;
    gap: 0;
    padding: 0;
    min-height: 24px;
    justify-content: flex-end;
  }
  .items--kort .item__link .arrowlink svg { width: 20px; height: 20px; }
}

@media (max-width: 767px) {
  .hero__body { padding-block: 32px 0; }
  .hero__grid { gap: 24px; }
}

@media (max-width: 374px) {
  .beginscherm .rev__quote { font-size: clamp(0.9375rem, 0.75rem + 0.5svh, 1rem); }
  .beginscherm .hero__grid { padding-block: clamp(12px, 1.9svh, 26px); }
  .hero__body { padding-block: 24px 0; }
  .hero__grid { gap: 18px; }
  .hero__title { font-size: 1.5rem; }
  .hero__lede { font-size: 0.9375rem; margin-top: 10px; }
  .hero__cta { margin-top: 16px; }
  .hero__cta .btn { font-size: 0.9375rem; padding-inline: 6px; }
  .rev { padding: 15px; }
  .rev__quote { font-size: 0.9375rem; }
}

@media (max-width: 767px) {
  .items--kort .item { grid-template-columns: 24px minmax(0, 1fr) 26px; }
  .items--kort .item__link .arrowlink { min-width: 26px; }

  .uitgelicht { gap: 0; }
  .uit {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-top: 22px;
  }
  .uit:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
  .uit__beeld { margin-bottom: 14px; }
  .uit__h { margin-bottom: 6px; }
  .uit__p {
    margin: 0 0 12px;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .uit__lijst { gap: 6px; margin-bottom: 14px; }
  .uit__lijst li { font-size: 0.875rem; padding-left: 22px; }
  .uit__cta { gap: 8px; }
}

@media (max-width: 1023px) {
  .beginscherm { min-height: calc(100svh - var(--kop, 57px)); }
  .beginscherm .hero__grid {
    padding-block: clamp(14px, 2.4svh, 36px);
    gap: clamp(14px, 2.4svh, 28px);
  }
  .beginscherm .hero__title { font-size: clamp(1.5rem, 8.7vw, 2.375rem); line-height: 1.1; max-width: none; letter-spacing: -0.02em; }
  .beginscherm .hero__lede {
    font-size: clamp(0.9375rem, 0.8rem + 0.5svh, 1.0625rem);
    line-height: 1.5;
    max-width: none;
  }
  .beginscherm .hero__cta { margin-top: clamp(12px, 1.9svh, 20px); }
  .beginscherm .rev { padding: clamp(15px, 2.6svh, 26px); margin-bottom: 0; }
  .beginscherm .rev__quote { font-size: clamp(0.875rem, 0.72rem + 0.45svh, 1rem); line-height: 1.45; margin-bottom: 8px; }
  .beginscherm .rev__item { margin-top: clamp(10px, 1.5svh, 14px); padding-top: clamp(10px, 1.5svh, 14px); }
  .beginscherm .rev__foot { margin-top: clamp(10px, 1.5svh, 14px); }
  .beginscherm .sterren { margin-top: clamp(8px, 1.3svh, 14px); }

  .beginscherm .trust__in {
    padding-top: clamp(8px, 1.2svh, 14px);
    padding-bottom: calc(clamp(8px, 1.2svh, 14px) + env(safe-area-inset-bottom, 0px));
  }
  .beginscherm .trust__label { font-size: 0.75rem; margin-bottom: clamp(6px, 0.9svh, 10px); }
  .beginscherm .ervaring { gap: 8px; }
  .beginscherm .ervaring__logo { height: clamp(12px, 1.55svh, 16px); }
  .beginscherm .ervaring__logo[alt="Rijksoverheid"] { height: clamp(17px, 2.2svh, 22px); }
  .beginscherm .ervaring__logo[alt="ABN AMRO"] { height: clamp(10px, 1.35svh, 14px); }
  .beginscherm .ervaring__logo[alt="NS"] { height: clamp(14px, 1.75svh, 18px); }
}

@media (max-width: 1023px) and (max-height: 790px) {
  .beginscherm .hero__grid { padding-block: 12px; gap: 14px; }
  .beginscherm .hero__title { font-size: clamp(1.5rem, 7vw, 1.75rem); line-height: 1.15; }
  .beginscherm .hero__lede { font-size: clamp(0.875rem, 4.3vw, 1rem); line-height: 1.45; margin-top: 8px; }
  .beginscherm .hero__cta { margin-top: 12px; }
  .beginscherm .hero__cta .btn { min-height: 40px; height: 40px; font-size: 0.875rem; }
  .beginscherm .rev { padding: 15px; }
  .beginscherm .rev__score { font-size: 1.25rem; }
  .beginscherm .rev__bron { font-size: 0.9375rem; }
  .beginscherm .g-logo { width: 18px; height: 18px; }
  .beginscherm .sterren { margin-top: 6px; }
  .beginscherm .sterren svg { width: 14px; height: 14px; }
  .beginscherm .rev__item { margin-top: 11px; padding-top: 11px; }
  .beginscherm .rev__quote { font-size: 0.9375rem; line-height: 1.5; margin-bottom: 8px; }
  .beginscherm .rev__auteur { font-size: 0.875rem; }
  .beginscherm .rev__wanneer { display: none; }
  .beginscherm .rev__wanneer { font-size: 0.8125rem; }
  .beginscherm .rev__foot { margin-top: 11px; }
  .beginscherm .rev__foot .arrowlink { font-size: 0.875rem; }
  .beginscherm .trust__in { padding-top: 7px; padding-bottom: calc(7px + env(safe-area-inset-bottom, 0px)); }
  .beginscherm .trust__label { font-size: 0.6875rem; line-height: 1.3; margin-bottom: 6px; }
  .beginscherm .ervaring__logo { height: 12px; }
  .beginscherm .ervaring__logo[alt="Rijksoverheid"] { height: 17px; }
  .beginscherm .ervaring__logo[alt="ABN AMRO"] { height: 10px; }
  .beginscherm .ervaring__logo[alt="NS"] { height: 14px; }
}

@media (max-width: 1023px) {
  .beginscherm .hero__grid {
    gap: 0;
    padding-block: clamp(26px, 5.4svh, 76px) clamp(12px, 1.9svh, 30px);
  }
  .beginscherm .hero { align-items: stretch; }
  .beginscherm .hero > .wrap { display: grid; }
  .beginscherm .hero__grid { align-content: space-between; }
  .beginscherm .hero__body { display: contents; }
  .beginscherm .hero__tekst { order: 1; }
  .beginscherm .hero__title { margin: 0; }
  .beginscherm .hero__lede { margin-top: 10px; }
  .beginscherm .rev { order: 2; margin-top: clamp(14px, 2.2svh, 24px); }
  .beginscherm .hero__cta { order: 3; margin-top: clamp(12px, 1.9svh, 20px); }
}

@media (max-width: 767px) {
  .uit {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
  }
  .uit__beeld {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
  }
  .uit__beeld img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 0 0;
    border: 0;
    border-radius: 0;
  }
  .uit__h { grid-column: 2; grid-row: 1; margin: 0; }
  .uit__p {
    grid-column: 2;
    grid-row: 2;
    margin: 6px 0 0;
    -webkit-line-clamp: 3;
  }
  .uit__lijst {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 14px 0 0;
  }
  .uit__cta {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 14px;
  }
}

@media (max-width: 1023px) {
  .sec--start {
    min-height: calc(100svh - var(--kop, 57px) - var(--crumbs, 56px));
    display: grid;
    padding-block: clamp(12px, 2svh, 28px);
  }
  .sec--start > .wrap { display: grid; }
  .split--start {
    gap: 0;
    grid-template-rows: auto auto auto 1fr auto;
  }
  .split--start > div:first-child { display: contents; }
  .split--start .eyebrow { order: 1; }
  .split--start .h1 { order: 2; margin-top: 6px; }
  .split--start .hero__lede { order: 3; margin-top: clamp(8px, 1.3svh, 16px); }
  .split--start .split__art,
  .split--start .branchebeeld {
    order: 4;
    align-self: center;
    justify-self: stretch;
    margin: clamp(12px, 2svh, 26px) 0;
  }
  .split--start .hero__cta { order: 5; margin-top: clamp(12px, 1.9svh, 20px); align-self: end; }
}

@media (max-width: 1023px) and (max-height: 810px) {
  .sec--start { padding-block: 10px; }
  .sec--start .h1 { font-size: 1.5rem; line-height: 1.18; }
  .sec--start .hero__lede { font-size: 0.9375rem; line-height: 1.45; margin-top: 8px; }
  .sec--start .split__art,
  .sec--start .branchebeeld { margin: 10px 0; max-height: 34svh; }
  .sec--start .split__art > *,
  .sec--start .branchebeeld img { max-height: 34svh; object-fit: cover; }
  .sec--start .hero__cta { margin-top: 10px; }
  .sec--start .hero__cta .btn { min-height: 40px; height: 40px; font-size: 0.875rem; }
}

@media (max-width: 1023px) and (max-height: 680px) {
  .sec--start .h1 { font-size: 1.375rem; }
  .sec--start .hero__lede { font-size: 0.875rem; }
  .sec--start .split__art,
  .sec--start .branchebeeld { max-height: 26svh; }
  .sec--start .split__art > *,
  .sec--start .branchebeeld img { max-height: 26svh; object-fit: cover; }
}

@media (max-width: 1023px) and (max-height: 810px) {
  .beginscherm .hero__grid { padding-block: 20px 10px; }
}

@media (max-width: 1023px) and (max-height: 700px) {
  .beginscherm .hero__grid { padding-block: 14px 10px; }
}

@media (max-width: 767px) {
  .crumbs__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .crumbs__list::-webkit-scrollbar { display: none; }
  .crumbs__item { flex: none; white-space: nowrap; }
}

@media (max-width: 374px) {
  .beginscherm .hero__lede { font-size: clamp(0.8125rem, 4.1vw, 0.9375rem); }
  .beginscherm .hero__title { font-size: clamp(1.375rem, 7.6vw, 1.75rem); }
}

@media (max-width: 1023px) {
  .beginscherm .rev {
    padding-top: clamp(15px, 2.3svh, 24px);
    padding-bottom: clamp(15px, 2.3svh, 24px);
  }
}

/* Fotohero op de beginpagina: foto over de volle breedte, donker gebogen
   vlak links (svg, drie cirkels in de blauwe familie), witte tekst. */
.hero--foto {
  background: #151b4d;
  color: #fff;
  border-bottom: 0;
  min-height: clamp(440px, 54vh, 600px);
  isolation: isolate;
}
/* De foto staat als uitgezoomde scene rechts: hoogte van de hero, breedte via
   aspect-ratio, gemaximeerd op twee derde. Links loopt hij zacht weg in het vlak. */
.hero--foto .hero__foto {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 0;
  margin: 0;
  height: 100%;
  aspect-ratio: 2.2 / 1;
  max-width: 66%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 22%);
  mask-image: linear-gradient(to right, transparent 0, #000 22%);
}
.hero--foto .hero__foto img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 20%; }
.hero--foto .hero__vlak {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10% 90%;
}
.hero--foto .wrap { z-index: 2; }
.hero--foto .hero__grid { grid-template-columns: minmax(0, 1fr); }
.hero--foto .hero__body { max-width: min(44rem, 48vw); }
.hero__kicker {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.375rem);
  font-weight: 400;
  line-height: 1.3;
  color: #e6e6ff;
  margin-bottom: 16px;
}
.hero--foto .hero__title { color: #fff; max-width: 20ch; overflow-wrap: normal; hyphens: manual; }
.hero--foto .hero__lede { color: #e6e6ff; max-width: min(42rem, 44vw); }

.btn--wit { background: transparent; color: #fff; border-color: #fff; }
.btn--wit:hover { background: rgba(255, 255, 255, 0.14); }
/* Op het blauwe vlak is de primaire knop wit met blauwe tekst (wit op blauw). */
.hero--foto .btn--primary { background: #fff; color: #151b4d; }
.hero--foto .btn--primary:hover { background: #eaeaff; }

@media (min-width: 1024px) {
  .beginscherm .hero--foto .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero--foto .hero__cta { margin-top: 40px; }
}

@media (min-width: 1024px) {
  .beginscherm .hero--foto .hero__lede { font-size: clamp(1.0625rem, 0.9rem + 0.4vw, 1.25rem); line-height: 1.45; }
}

/* Mobiel en staande tablet: foto bovenin zichtbaar, tekst en knoppen onderin
   op een donker verloop. Het gebogen vlak vervalt. */
@media (max-width: 767px), (max-width: 1023px) and (orientation: portrait) {
  .hero--foto { min-height: 0; }
  .hero--foto .hero__vlak { display: none; }
  .hero--foto .hero__foto::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 27, 77, 0) 0%, rgba(21, 27, 77, 0.1) 40%, rgba(21, 27, 77, 0.92) 78%, #151b4d 100%);
  }
  /* Foto alleen in het bovenste deel, op breedte geschaald zodat beide
     gezichten in beeld blijven; daaronder loopt het verloop in het vlak over. */
  .hero--foto .hero__foto { left: 0; bottom: auto; height: 64%; aspect-ratio: auto; max-width: none; -webkit-mask-image: none; mask-image: none; }
  .hero--foto .hero__foto img { object-position: 50% 0; }
  .beginscherm .hero--foto .hero__grid { align-content: end; gap: 0; padding-top: clamp(200px, 38svh, 340px); }
  .beginscherm .hero--foto .hero__cta { margin-top: 18px; }
  .hero__kicker { font-size: 0.9375rem; margin-bottom: 10px; }
  .beginscherm .hero--foto .hero__title { color: #fff; }
  .hero--foto .hero__body, .hero--foto .hero__lede { max-width: none; }
}

/* Google-score als kaart rechtsboven in de fotohero, uitgelijnd op de contentrand. */
.hero__google {
  position: absolute;
  z-index: 3;
  top: var(--hero-pad, 24px);
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
  text-decoration: none;
}
.hero__google:hover .hero__gbron { text-decoration: underline; }
.hero__google .g-logo { width: 22px; height: 22px; }
.hero__gscore { font-size: 1.375rem; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.hero__gtekst { display: flex; flex-direction: column; gap: 2px; }
.hero__gtekst .sterren { margin-top: 0; }
.hero__gtekst .sterren svg { width: 11px; height: 11px; }
.hero__gbron { font-size: 0.75rem; color: var(--ink-4); line-height: 1.2; }

@media (max-width: 767px) {
  .hero--foto .wrap { position: static; }
  .hero__google { top: 12px; right: var(--gutter); gap: 8px; padding: 6px 10px; }
  .hero__google .g-logo { width: 22px; height: 22px; }
  .hero__gscore { font-size: 1.375rem; }
  .hero__gtekst .sterren svg { width: 12px; height: 12px; }
  .hero__gbron { font-size: 0.75rem; }
}

/* Contactblok als sluitstuk van de hero: het tekstdeel op een blauw vlak met
   dezelfde ringen, het formulier blijft op wit. */
.contact-vlak {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 48px);
}
.contact-vlak > * { position: relative; z-index: 1; }
.contact-vlak__ring { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.contact-vlak .contact-nap a:hover { text-decoration: underline; }
@media (min-width: 1024px) {
  .contact-grid { align-items: start; }
}

/* Fotohero vult het scherm niet meer: vaste, lagere hoogte op desktop. */
@media (min-width: 1024px) {
  .beginscherm { min-height: 0; }
  .hero--foto { --hero-pad: clamp(40px, 6vh, 72px); }
  .beginscherm .hero--foto .hero__grid { padding-block: var(--hero-pad); }
}

/* Logobalk: op desktop verdeeld over de volle contentbreedte, ASML op de
   linker contentrand en DELTA op de rechter. */
@media (min-width: 1024px) {
  .trust .ervaring { justify-content: space-between; gap: 24px; }
}

/* Mobiel: alleen de knop "Plan een gesprek", klein en op eigen breedte. */
@media (max-width: 767px) {
  .hero--foto .hero__cta2, .hero--foto .hero__ctalang { display: none; }
  .hero--foto .hero__cta { justify-content: flex-start; }
  .hero--foto .hero__cta .btn { flex: 0 0 auto; min-height: 40px; height: 40px; padding-inline: 18px; font-size: 0.9375rem; }
}

/* Fotohero op branchepagina's: zelfde hero als de beginpagina, zonder trustbalk,
   met het kruimelpad erboven. */
@media (max-width: 1023px) {
  .beginscherm--sub { min-height: calc(100svh - var(--kop, 57px) - var(--crumbs, 56px)); }
  .beginscherm--compact { min-height: 0; }
}

/* Compacte fotohero: lange koppen (artikelen) en hulppagina's. */
.hero--compact { min-height: clamp(340px, 42vh, 460px); }
.beginscherm .hero--compact .hero__title { font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem); max-width: 30ch; }
.beginscherm .hero--compact .hero__lede { font-size: 1.0625rem; line-height: 1.5; max-width: min(44rem, 46vw); }
@media (max-width: 767px), (max-width: 1023px) and (orientation: portrait) {
  .beginscherm .hero--compact .hero__grid { padding-top: clamp(140px, 24svh, 220px); }
  .beginscherm .hero--compact .hero__title { font-size: clamp(1.375rem, 6.5vw, 1.75rem); }
  .beginscherm .hero--compact .hero__lede { max-width: none; }
}

/* Eén hero-maat voor alle pagina's op desktop: vaste hoogte, vaste paddings,
   dezelfde kopgrootte (compact alleen een kleinere kop voor lange titels). */
@media (min-width: 1024px) {
  .beginscherm .hero--foto { --hero-pad: 48px; min-height: 580px; }
  .beginscherm .hero--foto .hero__grid { padding-block: 48px; }
  .beginscherm .hero--foto .hero__title { font-size: clamp(2rem, 1.4rem + 2vw, 3.25rem); max-width: 26ch; line-height: 1.1; }
  .beginscherm .hero--compact .hero__title { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.75rem); max-width: 30ch; }
  .beginscherm .hero--foto .hero__lede { font-size: 1.0625rem; line-height: 1.5; margin-top: 16px; }
  .beginscherm .hero--foto .hero__cta { margin-top: 28px; }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .beginscherm .hero--foto { min-height: 480px; }
}

/* Google-score als regel onder de knoppen in de hero, geen kaart meer. */
.hero--foto .hero__google {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  background: none;
  border: 0;
  color: #fff;
  text-decoration: none;
}
.hero--foto .hero__google .g-logo { width: 20px; height: 20px; }
.hero--foto .hero__gscore { font-size: 1.125rem; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.hero--foto .hero__google .sterren { margin-top: 0; gap: 2px; }
.hero--foto .hero__google .sterren svg { width: 14px; height: 14px; }
.hero--foto .hero__gbron { font-size: 0.875rem; color: #e6e6ff; line-height: 1; }
.hero--foto .hero__google:hover .hero__gbron { text-decoration: underline; }
@media (max-width: 767px) {
  .hero--foto .hero__google { margin-top: 18px; gap: 8px; }
  .hero--foto .hero__google .g-logo { width: 18px; height: 18px; }
  .hero--foto .hero__gscore { font-size: 1rem; }
  .hero--foto .hero__gbron { font-size: 0.8125rem; }
}
@media (max-width: 1023px) {
  .beginscherm .hero--foto .hero__google { order: 4; }
}

/* Hero-knoppen even breed: raster met gelijke kolommen, zo breed als de breedste knop. */
@media (min-width: 768px) {
  .hero--foto .hero__cta { display: grid; width: max-content; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 12px; }
  .hero--foto .hero__google { display: flex; width: max-content; }
  .hero--foto .hero__cta .btn { width: 100%; }
}
