/* Reversd Design System v4 — Zakelijk, Gevestigd */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --petrol: #0F3D3A;
  --petrol-2: #14524E;
  --petrol-3: #0B2A28;
  --terra: #C8531F;
  --terra-2: #E26730;
  --terra-3: #A8431A;
  --ink: #16201C;
  --ink-2: #2A332F;
  --ink-3: #1C2723;
  --stone: #7C8579;
  --stone-2: #A8B0A6;
  --stone-3: #5C645B;
  --paper: #F4F0E6;
  --paper-2: #FAF7F0;
  --paper-3: #EEE9DA;
  --white: #FFFFFF;
  --rust: #B94B36;
  --moss: #2E6B4F;
  --gold: #C9A55A;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; --s-6: 24px;
  --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
  --s-32: 128px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-2xl: 44px; --r-full: 999px;

  --t-fast: 180ms cubic-bezier(.2,.7,.3,1);
  --t-med: 280ms cubic-bezier(.2,.7,.3,1);
  --t-slow: 480ms cubic-bezier(.2,.7,.3,1);
  --t-reveal: 320ms cubic-bezier(.4,.2,.2,1);

  --container: 1280px;
  --container-narrow: 880px;
  --container-app: 1440px;

  --shadow-sm: 0 1px 2px rgba(22,32,28,.04), 0 1px 1px rgba(22,32,28,.03);
  --shadow-md: 0 4px 16px rgba(22,32,28,.06), 0 2px 4px rgba(22,32,28,.04);
  --shadow-lg: 0 12px 40px rgba(22,32,28,.08), 0 4px 12px rgba(22,32,28,.04);
  --shadow-xl: 0 24px 64px rgba(22,32,28,.12), 0 8px 24px rgba(22,32,28,.06);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.62;
  font-size: 16.5px;
  letter-spacing: -0.005em;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--terra); color: var(--white); }
em { font-style: normal; color: var(--terra); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6); }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-6); }
.wrap-wide { max-width: var(--container-app); margin: 0 auto; padding: 0 var(--s-6); }
.sec { padding: var(--s-24) 0; }
.sec-lg { padding: var(--s-32) 0; }
.sec-sm { padding: var(--s-16) 0; }
@media (max-width: 720px) {
  .sec { padding: var(--s-16) 0; } .sec-lg { padding: var(--s-20) 0; }
  body { font-size: 16px; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,240,230,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(22,32,28,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px var(--s-6); max-width: var(--container); margin: 0 auto; gap: var(--s-4); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; height: 32px; }
.brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand-word {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.028em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
}
.brand-word .d { font-weight: 800; }
.brand-word .dot { color: var(--terra); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { padding: 10px 14px; font-size: 14.5px; font-weight: 500; color: var(--ink); border-radius: var(--r-sm); transition: background var(--t-fast), color var(--t-fast); letter-spacing: -0.005em; }
.nav-link:hover { background: rgba(22,32,28,.06); color: var(--ink); }
@media (max-width: 920px) { .nav-link.hide-sm { display: none; } }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--r-full); font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; transition: all var(--t-fast); white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer;
}
.pill-fill { background: var(--ink); color: var(--paper-2); }
.pill-fill:hover { background: var(--petrol); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.pill-paper { background: var(--paper-2); color: var(--ink); border-color: rgba(22,32,28,.12); }
.pill-paper:hover { background: var(--white); border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.pill-line { border-color: rgba(242,238,228,.4); color: var(--paper); }
.pill-line:hover { background: rgba(242,238,228,.1); border-color: rgba(242,238,228,.7); }
.pill-terra { background: var(--terra); color: var(--white); }
.pill-terra:hover { background: var(--terra-2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,83,31,.3); }
.pill-ghost { color: var(--ink); }
.pill-ghost:hover { background: rgba(22,32,28,.06); }
.pill-sm { padding: 9px 16px; font-size: 14px; }
.pill-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Eyebrows: kleine bovenkop zonder scheidingsteken ---------- */
.eyebrow {
  display: block;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra);
  margin-bottom: var(--s-3);
}
.eyebrow-light { color: var(--terra-2); }
.eyebrow-stone { color: var(--stone); }
.eyebrow-line {
  display: block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
  margin-bottom: var(--s-2);
}

/* ---------- Headings · alleen Inter, geen italic display ---------- */
.h-display {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.4vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0;
}
.h-display em { font-style: normal; color: var(--terra); font-weight: 800; }
.h-1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 60px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; margin: 0; }
.h-1 em { font-style: normal; color: var(--terra); font-weight: 800; }
.h-2 { font-family: var(--font-display); font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.026em; line-height: 1.14; margin: 0; }
.h-2 em { font-style: normal; color: var(--terra); font-weight: 700; }
.h-3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; letter-spacing: -0.018em; line-height: 1.28; margin: 0; }
.h-4 { font-size: 18px; font-weight: 600; letter-spacing: -0.012em; line-height: 1.32; margin: 0; }
.lead { font-size: clamp(17px, 1.5vw, 19.5px); color: var(--ink-2); line-height: 1.66; max-width: 640px; font-weight: 400; }
.lead-light { color: rgba(242,238,228,.84); }
.lead-narrow { max-width: 540px; }
.fineprint { font-family: var(--font-mono); font-size: 12px; color: var(--stone); letter-spacing: 0.04em; }
.mono { font-family: var(--font-mono); font-size: 14px; letter-spacing: -0.005em; }

