/* ==========================================================================
   Erexiva — bampana.shop
   Stylesheet: eigen opmaak, geen externe libraries of lettertypen.
   Palet: licht · verzadigd azuur · zilver · grafiet · diepblauw
   ========================================================================== */

:root {
  /* kleur */
  --deep-900: #061627;
  --deep-800: #0a2440;
  --deep-700: #103458;
  --graphite-900: #1d2229;
  --graphite-700: #272d36;
  --graphite-500: #444d59;
  --slate-400: #6b7889;
  --silver-300: #aab6c4;
  --silver-200: #c7cfd8;
  --silver-100: #e2e8ef;
  --mist-50: #f2f6fa;
  --paper: #ffffff;
  --azure-600: #0a6fb0;
  --azure-500: #0e86d4;
  --azure-400: #2ba4ea;
  --azure-100: #d9edfa;
  --signal: #1c8a6b;
  --alert: #b4442f;

  /* typografie */
  --face-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --face-text: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --face-index: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* ruimte */
  --gap-3: 6px;
  --gap-2: 12px;
  --gap-1: 20px;
  --gap0: 32px;
  --gap1: 48px;
  --gap2: 72px;
  --gap3: 104px;
  --gap4: 136px;

  --shell: 1210px;
  --rail: 26px;

  --edge-s: 8px;
  --edge-m: 16px;
  --edge-l: 26px;

  --lift-1: 0 2px 10px rgba(6, 22, 39, .06);
  --lift-2: 0 14px 38px -18px rgba(6, 22, 39, .32);
  --lift-3: 0 34px 70px -30px rgba(6, 22, 39, .45);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite-700);
  font-family: var(--face-text);
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--face-display);
  color: var(--deep-900);
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.16;
  margin: 0 0 var(--gap-1);
}

h1 { font-size: clamp(2.35rem, 5.1vw, 3.85rem); letter-spacing: -.024em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.7rem); letter-spacing: -.018em; }
h3 { font-size: clamp(1.18rem, 1.9vw, 1.42rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 var(--gap-1); }
p:last-child { margin-bottom: 0; }

a { color: var(--azure-600); text-decoration: none; }
a:hover { color: var(--azure-500); }

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 3px solid var(--azure-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--rail);
}

.skip-rail {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--deep-900);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
}
.skip-rail:focus { left: 12px; top: 12px; color: #fff; }

/* handtekening: index-label met verticale azuren maatstreep */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--face-index);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin: 0 0 var(--gap-1);
}
.eyebrow::before {
  content: "";
  width: 3px;
  height: 15px;
  background: var(--azure-500);
  border-radius: 2px;
}
.eyebrow--pale { color: var(--silver-300); }
.eyebrow--pale::before { background: var(--azure-400); }

.lede {
  font-size: 1.12rem;
  color: var(--graphite-500);
  max-width: 62ch;
}
.lede--pale { color: var(--silver-200); }

/* --------------------------------------------------------------- knoppen */
.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 600 .96rem/1 var(--face-text);
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.act--primary {
  background: var(--azure-500);
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(14, 134, 212, .95);
}
.act--primary:hover { background: var(--azure-600); color: #fff; transform: translateY(-2px); }
.act--primary:active { transform: translateY(0); }

.act--ghost {
  background: transparent;
  color: var(--deep-800);
  border-color: var(--silver-200);
}
.act--ghost:hover { border-color: var(--deep-800); color: var(--deep-900); background: var(--mist-50); }

.act--ghost-pale {
  background: rgba(255, 255, 255, .06);
  color: #eef4f9;
  border-color: rgba(199, 207, 216, .38);
}
.act--ghost-pale:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .6); }

.act--wide { width: 100%; }
.act--compact { padding: 11px 22px; font-size: .88rem; }

/* --------------------------------------------------------------- kop */
.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silver-100);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-1);
  min-height: 76px;
}
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--deep-900);
  font-family: var(--face-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .015em;
}
.brandmark:hover { color: var(--deep-800); }
.brandmark svg { width: 34px; height: 34px; flex: none; }
.brandmark__tag {
  display: block;
  font-family: var(--face-index);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-top: 2px;
}

.navlist {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navlist a {
  color: var(--graphite-500);
  font-size: .93rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .16s var(--ease), border-color .16s var(--ease);
}
.navlist a:hover { color: var(--deep-900); border-bottom-color: var(--azure-500); }

.topbar__cta { display: flex; align-items: center; gap: 14px; }
.topbar__cta .act { white-space: nowrap; }
.topbar__tel {
  font-size: .93rem;
  font-weight: 600;
  color: var(--deep-800);
  white-space: nowrap;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--silver-200);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--deep-900);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* --------------------------------------------------------------- secties */
