/* Zelf-gehoste variabele fonts (latin) — geen externe requests, AVG-vriendelijk. */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/PlusJakartaSans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('/assets/fonts/JetBrainsMono-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Formuliermet.nl — design system (van Claude Design-handoff)
   Indigo primair, lavendel vlakken, magenta + cyaan merk-accenten,
   teal voor succes, donkernavy tekst, ronde kaarten & pill-knoppen.
   ============================================================ */

:root {
  /* Merkkleuren */
  --indigo:      #6366F1;
  --indigo-600:  #5048E5;
  --indigo-700:  #4138C9;
  --indigo-soft: #EEEDFB;
  --magenta:     #D7368E;
  --magenta-soft:#FBE7F2;
  --cyan:        #1F8DC4;
  --cyan-bright: #2BA5DD;
  --cyan-soft:   #E3F2FA;
  --teal:        #12B5A4;
  --teal-soft:   #DEF6F2;
  --amber:       #F5A524;
  --amber-soft:  #FDF0DA;

  /* Inkt / neutralen */
  --ink:    #191A2E;
  --ink-2:  #45465F;
  --ink-3:  #7A7C95;
  --ink-4:  #A6A8BE;

  /* Vlakken */
  --bg:        #F4F3FB;
  --bg-2:      #ECEAF8;
  --surface:   #FFFFFF;
  --surface-2: #F7F6FD;
  --border:    rgba(25,26,46,.08);
  --border-2:  rgba(25,26,46,.13);

  /* Accent */
  --accent:      var(--indigo);
  --accent-600:  var(--indigo-600);
  --accent-soft: var(--indigo-soft);

  /* Merk-gradient */
  --brand-grad: linear-gradient(118deg, #D7368E 0%, #6366F1 52%, #1F8DC4 100%);
  --brand-grad-soft: linear-gradient(118deg, #FBE7F2 0%, #EEEDFB 52%, #E3F2FA 100%);

  /* Radii */
  --r-card: 24px;
  --r-md:   18px;
  --r-sm:   12px;
  --r-pill: 999px;

  /* Schaduwen */
  --shadow-xs:  0 1px 2px rgba(25,26,46,.05);
  --shadow-sm:  0 1px 2px rgba(25,26,46,.04), 0 6px 16px -10px rgba(25,26,46,.18);
  --shadow:     0 2px 4px rgba(25,26,46,.04), 0 18px 40px -20px rgba(25,26,46,.22);
  --shadow-lg:  0 4px 8px rgba(25,26,46,.05), 0 34px 70px -28px rgba(40,30,90,.34);
  --shadow-accent: 0 18px 44px -18px color-mix(in srgb, var(--accent) 55%, transparent);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding-block: 96px; }
.section-tight { padding-block: 64px; }
.center { text-align: center; }
.muted { color: var(--ink-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); display: inline-block; }
.eyebrow.no-line::before { display: none; }

.h-display { font-size: clamp(2.5rem, 5.4vw, 4.3rem); line-height: 1.02; letter-spacing: -0.035em; }
.h-section { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.27rem); color: var(--ink-2); line-height: 1.55; }

.grad-text {
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons (3D pushable) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  user-select: none;
  transition: transform 90ms ease, box-shadow 130ms ease, background 130ms ease, border-color 130ms ease, color 130ms ease;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 0 0 color-mix(in oklch, var(--accent) 64%, black);
}
.btn-primary:hover {
  background: color-mix(in oklch, var(--accent) 90%, white);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 0 color-mix(in oklch, var(--accent) 64%, black);
}
.btn-primary:active {
  transform: translateY(2px);
  background: var(--accent-600);
  box-shadow: 0 1px 0 0 color-mix(in oklch, var(--accent) 64%, black);
}

.btn-dark {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 0 0 #000;
}
.btn-dark:hover {
  background: color-mix(in oklch, var(--ink) 88%, white);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 0 #000;
}
.btn-dark:active {
  transform: translateY(2px);
  background: #000;
  box-shadow: 0 1px 0 0 #000;
}

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--border-2); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-600); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(1px); }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover, .btn:active { transform: none; }
}

.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-sm { padding: 10px 18px; font-size: 14.5px; }