/* legacy ondersteuning */
.serif { font-family: var(--font-display); }

/* ---------- Dark sections ---------- */
.dark { background: var(--ink); color: var(--paper-2); }
.dark .h-display, .dark .h-1, .dark .h-2, .dark .h-3, .dark .h-4 { color: var(--paper-2); }
.dark .lead { color: rgba(242,238,228,.86); }
.petrol { background: var(--petrol); color: var(--paper-2); }
.petrol .h-display, .petrol .h-1, .petrol .h-2, .petrol .h-3 { color: var(--paper-2); }
.petrol .lead { color: rgba(242,238,228,.86); }
.petrol .eyebrow { color: var(--terra-2); }
.cream { background: var(--paper-2); }
.warm { background: var(--paper-3); }

/* ---------- Brand mark · gerefined ---------- */
.mark-stage {
  width: 360px; height: 360px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.mark-stage svg { width: 100%; height: 100%; }
.mark-stage.small { width: 200px; height: 200px; }
@media (max-width: 820px) { .mark-stage { width: 240px; height: 240px; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 10vh, 120px) 0 clamp(72px, 9vh, 104px);
  background: var(--ink);
  color: var(--paper-2);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 35% at 75% 25%, rgba(15,61,58,.55), transparent 65%),
              radial-gradient(ellipse 45% 28% at 15% 90%, rgba(200,83,31,.16), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.3fr .85fr; gap: clamp(48px, 6vw, 96px);
  align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6);
}
.hero h1 { font-family: var(--font-display); font-size: clamp(48px, 7.2vw, 96px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.0; margin: 18px 0 28px; color: var(--paper-2); }
.hero h1 em { font-style: normal; color: var(--terra-2); font-weight: 800; }
.hero .sub { font-size: clamp(17px, 1.4vw, 20px); color: rgba(242,238,228,.84); max-width: 540px; margin-bottom: 36px; line-height: 1.6; }
.hero .sub b { color: var(--paper-2); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { margin-top: 42px; display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-6); font-size: 13px; color: rgba(242,238,228,.65); }
.hero-trust strong { color: var(--paper-2); font-weight: 600; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(242,238,228,.3); }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .mark-stage { margin: 0 auto; }
}

/* ---------- Strip: doorlopende balk met meerdere unieke triggers ---------- */
.strip {
  background: var(--terra);
  color: var(--paper-2);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.strip-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  animation: strip-scroll 60s linear infinite;
  will-change: transform;
}
.strip-track span { display: inline-flex; align-items: center; gap: 56px; }
.strip-track span::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}
.strip-track span:last-child::after { display: inline-block; }
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.split.right-image > div:first-child { order: 1; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: var(--s-10); } }

/* ---------- Statementblok ---------- */
.statement-card {
  background: var(--paper-2);
  border: 1px solid rgba(22,32,28,.06);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
}
.statement-card .quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.016em;
  color: var(--ink);
  margin: 16px 0 0;
}
.statement-card .source {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Vals (waardepropositie kaarten) ---------- */
.vals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: var(--s-12); }
.val { background: var(--white); border: 1px solid rgba(22,32,28,.08); border-radius: var(--r-lg);
  padding: 28px 26px; transition: all var(--t-fast); }