.band { padding-block: var(--gap3); }
.band--tight { padding-block: var(--gap2); }
.band--mist { background: var(--mist-50); }
.band--paper { background: var(--paper); }
.band--deep {
  background:
    radial-gradient(120% 120% at 78% 12%, rgba(14, 134, 212, .32) 0%, rgba(6, 22, 39, 0) 58%),
    linear-gradient(155deg, var(--deep-900) 0%, var(--deep-800) 52%, var(--graphite-900) 100%);
  color: var(--silver-200);
}
.band--deep h2,
.band--deep h3,
.band--deep h4 { color: #f0f5fa; }
.band--graphite {
  background: linear-gradient(150deg, var(--graphite-900) 0%, var(--graphite-700) 60%, #333c48 100%);
  color: var(--silver-200);
}
.band--graphite h2, .band--graphite h3 { color: #f2f5f9; }

.band__head { max-width: 720px; margin-bottom: var(--gap1); }
.band__head--mid { margin-inline: auto; text-align: center; }
.band__head--mid .eyebrow { justify-content: center; }
.band__head--mid .lede { margin-inline: auto; }

/* --------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(168deg, #f6f9fc 0%, #e7eef6 45%, #d7e3ee 100%);
  padding-block: var(--gap2) var(--gap3);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -14% -46% 52%;
  height: 74%;
  background: radial-gradient(closest-side, rgba(14, 134, 212, .16), rgba(14, 134, 212, 0) 72%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .88fr);
  gap: var(--gap2);
  align-items: center;
}
.hero__title { margin-bottom: var(--gap-1); }
.hero__title em {
  font-style: normal;
  color: var(--azure-600);
}
.hero__text { font-size: 1.14rem; color: var(--graphite-500); max-width: 52ch; }
.hero__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--gap0);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: var(--gap0);
  padding-top: var(--gap-1);
  border-top: 1px solid rgba(107, 120, 137, .22);
  list-style: none;
  padding-left: 0;
}
.hero__meta li {
  font-family: var(--face-index);
  font-size: .73rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--azure-500);
  flex: none;
}

.hero__stage {
  position: relative;
  border-radius: var(--edge-l);
  overflow: hidden;
  box-shadow: var(--lift-3);
  aspect-ratio: 4 / 5;
  background: var(--deep-900);
}
.hero__stage img.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 34%;
}
.hero__chip {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(255, 255, 255, .93);
  border-radius: var(--edge-m);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--lift-2);
}
.hero__chip strong { display: block; color: var(--deep-900); font-size: .98rem; }
.hero__chip span {
  font-family: var(--face-index);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate-400);
}

/* --------------------------------------------------------------- marker-strip */
.marker {
  border-block: 1px solid var(--silver-100);
  background: var(--paper);
}
.marker__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-1);
  padding-block: var(--gap0);
}
.marker__item { display: flex; gap: 14px; align-items: flex-start; }
.marker__item::before {
  content: "";
  width: 2px;
  align-self: stretch;
  min-height: 42px;
  background: linear-gradient(180deg, var(--azure-500), rgba(14, 134, 212, .08));
  border-radius: 2px;
  flex: none;
}
.marker__item h4 { margin: 0 0 2px; font-family: var(--face-text); font-size: .97rem; font-weight: 650; }
.marker__item p { font-size: .89rem; color: var(--slate-400); line-height: 1.55; }

/* --------------------------------------------------------------- split blok */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap2);
  align-items: center;
}
.split--flip .split__visual { order: -1; }
.split__visual {
  border-radius: var(--edge-l);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--lift-2);
  background: var(--silver-100);
}
.split__visual img { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: var(--gap-1); }

.pointlist { list-style: none; margin: var(--gap0) 0 0; padding: 0; display: grid; gap: 18px; }
.pointlist li { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 14px; align-items: start; }
.pointlist li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  border: 2px solid var(--azure-500);
  background:
    radial-gradient(circle at 50% 50%, var(--azure-500) 0 4px, transparent 5px);
}
.pointlist strong { display: block; color: var(--deep-900); font-size: .99rem; }
.pointlist span { font-size: .93rem; color: var(--graphite-500); }
.band--deep .pointlist strong,
.band--graphite .pointlist strong { color: #eef4fa; }
.band--deep .pointlist span,
.band--graphite .pointlist span { color: var(--silver-300); }

/* --------------------------------------------------------------- kaarten */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-1);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-1);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-1);
}

