/* ==========================================================================
   Craftwise — craftwise.be landing (NL)
   Sora + orange on paper. Workmate mockups use Inter + blue on #F7F9FC.
   Mobile first. Breakpoints: 700px (tablet), 860px (nav), 1000px (desktop).
   ========================================================================== */

:root {
  /* Craftwise brand */
  --cw-orange: #E4692E;
  --cw-orange-hover: #D65D25;
  --cw-orange-deep: #C4521C;
  --cw-black: #1C1C1C;
  --cw-paper: #FBF9F7;
  --cw-white: #FFFFFF;
  --cw-sand: #EAE3D9;
  --cw-taupe: #8E857C;
  --cw-border: #D9D2C8;
  --cw-text-muted: #5A524B;
  --cw-text-on-dark: #F3EFEA;
  --cw-dim-on-dark: #B9AFA5;

  /* Workmate product (mockups only) */
  --wm-blue: #065FED;
  --wm-navy: #143151;
  --wm-slate: #698298;
  --wm-ground: #F7F9FC;
  --wm-divider: #EDF1F6;
  --wm-ring: #C9D3DF;
  --wm-amber: #FDECD2;
  --wm-amber-ink: #8A4B00;
  --wm-blue-soft: #E6EFFD;

  --shadow-card: 0 1px 2px rgba(20, 49, 81, .06);
  --shadow-action: 0 4px 14px rgba(20, 49, 81, .08);
  --shadow-float: 0 8px 24px rgba(20, 49, 81, .10);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* sticky nav is 64px; keep anchors clear of it */
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cw-paper);
  color: var(--cw-black);
  font-family: Sora, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: var(--cw-orange); text-decoration: none; }
a:hover { color: var(--cw-orange-deep); }

:focus-visible {
  outline: 3px solid var(--cw-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--cw-black);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- layout primitives ---------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section { padding-top: 56px; padding-bottom: 56px; }
.band { padding-top: 56px; padding-bottom: 56px; }

/* grid-items mogen krimpen; zonder dit duwt lange inhoud de kolom breder
   dan het scherm */
.hero > *, .piles > *, .tiers > *, .steps > *,
.wm__grid > *, .over > *, .routes > *, .form__grid > * { min-width: 0; }

@media (min-width: 700px) {
  .wrap { padding-left: 32px; padding-right: 32px; }
  .section, .band { padding-top: 72px; padding-bottom: 72px; }
}

.band--sand { background: var(--cw-sand); }
.band--white { background: var(--cw-white); border-top: 1px solid var(--cw-sand); border-bottom: 1px solid var(--cw-sand); }
.band--dark { background: var(--cw-black); color: var(--cw-text-on-dark); }
.band--accent { background: var(--cw-orange); color: #fff; }

/* ---------- type ---------- */
.h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  max-width: 820px;
  text-wrap: pretty;
}
.h2--lg { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05; margin-bottom: 36px; max-width: 760px; }
.h2--sm { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; margin: 0; max-width: 620px; }

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--cw-text-muted);
  margin: 0 0 24px;
  max-width: 560px;
  text-wrap: pretty;
}

.body-lg {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
  text-wrap: pretty;
}
.body-lg--dim { color: var(--cw-dim-on-dark); font-size: 18px; }

.band--sand .body-lg { color: #3F3934; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cw-orange);
  margin: 0 0 14px;
}

.strong { font-weight: 600; color: var(--cw-black); }

