/* ==========================================================================
   Orderpunt — website
   Merk: tegel met punt · navy #1E2154 · indigo #6366F1 · Space Grotesk + Inter
   ========================================================================== */

:root {
  /* Merk */
  --navy: #1E2154;
  --navy-2: #282C6B;
  --navy-deep: #14173D;
  --indigo: #6366F1;
  --indigo-600: #4F46E5;
  --indigo-700: #4338CA;
  --indigo-100: #E0E3FD;
  --indigo-50: #EEF0FE;

  /* Neutraal */
  --ink: #171A2C;
  --text: #3D4152;
  --muted: #6B6F80;
  --line: #E6E6EB;
  --line-2: #F0F0F3;
  --bg: #FFFFFF;
  --bg-soft: #F6F6F3;
  --bg-tint: #F5F5FC;

  /* Status (zoals in de beheeromgeving) */
  --orange: #E8751A;
  --orange-50: #FDF0E4;
  --green: #15803D;
  --green-50: #E6F5EB;
  --blue: #2563EB;
  --blue-50: #E7EEFD;
  --red: #DC2626;
  --red-50: #FDECEC;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(23, 26, 44, .06);
  --shadow: 0 1px 2px rgba(23, 26, 44, .06), 0 8px 24px rgba(23, 26, 44, .07);
  --shadow-lg: 0 2px 6px rgba(23, 26, 44, .06), 0 30px 70px rgba(23, 26, 44, .16);

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --gutter: 24px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--display); letter-spacing: -.025em; line-height: 1.1; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }

.i { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.i-sm { width: 16px; height: 16px; }
.i-lg { width: 24px; height: 24px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 48px); }
.section-head p { margin-top: 18px; font-size: 18px; color: var(--muted); text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--indigo-600); margin-bottom: 16px;
}
.eyebrow .dot, .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--indigo); flex: 0 0 auto; }
.punt { color: var(--indigo); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 10px; border: 1px solid transparent;
  font-size: 15px; font-weight: 600; line-height: 1; white-space: nowrap; cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { height: 52px; padding: 0 26px; font-size: 16px; border-radius: 12px; }
.btn-primary { background: var(--indigo-600); color: #fff; box-shadow: 0 1px 2px rgba(67, 56, 202, .3), inset 0 1px 0 rgba(255, 255, 255, .12); }
.btn-primary:hover { background: var(--indigo-700); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: #CFCFD8; background: #FAFAFB; }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { background: var(--line-2); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--indigo-50); }
.btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); }
.btn .i { width: 18px; height: 18px; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--indigo-600); }
.link-arrow .i { width: 16px; height: 16px; transition: transform .15s ease; }
.link-arrow:hover .i { transform: translateX(3px); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
.logo-mark { width: 32px; height: 32px; }
.logo-word { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; line-height: 1; }
.logo-light { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--text); transition: background-color .15s ease, color .15s ease; }
.main-nav a:hover { background: var(--line-2); color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.nav-toggle .i-close { display: none; }
.nav-open .nav-toggle .i-open { display: none; }
.nav-open .nav-toggle .i-close { display: block; }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
  background: #fff; padding: 16px var(--gutter) 32px; overflow-y: auto;
}
.mobile-nav a.m-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid var(--line-2); font-size: 18px; font-weight: 600; color: var(--ink); }
.mobile-nav .m-actions { display: grid; gap: 10px; margin-top: 24px; }
.nav-open .mobile-nav { display: block; }
.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 48px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(30, 33, 84, .11) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; z-index: -2; left: 50%; top: -240px; width: 1100px; height: 700px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(99, 102, 241, .16), transparent);
}
.hero-copy { max-width: 860px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(40px, 7vw, 80px); letter-spacing: -.04em; line-height: 1.02; text-wrap: balance; }
.hero-lead { margin: 24px auto 0; max-width: 640px; font-size: clamp(17px, 2vw, 20px); color: var(--muted); text-wrap: pretty; }
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; font-size: 14px; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .i { width: 16px; height: 16px; color: var(--indigo-600); stroke-width: 2.5; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
  padding: 6px 14px 6px 6px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--text); box-shadow: var(--shadow-sm);
}
.pill-badge b { background: var(--navy); color: #fff; font-size: 12px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }

.hero-visual { position: relative; margin: 64px auto 0; max-width: 1120px; padding-bottom: 40px; }

/* ---------- App-mockup (beheeromgeving) ---------- */
.app-window {
  position: relative; border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid rgba(23, 26, 44, .08); box-shadow: var(--shadow-lg);
  font-family: var(--font); color: var(--ink); text-align: left;
}
.app-bar { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: #F4F4F6; border-bottom: 1px solid var(--line); }
.app-bar > i { width: 11px; height: 11px; border-radius: 50%; background: #DADAE0; }
.app-url { margin: 0 auto; transform: translateX(-24px); font-size: 12px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 3px 14px; }
.app-body { display: grid; grid-template-columns: 232px 1fr; min-height: 540px; }

.app-side { background: var(--navy); color: rgba(255, 255, 255, .78); padding: 18px 12px; display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.app-side .as-title { color: #fff; font-weight: 700; font-size: 16px; padding: 2px 10px 12px; letter-spacing: -.01em; }
.app-side .as-chip { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 9px; background: rgba(255, 255, 255, .07); margin-bottom: 10px; }
.app-side .as-av { width: 28px; height: 28px; border-radius: 7px; background: var(--navy-deep); color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; flex: 0 0 auto; }
.app-side .as-chip small { display: block; font-size: 10px; color: rgba(255, 255, 255, .45); line-height: 1.2; }
.app-side .as-chip strong { display: block; font-size: 12px; color: #fff; line-height: 1.3; }
.app-side .as-sec { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, .45); padding: 14px 10px 6px; }
.app-side .as-item { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 8px; font-weight: 500; }
.app-side .as-item .i { width: 16px; height: 16px; opacity: .9; }
.app-side .as-item.active { background: var(--indigo); color: #fff; font-weight: 600; }
.app-side .as-count { margin-left: auto; font-size: 10px; font-weight: 700; background: var(--indigo); color: #fff; border-radius: 999px; padding: 1px 7px; }
.app-side .as-item.active .as-count { background: rgba(255, 255, 255, .22); }

.app-main { padding: 22px 24px 26px; background: #FAFAFB; min-width: 0; }
.am-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.am-crumbs { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.am-head h3 { font-family: var(--font); font-size: 22px; letter-spacing: -.02em; }
.am-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-50); padding: 5px 10px; border-radius: 999px; }
.am-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 1.8s ease-out infinite; }

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.kpi small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }
.kpi strong { display: block; font-size: 19px; letter-spacing: -.02em; margin-top: 2px; }
.kpi em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--green); }

.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.col-h { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.col-h b { font-size: 10px; background: var(--line-2); color: var(--muted); padding: 1px 7px; border-radius: 999px; margin-left: auto; }
.col-h .dot { width: 7px; height: 7px; }
.col { display: flex; flex-direction: column; gap: 8px; }
.order { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 11px; font-size: 11px; box-shadow: var(--shadow-sm); }
.order-top { display: flex; justify-content: space-between; align-items: center; gap: 6px; margin-bottom: 4px; }
.order-top strong { font-size: 12px; }
.order-meta { color: var(--muted); }
.order-items { color: var(--text); margin: 4px 0 8px; line-height: 1.45; }
.order-foot { display: flex; justify-content: space-between; align-items: center; }
.order-foot strong { font-size: 12px; }
.order.is-new { border-color: var(--indigo-100); box-shadow: 0 0 0 3px var(--indigo-50); }

.tag { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.tag-indigo { background: var(--indigo-50); color: var(--indigo-700); }
.tag-orange { background: var(--orange-50); color: #B45309; }
.tag-blue { background: var(--blue-50); color: var(--blue); }
.tag-green { background: var(--green-50); color: var(--green); }
.tag-gray { background: var(--line-2); color: var(--muted); }

/* Zwevende elementen in de hero */
.float-phone { position: absolute; right: -40px; bottom: 0; width: 250px; z-index: 3; }
.toast {
  position: absolute; left: -24px; bottom: 90px; z-index: 3; width: 290px;
  display: flex; gap: 12px; align-items: center; padding: 14px 16px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); text-align: left;
  animation: toast-in .6s cubic-bezier(.2, .8, .2, 1) 1.2s both;
}
.toast-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--navy); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.toast-icon .i { width: 18px; height: 18px; }
.toast strong { display: block; font-size: 14px; color: var(--ink); line-height: 1.3; }
.toast span { display: block; font-size: 13px; color: var(--muted); line-height: 1.35; }

/* ---------- Telefoon-mockup (bestelsite klant) ---------- */
.phone {
  position: relative; width: 100%; max-width: 280px; aspect-ratio: 9 / 19; margin: 0 auto;
  border-radius: 40px; background: #0F1024; padding: 9px; box-shadow: var(--shadow-lg);
}
.phone-screen { position: relative; height: 100%; border-radius: 32px; overflow: hidden; background: #fff; display: flex; flex-direction: column; font-size: 11px; color: var(--ink); text-align: left; }
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 76px; height: 22px; border-radius: 999px; background: #0F1024; z-index: 2; }
.ps-hero { height: 108px; flex: 0 0 auto; background: linear-gradient(135deg, #3A2A1B, #7A4A22 55%, #C0782E); position: relative; }
.ps-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 30%, rgba(255, 200, 120, .45), transparent 45%); }
.ps-brand { margin: -22px 14px 0; position: relative; z-index: 1; background: #fff; border-radius: 14px; padding: 10px 12px; box-shadow: 0 6px 16px rgba(0, 0, 0, .1); }
.ps-brand strong { display: block; font-size: 14px; letter-spacing: -.01em; }
.ps-brand span { color: var(--muted); font-size: 10px; }
.ps-brand .ps-open { color: var(--green); font-weight: 600; }
.ps-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--line-2); padding: 3px; border-radius: 9px; margin: 10px 14px 0; font-weight: 600; font-size: 10px; text-align: center; }
.ps-toggle span { padding: 5px; border-radius: 7px; color: var(--muted); }
.ps-toggle span.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.ps-cats { display: flex; gap: 6px; padding: 10px 14px 4px; overflow: hidden; }
.ps-cats span { padding: 5px 10px; border-radius: 999px; background: var(--line-2); font-weight: 600; font-size: 10px; white-space: nowrap; color: var(--text); }
.ps-cats span.on { background: var(--navy); color: #fff; }
.ps-list { padding: 4px 14px; display: flex; flex-direction: column; flex: 1 1 auto; overflow: hidden; }
.ps-item { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line-2); align-items: center; }
.ps-item div { flex: 1 1 auto; min-width: 0; }
.ps-item strong { display: block; font-size: 11px; }
.ps-item small { display: block; color: var(--muted); font-size: 9.5px; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-item em { font-style: normal; font-weight: 600; font-size: 10.5px; }
.ps-thumb { width: 42px; height: 42px; border-radius: 10px; flex: 0 0 auto; }
.ps-add { width: 24px; height: 24px; border-radius: 50%; background: var(--indigo-50); color: var(--indigo-700); display: grid; place-items: center; flex: 0 0 auto; font-weight: 700; font-size: 14px; line-height: 1; }
.ps-cart { margin: 8px 12px 14px; background: var(--indigo-600); color: #fff; border-radius: 12px; padding: 11px 14px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 11px; flex: 0 0 auto; }
.ps-cart b { background: rgba(255, 255, 255, .2); border-radius: 6px; padding: 1px 6px; margin-right: 6px; }

/* Productdetail in telefoon */
.ps-product-img { height: 150px; flex: 0 0 auto; background: radial-gradient(circle at 50% 55%, #F4D19B 0 26%, #E0A458 27% 30%, #C8742F 31% 38%, #7A3F18 39% 100%); position: relative; }
.ps-product-img::before { content: ""; position: absolute; left: 50%; top: 55%; width: 120px; height: 120px; transform: translate(-50%, -50%); border-radius: 50%; background:
  radial-gradient(circle at 35% 40%, #C0392B 0 7px, transparent 8px),
  radial-gradient(circle at 62% 35%, #C0392B 0 7px, transparent 8px),
  radial-gradient(circle at 55% 65%, #C0392B 0 7px, transparent 8px),
  radial-gradient(circle at 40% 70%, #FFF6E0 0 9px, transparent 10px),
  radial-gradient(circle at 68% 55%, #FFF6E0 0 8px, transparent 9px),
  radial-gradient(circle at 30% 50%, #3E7D32 0 4px, transparent 5px),
  radial-gradient(circle at 58% 48%, #3E7D32 0 4px, transparent 5px),
  radial-gradient(circle, #E9B26A 0 58%, #D38B3A 59% 100%); }
.ps-body { padding: 14px; flex: 1 1 auto; overflow: hidden; }
.ps-body h4 { font-family: var(--font); font-size: 15px; letter-spacing: -.01em; }
.ps-body p { color: var(--muted); font-size: 10px; margin-top: 3px; line-height: 1.45; }
.ps-group { margin-top: 12px; }
.ps-group-h { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 11px; margin-bottom: 6px; }
.ps-opt { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--line-2); font-size: 10.5px; }
.ps-opt span { flex: 1 1 auto; }
.ps-opt em { font-style: normal; color: var(--muted); }
.ps-radio, .ps-check { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid #C8C8D0; flex: 0 0 auto; }
.ps-check { border-radius: 4px; }
.ps-radio.on { border: 4px solid var(--indigo-600); }
.ps-check.on { background: var(--indigo-600); border-color: var(--indigo-600); position: relative; }
.ps-check.on::after { content: ""; position: absolute; left: 3.5px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 1.6px 1.6px 0; transform: rotate(45deg); }

/* Eten-thumbnails (CSS, geen foto's) */
.food-pizza { background: radial-gradient(circle at 50% 50%, #E9B26A 0 45%, #C8742F 46% 55%, #F4E8D6 56%); }
.food-pizza2 { background: radial-gradient(circle at 38% 42%, #B8382B 0 10%, transparent 11%), radial-gradient(circle at 62% 60%, #B8382B 0 10%, transparent 11%), radial-gradient(circle at 50% 50%, #E9B26A 0 45%, #C8742F 46% 55%, #F4E8D6 56%); }
.food-pasta { background: radial-gradient(circle at 50% 50%, #F2C46D 0 38%, #E8A94A 39% 44%, #fff 45% 55%, #EDE7DF 56%); }
.food-salad { background: radial-gradient(circle at 40% 40%, #D94A3A 0 9%, transparent 10%), radial-gradient(circle at 50% 50%, #6BAA4B 0 45%, #fff 46% 55%, #E8EFE3 56%); }
.food-tiramisu { background: linear-gradient(180deg, #6B4226 0 30%, #F3E3C9 30% 55%, #A56B3D 55% 70%, #F3E3C9 70%); }

/* ---------- Voor wie (strip) ---------- */
.audience { padding: 56px 0 8px; }
.audience p { text-align: center; font-size: 14px; font-weight: 500; color: var(--muted); margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: var(--ink); }
.chip .i { width: 17px; height: 17px; color: var(--indigo-600); }

/* ---------- Pijlers ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar { position: relative; padding: 28px 24px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.pillar h3 { font-size: 20px; margin: 20px 0 10px; }
.pillar p { font-size: 15px; color: var(--muted); }
.pillar .link-arrow { margin-top: 18px; font-size: 14px; }
.icon-tile { width: 48px; height: 48px; border-radius: 14px; background: var(--navy); color: #fff; display: grid; place-items: center; position: relative; }
.icon-tile::after { content: ""; position: absolute; right: -3px; bottom: -3px; width: 12px; height: 12px; border-radius: 50%; background: var(--indigo); border: 2.5px solid #fff; }
.icon-tile .i { width: 22px; height: 22px; }
.icon-soft { width: 44px; height: 44px; border-radius: 12px; background: var(--indigo-50); color: var(--indigo-600); display: grid; place-items: center; flex: 0 0 auto; }
.icon-soft .i { width: 21px; height: 21px; }

/* ---------- Feature-rijen ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-row + .feature-row { margin-top: 128px; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-copy h2 { font-size: clamp(30px, 3.6vw, 42px); }
.feature-copy > p { margin-top: 18px; font-size: 18px; color: var(--muted); text-wrap: pretty; }
.checklist { margin-top: 28px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text); }
.checklist li strong { color: var(--ink); font-weight: 600; }
.check { width: 22px; height: 22px; border-radius: 50%; background: var(--indigo-50); color: var(--indigo-600); display: grid; place-items: center; flex: 0 0 auto; margin-top: 1px; }
.check .i { width: 13px; height: 13px; stroke-width: 3; }
.feature-copy .link-arrow { margin-top: 28px; }

.feature-visual { position: relative; min-height: 460px; border-radius: 28px; background: var(--bg-tint); display: grid; place-items: center; padding: 40px; overflow: hidden; }
.feature-visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(30, 33, 84, .09) 1.2px, transparent 1.2px); background-size: 22px 22px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%); mask-image: linear-gradient(180deg, #000, transparent 85%); }
.feature-visual > * { position: relative; }
.feature-visual.navy { background: var(--navy); }
.feature-visual.navy::before { background-image: radial-gradient(rgba(255, 255, 255, .09) 1.2px, transparent 1.2px); }

.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }

/* QR / tafel */
.table-demo { display: grid; grid-template-columns: 190px 1fr; gap: 16px; align-items: center; width: 100%; max-width: 480px; }
.qr-tent { background: #fff; border-radius: 18px; padding: 18px; text-align: center; box-shadow: var(--shadow-lg); }
.qr-tent small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.qr-tent strong { display: block; font-family: var(--display); font-size: 24px; color: var(--navy); letter-spacing: -.02em; margin: 2px 0 12px; }
.qr-code { width: 124px; height: 124px; margin: 0 auto; display: grid; grid-template-columns: repeat(11, 1fr); gap: 1.5px; padding: 8px; border: 1px solid var(--line); border-radius: 10px; }
.qr-code i { background: var(--navy); border-radius: 1.5px; }
.qr-code i.o { background: transparent; }
.qr-tent p { font-size: 12px; color: var(--muted); margin-top: 12px; }
.session { padding: 18px; }
.session-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.session-h strong { font-size: 15px; color: var(--ink); }
.session-row { display: flex; justify-content: space-between; font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--line-2); }
.session-row span { color: var(--muted); }
.session-row b { color: var(--ink); font-weight: 600; }
.rounds { display: flex; gap: 5px; margin: 12px 0 4px; }
.rounds i { flex: 1; height: 6px; border-radius: 999px; background: var(--line); }
.rounds i.on { background: var(--indigo); }
.session-total { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 14px; }
.session-total strong { font-size: 18px; color: var(--ink); letter-spacing: -.01em; }

/* Spaarkaart / cadeaubon */
.loyalty-demo { width: 100%; max-width: 420px; display: grid; gap: 16px; }
.stampcard { padding: 22px; }
.stampcard-h { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.stampcard-h strong { display: block; font-size: 17px; color: var(--ink); letter-spacing: -.01em; }
.stampcard-h span { font-size: 13px; color: var(--muted); }
.stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 18px 0 14px; }
.stamps i { aspect-ratio: 1; border-radius: 50%; border: 2px dashed #D5D5DE; display: grid; place-items: center; }
.stamps i.on { border: none; background: var(--navy); position: relative; }
.stamps i.on::after { content: ""; width: 34%; height: 34%; border-radius: 50%; background: var(--indigo); transform: translate(28%, 28%); }
.stamps i.reward { border: 2px solid var(--indigo); color: var(--indigo-600); }
.stamps i.reward .i { width: 18px; height: 18px; }
.progress { height: 8px; border-radius: 999px; background: var(--line-2); overflow: hidden; }
.progress i { display: block; height: 100%; width: 70%; background: var(--indigo); border-radius: inherit; }
.stampcard-foot { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: 10px; }
.stampcard-foot b { color: var(--ink); }
.loyalty-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: 16px; }
.giftcard { border-radius: 16px; padding: 18px; color: #fff; background: var(--navy); position: relative; overflow: hidden; min-height: 140px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow); }
.giftcard::after { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; border-radius: 50%; background: var(--indigo); opacity: .9; }
.giftcard > * { position: relative; z-index: 1; }
.giftcard small { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .65); }
.giftcard strong { font-family: var(--display); font-size: 32px; letter-spacing: -.03em; }
.giftcard code { font-size: 11px; color: rgba(255, 255, 255, .7); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.promo { padding: 16px; display: flex; flex-direction: column; justify-content: space-between; gap: 10px; }
.promo code { align-self: flex-start; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; font-size: 13px; color: var(--indigo-700); background: var(--indigo-50); border: 1px dashed #B9BDF8; border-radius: 8px; padding: 5px 9px; }
.promo p { font-size: 13px; color: var(--text); line-height: 1.45; }
.promo span { font-size: 12px; color: var(--muted); }

/* Dagafsluiting / rapportage */
.report-demo { width: 100%; max-width: 440px; display: grid; gap: 16px; }
.closing { padding: 20px 22px; }
.closing-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.closing-h strong { font-size: 16px; color: var(--ink); }
.closing-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--line-2); }
.closing-row span { color: var(--muted); }
.closing-row b { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.closing-row.neg b { color: var(--red); }
.closing-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; }
.closing-total span { font-weight: 600; color: var(--ink); }
.closing-total strong { font-size: 24px; color: var(--ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.chart-card { padding: 18px 20px; }
.chart-card-h { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.chart-card-h b { color: var(--ink); font-size: 14px; }
.seg { display: inline-flex; background: var(--line-2); border-radius: 8px; padding: 2px; font-size: 11px; font-weight: 600; }
.seg span { padding: 3px 8px; border-radius: 6px; }
.seg span.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 110px; margin-top: 16px; }
.bars div { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bars i { width: 100%; border-radius: 6px 6px 3px 3px; background: var(--indigo-100); }
.bars div.on i { background: var(--indigo); }
.bars span { font-size: 11px; color: var(--muted); }

/* Zwevende mini-kaartjes in feature-visuals */
.feature-visual .mini { position: absolute; z-index: 2; display: flex; gap: 10px; align-items: center; padding: 10px 14px 10px 10px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.feature-visual .mini small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }
.feature-visual .mini .icon-soft { width: 34px; height: 34px; border-radius: 9px; }
.feature-visual .mini .icon-soft .i { width: 17px; height: 17px; }
.feature-visual .mini.tl { top: 36px; left: 28px; }
.feature-visual .mini.tr { top: 28px; right: 28px; }
.feature-visual .mini.br { bottom: 40px; right: 28px; }

/* Prijs-teaser */
.teaser { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 32px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.teaser strong { font-family: var(--display); font-size: 22px; color: var(--ink); letter-spacing: -.02em; }
.teaser p { color: var(--muted); margin-top: 4px; font-size: 15px; }

/* ---------- Voor / na vergelijking ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-card { border-radius: var(--radius-lg); padding: 36px; }
.compare-card h3 { font-size: 22px; margin-bottom: 6px; }
.compare-card > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.compare-card ul { display: grid; gap: 12px; }
.compare-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.compare-before { background: #fff; border: 1px solid var(--line); }
.compare-before li .x { width: 22px; height: 22px; border-radius: 50%; background: var(--line-2); color: var(--muted); display: grid; place-items: center; flex: 0 0 auto; }
.compare-before li .x .i { width: 12px; height: 12px; stroke-width: 3; }
.compare-before li { color: var(--muted); }
.compare-after { background: var(--navy); color: rgba(255, 255, 255, .86); position: relative; overflow: hidden; }
.compare-after::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 200px; height: 200px; border-radius: 50%; background: var(--indigo); opacity: .35; filter: blur(10px); }
.compare-after h3 { color: #fff; }
.compare-after > p { color: rgba(255, 255, 255, .6); }
.compare-after .check { background: var(--indigo); color: #fff; }
.compare-after > * { position: relative; z-index: 1; }

/* ---------- Waarom (grid) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why { padding: 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.why h3 { font-family: var(--font); font-size: 18px; letter-spacing: -.01em; margin: 18px 0 8px; font-weight: 700; }
.why p { font-size: 15px; color: var(--muted); }

/* ---------- Stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; position: relative; }
.step { padding: 32px 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); position: relative; }
.step-num { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--indigo-600); display: inline-flex; align-items: center; gap: 10px; }
.step-num::before { counter-increment: step; content: counter(step); width: 36px; height: 36px; border-radius: 11px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 16px; }
.step h3 { font-size: 20px; margin: 20px 0 8px; }
.step p { font-size: 15px; color: var(--muted); }
.step small { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--muted); background: var(--line-2); padding: 4px 10px; border-radius: 999px; }

/* ---------- Prijzen ---------- */
.price-card { display: grid; grid-template-columns: 400px 1fr; border-radius: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-main { position: relative; overflow: hidden; background: var(--navy); color: rgba(255, 255, 255, .75); padding: 44px 40px; display: flex; flex-direction: column; }
.price-main::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .09) 1.2px, transparent 1.2px); background-size: 22px 22px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%); mask-image: linear-gradient(180deg, #000, transparent 70%); }
.price-main::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 200px; height: 200px; border-radius: 50%; background: var(--indigo); opacity: .45; }
.price-main > * { position: relative; z-index: 1; }
.price-label { align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(255, 255, 255, .1); padding: 5px 12px; border-radius: 999px; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 28px 0 6px; }
.price strong { font-family: var(--display); font-size: 72px; letter-spacing: -.05em; color: #fff; line-height: 1; }
.price span { font-size: 17px; color: rgba(255, 255, 255, .6); }
.price-plus { font-size: 18px; color: rgba(255, 255, 255, .85); }
.price-plus strong { font-family: var(--display); font-size: 26px; color: #fff; letter-spacing: -.02em; }
.price-note { font-size: 14px; color: rgba(255, 255, 255, .55); margin-top: 10px; }
.price-main .btn { margin-top: 32px; }
.price-main small { display: block; margin-top: 14px; font-size: 13px; color: rgba(255, 255, 255, .55); text-align: center; }
.price-features { padding: 44px 44px 40px; }
.price-features h2 { font-size: 30px; }
.price-features > p { color: var(--muted); margin-top: 8px; }
.pf-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin-top: 28px; }
.pf-groups h3 { font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pf-groups ul { display: grid; gap: 10px; }
.pf-groups li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.pf-groups li .i { width: 18px; height: 18px; color: var(--indigo-600); stroke-width: 2.6; margin-top: 3px; }

.included { margin-top: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 24px 28px; border-radius: var(--radius-lg); background: var(--bg-tint); }
.included div { display: flex; gap: 12px; align-items: center; font-size: 14px; font-weight: 500; color: var(--ink); }

/* Rekenvoorbeeld */
.calc { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; padding: 40px; max-width: 980px; margin: 0 auto; align-items: center; }
.calc-inputs { display: grid; gap: 36px; }
.calc-label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.calc-label label { font-weight: 600; color: var(--ink); }
.calc-label output { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--indigo-600); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.calc-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
.calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: linear-gradient(to right, var(--indigo) var(--fill, 13%), var(--line) var(--fill, 13%)); cursor: pointer; }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 2px solid var(--indigo-600); box-shadow: var(--shadow); }
.calc input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--indigo-600); box-shadow: var(--shadow); }
.calc input[type="range"]:focus-visible { outline: 3px solid var(--indigo); outline-offset: 8px; }
.calc-result { background: var(--navy); color: rgba(255, 255, 255, .7); border-radius: 18px; padding: 28px; }
.calc-row { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.calc-row b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-top: 16px; }
.calc-total span { color: #fff; font-weight: 600; }
.calc-total strong { font-family: var(--display); font-size: 36px; color: #fff; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.calc-pct { margin-top: 14px; font-size: 14px; line-height: 1.5; }
.calc-pct b { color: #fff; }
.calc-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.faq-wrap .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 32px); }
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; transition: border-color .15s ease, box-shadow .15s ease; }
.faq details[open] { border-color: transparent; box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 600; font-size: 17px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .i { color: var(--muted); transition: transform .2s ease; }
.faq details[open] summary .i { transform: rotate(180deg); color: var(--indigo-600); }
.faq .answer { padding: 0 22px 22px; color: var(--muted); font-size: 16px; }
.faq .answer a { color: var(--indigo-600); font-weight: 600; }

/* ---------- CTA-band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 32px; background: var(--navy); color: rgba(255, 255, 255, .75); padding: 88px 40px; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .1) 1.2px, transparent 1.2px); background-size: 24px 24px; -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 80%); mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000, transparent 80%); }
.cta-band::after { content: ""; position: absolute; right: 8%; bottom: -120px; width: 280px; height: 280px; border-radius: 50%; background: var(--indigo); opacity: .55; filter: blur(4px); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(32px, 5vw, 56px); letter-spacing: -.035em; max-width: 760px; margin: 0 auto; }
.cta-band p { font-size: 18px; max-width: 560px; margin: 20px auto 0; }
.cta-band .hero-ctas { margin-top: 36px; }
.cta-band small { display: block; margin-top: 22px; font-size: 14px; color: rgba(255, 255, 255, .55); }
.cta-band small a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Page hero (subpagina's) ---------- */
.page-hero { position: relative; padding: 88px 0 72px; text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(rgba(30, 33, 84, .1) 1.2px, transparent 1.2px); background-size: 24px 24px; -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 0%, #000 10%, transparent 75%); mask-image: radial-gradient(ellipse 60% 70% at 50% 0%, #000 10%, transparent 75%); }
.page-hero h1 { font-size: clamp(38px, 6vw, 68px); letter-spacing: -.04em; max-width: 900px; margin: 0 auto; }
.page-hero p { max-width: 640px; margin: 22px auto 0; font-size: 19px; color: var(--muted); text-wrap: pretty; }
.subnav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 36px; }
.subnav a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: 15px; color: var(--ink); transition: border-color .15s ease, background-color .15s ease; }
.subnav a:hover { border-color: var(--indigo); background: var(--indigo-50); }
.subnav .i { width: 17px; height: 17px; color: var(--indigo-600); }

/* ---------- Functies (grid) ---------- */
.cat { padding: 96px 0; border-top: 1px solid var(--line); }
.cat:first-of-type { border-top: none; }
.cat-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.cat-head h2 { font-size: clamp(30px, 4vw, 44px); }
.cat-head p { font-size: 18px; color: var(--muted); text-wrap: pretty; }
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fcard { padding: 26px; border-radius: 18px; border: 1px solid var(--line); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.fcard:hover { border-color: transparent; box-shadow: var(--shadow); }
.fcard h3 { font-family: var(--font); font-size: 17px; font-weight: 700; letter-spacing: -.01em; margin: 16px 0 6px; }
.fcard p { font-size: 15px; color: var(--muted); }
.fcard .tag { margin-left: 6px; vertical-align: 2px; }

/* Beheer-showcase (formulier zoals in de backend) */
.showcase { padding: 0 0 112px; }
.form-mock { padding: 26px 28px; max-width: 620px; }
.fm-crumbs { font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.fm-title { font-family: var(--font); font-size: 22px; letter-spacing: -.02em; margin: 6px 0 18px; }
.fm-card { border: 1px solid var(--line); border-radius: 12px; }
.fm-card-h { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.fm-card-h strong { display: block; font-size: 15px; color: var(--ink); }
.fm-card-h span { font-size: 12px; color: var(--muted); }
.fm-card-b { padding: 16px 18px; display: grid; gap: 14px; }
.fm-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.fm-field label em { color: var(--red); font-style: normal; }
.fm-input { height: 36px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; display: flex; align-items: center; font-size: 13px; color: var(--ink); background: #fff; }
.fm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fm-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); padding: 3px 0; }
.fm-check i { width: 16px; height: 16px; border: 1.5px solid #C8C8D0; border-radius: 4px; }
.fm-check i.on { background: var(--indigo-600); border-color: var(--indigo-600); }
.fm-toggle { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink); }
.fm-toggle i { width: 36px; height: 20px; border-radius: 999px; background: var(--indigo-600); position: relative; }
.fm-toggle i::after { content: ""; position: absolute; right: 2px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; }
.fm-actions { display: flex; gap: 8px; margin-top: 16px; }
.fm-btn { height: 34px; padding: 0 14px; border-radius: 8px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; }
.fm-btn.p { background: var(--indigo-600); color: #fff; }
.fm-btn.s { border: 1px solid var(--line); color: var(--ink); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: center; }
.showcase .app-window .app-body { grid-template-columns: 210px 1fr; min-height: 0; }
.showcase .app-main { background: #fff; }

/* ---------- Demo / formulier ---------- */
.demo-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: start; padding-top: 72px; padding-bottom: 112px; }
.demo-copy h1 { font-size: clamp(38px, 5vw, 60px); letter-spacing: -.04em; }
.demo-copy > p { margin-top: 20px; font-size: 19px; color: var(--muted); }
.demo-copy .checklist { margin-top: 32px; }
.contact-card { margin-top: 40px; padding: 22px; display: flex; gap: 16px; align-items: center; }
.contact-card strong { display: block; color: var(--ink); }
.contact-card a { color: var(--indigo-600); font-weight: 600; }
.contact-lines { display: grid; gap: 2px; font-size: 15px; }
.avatars { display: flex; }
.avatars span { width: 44px; height: 44px; border-radius: 50%; border: 3px solid #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #fff; background: var(--navy); }
.avatars span + span { margin-left: -12px; background: var(--indigo-600); }

.form-card { padding: 36px; }
.form-card h2 { font-size: 26px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; height: 46px; padding: 0 14px; border-radius: 10px; border: 1px solid #DADAE2; background: #fff; font-size: 15px; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { height: 110px; padding: 12px 14px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6F80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 4px var(--indigo-50); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-50); }
.field .err { font-size: 13px; color: var(--red); display: none; }
.field .err.show { display: block; }
.consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--indigo-600); flex: 0 0 auto; }
.consent a { color: var(--indigo-600); font-weight: 600; }
.form-card .btn { margin-top: 24px; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-error { margin-top: 16px; padding: 12px 14px; border-radius: 10px; background: var(--red-50); color: #991B1B; font-size: 14px; }
.form-error a { font-weight: 600; text-decoration: underline; }
.btn:disabled { opacity: .7; cursor: progress; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success .icon-tile { margin: 0 auto 24px; }
.form-success h2 { font-size: 28px; }
.form-success p { color: var(--muted); margin-top: 10px; }
.form-card.is-sent form, .form-card.is-sent > h2, .form-card.is-sent > p { display: none; }
.form-card.is-sent .form-success { display: block; }

/* ---------- Tekstpagina (juridisch) ---------- */
.prose { max-width: 720px; margin: 0 auto; padding: 24px 0 112px; }
.prose h2 { font-size: 24px; margin: 40px 0 12px; }
.prose p, .prose li { font-size: 16px; color: var(--text); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.notice { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: 14px; background: var(--orange-50); color: #7C3F0A; font-size: 15px; }
.notice .i { color: var(--orange); margin-top: 2px; }

/* ---------- 404 ---------- */
.notfound { min-height: calc(100vh - var(--header-h) - 200px); display: grid; place-items: center; text-align: center; padding: 96px 0; }
.notfound .big { font-family: var(--display); font-weight: 700; font-size: clamp(96px, 18vw, 180px); letter-spacing: -.06em; color: var(--navy); line-height: 1; }
.notfound .big .punt { display: inline-block; animation: bounce 2.4s ease-in-out infinite; }
.notfound h1 { font-size: clamp(26px, 3vw, 34px); margin-top: 16px; }
.notfound p { color: var(--muted); margin: 12px auto 32px; max-width: 460px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .6); padding: 80px 0 36px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px; }
.footer-brand p { margin-top: 18px; font-size: 15px; max-width: 300px; }
.footer-col h4 { font-family: var(--font); font-size: 14px; font-weight: 600; color: #fff; letter-spacing: 0; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 14px; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #fff; }

.cta-wrap { padding: 0 0 112px; }

/* ---------- Animatie ---------- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(21, 128, 61, .45); } 70% { box-shadow: 0 0 0 7px rgba(21, 128, 61, 0); } 100% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 961px) {
  .hero .app-main { padding-right: 230px; }
}
@media (min-width: 961px) and (max-width: 1100px) {
  .hero .board, .hero .kpis { grid-template-columns: repeat(3, 1fr); }
  .hero .board .col:nth-child(4), .hero .kpi:nth-child(4) { display: none; }
}

@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .float-phone { right: -8px; width: 220px; }
  .toast { left: 8px; }
  .feature-row { gap: 48px; }
  .included { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .main-nav, .header-actions .hide-m { display: none; }
  .nav-toggle { display: inline-flex; }
  .section { padding: 88px 0; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-copy { order: 0; }
  .feature-row + .feature-row { margin-top: 96px; }
  .compare, .why-grid, .steps { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .calc { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .faq-wrap .section-head { position: static; }
  .cat-head { grid-template-columns: 1fr; gap: 16px; }
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .demo-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .app-body { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .showcase .app-window .app-body { grid-template-columns: 1fr; }
  .float-phone { display: none; }
  .toast { left: 50%; bottom: -8px; transform: translateX(-50%); animation: none; }
}

@media (max-width: 720px) {
  :root { --gutter: 16px; --header-h: 64px; }
  .pill-badge { padding: 6px 14px; font-size: 13px; }
  .pill-badge b { display: none; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding-top: 48px; }
  .hero-ctas .btn { width: 100%; }
  .hero-visual { margin-top: 44px; padding-bottom: 56px; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .board { grid-template-columns: repeat(2, 1fr); }
  .board .col:nth-child(n+3) { display: none; }
  .app-main { padding: 16px 14px 18px; }
  .am-head h3 { font-size: 18px; }
  .app-url { transform: none; }
  .toast { width: calc(100% - 32px); max-width: 320px; }
  .pillars, .why-grid, .fgrid { grid-template-columns: 1fr; }
  .feature-visual { min-height: 0; padding: 28px 16px; border-radius: 22px; }
  .table-demo { grid-template-columns: 1fr; justify-items: center; }
  .table-demo .session { width: 100%; }
  .loyalty-row { grid-template-columns: 1fr; }
  .feature-visual .mini { display: none; }
  .teaser { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .teaser .btn { width: 100%; }
  .compare-card { padding: 28px 22px; }
  .cta-band { padding: 64px 22px; border-radius: 24px; }
  .cta-band .btn { width: 100%; }
  .included { grid-template-columns: 1fr; }
  .price-main, .price-features { padding: 32px 22px; }
  .price strong { font-size: 60px; }
  .pf-groups { grid-template-columns: 1fr; gap: 24px; }
  .calc { padding: 24px 18px; gap: 28px; }
  .calc-result { padding: 22px; }
  .calc-total strong { font-size: 28px; }
  .form-card { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .fm-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .cat { padding: 72px 0; }
  .page-hero { padding: 56px 0 48px; }
  .faq summary { font-size: 16px; padding: 18px; }
  .faq .answer { padding: 0 18px 18px; }
}