.tile {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--silver-100);
  border-radius: var(--edge-m);
  padding: 30px 28px;
  box-shadow: var(--lift-1);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--lift-2); border-color: var(--silver-200); }
.tile__mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--azure-500), var(--deep-800));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex: none;
}
.tile__mark svg { width: 22px; height: 22px; }
.tile h3 { font-family: var(--face-text); font-size: 1.06rem; font-weight: 650; margin-bottom: 8px; }
.tile p { font-size: .93rem; color: var(--graphite-500); }
.tile__note {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--face-index);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.band--deep .tile,
.band--graphite .tile {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(199, 207, 216, .16);
  box-shadow: none;
}
.band--deep .tile:hover,
.band--graphite .tile:hover { border-color: rgba(43, 164, 234, .5); background: rgba(255, 255, 255, .075); }
.band--deep .tile p,
.band--graphite .tile p { color: var(--silver-300); }
.band--deep .tile__note,
.band--graphite .tile__note { color: var(--silver-300); }

/* stappen */
.steps { counter-reset: stap; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap-1); }
.step {
  counter-increment: stap;
  padding-top: 26px;
  border-top: 2px solid rgba(199, 207, 216, .5);
  position: relative;
}
.step::before {
  content: "0" counter(stap);
  position: absolute;
  top: -13px;
  left: 0;
  background: var(--mist-50);
  padding-right: 12px;
  font-family: var(--face-index);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--azure-600);
}
.step h3 { font-family: var(--face-text); font-size: 1.02rem; font-weight: 650; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--graphite-500); }

/* --------------------------------------------------------------- pakketten */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-1);
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--silver-200);
  border-radius: var(--edge-l);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--lift-3); }
.plan--accent { border-color: var(--azure-500); box-shadow: var(--lift-2); }
.plan__flag {
  background: var(--azure-500);
  color: #fff;
  text-align: center;
  font-family: var(--face-index);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px;
}
.plan__shot {
  aspect-ratio: 5 / 4;
  background: linear-gradient(165deg, #eef3f8, #dbe5ee);
  display: grid;
  place-items: center;
  padding: 18px;
}
.plan__shot img { width: 100%; height: 100%; object-fit: contain; }
.plan__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.plan__body h3 { font-family: var(--face-text); font-size: 1.12rem; font-weight: 650; margin-bottom: 4px; }
.plan__span { font-family: var(--face-index); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); }
.plan__price {
  font-family: var(--face-display);
  font-size: 2.15rem;
  color: var(--deep-900);
  margin: 16px 0 2px;
  line-height: 1;
}
.plan__unit { font-size: .85rem; color: var(--slate-400); }
.plan__specs { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 10px; }
.plan__specs li { display: flex; gap: 10px; font-size: .92rem; color: var(--graphite-500); }
.plan__specs li::before { content: "—"; color: var(--azure-500); flex: none; }
.plan__body .act { margin-top: auto; }
.plans__foot {
  margin-top: var(--gap-1);
  font-size: .86rem;
  color: var(--slate-400);
  text-align: center;
}

/* --------------------------------------------------------------- ervaringen */
.voices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap-1); }
.voice {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(199, 207, 216, .18);
  border-radius: var(--edge-m);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.voice p { font-size: .97rem; color: var(--silver-200); font-style: italic; }
.voice__who {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--azure-400), var(--deep-700));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 650;
  font-size: .9rem;
  flex: none;
}
.voice__who strong { display: block; color: #eef4fa; font-size: .93rem; font-weight: 600; }
.voice__who span { font-family: var(--face-index); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--silver-300); }

/* --------------------------------------------------------------- faq */
.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--silver-200); }
.faq__item { border-bottom: 1px solid var(--silver-200); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  padding: 24px 44px 24px 0;
  text-align: left;
  font: 600 1.03rem/1.5 var(--face-text);
  color: var(--deep-900);
  cursor: pointer;
  position: relative;
}
.faq__q::after,
.faq__q::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  background: var(--azure-500);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.faq__q::before { width: 15px; height: 2px; transform: translateY(-50%); }
.faq__q::after { width: 2px; height: 15px; right: 14px; transform: translateY(-50%); }
.faq__q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq__q:hover { color: var(--azure-600); }
.faq__a { display: none; padding: 0 52px 26px 0; }
.faq__a p { font-size: .96rem; color: var(--graphite-500); }
.faq__item.is-open .faq__a { display: block; }