.btn-link { color: var(--accent-600); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.btn-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.btn-link:hover svg { transform: translateX(3px); }

/* ---------- Badges / pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-xs);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: none; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 8px; font-size: 12.5px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; letter-spacing: .02em;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--shadow-sm);
}

/* ---------- Logo lockup (3D-lift, twee SVG-lagen) ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark-svg { display: block; width: 42px; height: 42px; overflow: visible; flex: none; }
.brand-front {
  transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}
.brand:hover .brand-front { transform: translateY(-6px); }
.brand:active .brand-front { transform: translateY(2px); transition-duration: 90ms; }
@media (prefers-reduced-motion: reduce) {
  .brand-front { transition: none; }
  .brand:hover .brand-front, .brand:active .brand-front { transform: none; }
}
.brand-name { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
.brand-name .tld { color: var(--ink-3); font-weight: 700; }

/* ---------- Top navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 22px; height: 76px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.nav-links a {
  padding: 9px 13px; border-radius: var(--r-pill); font-weight: 600; font-size: 15px; color: var(--ink-2);
  transition: background .16s, color .16s; white-space: nowrap;
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-links a.active { background: var(--surface); color: var(--accent-600); box-shadow: var(--shadow-xs); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; }

.mobile-menu { display: none; flex-direction: column; gap: 6px; padding: 12px 20px 20px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 12px; border-radius: 10px; font-weight: 600; color: var(--ink-2); }
.mobile-menu a:hover { background: var(--surface); }
.mobile-menu .btn-primary { color: #fff; margin-top: 6px; justify-content: center; }
@media (min-width: 1101px) { .mobile-menu { display: none !important; } }

/* ---------- Breadcrumbs ---------- */
.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.crumbs a:hover { color: var(--accent-600); }
.crumbs .sep { color: var(--ink-4); }
.crumbs [aria-current] { color: var(--ink-2); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #C9CAD8; padding-block: 64px 36px; margin-top: 32px; }
.footer a { color: #C9CAD8; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer .brand-name, .footer .brand-name .tld { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: #8A8CA6; }

/* ---------- Pay logos row ---------- */
.paystrip { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.paystrip .pm {
  height: 34px; padding: 8px 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; display: inline-flex; align-items: center; font-weight: 800; font-size: 13px;
  color: var(--ink-2); box-shadow: var(--shadow-xs); letter-spacing: -.01em;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Generic grid utils ---------- */
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   Hero & mockups
   ============================================================ */
.hero { position: relative; overflow: clip; padding-top: 40px; padding-bottom: 40px; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  background:
    radial-gradient(60% 80% at 18% 8%, color-mix(in srgb, var(--magenta) 16%, transparent), transparent 70%),
    radial-gradient(55% 75% at 92% 0%, color-mix(in srgb, var(--cyan) 18%, transparent), transparent 70%),
    radial-gradient(70% 70% at 60% 0%, color-mix(in srgb, var(--indigo) 13%, transparent), transparent 72%);
  filter: blur(8px); pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-copy .lead { max-width: 540px; margin-top: 22px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }

.hero-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: 56px; align-items: center; }
.hero-grid .h-display { margin-top: 22px; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Subpagina-hero */
.page-hero { padding: 64px 0 40px; position: relative; overflow: clip; }
.page-hero::before { content:""; position:absolute; inset:-30% -10% auto -10%; height:480px; z-index:0;
  background: radial-gradient(50% 70% at 30% 0%, color-mix(in srgb,var(--magenta) 13%,transparent), transparent 70%),
              radial-gradient(50% 70% at 80% 0%, color-mix(in srgb,var(--cyan) 14%,transparent), transparent 70%);
  filter: blur(6px); pointer-events:none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumbs { margin-bottom: 22px; }
.page-hero .h-display { font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-top: 14px; }

/* App-mockup frame (ook voor echte screenshots) */
.mock {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #DDD8EC; display: inline-block; flex: none; }
.mock-bar .url { margin-left: 12px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-3); background: var(--surface); padding: 5px 12px; border-radius: 8px; border: 1px solid var(--border); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-body { padding: 20px; }
.mock-shot { padding: 0; }
.mock-shot img { width: 100%; height: auto; }

.mock-wrap { position: relative; }
.mock-wrap .floaty {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow); padding: 14px 16px; display: flex; align-items: center; gap: 12px; z-index: 2;
}
.mock-wrap .floaty .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.mock-wrap .floaty .ic svg { width: 19px; height: 19px; }
.mock-wrap .floaty .lab { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.mock-wrap .floaty .val { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.floaty.f1 { top: -22px; left: -26px; }
.floaty.f2 { bottom: -24px; right: -22px; }
.floaty.f3 { bottom: 64px; left: -42px; }
@media (max-width: 1080px) { .floaty { display: none !important; } }

/* donatie-meter binnen een floaty */
.don-meter { margin-top: 8px; height: 7px; border-radius: 999px; background: var(--magenta-soft); overflow: hidden; }
.don-meter i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--magenta), var(--indigo)); }
.don-sub { font-size: 11.5px; color: var(--ink-3); font-weight: 600; margin-top: 5px; }
.don-sub b { color: var(--ink); font-weight: 800; }

/* mini dashboard inside mock */
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-head .t { font-weight: 800; font-size: 18px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.stat { border: 1px solid var(--border); border-radius: 14px; padding: 13px; background: var(--surface); }
.stat .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 9px; }
.stat .ic svg { width: 16px; height: 16px; }
.stat .lab { font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.stat .num { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin-top: 1px; }
.chart { border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.chart .crow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.chart .crow .lab { font-size: 12px; color: var(--ink-3); font-weight: 700; }
.spark { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.spark span { flex: 1; border-radius: 5px 5px 3px 3px; background: color-mix(in srgb, var(--indigo) 24%, transparent); }
.spark span.hot { background: var(--indigo); }

/* mini agenda */
.cal { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--surface); }
.cal-head { display: grid; grid-template-columns: 46px repeat(4, 1fr); background: var(--surface-2); border-bottom: 1px solid var(--border); }
.cal-head div { padding: 8px 6px; font-size: 11px; font-weight: 700; color: var(--ink-3); text-align: center; }
.cal-grid { display: grid; grid-template-columns: 46px repeat(4, 1fr); }
.cal-grid .time { padding: 8px 6px; font-size: 10.5px; color: var(--ink-4); text-align: right; font-family: 'JetBrains Mono', monospace; border-top: 1px solid var(--border); }
.cal-grid .cell { border-top: 1px solid var(--border); border-left: 1px solid var(--border); min-height: 34px; position: relative; }
.ev { position: absolute; left: 4px; right: 4px; border-radius: 8px; padding: 5px 7px; font-size: 10.5px; font-weight: 700; color: #fff; line-height: 1.2; box-shadow: var(--shadow-xs); }

/* ============================================================
   Secties
   ============================================================ */
/* Capability band */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 24px; box-shadow: var(--shadow-xs); transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-2); }
.cap .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; flex: none; }
.cap .ic svg { width: 23px; height: 23px; }
.cap h3 { font-size: 18px; margin-bottom: 7px; }
.cap p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }
.cap .btn-link { margin-top: 12px; font-size: 14px; }
a.cap { cursor: pointer; }
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cap-grid { grid-template-columns: 1fr; } }

/* Use-case tiles */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.uc {
  position: relative; border-radius: var(--r-card); padding: 26px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s; min-height: 196px; display: flex; flex-direction: column;
}
.uc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.uc .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; flex: none; }
.uc .ic svg { width: 25px; height: 25px; color: #fff; }
.uc h3 { font-size: 19px; margin-bottom: 6px; }
.uc p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; flex: 1; }
.uc .feat { margin-top: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; }
.uc .feat::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
@media (max-width: 980px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .uc-grid { grid-template-columns: 1fr; } }

/* Deep-dive feature blocks */
.feat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feat-block.rev .feat-text { order: 2; }
.feat-text .h-section { margin: 14px 0 16px; }
.feat-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.feat-list .chk { flex: none; width: 24px; height: 24px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; margin-top: 1px; }
.feat-list .chk svg { width: 14px; height: 14px; }
.feat-list b { color: var(--ink); font-weight: 700; }
@media (max-width: 980px) { .feat-block, .feat-block.rev { grid-template-columns: 1fr; gap: 32px; } .feat-block.rev .feat-text { order: 0; } }

/* Builder mock */
.builder { display: grid; grid-template-columns: 200px 1fr 220px; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.builder .col { padding: 16px; }
.builder .palette-col { background: var(--surface-2); border-right: 1px solid var(--border); }
.builder .canvas-col { background: var(--surface); }
.builder .props-col { background: var(--surface-2); border-left: 1px solid var(--border); }
.builder .col-t { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 12px; font-family: 'JetBrains Mono', monospace; }
.fld-chip { display: flex; align-items: center; gap: 9px; padding: 10px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 8px; box-shadow: var(--shadow-xs); }
.fld-chip .gr { color: var(--ink-4); font-size: 14px; cursor: grab; margin-left: auto; }
.fld-chip .ic { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; flex: none; }
.fld-chip .ic svg { width: 13px; height: 13px; }
.canvas-fld { border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-bottom: 10px; background: var(--surface); }
.canvas-fld.sel { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.canvas-fld .lb { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.canvas-fld .inp { height: 34px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface-2); }
.canvas-fld.prod { display: flex; align-items: center; justify-content: space-between; }
.canvas-fld.prod .price { font-weight: 800; color: var(--accent-600); }
.prop-row { margin-bottom: 14px; }
.prop-row .pl { font-size: 11px; color: var(--ink-3); font-weight: 700; margin-bottom: 6px; }
.prop-row .pf { height: 32px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); }
@media (max-width: 760px) { .builder { grid-template-columns: 1fr; } .builder .palette-col, .builder .props-col { display: none; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step .n { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700; color: var(--accent-600); background: var(--accent-soft); width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-3); font-size: 15px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-grid.p-4 { grid-template-columns: repeat(4, 1fr); }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.plan.feat-plan { border-color: var(--accent); box-shadow: var(--shadow-accent); position: relative; }
.plan .ribbon { position: absolute; top: -13px; left: 30px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 13px; border-radius: var(--r-pill); }
.plan .pn { font-weight: 800; font-size: 20px; }
.plan .pd { color: var(--ink-3); font-size: 14px; margin-top: 4px; min-height: 40px; }
.plan .pp { margin: 18px 0 4px; font-size: 36px; font-weight: 800; letter-spacing: -.03em; }
.plan .pp small { font-size: 15px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.plan .pp-sub { font-size: 13px; color: var(--ink-3); font-weight: 600; min-height: 20px; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); }
.plan ul .chk { flex: none; width: 20px; height: 20px; border-radius: 6px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; margin-top: 2px; }
.plan ul .chk svg { width: 12px; height: 12px; }
.plan .btn { margin-top: auto; }
@media (max-width: 1080px) { .price-grid.p-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .price-grid.p-4 { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { position: relative; border-radius: 32px; padding: 64px; overflow: hidden; background: var(--ink); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--brand-grad); opacity: .92; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-top: 14px; max-width: 560px; }
.cta-band .hero-actions .btn-ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(4px); }
.cta-band .btn-dark { background: #fff; color: var(--ink); box-shadow: 0 4px 0 0 rgba(0,0,0,.35); }
.cta-band .btn-dark:hover { background: #fff; box-shadow: 0 6px 0 0 rgba(0,0,0,.35); }
.cta-band .btn-dark:active { box-shadow: 0 1px 0 0 rgba(0,0,0,.35); }
@media (max-width: 640px) { .cta-band { padding: 40px 26px; border-radius: 24px; } }

/* Feature-detail cards (functionaliteit) */
.feature-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fd {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 30px; box-shadow: var(--shadow-xs); transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.fd:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-2); }
.fd-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fd-head .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; flex: none; }
.fd-head .ic svg { width: 25px; height: 25px; color: #fff; }
.fd-head h3 { font-size: 21px; }
.fd > p { color: var(--ink-2); font-size: 15.5px; }
.fd ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.fd ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.fd ul .chk { flex: none; width: 21px; height: 21px; border-radius: 7px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; margin-top: 1px; }
.fd ul .chk svg { width: 12px; height: 12px; }
.fd .btn-link { margin-top: 18px; font-size: 14.5px; }
.fd.wide { grid-column: 1 / -1; }
@media (max-width: 860px) { .feature-detail { grid-template-columns: 1fr; } }

/* Field cloud */
.field-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.field-cloud .fc {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 17px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-pill); font-weight: 600; font-size: 14.5px;
  color: var(--ink-2); box-shadow: var(--shadow-xs);
}
.field-cloud .fc .ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.field-cloud .fc .ic svg { width: 13px; height: 13px; }

/* Vergelijkingstabel */
.cmp { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); }
.cmp th, .cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.cmp thead th { background: var(--surface-2); font-size: 13px; letter-spacing: .02em; }
.cmp thead th:not(:first-child) { text-align: center; }
.cmp tbody td:not(:first-child) { text-align: center; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .grp td { background: var(--bg); font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.cmp .feat-name { font-weight: 600; color: var(--ink); }
.cmp .yes { color: var(--teal); }
.cmp .no { color: var(--ink-4); }
.cmp .hl { color: var(--accent-600); font-weight: 700; }
.cmp-wrap { overflow-x: auto; border-radius: var(--r-card); }
@media (max-width: 760px) { .cmp th, .cmp td { padding: 12px 10px; font-size: 13px; } }

/* FAQ accordeon */
.faq { display: grid; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 4px 22px; box-shadow: var(--shadow-xs); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; flex: none; transition: .2s; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 20px; color: var(--ink-2); font-size: 15px; }
.faq .faq-a p { margin-bottom: 10px; }
.faq .faq-a p:last-child { margin-bottom: 0; }
.faq .faq-a a { color: var(--accent-600); font-weight: 600; }
.faq-cat { max-width: 780px; margin: 0 auto 14px; }
.faq-cat h2 { font-size: 19px; margin: 34px 0 14px; }

/* Notice / info-blok */
.notice { display: flex; gap: 16px; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px 24px; }
.notice .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; flex: none; }
.notice .ic svg { width: 19px; height: 19px; }
.notice p { font-size: 14.5px; color: var(--ink-2); }
.notice b { color: var(--ink); }

/* Prose (over ons, juridisch) */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 44px 0 14px; }
.prose h3 { font-size: 19px; margin: 30px 0 10px; }
.prose p { margin: 0 0 16px; color: var(--ink-2); font-size: 16.5px; line-height: 1.7; }
.prose ul, .prose ol { color: var(--ink-2); font-size: 16.5px; line-height: 1.7; margin: 0 0 16px; padding-left: 24px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent-600); font-weight: 600; }
.prose b, .prose strong { color: var(--ink); }

/* Definitie-kaart (adres etc.) */
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 28px; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 17px; margin-bottom: 12px; }
.info-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 7px 18px; font-size: 14.5px; }
.info-card dt { color: var(--ink-3); font-weight: 600; }
.info-card dd { margin: 0; color: var(--ink); font-weight: 600; }

/* ---------- Formulieren (contact) ---------- */
.form-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .form-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 34px; box-shadow: var(--shadow-sm); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .f-row { grid-template-columns: 1fr; } }
.f-field { margin-bottom: 18px; }
.f-field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.f-field label .opt { color: var(--ink-4); font-weight: 600; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-sm);
  padding: 12px 15px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.f-field textarea { min-height: 150px; resize: vertical; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.f-hint { font-size: 13px; color: var(--ink-3); margin-top: 6px; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; border-radius: var(--r-sm); padding: 14px 18px; font-size: 14.5px; font-weight: 600; margin-bottom: 18px; }
.form-status.ok { display: block; background: var(--teal-soft); color: #0B7569; }
.form-status.err { display: block; background: var(--magenta-soft); color: #A1246B; }

/* Doelgroep-chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px; color: var(--ink-2); box-shadow: var(--shadow-xs);
  transition: border-color .15s, color .15s, transform .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent-600); transform: translateY(-1px); }
.chip .ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.chip .ic svg { width: 13px; height: 13px; }

/* Checklist-grid op functiepagina's */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-grid .ci { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 18px; box-shadow: var(--shadow-xs); }
.check-grid .chk { flex: none; width: 24px; height: 24px; border-radius: 8px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; margin-top: 1px; }
.check-grid .chk svg { width: 14px; height: 14px; }
.check-grid b { display: block; font-size: 15px; }
.check-grid span.d { font-size: 13.5px; color: var(--ink-3); line-height: 1.45; }
@media (max-width: 760px) { .check-grid { grid-template-columns: 1fr; } }

/* Stat-band (over ons) */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-band .sb { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 26px; text-align: center; box-shadow: var(--shadow-xs); }
.stat-band .sb .v { font-size: 34px; font-weight: 800; letter-spacing: -.02em; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-band .sb .l { font-size: 14px; color: var(--ink-3); font-weight: 600; margin-top: 4px; }
@media (max-width: 760px) { .stat-band { grid-template-columns: 1fr; } }

/* Screenshot sectie */
.shot-band { max-width: 1000px; margin-inline: auto; }

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding-block: 64px; }
  .section-tight { padding-block: 48px; }
  .container { padding-inline: 20px; }
  .g-2, .g-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-cta .btn-ghost { display: none; }
}