mark {
  background: var(--cw-sand);
  color: var(--cw-black);
  padding: 2px 8px;
  border-radius: 6px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
/* 48px is de minimum hit target uit het design system */
.btn--sm { height: 48px; padding: 0 14px; border-radius: 12px; font-size: 14px; }
.btn--lg { height: 56px; padding: 0 24px; font-size: 17px; }
.btn--block { width: 100%; height: 52px; }

.btn--accent { background: var(--cw-orange); color: #fff; }
.btn--accent:hover { background: var(--cw-orange-hover); color: #fff; }
.btn--accent:active { background: var(--cw-orange-deep); }

.btn--outline {
  background: transparent;
  color: var(--cw-black);
  box-shadow: inset 0 0 0 1.5px var(--cw-black);
}
.btn--outline:hover { background: var(--cw-black); color: #fff; }

.btn--dark { background: var(--cw-black); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

/* op smalle schermen staan de twee knoppen onder elkaar over de volle breedte */
@media (max-width: 519px) {
  .btn-row .btn { flex: 1 1 100%; }
}

@media (min-width: 860px) {
  .btn--sm { height: 44px; padding: 0 18px; font-size: 15px; }
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--cw-sand);
}

.nav__bar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cw-black);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav__brand:hover { color: var(--cw-black); }
.nav__brand img { height: 30px; width: auto; }

.nav__links { display: none; }

.nav__mobile { display: flex; align-items: center; gap: 8px; }

/* de navbalk moet passen op elke telefoon: eerst een kortere knoptekst,
   daarna valt het woordmerk weg en blijft het merkteken staan */
.label-short { display: none; }

@media (max-width: 459px) {
  .label-long { display: none; }
  .label-short { display: inline; }
}

@media (max-width: 379px) {
  .nav__wordmark { display: none; }
}

.nav__toggle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  color: var(--cw-black);
  cursor: pointer;
}
.nav__icon--close { display: none; }
.nav__toggle[aria-expanded="true"] .nav__icon--open { display: none; }
.nav__toggle[aria-expanded="true"] .nav__icon--close { display: block; }

.nav__menu {
  border-top: 1px solid var(--cw-sand);
  background: #fff;
  padding: 8px 20px 16px;
  display: flex;
  flex-direction: column;
}
.nav__menu[hidden] { display: none; }
.nav__menu a {
  color: var(--cw-black);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--cw-sand);
}
.nav__menu a:last-child { border-bottom: 0; }
.nav__muted { color: var(--cw-taupe); font-weight: 500; }
.nav__menu .nav__muted { font-size: 16px; }

@media (min-width: 860px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 500;
  }
  .nav__links a { color: var(--cw-black); }
  .nav__links a:hover { color: var(--cw-orange); }
  .nav__links .btn--accent { color: #fff; }
  .nav__mobile, .nav__menu { display: none !important; }
}

/* ==========================================================================
   1 HERO
   ========================================================================== */
.hero {
  padding-top: 36px;
  padding-bottom: 48px;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  text-wrap: pretty;
}

/* Mobiel: elk punt op zijn eigen regel met een klein oranje bolletje.
   Vanaf 700px: één doorlopende regel met middenpunten ertussen. */
.chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
  color: var(--cw-taupe);
}
.chips li { display: flex; align-items: baseline; gap: 10px; }
.chips li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cw-orange);
  flex: none;
  position: relative;
  top: -2px;
}

@media (min-width: 700px) {
  .chips { flex-direction: row; flex-wrap: wrap; gap: 6px 10px; }
  .chips li::before { display: none; }
  .chips li + li::before {
    display: block;
    content: "·";
    width: auto;
    height: auto;
    background: none;
    color: var(--cw-border);
    top: 0;
  }
}

.hero__visual { position: relative; }

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 64px;
    min-height: 70vh;
  }
}

/* photo frames — de bijschrift-tekst staat erachter en is enkel zichtbaar
   zolang de foto ontbreekt.
   Let op: geen min-height samen met aspect-ratio, anders dwingt die een
   minimumbreedte af en loopt de hele grid over de schermrand. */
.shot {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--cw-sand);
  border-radius: 24px;
  overflow: hidden;
  min-width: 0;
}
.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.shot figcaption {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: var(--cw-taupe);
}
/* 3:2 = de eigen verhouding van de herofoto, zo wordt er niets weggesneden */
.shot--hero { aspect-ratio: 3 / 2; }
.shot--portrait { aspect-ratio: 4 / 5; max-width: 420px; }