.val:hover { transform: translateY(-3px); border-color: rgba(22,32,28,.18); box-shadow: var(--shadow-md); }
.val .num { font-family: var(--font-mono); font-size: 11.5px; color: var(--terra); font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; }
.val h3 { font-size: 17.5px; font-weight: 700; margin: 14px 0 10px; letter-spacing: -0.014em; line-height: 1.3; }
.val p { font-size: 14.5px; color: var(--stone-3); line-height: 1.62; margin: 0; }
@media (max-width: 900px) { .vals { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .vals { grid-template-columns: 1fr; } }

/* ---------- Steps: zonder middenpunt scheidingsteken ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: var(--s-12); }
.step {
  position: relative;
  padding: 28px 24px 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  color: var(--paper-2);
}
.step .step-no {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--terra-2);
  margin-bottom: 10px;
  display: block;
}
.step .step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,238,228,.6);
  margin-bottom: 14px;
  display: block;
}
.step h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.012em; margin: 0 0 10px; color: var(--paper-2); line-height: 1.3; }
.step p { font-size: 14px; color: rgba(242,238,228,.78); line-height: 1.6; margin: 0; }
.cream .step, .sec:not(.petrol):not(.dark) .step {
  background: var(--paper-2);
  border-color: rgba(22,32,28,.08);
  color: var(--ink);
}
.cream .step .step-no, .sec:not(.petrol):not(.dark) .step .step-no { color: var(--terra); }
.cream .step .step-label, .sec:not(.petrol):not(.dark) .step .step-label { color: var(--stone); }
.cream .step h4, .sec:not(.petrol):not(.dark) .step h4 { color: var(--ink); }
.cream .step p, .sec:not(.petrol):not(.dark) .step p { color: var(--stone-3); }
@media (max-width: 920px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Pijlers (Waar Wij Voor Staan) ---------- */
.pijlers { display: grid; gap: var(--s-8); margin-top: var(--s-16); max-width: 880px; }
.pijler {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: var(--s-10);
  border-bottom: 1px solid rgba(242,238,228,.14);
}
.pijler:last-child { border-bottom: 0; padding-bottom: 0; }
.pijler-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--terra-2);
}
.pijler-body h3 { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.022em; margin: 0 0 14px; color: var(--paper-2); line-height: 1.22; }
.pijler-body p { color: rgba(242,238,228,.84); font-size: 16.5px; margin: 0; max-width: 620px; line-height: 1.68; }
@media (max-width: 600px) {
  .pijler { grid-template-columns: 1fr; gap: 14px; padding-bottom: var(--s-8); }
  .pijler-num { font-size: 36px; }
}

/* ---------- Ladder ---------- */
.ladder { display: grid; gap: var(--s-5); margin-top: var(--s-10); }
.rung {
  display: block;
  padding: var(--s-8);
  background: var(--white);
  border: 1px solid rgba(22,32,28,.08);
  border-radius: var(--r-lg);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.rung-stage {
  display: block;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra);
  margin-bottom: var(--s-3);
}
.rung h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.014em; margin: 0 0 var(--s-4); color: var(--ink); line-height: 1.3; }
.rung p { font-size: 15px; color: var(--ink-2); margin: 10px 0 0; line-height: 1.62; }
.rung p:first-of-type { margin-top: 0; }
.rung p b { color: var(--ink); font-weight: 600; }
.rung-visible { background: var(--paper-2); border-color: rgba(22,32,28,.06); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: var(--s-12); }
.price-card {
  background: var(--white);
  border: 1.5px solid rgba(22,32,28,.08);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all var(--t-fast);
}
.price-card.featured {
  background: var(--ink);
  border-color: var(--terra);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
.price-card:hover:not(.featured) { transform: translateY(-4px); border-color: rgba(22,32,28,.2); box-shadow: var(--shadow-md); }
.price-name { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); font-weight: 500; }
.price-amount { font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; color: var(--ink); }
.price-amount small { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--stone); letter-spacing: 0; }
.price-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.price-list li { font-size: 14.5px; color: var(--stone-3); padding-left: 22px; position: relative; line-height: 1.5; }
.price-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 2px; background: var(--terra); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--s-3); max-width: 800px; margin: var(--s-12) auto 0; }
.faq-item { background: var(--white); border: 1px solid rgba(22,32,28,.08); border-radius: var(--r-md); overflow: hidden; transition: all var(--t-fast); }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(22,32,28,.18); }
.faq-item summary { padding: var(--s-5) var(--s-6); cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); transition: color var(--t-fast); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--terra); font-weight: 300; flex-shrink: 0; transition: transform var(--t-med); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--terra); }
.faq-item .body { padding: 0 var(--s-6) var(--s-6); font-size: 15px; color: var(--stone-3); line-height: 1.65; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(242,238,228,.7); padding: var(--s-16) 0 var(--s-10); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-10); margin-bottom: var(--s-12); }
.footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra-2); margin: 0 0 18px; font-weight: 500; }
.footer a { display: block; padding: 5px 0; color: rgba(242,238,228,.7); font-size: 14.5px; transition: color var(--t-fast); }
.footer a:hover { color: var(--paper-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s-6); border-top: 1px solid rgba(242,238,228,.12); font-size: 13px; flex-wrap: wrap; gap: var(--s-4); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Hub ---------- */
.hub { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); margin-top: var(--s-10); }
.hubcol h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); margin: 0 0 14px; font-weight: 500; }
.hubcol a { display: block; padding: 7px 0; font-size: 14.5px; color: var(--ink); border-bottom: 1px solid rgba(22,32,28,.06); transition: padding var(--t-fast), color var(--t-fast); }
.hubcol a:hover { color: var(--terra); padding-left: 6px; }
@media (max-width: 820px) { .hub { grid-template-columns: 1fr 1fr; } }