/* --------------------------------------------------------------- formulier */
.request {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: var(--gap2);
  align-items: start;
}
.band--deep .request__panel h2,
.band--deep .request__panel h3,
.band--deep .request__panel h4 { color: var(--deep-900); }
.band--deep .request__panel { color: var(--graphite-700); }
.request__panel {
  background: var(--paper);
  border-radius: var(--edge-l);
  padding: 40px;
  box-shadow: var(--lift-3);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--graphite-700);
  letter-spacing: .01em;
}
.field label .req { color: var(--azure-600); }
.field input,
.field select,
.field textarea {
  font: 400 .97rem/1.5 var(--face-text);
  color: var(--graphite-900);
  background: var(--mist-50);
  border: 1px solid var(--silver-200);
  border-radius: var(--edge-s);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .16s var(--ease), background-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 108px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--slate-400) 50%), linear-gradient(135deg, var(--slate-400) 50%, transparent 50%); background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--azure-500);
  box-shadow: 0 0 0 3px rgba(14, 134, 212, .16);
}
.field.is-wrong input,
.field.is-wrong select,
.field.is-wrong textarea { border-color: var(--alert); background: #fdf4f2; }
.field__hint { font-size: .78rem; color: var(--slate-400); }
.field__error { display: none; font-size: .79rem; color: var(--alert); font-weight: 600; }
.field.is-wrong .field__error { display: block; }

.check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: .85rem;
  color: var(--graphite-500);
  line-height: 1.55;
}
.check input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--azure-500); }
.check.is-wrong { color: var(--alert); }

.request__meta {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--silver-100);
  font-size: .8rem;
  color: var(--slate-400);
}
.request__aside h2 { margin-bottom: var(--gap-1); }
.contact-lines { list-style: none; margin: var(--gap0) 0 0; padding: 0; display: grid; gap: 20px; }
.contact-lines li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; align-items: start; }
.contact-lines .ico {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(43, 164, 234, .16);
  display: grid; place-items: center;
}
.contact-lines .ico svg { width: 19px; height: 19px; }
.contact-lines strong { display: block; color: #eef4fa; font-size: .95rem; }
.contact-lines a, .contact-lines span { color: var(--silver-300); font-size: .93rem; }
.contact-lines a:hover { color: var(--azure-400); }

/* --------------------------------------------------------------- lint / info */
.ribbon {
  background: var(--deep-900);
  color: var(--silver-200);
  padding-block: var(--gap0);
}
.ribbon__row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap-1); }
.ribbon__cell { display: flex; gap: 14px; align-items: flex-start; }
.ribbon__cell strong { display: block; color: #eef4fa; font-size: .95rem; }
.ribbon__cell p { font-size: .87rem; color: var(--silver-300); margin: 2px 0 0; }
.ribbon__cell svg { width: 22px; height: 22px; flex: none; margin-top: 3px; }

/* --------------------------------------------------------------- voettekst */
.foot {
  background: linear-gradient(180deg, var(--graphite-900), #12161c);
  color: var(--silver-300);
  padding-block: var(--gap2) var(--gap0);
  font-size: .91rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: var(--gap1);
}
.foot h4 {
  color: #eef4fa;
  font-family: var(--face-index);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.foot__brand .brandmark { color: #f2f6fa; }
.foot__brand .brandmark__tag { color: var(--silver-300); }
.foot__brand p { margin-top: 18px; max-width: 38ch; color: var(--silver-300); font-size: .9rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot a { color: var(--silver-300); }
.foot a:hover { color: var(--azure-400); }
.foot__bottom {
  margin-top: var(--gap1);
  padding-top: var(--gap-1);
  border-top: 1px solid rgba(199, 207, 216, .16);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--slate-400);
}
.foot__micro {
  margin-top: var(--gap-1);
  font-size: .79rem;
  line-height: 1.65;
  color: #8b98a9;
  max-width: 96ch;
}
.linkbtn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--silver-300);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.linkbtn:hover { color: var(--azure-400); }

/* --------------------------------------------------------------- juridische pagina's */
.doc-head {
  background: linear-gradient(160deg, #eef3f8 0%, #dde7f0 100%);
  padding-block: var(--gap2);
  border-bottom: 1px solid var(--silver-100);
}
.doc-head p { color: var(--graphite-500); max-width: 66ch; margin-top: var(--gap-2); }
.doc { padding-block: var(--gap2); }
.doc__wrap { max-width: 820px; margin-inline: auto; }
.doc__wrap h2 { font-size: 1.5rem; margin-top: var(--gap1); }
.doc__wrap h2:first-child { margin-top: 0; }
.doc__wrap h3 { font-size: 1.12rem; margin-top: var(--gap0); font-family: var(--face-text); font-weight: 650; }
.doc__wrap ul, .doc__wrap ol { padding-left: 22px; margin: 0 0 var(--gap-1); }
.doc__wrap li { margin-bottom: 9px; }
.doc__wrap table { width: 100%; border-collapse: collapse; margin: var(--gap-1) 0; font-size: .93rem; }
.doc__wrap th, .doc__wrap td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--silver-100); vertical-align: top; }
.doc__wrap th { background: var(--mist-50); color: var(--deep-900); font-weight: 650; }
.callout {
  background: var(--mist-50);
  border-left: 3px solid var(--azure-500);
  border-radius: 0 var(--edge-s) var(--edge-s) 0;
  padding: 22px 24px;
  margin: var(--gap-1) 0;
  font-size: .95rem;
}
.doc__stamp {
  margin-top: var(--gap1);
  padding-top: var(--gap-1);
  border-top: 1px solid var(--silver-100);
  font-family: var(--face-index);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-400);
}

/* --------------------------------------------------------------- succes */
.done { padding-block: var(--gap3); text-align: center; }
.done__box { max-width: 640px; margin-inline: auto; }
.done__seal {
  width: 82px; height: 82px; border-radius: 50%;
  background: linear-gradient(140deg, var(--azure-500), var(--deep-800));
  display: grid; place-items: center;
  margin: 0 auto var(--gap-1);
  box-shadow: 0 16px 34px -16px rgba(14, 134, 212, .9);
}
.done__seal svg { width: 34px; height: 34px; }
.done__acts { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: var(--gap0); }
.done__list {
  list-style: none;
  margin: var(--gap1) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-1);
  text-align: left;
}
.done__list li {
  background: var(--mist-50);
  border-radius: var(--edge-m);
  padding: 22px;
  font-size: .9rem;
  color: var(--graphite-500);
}
.done__list strong { display: block; color: var(--deep-900); margin-bottom: 5px; font-size: .95rem; }

