/* ==========================================================================
   &Network — design system
   Licht, warm en editorial. Papierwit als basis, inkt-zwart voor tekst,
   merkoranje uit het beeldmerk als enige felle kleur, antraciet voor de
   contrastsecties. Weinig effecten, veel typografie en witruimte.
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
:root {
  /* oppervlakken */
  --paper:      #FBF8F4;   /* warme achtergrond */
  --paper-deep: #F4EEE6;   /* zand, voor accentvlakken */
  --white:      #FFFFFF;
  --char:       #24221F;   /* antraciet, uit het beeldmerk */
  --char-soft:  #302D29;

  /* inkt */
  --ink:      #16130F;
  --ink-70:   #57514A;
  --ink-50:   #7C746B;
  --ink-30:   #A9A199;

  /* lijnen */
  --line:        #E4DCD1;
  --line-strong: #D2C7B8;
  --line-dark:   rgba(255, 255, 255, .14);

  /* merk */
  --orange:      #F0562A;
  --orange-deep: #C63F17;
  --orange-tint: #FDEDE6;
  --moss:        #2F6B4F;   /* operationele status */
  --moss-tint:   #E8F1EC;

  /* aliassen zodat oudere klassen blijven werken */
  --text: var(--ink); --text-soft: var(--ink-70); --text-dim: var(--ink-50);
  --blue: var(--orange); --cyan: var(--orange-deep); --amber: var(--orange-deep);
  --border: var(--line); --border-strong: var(--line-strong);
  --card: var(--white); --bg: var(--paper); --bg-alt: var(--paper-deep);

  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --maxw: 1180px;
  --gutter: 26px;
  --section-y: clamp(62px, 8vw, 118px);
}

/* --- 2. Reset & base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 114px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

.skip-link { position: absolute; left: -9999px; top: 12px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: var(--r-sm); }
.skip-link:focus { left: 16px; }

::selection { background: #FBD4C5; color: var(--ink); }

/* --- 3. Typografie ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 4.9vw, 3.9rem); font-weight: 700; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.85rem, 3.9vw, 3rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.14rem, 1.7vw, 1.32rem); letter-spacing: -0.02em; }
h4 { font-size: 1rem; letter-spacing: -0.015em; }
p { color: var(--ink-70); }
strong { color: var(--ink); font-weight: 600; }

.mono { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .01em; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.26rem); line-height: 1.6; color: var(--ink-70); max-width: 60ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px; margin-bottom: 20px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55; }

.grad-text { color: var(--orange); }
.u-ink { color: var(--ink); }

/* --- 4. Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: var(--paper-deep); }
.section-alt + .section, .section + .section-alt { border-top: 0; }

.section-head { max-width: 700px; margin-bottom: clamp(34px, 4.5vw, 58px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 16px; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(34px, 5.5vw, 78px); align-items: start; }
.split.center { align-items: center; }

.divider { height: 1px; background: var(--line); border: 0; }

/* --- 5. Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 100px; border: 1px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--white); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--char); transform: translateY(-1px); }
.btn-link { padding: 0; font-family: var(--font-display); font-weight: 600; font-size: .93rem; color: var(--orange-deep); display: inline-flex; gap: 8px; align-items: center; }
.btn-link .arrow { transition: transform .18s ease; }
.btn-link:hover .arrow { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* --- 6. Header ----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 244, .86);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(251, 248, 244, .96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; height: 92px; }

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 28px; width: auto; }
.brand-logo.on-dark { display: none; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > a:not(.nav-cta) {
  position: relative; padding: 9px 14px; font-size: .9rem; font-weight: 500; color: var(--ink-70);
  transition: color .16s ease;
}
.nav > a:not(.nav-cta):hover { color: var(--ink); }
.nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 1.5px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav > a[aria-current="page"] { color: var(--ink); }
.nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; padding: 11px 20px; font-size: .9rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--r-sm);
  background: transparent; border: 1px solid var(--line-strong);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .22s ease, opacity .18s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- 7. Hero ------------------------------------------------------------- */