/* ---------- App dashboards ---------- */
.app-hero {
  background: var(--ink); color: var(--paper-2); border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px); margin-bottom: var(--s-8);
  position: relative; overflow: hidden;
}
.app-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 90% 20%, rgba(200,83,31,.18), transparent 60%); }
.app-hero > * { position: relative; z-index: 1; }
.app-hero h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.026em; margin: 14px 0 18px; color: var(--paper-2); line-height: 1.16; }
.app-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-6); }
.app-hero .eyebrow { color: var(--terra-2); }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: var(--s-8); }
.stat { background: var(--white); border: 1px solid rgba(22,32,28,.08); border-radius: var(--r-md); padding: 20px 24px; }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.stat-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -0.028em; }
@media (max-width: 820px) { .stat-row { grid-template-columns: 1fr 1fr; } }

/* Stats row met losse blocks (gebruikt op traject-talent) */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 32px; background: var(--white); border: 1px solid rgba(22,32,28,.08); border-radius: var(--r-xl); }
.stat-block { display: flex; flex-direction: column; gap: 8px; padding: 8px 0; }
.stat-block .value { font-family: var(--font-display); font-size: 44px; font-weight: 800; letter-spacing: -0.028em; line-height: 1.05; color: var(--ink); display: block; }
.stat-block .label { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); line-height: 1.4; display: block; }
@media (max-width: 760px) { .stats-row { grid-template-columns: 1fr; padding: 24px; gap: 18px; } }

/* ---------- Card weergaven voor talenten en vacatures ---------- */
.match-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: var(--s-6); }
.match-card {
  background: var(--white);
  border: 1px solid rgba(22,32,28,.08);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t-fast);
}
.match-card:hover { transform: translateY(-2px); border-color: rgba(22,32,28,.18); box-shadow: var(--shadow-md); }
.match-id { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); font-weight: 500; }
.match-title { font-size: 17px; font-weight: 700; letter-spacing: -0.012em; color: var(--ink); margin: 0; line-height: 1.3; }
.match-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.match-meta span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  background: var(--paper-3); color: var(--ink); padding: 4px 10px; border-radius: var(--r-full);
}
.match-body { font-size: 14px; color: var(--stone-3); line-height: 1.55; margin: 0; }
.match-cta { display: flex; gap: 8px; margin-top: 6px; }
.match-portrait {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-3));
  color: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.match-head { display: flex; align-items: center; gap: 14px; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--paper-2); padding: 14px 22px; border-radius: var(--r-full);
  font-size: 14.5px; font-weight: 500; transition: transform var(--t-med); z-index: 999;
  box-shadow: var(--shadow-xl); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { background: var(--rust); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms cubic-bezier(.2,.7,.3,1), transform 700ms cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--s-4); max-width: 480px; }