/* floating Workmate offer card over the hero photo */
.offercard {
  margin: -40px auto 0;
  width: min(300px, 88%);
  transform: rotate(-3deg);
  background: var(--wm-ground);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(28, 28, 28, .22);
  font-family: Inter, system-ui, sans-serif;
  color: var(--wm-navy);
  position: relative;
  z-index: 2;
}
.offercard__inner {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-action);
}
.offercard__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 8px; }
.offercard__title { font-size: 17px; font-weight: 600; line-height: 1.25; }
.offercard__meta { font-size: 14px; margin: 4px 0 12px; }
.offercard__actions { display: flex; gap: 8px; }

@media (min-width: 900px) {
  .offercard {
    position: absolute;
    right: -8px;
    bottom: -24px;
    margin: 0;
  }
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-slate);
}
.label--sm { font-size: 11px; }

.pill {
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.pill--blue { background: var(--wm-blue-soft); color: var(--wm-blue); }
.pill--navy { background: var(--wm-navy); color: #fff; height: 20px; padding: 0 8px; font-size: 11px; }
.pill--amber { background: var(--wm-amber); color: var(--wm-amber-ink); height: 20px; padding: 0 8px; font-size: 11px; }

.mini {
  flex: 1;
  height: 42px;
  padding: 0 6px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.mini--ghost { background: #fff; box-shadow: inset 0 0 0 1.5px var(--wm-ring); }
.mini--blue { flex: 1.15; background: var(--wm-blue); color: #fff; }

/* ==========================================================================
   3 WAT WE DOEN
   ========================================================================== */
.piles { display: grid; gap: 32px; }

@media (min-width: 700px) { .piles { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; } }
@media (max-width: 699px) { .piles { grid-template-columns: 1fr; } }

.pile { border-top: 2px solid var(--cw-orange); padding-top: 20px; }
.pile h3 { font-size: 24px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.pile > p { font-size: 17px; line-height: 1.45; color: var(--cw-text-muted); margin-bottom: 18px; text-wrap: pretty; }
.pile ul { display: flex; flex-direction: column; gap: 8px; }
.pile li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}
.pile li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cw-orange);
  flex: none;
  position: relative;
  top: -2px;
}

.section__note {
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--cw-border);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  max-width: 820px;
  text-wrap: pretty;
}

.section__intro { margin-bottom: 32px; color: var(--cw-text-muted); font-size: 17px; }
.section__intro b { font-weight: 600; color: var(--cw-black); }

/* ==========================================================================
   4 WORKMATE band — toestel met drie echte schermen uit het prototype.
   De app is op ware grootte gebouwd (402 px breed, zoals in de app zelf) en
   wordt als geheel geschaald. Zo blijft elke maat uit het design system kloppen
   en blijft de tekst scherp, want het blijft echte tekst.
   ========================================================================== */
.wm { overflow: hidden; }
.wm__grid { display: grid; gap: 40px; align-items: center; }

@media (min-width: 980px) { .wm__grid { grid-template-columns: 1fr auto; gap: 64px; } }

.u-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Workmate-lockup ----------
   #065FED is te donker op het houtskoolzwart van deze band, dus de W krijgt
   een lichtere tint uit dezelfde kleurfamilie. Het woordmerk blijft crème. */
.wmlogo {
  --wm-blue-on-dark: #4F8FF7;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}
.wmlogo__mark {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--wm-blue-on-dark);
  overflow: visible;
}
.wmlogo__word {
  font-family: Sora, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--cw-text-on-dark);
}

@media (min-width: 700px) {
  .wmlogo__mark { width: 20px; height: 20px; }
  .wmlogo__word { font-size: 15px; }
}

/* ---------- de drie stappen, tevens de bediening ---------- */
.wmsteps { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }

.wmstep {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  border-radius: 16px;
  font-family: inherit;
  color: var(--cw-dim-on-dark);
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.wmstep:hover { background: rgba(255, 255, 255, .06); }
.wmstep[aria-pressed="true"] { background: rgba(255, 255, 255, .09); color: var(--cw-text-on-dark); }

.wmstep__n {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--cw-text-on-dark);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .18s ease, color .18s ease;
}
.wmstep[aria-pressed="true"] .wmstep__n { background: var(--cw-orange); color: #fff; }

.wmstep__text { display: block; }
.wmstep__title {
  display: block;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cw-text-on-dark);
}
.wmstep__sub { display: block; font-size: 15px; line-height: 1.45; margin-top: 2px; text-wrap: pretty; }

/* ---------- toestel ---------- */
.wm__visual { display: flex; flex-direction: column; align-items: center; }

.device {
  --scale: .74;
  width: calc(402px * var(--scale));
  height: calc(874px * var(--scale));
  flex: none;
}
@media (max-width: 389px) { .device { --scale: .64; } }
@media (min-width: 980px) { .device { --scale: .80; } }

/* op een touchscreen tik je het toestel door naar het volgende scherm */
.device.is-tappable { cursor: pointer; }

.device__frame {
  width: 402px;
  height: 874px;
  transform: scale(var(--scale));
  transform-origin: top left;
  border-radius: 54px;
  padding: 11px;
  background: #0C0F14;
  box-shadow: 0 0 0 2px #2A313C, 0 40px 80px rgba(0, 0, 0, .55);
}

.device__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: var(--wm-ground);
  color: var(--wm-navy);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.4;
}