/* --------------------------------------------------------------- artikel */
.article__hero {
  border-radius: var(--edge-l);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-bottom: var(--gap1);
  box-shadow: var(--lift-2);
  background: var(--silver-100);
}
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article { max-width: 820px; margin-inline: auto; }
.article h2 { font-size: 1.55rem; margin-top: var(--gap1); }
.article p + h3 { margin-top: var(--gap0); }
.article h3 { font-family: var(--face-text); font-size: 1.1rem; font-weight: 650; margin-bottom: 10px; }
.notecards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap-1); margin: var(--gap1) 0; }
.notecard {
  border: 1px solid var(--silver-100);
  border-radius: var(--edge-m);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: var(--lift-1);
}
.notecard__pic { aspect-ratio: 4 / 3; background: var(--silver-100); }
.notecard__pic img { width: 100%; height: 100%; object-fit: cover; }
.notecard__text { padding: 22px 22px 26px; }
.notecard h3 { font-size: 1.02rem; margin-bottom: 7px; }
.notecard p { font-size: .9rem; color: var(--graphite-500); margin: 0; }

.backlink {
  margin-top: var(--gap1);
  padding: 28px 30px;
  background: var(--mist-50);
  border-radius: var(--edge-m);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.backlink p { margin: 0; font-size: .95rem; color: var(--graphite-500); max-width: 52ch; }

/* --------------------------------------------------------------- cookies */
.cbar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: #fff;
  border: 1px solid var(--silver-200);
  border-radius: var(--edge-l);
  box-shadow: 0 26px 60px -22px rgba(6, 22, 39, .5);
  padding: 26px 28px;
  max-width: 1080px;
  margin-inline: auto;
  display: none;
  gap: var(--gap-1);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}
.cbar.is-visible { display: grid; }
.cbar h3 { font-family: var(--face-text); font-size: 1.02rem; font-weight: 650; margin-bottom: 6px; }
.cbar p { font-size: .87rem; color: var(--graphite-500); margin: 0; max-width: 66ch; }
.cbar__acts { display: flex; flex-wrap: wrap; gap: 10px; }
.cbar__acts .act { flex: 1 1 auto; min-width: 150px; }