.form-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr 1fr; max-width: 720px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.grid-2 { display: grid; gap: var(--s-4); grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.form.card, .card .form { max-width: none; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.field .hint { font-size: 12.5px; color: var(--stone); line-height: 1.5; }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(22,32,28,.12);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.field input[type="checkbox"], .field input[type="radio"],
input[type="checkbox"], input[type="radio"] {
  padding: 0;
  width: 14px; height: 14px;
  min-width: 14px; min-height: 14px;
  flex-shrink: 0;
  accent-color: var(--terra);
  appearance: auto;
  -webkit-appearance: auto;
  margin: 0;
}
label input[type="checkbox"], label input[type="radio"] {
  margin-right: 6px;
}
/* Checkbox groep verfijning */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 6px 12px;
  margin-top: 6px;
}
.check-grid label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background var(--t-fast);
}
.check-grid label:hover { background: rgba(22,32,28,.04); }
.check-grid label input { margin: 0; }
.field input[type="file"] {
  padding: 10px;
  background: var(--white);
  border: 1.5px dashed rgba(22,32,28,.18);
  cursor: pointer;
}
.field input[type="file"]:hover { border-color: var(--terra); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(200,83,31,.12);
}
.field textarea { min-height: 100px; resize: vertical; }
.flex { display: flex; }
.gap-3 { gap: 12px; }
.gap-2 { gap: 8px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.wrap-flex { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Tags ---------- */
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  background: var(--paper-3); color: var(--ink); border: 1px solid transparent;
}
.tag-soft { background: var(--paper-3); border-color: transparent; color: var(--stone-3); }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid rgba(22,32,28,.08); border-radius: var(--r-lg); }
.card-dark { background: var(--ink-2); border-color: rgba(242,238,228,.08); color: var(--paper-2); }

/* ---------- Utility ---------- */
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-10 { margin-top: 40px; } .mt-12 { margin-top: 48px; } .mt-16 { margin-top: 64px; } .mt-20 { margin-top: 80px; }
.text-center { text-align: center; }
.hide-sm { display: inline-block; }
@media (max-width: 720px) { .hide-sm { display: none; } }

/* ---------- Mobile fixes ---------- */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .mark-stage { margin: 0 auto; max-width: 240px; height: 240px; }
  .nav-inner { padding: 12px var(--s-4); }
  .brand-word { font-size: 19px; }
  .pill-lg { padding: 14px 22px; font-size: 15px; }
  .wrap { padding: 0 var(--s-4); }
  .wrap-narrow { padding: 0 var(--s-4); }
  .wrap-wide { padding: 0 var(--s-4); }
  /* Tweekoloms layout van login en signup pagina's stacken */
  section.sec .wrap[style*="grid-template-columns"] { display: block !important; }
  section.sec .wrap[style*="grid-template-columns"] > aside { margin-top: 40px; position: static !important; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  /* Hub naar 2 kolommen */
  .hub { grid-template-columns: 1fr 1fr; }
  /* Cards iets minder padding */
  .card { padding: 24px !important; }
  .card[style*="padding:48px"] { padding: 28px !important; }
  .card[style*="padding:36px"] { padding: 24px !important; }
  /* Stats row stack */
  .stat-row { grid-template-columns: 1fr 1fr !important; }
  /* Steps en vals naar 1 kolom op klein */
  .steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .vals { grid-template-columns: 1fr 1fr; gap: 12px; }
  /* Match grid naar 1 kolom */
  .match-grid { grid-template-columns: 1fr; }
  /* Pijlers stack */
  .pijler { grid-template-columns: 1fr; gap: 12px; padding-bottom: 32px; }
  .pijler-num { font-size: 36px; }
  .pijler-body h3 { font-size: 22px; }
  /* Display sizes */
  .h-display { font-size: 40px; line-height: 1.05; }
  .h-1 { font-size: 32px; line-height: 1.1; }
  .h-2 { font-size: 26px; }
  .hero h1 { font-size: 38px; line-height: 1.1; }
  .hero .sub { font-size: 16px; }
  /* App hero in dashboards */
  .app-hero { padding: 24px !important; }
  /* Forms ruimer */
  .grid-2 { grid-template-columns: 1fr !important; }
  .form-grid { grid-template-columns: 1fr; }
  /* Strip animation iets sneller voelt natuurlijker op mobiel */
  .strip-track { gap: 36px; padding: 14px 0; font-size: 12px; }
  .strip-track span { gap: 36px; }
  /* Tabellen scrollbaar */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  /* Faq summary kleiner */
  .faq-item summary { font-size: 15px; padding: 16px 18px; }
  .faq-item .body { padding: 0 18px 18px; font-size: 14px; }
  /* Modaal */
  #modal > div, #vac-modal > div { max-width: 100%; padding: 24px !important; max-height: 88vh !important; }
  /* Price grid stack */
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none !important; }
  /* Cards die inline grid hadden */
  section .card[style*="display:grid"] { display: block !important; }
  /* Sections smaller padding */
  .sec { padding: 56px 0; }
  .sec-lg { padding: 72px 0; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .vals { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .hub { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .h-display { font-size: 32px; }
  .hero h1 { font-size: 32px; }
  .h-1 { font-size: 26px; }
}