.device__bar {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 134px;
  height: 5px;
  border-radius: 3px;
  background: rgba(20, 49, 81, .32);
  transform: translateX(-50%);
  z-index: 5;
}

/* ---------- iOS statusbalk ---------- */
.ios {
  position: absolute;
  inset: 0 0 auto 0;
  height: 54px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.ios__island {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 108px;
  height: 32px;
  border-radius: 999px;
  background: #0C0F14;
  transform: translateX(-50%);
}
.ios__right { display: flex; align-items: center; gap: 5px; }

/* ---------- schermen, kruislings vervagen ---------- */
.scr {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, transform .45s ease;
  transform: translateY(6px);
}
.scr.is-on { opacity: 1; visibility: visible; transform: none; }

/* .scr vult het scherm; body krimpt zodat de tabbalk eronder past */
.scr { display: flex; flex-direction: column; }
.scr__body { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.scr__scroll { flex: 1; min-height: 0; overflow: hidden; padding: 4px 20px 20px; }

/* ---------- gedeelde app-onderdelen ---------- */
.wlabel {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wm-slate);
}

.wpill {
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex: none;
}
.wpill--navy { background: var(--wm-navy); color: #fff; }
.wpill--amber { background: var(--wm-amber); color: var(--wm-amber-ink); }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; }
.dot--mint { background: #8CCCBE; }

.wbtn {
  height: 52px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wbtn--blue { background: var(--wm-blue); color: #fff; }
.wbtn--ghost { flex: 1; height: 48px; background: #fff; color: var(--wm-navy); box-shadow: inset 0 0 0 1.5px var(--wm-ring); font-size: 15px; }
.wbtn--wide { flex: 1.2; height: 48px; font-size: 15px; }
.wbtn--big { height: 56px; font-size: 17px; }

/* ---------- scherm 1, Vandaag ---------- */
.vd__top {
  padding: 66px 20px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vd__brand { display: flex; align-items: center; gap: 10px; }
.vd__brand span { font-size: 15px; color: var(--wm-slate); font-weight: 500; }
.vd__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--wm-ring);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vd__greet { font-size: 26px; font-weight: 600; line-height: 1.2; letter-spacing: -.01em; margin: 6px 0 16px; }

.vd__stats {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 26px;
  box-shadow: 0 8px 24px rgba(20, 49, 81, .10), 0 1px 2px rgba(20, 49, 81, .06);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.vd__stat {
  background: var(--wm-ground);
  border-radius: 14px;
  padding: 14px 12px 12px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vd__n { font-size: 30px; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.vd__n i { font-size: 18px; font-style: normal; font-weight: 600; }
.vd__n--blue { color: var(--wm-blue); }
.vd__lab { font-size: 13px; line-height: 1.3; font-weight: 500; color: var(--wm-slate); }
.vd__lab--ink { color: var(--wm-navy); }

.vd__sec { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.vd__hint { font-size: 13px; color: var(--wm-slate); }

.wcard2 {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(20, 49, 81, .08), 0 1px 2px rgba(20, 49, 81, .05);
  margin-bottom: 12px;
  overflow: hidden;
}
.wcard2--plain { padding: 16px; }
.wcard2__pad { padding: 16px 16px 12px; }
.wcard2__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 8px; }
.wcard2__title { font-size: 20px; font-weight: 600; line-height: 1.25; text-wrap: pretty; }
.wcard2__meta { font-size: 14px; line-height: 1.45; color: var(--wm-slate); margin-top: 6px; }
.wcard2__body { font-size: 15px; line-height: 1.45; margin: 12px 0 0; text-wrap: pretty; }

.wcard2__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--wm-divider);
  min-height: 48px;
}
.wcard2__prog { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--wm-slate); }
.wcard2__link { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--wm-blue); }
.wcard2__cta { padding: 0 16px 16px; }
.wcard2__pair { display: flex; gap: 10px; margin-top: 12px; }

/* ---------- tabbalk ---------- */
.wtabs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 10px 30px;
  border-top: 1px solid #DCE3EC;
  background: var(--wm-ground);
  flex: none;
}
.wtab {
  width: 72px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--wm-slate);
}
.wtab.is-on { color: var(--wm-blue); }
.wtab svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wtab__s {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--wm-navy);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wtab__s::after {
  content: "";
  position: absolute;
  right: -2px; bottom: -2px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #8CCCBE;
  border: 2px solid var(--wm-ground);
}

/* ---------- scherm 2, offerte ---------- */
.dh__top {
  padding: 66px 20px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #DCE3EC;
}
.dh__back { display: flex; align-items: center; gap: 2px; font-size: 16px; font-weight: 600; color: var(--wm-blue); }
.dh__name { font-size: 17px; font-weight: 600; }
.dh__edit { font-size: 14px; font-weight: 600; color: var(--wm-blue); }

.quote2 { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(20, 49, 81, .06); overflow: hidden; }
.quote2__head { padding: 14px 16px 10px; font-size: 17px; font-weight: 600; }
.quote2__row {
  padding: 12px 16px;
  border-top: 1px solid var(--wm-divider);
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote2__row span { flex: 1; min-width: 0; }
.quote2__row b { display: block; font-size: 16px; font-weight: 500; line-height: 1.3; }
.quote2__row i { display: block; font-size: 14px; font-style: normal; color: var(--wm-slate); margin-top: 2px; }
.quote2__row em { font-size: 17px; font-weight: 600; font-style: normal; flex: none; }

.quote2__total {
  padding: 14px 16px;
  border-top: 1px solid var(--wm-divider);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.quote2__total span { font-size: 16px; font-weight: 500; }
.quote2__total em { font-size: 24px; font-weight: 600; font-style: normal; letter-spacing: -.01em; }

.quote2__notes {
  padding: 0 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--wm-slate);
}

.dh__foot { padding: 10px 20px 34px; border-top: 1px solid #DCE3EC; background: var(--wm-ground); flex: none; }

/* ---------- scherm 3, chat ---------- */
.ch__top {
  padding: 66px 20px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #DCE3EC;
}
.ch__av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wm-navy);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: none;
}
.ch__av i {
  position: absolute;
  right: 0; bottom: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #8CCCBE;
  border: 2px solid var(--wm-ground);
}
.ch__who b { display: block; font-size: 17px; font-weight: 600; }
.ch__who i { display: block; font-size: 14px; font-style: normal; color: var(--wm-slate); }

.ch__scroll { display: flex; flex-direction: column; gap: 10px; padding: 16px 16px 8px; }

.bub { font-size: 16px; line-height: 1.4; padding: 11px 14px; }
.bub--tom { align-self: flex-end; max-width: 78%; background: var(--wm-blue); color: #fff; border-radius: 18px 18px 6px 18px; }
.bub--wm { max-width: 78%; background: #fff; border-radius: 18px 18px 18px 6px; box-shadow: 0 1px 2px rgba(20, 49, 81, .06); }
.bub--sarah { max-width: 82%; background: var(--wm-navy); color: #fff; border-radius: 18px 18px 18px 6px; }
.bub--sarah i { display: block; font-size: 12px; font-style: normal; font-weight: 600; color: #8CCCBE; margin-bottom: 4px; }

.bub__wm { display: flex; gap: 8px; align-items: flex-end; }
.bub__mark {
  width: 28px; height: 28px;
  border-radius: 9px;
  background: var(--wm-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.bub__mark svg { width: 16px; height: 16px; }
.bub__av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--wm-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.bub__sys { text-align: center; font-size: 13px; color: var(--wm-slate); padding: 6px 0; }

.ch__foot {
  padding: 10px 16px 12px;
  border-top: 1px solid #DCE3EC;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.ch__input {
  flex: 1;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--wm-ring);
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 16px;
  color: var(--wm-slate);
}
.ch__send {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wm-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* ---------- bolletjes onder het toestel ---------- */
.wm__dots { display: flex; gap: 10px; margin-top: 24px; }
.wm__dot {
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.wm__dot::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(243, 239, 234, .3);
  transform: translate(-50%, -50%);
  transition: background-color .2s ease, width .2s ease;
}
.wm__dot:hover::before { background: rgba(243, 239, 234, .55); }
.wm__dot.is-on::before { background: var(--cw-orange); width: 26px; border-radius: 999px; }

@media (min-width: 980px) { .wm__dots { display: none; } }

.wm__caption {
  font-size: 15px;
  line-height: 1.5;
  color: var(--cw-dim-on-dark);
  margin: 20px 0 0;
  text-align: center;
  max-width: 340px;
}

/* ==========================================================================
   5 PRIJZEN

   ========================================================================== */
.tiers { display: grid; gap: 24px; align-items: stretch; }

@media (min-width: 820px) { .tiers { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.tier {
  position: relative;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  color: var(--cw-black);
  box-shadow: inset 0 0 0 1.5px var(--cw-border);
}
.tier--featured {
  background: var(--cw-black);
  color: var(--cw-text-on-dark);
  box-shadow: 0 24px 48px rgba(28, 28, 28, .18);
}
@media (min-width: 820px) { .tier--featured { transform: translateY(-8px); } }

.tier h3 { font-size: 22px; font-weight: 700; line-height: 1.2; }

.tier__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--cw-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.tier__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.tier__amount { font-size: 44px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.tier__per { font-size: 15px; color: var(--cw-taupe); }
.tier--featured .tier__per { color: var(--cw-dim-on-dark); }

.tier hr { border: 0; height: 1px; background: currentColor; opacity: .15; margin: 0; width: 100%; }

.tier__body { flex: 1; }
.tier__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--cw-taupe);
}
.tier--featured .tier__label { color: var(--cw-dim-on-dark); }
.tier__extra { font-size: 18px; font-weight: 500; line-height: 1.4; text-wrap: pretty; }

.tier--featured .btn--accent:hover { background: var(--cw-orange-hover); }

.tiers__note {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--cw-text-muted);
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   6 HOE HET WERKT
   ========================================================================== */
.steps { display: grid; gap: 32px; }

@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; } }

.step__n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cw-black);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 21px; font-weight: 600; line-height: 1.25; margin-bottom: 8px; }
.step p { font-size: 17px; line-height: 1.5; color: var(--cw-text-muted); text-wrap: pretty; }

.steps__note { margin: 36px 0 0; font-size: 16px; color: var(--cw-text-muted); }

/* ==========================================================================
   7 OVER ONS
   ========================================================================== */
.over { display: grid; gap: 32px; align-items: center; }

@media (min-width: 820px) { .over { grid-template-columns: minmax(260px, 420px) 1fr; gap: 48px; } }

.over__text {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.over__contact a { color: var(--cw-black); font-weight: 600; font-size: 17px; }
.over__contact a:hover { color: var(--cw-orange-deep); }

/* ==========================================================================
   8 GESPREK (orange band)
   ========================================================================== */
.band--accent .h2 { margin-bottom: 20px; }
.band--accent .body-lg { margin-bottom: 32px; }

.routes { display: grid; gap: 12px; margin-bottom: 32px; }

@media (min-width: 760px) { .routes { grid-template-columns: repeat(3, 1fr); max-width: 900px; } }

.route {
  display: block;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
  min-height: 56px;
  transition: background-color .15s ease, transform .15s ease;
}
.route:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.route[hidden] { display: none; }
.route svg { margin-bottom: 10px; }
.route__title { display: block; font-size: 18px; font-weight: 600; line-height: 1.25; }
.route__sub { display: block; font-size: 15px; line-height: 1.4; color: rgba(255, 255, 255, .82); margin-top: 2px; }

.form {
  background: var(--cw-paper);
  color: var(--cw-black);
  border-radius: 20px;
  padding: 24px 20px;
  max-width: 900px;
  scroll-margin-top: 90px;
}
@media (min-width: 700px) { .form { padding: 28px; } }

.form__grid { display: grid; gap: 16px; margin-bottom: 20px; }
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide { grid-column: 1 / -1; }

/* honeypot: uit beeld, maar niet display:none — bots slaan verborgen velden over */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field > span { font-size: 15px; font-weight: 600; }
.field i { font-style: normal; font-weight: 400; color: var(--cw-taupe); }

.field input,
.field textarea {
  font-family: inherit;
  font-size: 17px;
  color: var(--cw-black);
  background: #fff;
  border: 0;
  box-shadow: inset 0 0 0 1.5px var(--cw-border);
  border-radius: 14px;
  padding: 14px 16px;
  min-height: 52px;
  width: 100%;
  resize: vertical;
}
.field input:focus, .field textarea:focus { box-shadow: inset 0 0 0 2px var(--cw-orange); outline: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { box-shadow: inset 0 0 0 2px var(--cw-orange-deep); }

.form__foot { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }
.form__legal { font-size: 14px; line-height: 1.45; color: var(--cw-text-muted); max-width: 420px; margin: 0; }

.form__status { margin: 16px 0 0; font-size: 16px; font-weight: 600; }
.form__status:empty { display: none; }
.form__status[data-state="ok"] { color: #2F6B45; }
.form__status[data-state="error"] { color: var(--cw-orange-deep); }

.survey { margin-top: 24px; }
.survey a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, .5);
}
.survey a:hover { color: #fff; text-decoration-color: #fff; }

/* ==========================================================================
   9 FAQ
   ========================================================================== */
.faq { max-width: 820px; border-top: 1px solid var(--cw-border); }
.faq__item { border-bottom: 1px solid var(--cw-border); }
.faq h3 { margin: 0; font-size: inherit; font-weight: inherit; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  min-height: 64px;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cw-black);
  text-align: left;
  cursor: pointer;
}
.faq__q:hover { color: var(--cw-orange-deep); }
.faq__q svg {
  width: 22px;
  height: 22px;
  flex: none;
  transition: transform .2s ease;
}
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); }

.faq__a p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--cw-text-muted);
  margin: -6px 0 22px;
  max-width: 700px;
  text-wrap: pretty;
}
.faq__a[hidden] { display: none; }

/* ==========================================================================
   10 FOOTER
   ========================================================================== */
.closer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
}
.closer .h2 a { color: var(--cw-orange); white-space: nowrap; }
.closer .btn { flex: none; }

.footer__rule { border-top: 1px solid rgba(243, 239, 234, .14); }

.footer__meta {
  padding-top: 24px;
  padding-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cw-dim-on-dark);
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand span { font-size: 13px; font-weight: 700; letter-spacing: .02em; color: var(--cw-text-on-dark); }
.footer__brand img { height: 26px; width: auto; }
.footer__meta a { color: var(--cw-text-on-dark); }
.footer__meta a:hover { color: var(--cw-orange); }
.footer__links { display: flex; gap: 18px; margin: 0; }
.footer__links a {
  color: var(--cw-dim-on-dark);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* ==========================================================================
   legal pages
   ========================================================================== */
.legal { padding-top: 48px; padding-bottom: 72px; max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 8px; }
.legal .legal__date { color: var(--cw-taupe); font-size: 15px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 17px; line-height: 1.6; color: var(--cw-text-muted); }
.legal p { margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 6px; }
.legal a { font-weight: 500; }