.hero { padding-block: clamp(48px, 6.5vw, 92px) clamp(40px, 5vw, 68px); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { font-size: clamp(1.06rem, 1.45vw, 1.2rem); }

.amp-mark {
  position: absolute; right: -3vw; top: -6vw; z-index: 0; pointer-events: none;
  font-family: var(--font-display); font-weight: 700; font-size: 46vw; line-height: .72;
  color: var(--orange); opacity: .05; user-select: none;
}
.hero > .container { position: relative; z-index: 1; }

.badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  padding: 7px 15px 7px 11px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .73rem; color: var(--ink-70);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

.trust-row { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust-row span { font-size: .87rem; color: var(--ink-70); display: inline-flex; align-items: center; gap: 9px; }
.trust-row span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

/* --- 8. Systemencarrousel ------------------------------------------------ */
.marquee-band { padding-block: 34px 40px; border-block: 1px solid var(--line); background: var(--white); }
.systems-label { display: block; margin-bottom: 26px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-50); }

.marquee {
  display: flex; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track {
  display: flex; align-items: center; flex: 0 0 auto;
  gap: clamp(40px, 5vw, 76px); padding-right: clamp(40px, 5vw, 76px);
  animation: marquee 46s linear infinite;
}
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }

.logo-item { display: inline-flex; align-items: center; height: 36px; opacity: .68; transition: opacity .2s ease; }
.logo-item:hover { opacity: 1; }
.logo-item img { height: 30px; width: auto; }
.logo-word { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.025em; color: var(--ink-70); white-space: nowrap; }

/* --- 9. Console (in donkere sectie) -------------------------------------- */
.console { background: #1B1917; border: 1px solid rgba(255, 255, 255, .10); border-radius: var(--r-lg); overflow: hidden; }
.console-bar { display: flex; align-items: center; gap: 10px; padding: 13px 17px; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.console-dots { display: flex; gap: 6px; }
.console-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.console-dots i:first-child { background: var(--orange); }
.console-title { font-family: var(--font-mono); font-size: .73rem; color: rgba(255, 255, 255, .42); }
.console-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: .69rem; color: #7BD4A6; }
.console-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: #7BD4A6; animation: pulse 1.9s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.console-flow { display: flex; align-items: stretch; gap: 8px; padding: 18px 17px; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.flow-node { flex: 1; min-width: 0; text-align: center; padding: 12px 8px; border: 1px solid rgba(255, 255, 255, .10); border-radius: var(--r-sm); transition: border-color .3s ease, background .3s ease; }
.flow-node.is-active { border-color: rgba(240, 86, 42, .55); background: rgba(240, 86, 42, .11); }
.flow-node b { display: block; font-family: var(--font-display); font-size: .8rem; font-weight: 600; color: #F5F1EC; letter-spacing: -0.01em; }
.flow-node span { font-family: var(--font-mono); font-size: .63rem; color: rgba(255, 255, 255, .38); }
.flow-arrow { align-self: center; color: rgba(255, 255, 255, .3); font-size: .85rem; flex: 0 0 auto; }

.console-log { padding: 15px 17px 17px; min-height: 190px; font-family: var(--font-mono); font-size: .725rem; line-height: 2; }
.console-log .line { display: flex; gap: 11px; opacity: 0; transform: translateY(4px); animation: logIn .3s ease forwards; }
@keyframes logIn { to { opacity: 1; transform: none; } }
.console-log .t { color: rgba(255, 255, 255, .30); flex: 0 0 auto; }
.console-log .lvl { flex: 0 0 auto; font-weight: 700; }
.lvl-ok { color: #7BD4A6; } .lvl-inf { color: #8FB8D8; } .lvl-agt { color: #C9A6F0; }
.lvl-hitl { color: #F0A03C; } .lvl-syn { color: var(--orange); }
.console-log .msg { color: rgba(255, 255, 255, .72); }

.console-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 15px; padding: 13px 17px; border-top: 1px solid rgba(255, 255, 255, .09); font-family: var(--font-mono); font-size: .69rem; color: rgba(255, 255, 255, .42); }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 4px 11px; border-radius: 100px; background: rgba(123, 212, 166, .12); color: #7BD4A6; }
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* --- 10. Donkere sectie -------------------------------------------------- */
.section-dark { background: var(--char); color: #F5F1EC; border-top: 0 !important; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #F8F5F1; }
.section-dark p, .section-dark .lead { color: rgba(255, 255, 255, .66); }
.section-dark strong { color: #fff; }
.section-dark .eyebrow { color: var(--orange); }
.section-dark .divider { background: var(--line-dark); }
.section-dark .check-list li { color: rgba(255, 255, 255, .70); }
.section-dark .check-list li::before { background: rgba(240, 86, 42, .18); color: var(--orange); }
.section-dark .btn-ghost { border-color: rgba(255, 255, 255, .26); color: #fff; }
.section-dark .btn-ghost:hover { background: rgba(255, 255, 255, .07); border-color: #fff; }
.section-dark .mono { color: rgba(255, 255, 255, .5); }

/* --- 11. Kaarten --------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 28px; position: relative;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card::after { content: ""; position: absolute; left: -1px; top: -1px; width: 0; height: 2px; background: var(--orange); transition: width .28s cubic-bezier(.22,1,.36,1); }
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: 0 14px 34px -22px rgba(22, 19, 15, .35); }
.card:hover::after { width: calc(100% + 2px); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .94rem; }
.card-num { display: block; margin-bottom: 16px; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-30); }

.icon-box { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; background: var(--orange-tint); color: var(--orange-deep); margin-bottom: 20px; }
.icon-box svg { width: 20px; height: 20px; }
.icon-box.cyan, .icon-box.indigo, .icon-box.amber { background: var(--paper-deep); color: var(--ink); }

.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tag { font-family: var(--font-mono); font-size: .68rem; padding: 4px 10px; border-radius: 100px; background: var(--paper-deep); color: var(--ink-50); }

.check-list { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: 20px; }
.check-list li { display: flex; gap: 12px; font-size: .94rem; color: var(--ink-70); }
.check-list li::before {
  content: "✓"; flex: 0 0 auto; width: 19px; height: 19px; border-radius: 50%; margin-top: 3px;
  background: var(--orange-tint); color: var(--orange-deep);
  display: grid; place-items: center; font-size: .64rem; font-weight: 700;
}

/* --- 12. Index-lijst (editorial) ----------------------------------------- */
.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: grid; grid-template-columns: 78px 1.05fr 1.35fr auto; gap: 26px; align-items: baseline;
  padding: 30px 4px; border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.index-row:hover { background: var(--white); padding-inline: 18px; }
.index-row .num { font-family: var(--font-mono); font-size: .74rem; color: var(--orange); letter-spacing: .1em; }
.index-row h3 { margin: 0; }
.index-row p { font-size: .93rem; margin: 0; }
.index-row .go { font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--ink-50); display: inline-flex; gap: 8px; white-space: nowrap; }
.index-row:hover .go { color: var(--orange-deep); }

/* --- 13. Stats ----------------------------------------------------------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 34px 30px 34px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat:not(:first-child) { padding-left: 30px; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 700; letter-spacing: -0.05em; line-height: 1; color: var(--orange); }
.stat span { display: block; margin-top: 12px; font-size: .92rem; color: var(--ink); font-weight: 500; }
.stat small { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: .68rem; color: var(--ink-50); }

/* --- 14. Prijzen --------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; display: flex; flex-direction: column; height: 100%; position: relative; }
.price-card.featured { border-color: var(--ink); box-shadow: 0 20px 50px -34px rgba(22, 19, 15, .55); }
.price-flag { position: absolute; top: -13px; left: 30px; padding: 5px 14px; border-radius: 100px; background: var(--orange); color: #fff; font-family: var(--font-mono); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 8px; }
.price-sub { font-size: .9rem; color: var(--ink-50); min-height: 44px; }
.price-block { padding: 20px 0; border-top: 1px solid var(--line); margin-top: 20px; }
.price-block:first-of-type { margin-top: 24px; }
.price-label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); }
.price-amount { font-family: var(--font-display); font-size: 1.68rem; font-weight: 700; letter-spacing: -0.035em; margin-top: 8px; }
.price-amount .per { font-size: .82rem; font-weight: 500; color: var(--ink-50); letter-spacing: 0; }
.price-note { font-size: .87rem; margin-top: 9px; }
.price-card .check-list { flex: 1; margin-top: 22px; }
.price-card .btn { margin-top: 28px; width: 100%; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .91rem; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); font-weight: 500; background: var(--paper); }
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table td { color: var(--ink-70); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }

/* --- 15. Fases ----------------------------------------------------------- */
.timeline { display: grid; }
.phase {
  display: grid; grid-template-columns: 210px 1fr; gap: clamp(24px, 4vw, 56px);
  padding: clamp(30px, 4vw, 46px) 0; border-top: 1px solid var(--line);
}
.phase:last-child { border-bottom: 1px solid var(--line); }
.phase-meta b { display: block; font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; letter-spacing: -0.06em; color: var(--orange); line-height: .9; margin-bottom: 12px; }
.phase-meta .mono { display: block; color: var(--ink); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; }
.phase-meta small { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: .7rem; color: var(--ink-50); }
.phase h3 { margin-bottom: 12px; }
.deliverable { margin-top: 22px; padding: 18px 20px; border-radius: var(--r-md); background: var(--white); border: 1px solid var(--line); font-size: .9rem; color: var(--ink-70); }
.deliverable b { display: block; margin-bottom: 6px; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-deep); }

/* --- 16. FAQ ------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 22px;
  padding: 24px 6px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em;
  transition: color .16s ease;
}
.faq-q:hover { color: var(--orange-deep); }
.faq-q .chev { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: .7rem; color: var(--ink-50); transition: transform .24s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-a > div { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 60px 26px 6px; font-size: .96rem; max-width: 78ch; }
.faq-a a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }

/* --- 17. Formulier ------------------------------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--font-display); font-size: .89rem; font-weight: 600; margin-bottom: 9px; }
.field .hint { font-weight: 400; color: var(--ink-50); font-size: .8rem; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink);
  font-size: .96rem; transition: border-color .18s ease, background .18s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-30); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background: var(--white); outline: none; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-50) 50%), linear-gradient(135deg, var(--ink-50) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-error { display: none; margin-top: 7px; font-size: .82rem; color: var(--orange-deep); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--orange); background: var(--orange-tint); }
.field.has-error .field-error { display: block; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--ink-70); }
.consent input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 4px; accent-color: var(--orange); }
.consent a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.form-note { margin-top: 18px; font-size: .81rem; color: var(--ink-50); }
.form-success { display: none; padding: 18px 22px; border-radius: var(--r-md); background: var(--moss-tint); border: 1px solid #BFD9CB; color: #1F4F3A; font-size: .93rem; }
.form-success.is-visible { display: block; margin-bottom: 28px; }

/* --- 18. Callout, quote, panel ------------------------------------------- */
.callout { border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: var(--r-md); padding: 22px 26px; background: var(--white); }
.callout.amber { border-left-color: var(--ink); }
.callout h4 { margin-bottom: 8px; }
.callout p { font-size: .93rem; }
.callout a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.section-dark .callout { background: rgba(255, 255, 255, .04); border-color: var(--line-dark); border-left-color: var(--orange); }

.quote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 500; line-height: 1.32; letter-spacing: -0.03em; color: var(--ink); max-width: 22ch; }
.quote-attr { margin-top: 20px; font-family: var(--font-mono); font-size: .74rem; color: var(--ink-50); }

.panel { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3.5vw, 40px); background: var(--white); }
.panel.sand { background: var(--paper-deep); border-color: var(--line-strong); }
.section-dark .panel { background: rgba(255, 255, 255, .04); border-color: var(--line-dark); }

/* --- 19. Oplossingsblokken ----------------------------------------------- */
.solution { scroll-margin-top: 110px; padding-block: clamp(52px, 6vw, 88px); border-top: 1px solid var(--line); }
.solution-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.solution-head .mono { font-size: .74rem; letter-spacing: .14em; color: var(--orange); }

.spec-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.spec-list li { display: grid; grid-template-columns: 186px 1fr; gap: 22px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .91rem; color: var(--ink-70); }
.spec-list b { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-50); font-weight: 500; }
.section-dark .spec-list, .section-dark .spec-list li { border-color: var(--line-dark); color: rgba(255, 255, 255, .68); }
.section-dark .spec-list b { color: rgba(255, 255, 255, .42); }

/* --- 20. Paginakop ------------------------------------------------------- */
.page-hero { padding-block: clamp(50px, 6vw, 86px) clamp(34px, 4vw, 56px); position: relative; overflow: hidden; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .amp-mark { font-size: 32vw; top: -7vw; right: -1vw; opacity: .045; }
.breadcrumb { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-50); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--orange-deep); }

/* --- 21. CTA & footer ---------------------------------------------------- */
.cta-band { background: var(--orange); color: #fff; padding-block: clamp(54px, 6vw, 88px); }
.cta-band-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 38px; align-items: center; }
.cta-band h2 { color: #fff; max-width: 17ch; }
.cta-band p { margin-top: 15px; max-width: 54ch; color: rgba(255, 255, 255, .85); }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band-actions .btn { width: 100%; }
.cta-band .btn-dark { background: #fff; color: var(--ink); }
.cta-band .btn-dark:hover { background: var(--ink); color: #fff; }
.cta-band .btn-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.site-footer { background: var(--char); color: rgba(255, 255, 255, .68); padding-top: 62px; }
.site-footer .brand-logo { display: none; height: 20px; }
.site-footer .brand-logo.on-dark { display: block; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-tagline { margin-top: 18px; font-size: .91rem; max-width: 30ch; color: rgba(255, 255, 255, .6); }
.footer-col h3 { font-family: var(--font-mono); font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .38); margin-bottom: 18px; }
.footer-col a { display: block; font-size: .92rem; color: rgba(255, 255, 255, .68); padding-block: 6px; transition: color .16s ease; }
.footer-col a:hover { color: #fff; }
.footer-meta { margin-top: 14px; font-family: var(--font-mono); font-size: .72rem; color: rgba(255, 255, 255, .38); }

.status-widget { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 8px 15px; border-radius: 100px; background: rgba(123, 212, 166, .12); color: #7BD4A6; }
.status-widget .mono { color: #7BD4A6; font-size: .72rem; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #7BD4A6; animation: pulse 2.6s ease-in-out infinite; }

.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-block: 24px; border-top: 1px solid var(--line-dark); font-size: .82rem; color: rgba(255, 255, 255, .42); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer-legal a:hover { color: #fff; }

/* --- 22. Reveal ---------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s cubic-bezier(.22, 1, .36, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* --- 23. Responsive ------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid, .split, .cta-band-inner { grid-template-columns: 1fr; }
  .split { gap: 34px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { padding-right: 24px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat:nth-child(3) { padding-left: 0; }
  .index-row { grid-template-columns: 60px 1fr; gap: 8px 22px; }
  .index-row p { grid-column: 2; }
  .index-row .go { grid-column: 2; margin-top: 6px; }
  .amp-mark { font-size: 60vw; top: -14vw; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 92px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 26px; background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    max-height: calc(100dvh - 92px); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav > a:not(.nav-cta) { padding: 15px 4px; font-size: 1.05rem; font-family: var(--font-display); font-weight: 600; border-bottom: 1px solid var(--line); }
  .nav > a:not(.nav-cta)::after { display: none; }
  .nav > a[aria-current="page"] { color: var(--orange); }
  .nav-cta { margin: 20px 0 0; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phase { grid-template-columns: 1fr; gap: 14px; }
  .phase-meta { display: flex; align-items: baseline; gap: 16px; }
  .phase-meta b { font-size: 2.2rem; margin-bottom: 0; }
  .spec-list li { grid-template-columns: 1fr; gap: 5px; }
  .faq-a p { padding-right: 6px; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0 !important; }
  .stat:last-child { border-bottom: 0; }
  .console-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .btn-row .btn { width: 100%; }
  .quote { max-width: none; }
  .cta-band-actions { flex-direction: column; }
  .header-inner { height: 76px; }
  .nav { inset-block-start: 76px; }
  .brand-logo { height: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .cta-band, .nav-toggle, .console { display: none; }
  body { background: #fff; }
}

/* --- 24. Voor en na, schakelaar ------------------------------------------ */
.switch { display: inline-flex; gap: 4px; padding: 5px; margin-bottom: 26px; border: 1px solid var(--line-strong); border-radius: 100px; background: var(--white); }
.switch-btn { border: 0; background: none; padding: 10px 22px; border-radius: 100px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink-50); transition: background .2s ease, color .2s ease; }
.switch-btn:hover:not(.is-active) { color: var(--ink); }
.switch-btn.is-active { background: var(--ink); color: #fff; }

.flow-figure { margin: 0; padding: clamp(18px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--paper-deep); }
.flow-figure img { width: 100%; height: auto; transition: opacity .18s ease; }
.flow-figure.is-swapping img { opacity: 0; }
.flow-figure figcaption { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-strong); font-size: .93rem; color: var(--ink-70); max-width: 74ch; }

/* --- 25. Rekenhulp ------------------------------------------------------- */
.calc-field { margin-bottom: 22px; }
.calc-field label { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 11px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.calc-field output { font-family: var(--font-mono); font-size: .82rem; color: var(--orange-deep); background: var(--orange-tint); padding: 3px 11px; border-radius: 100px; white-space: nowrap; }
.calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: var(--line-strong); outline: none; }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--orange); border: 3px solid #fff; box-shadow: 0 1px 6px rgba(22, 19, 15, .28); cursor: pointer; }
.calc input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--orange); border: 3px solid #fff; box-shadow: 0 1px 6px rgba(22, 19, 15, .28); cursor: pointer; }
.calc-result { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.calc-label { display: block; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); }
.calc-result strong { display: block; margin-top: 9px; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1; color: var(--orange); }
.calc-result small { display: block; margin-top: 7px; font-size: .8rem; color: var(--ink-50); }
.calc-note { margin-top: 20px; font-size: .8rem; color: var(--ink-50); }

/* --- 26. Grotere hero ---------------------------------------------------- */
.hero-xl { padding-block: clamp(54px, 7vw, 112px) clamp(46px, 6vw, 84px); }
.hero-title { font-size: clamp(2.5rem, 6.1vw, 5rem); max-width: 22ch; margin-bottom: clamp(34px, 4.2vw, 56px); }
.hero-cols { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4vw, 64px); align-items: start; }
.hero-xl .lead { font-size: clamp(1.06rem, 1.42vw, 1.22rem); }
.hero-xl .amp-mark { font-size: 50vw; top: -8vw; }
.hero-xl .trust-row { margin-top: clamp(38px, 4.5vw, 58px); }
@media (max-width: 900px) { .hero-cols { grid-template-columns: 1fr; } .hero-title { max-width: none; } }

@media (max-width: 640px) {
  .calc-result { grid-template-columns: 1fr; }
  .switch { width: 100%; }
  .switch-btn { flex: 1; padding-inline: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; flex-wrap: wrap; gap: 28px; }
}

/* --- 27. Stats in de hero ------------------------------------------------ */
.hero-stats { margin-top: clamp(38px, 4.5vw, 60px); }
.hero-stats .stat { padding-block: 26px; }
.hero-stats .stat b { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.hero-stats .stat span { margin-top: 8px; font-size: .88rem; color: var(--ink-70); }

/* Figuren buiten de homepage krijgen dezelfde behandeling */
.flow-figure img { display: block; }
.portret { width: 100%; height: auto; border-radius: var(--r-md); margin-bottom: 18px; object-fit: cover; aspect-ratio: 4 / 3; }