.sheet {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(6, 22, 39, .55);
  display: none;
  padding: 20px;
  overflow-y: auto;
}
.sheet.is-visible { display: grid; place-items: center; }
.sheet__card {
  background: #fff;
  border-radius: var(--edge-l);
  width: min(660px, 100%);
  box-shadow: 0 30px 70px -24px rgba(6, 22, 39, .6);
  overflow: hidden;
}
.sheet__top {
  padding: 26px 30px;
  border-bottom: 1px solid var(--silver-100);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.sheet__top h3 { margin: 0 0 5px; font-family: var(--face-text); font-size: 1.12rem; font-weight: 650; }
.sheet__top p { margin: 0; font-size: .86rem; color: var(--slate-400); }
.sheet__close {
  border: 1px solid var(--silver-200);
  background: #fff;
  width: 36px; height: 36px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--graphite-700);
  font-size: 1.1rem;
  line-height: 1;
  flex: none;
}
.sheet__close:hover { background: var(--mist-50); }
.sheet__body { padding: 12px 30px 4px; max-height: 52vh; overflow-y: auto; }
.optrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--silver-100);
}
.optrow:last-child { border-bottom: 0; }
.optrow h4 { margin: 0 0 5px; font-family: var(--face-text); font-size: .98rem; font-weight: 650; }
.optrow p { margin: 0; font-size: .85rem; color: var(--graphite-500); }
.optrow__lock {
  font-family: var(--face-index);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-400);
  padding-top: 6px;
}
.switch { position: relative; display: inline-block; width: 50px; height: 28px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch__track {
  position: absolute;
  inset: 0;
  background: var(--silver-200);
  border-radius: 999px;
  transition: background-color .18s var(--ease);
  pointer-events: none;
}
.switch__track::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(6, 22, 39, .3);
  transition: transform .18s var(--ease);
}
.switch input:checked + .switch__track { background: var(--azure-500); }
.switch input:checked + .switch__track::before { transform: translateX(22px); }
.switch input:focus-visible + .switch__track { outline: 3px solid var(--azure-400); outline-offset: 3px; }
.sheet__foot {
  padding: 22px 30px 28px;
  border-top: 1px solid var(--silver-100);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* --------------------------------------------------------------- animatie */
.rise { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rise.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .rise { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- responsief */
@media (max-width: 1080px) {
  :root { --gap3: 84px; --gap2: 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--gap1); }
  .hero__stage { aspect-ratio: 5 / 4; max-width: 560px; }
  .split { gap: var(--gap1); }
  .marker__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .request { grid-template-columns: 1fr; }
  .request__aside { order: -1; }
}

@media (max-width: 900px) {
  .navlist,
  .topbar__tel { display: none; }
  .burger { display: block; }
  .topbar__row { min-height: 68px; }
  .topbar.is-open .navlist {
    display: flex;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--silver-100);
    box-shadow: var(--lift-2);
    padding: 10px 26px 22px;
  }
  .topbar.is-open .navlist a {
    display: block;
    padding: 14px 2px;
    border-bottom: 1px solid var(--silver-100);
  }
  .topbar.is-open .navlist li:last-child a { border-bottom: 0; }
  .topbar { position: sticky; }
  .topbar .shell { position: relative; }
  .grid-3, .voices, .plans, .notecards, .ribbon__row, .done__list { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__visual { order: 0; }
  .split__visual { aspect-ratio: 16 / 10; }
  .cbar { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --rail: 18px; --gap3: 66px; --gap2: 48px; --gap1: 36px; }
  body { font-size: 16px; }
  .grid-2, .grid-4, .marker__row, .steps, .form-grid, .foot__grid { grid-template-columns: 1fr; }
  .band--deep .request__panel h2,
.band--deep .request__panel h3,
.band--deep .request__panel h4 { color: var(--deep-900); }
.band--deep .request__panel { color: var(--graphite-700); }
.request__panel { padding: 26px 22px; }
  .hero__chip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__stage { aspect-ratio: 1 / 1; }
  .cbar { left: 10px; right: 10px; bottom: 10px; padding: 22px 20px; }
  .cbar__acts .act { min-width: 100%; }
  .sheet__body { max-height: 60vh; }
  .foot__bottom { flex-direction: column; align-items: flex-start; }
  .act { width: 100%; }
  .hero__acts .act, .done__acts .act { width: 100%; }
  .topbar__cta .act {
    width: auto;
    padding: 11px 16px;
    font-size: .82rem;
  }
  .hero__chip .act { width: 100%; }
  .backlink .act { width: 100%; }
}
