/* ==========================================================================
   Stuur.ai — Design System
   Modern, helder, mensgericht, strategisch en praktisch.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Kleurenpalet */
  --navy-900: #0a142e;
  --navy-800: #0e1c3d;
  --navy-700: #142a55;
  --navy-600: #1d3a6e;
  --navy-500: #2b4d87;

  --ink: #111a30;
  --slate: #45526b;
  --muted: #6b7895;
  --line: #e4e9f2;
  --line-soft: #eef2f8;

  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-softer: #f0f4fa;

  --accent: #ff6a3d;        /* opvallende accentkleur */
  --accent-dark: #e8552a;
  --accent-soft: #fff1eb;

  --sky: #4f8df9;           /* subtiel AI/tech-accent */
  --sky-soft: #eef4ff;
  --teal: #18b4a6;

  --white: #ffffff;

  /* Typografie */
  --font-head: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  /* Maatvoering */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(16, 26, 48, 0.06);
  --shadow: 0 14px 40px rgba(16, 26, 48, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 26, 48, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset -------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;        /* voorkomt horizontaal scrollen zonder sticky te breken */
  width: 100%;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1rem; color: var(--slate); }

/* ---- Layout helpers ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-soft); }
.section-navy {
  background: var(--navy-800);
  color: #cdd7ea;
  position: relative;
  overflow: hidden;
}
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 { color: #fff; }
.section-navy p { color: #aab6d0; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.measure { max-width: 720px; }
.measure-sm { max-width: 560px; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---- Eyebrow / labels --------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-navy .eyebrow { color: #ff8a64; }
.eyebrow.center { justify-content: center; }

.lead {
  font-size: 1.18rem;
  color: var(--slate);
  line-height: 1.6;
}
.section-navy .lead { color: #bcc7e0; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 106, 61, 0.32);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 106, 61, 0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover {
  border-color: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy-600); }
.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---- Header / navigatie ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand .dot { color: var(--accent); }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 11px;
  border-radius: 9px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Serif gradient accent --------------------------------------------- */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
  background: linear-gradient(95deg, #ff9c6b 0%, #ff6a3d 26%, #f4d7c4 55%, #a9c2f2 80%, #7fa8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.04em;
}

/* ---- Hero (donker) ------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #c4d0e8;
  background:
    radial-gradient(620px 460px at 12% 92%, rgba(79, 141, 249, 0.22), transparent 62%),
    radial-gradient(680px 520px at 92% 6%, rgba(255, 106, 61, 0.14), transparent 58%),
    linear-gradient(180deg, #0a1530 0%, #0a1c3e 58%, #0c2249 100%);
  padding: 90px 0 100px;
}
.hero::before {                       /* subtiele puntjes/sterrenveld */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1.5px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 38%, #000 0%, transparent 78%);
          mask-image: radial-gradient(80% 70% at 50% 38%, #000 0%, transparent 78%);
  opacity: 0.45;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.05rem);
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero .lead { margin-bottom: 32px; max-width: 560px; color: #aab7d4; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #aebad6;
  margin-bottom: 28px;
}
.hero-badge .star { color: var(--accent); font-size: 0.9rem; line-height: 1; }
.hero-badge .sep { opacity: 0.4; }

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.hero-trust .trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #8f9cbb; }
.hero-trust .trust-item svg { width: 18px; height: 18px; color: var(--teal); flex: none; }

/* Hero visual (code/dashboard mock) */
.hero-visual { position: relative; }
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar .dot.r { background: #ff6159; }
.mock-bar .dot.y { background: #ffbd2e; }
.mock-bar .dot.g { background: #28c840; }
.mock-bar .tab {
  margin-left: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--muted);
}
.mock-body { padding: 20px; font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace; font-size: 0.82rem; line-height: 1.85; }
.code-line { white-space: pre-wrap; }
.c-key { color: #c0468a; }
.c-fn { color: var(--sky); }
.c-str { color: var(--teal); }
.c-com { color: var(--muted); }
.c-num { color: var(--accent-dark); }

.hero-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-head);
}
.hero-chip .ic {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none;
}
.hero-chip .ic svg { width: 18px; height: 18px; }
.hero-chip small { display: block; font-weight: 400; font-family: var(--font-body); color: var(--muted); font-size: 0.78rem; }
.hero-chip.one { bottom: -22px; left: -26px; }
.hero-chip.two { top: -20px; right: -18px; }

/* Hero-visual donker (glas) binnen donkere hero */
.hero .mock {
  background: rgba(14, 26, 54, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}
.hero .mock-bar { background: rgba(255, 255, 255, 0.04); border-bottom-color: rgba(255, 255, 255, 0.08); }
.hero .mock-bar .tab { color: #8f9cbb; }
.hero .c-com { color: #6b7aa0; }
.hero .c-key { color: #ff8ac0; }
.hero .hero-chip {
  background: rgba(16, 28, 58, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}
.hero .hero-chip small { color: #93a0c0; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4ddec; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.98rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--sky-soft);
  color: var(--sky);
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.accent { background: var(--accent-soft); color: var(--accent-dark); }
.card-icon.teal { background: #e3f7f4; color: var(--teal); }
.card-icon.navy { background: #e8edf7; color: var(--navy-600); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-dark);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-600);
  background: var(--bg-softer);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---- Problem / check list ---------------------------------------------- */
.q-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.q-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.q-item .qm {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
}
.q-item p { margin: 0; color: var(--ink); font-weight: 500; font-size: 0.98rem; }

.check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.check-list li svg { flex: none; width: 22px; height: 22px; color: var(--teal); margin-top: 2px; }
.check-list li span { color: var(--slate); }
.check-list li strong { color: var(--ink); }

/* ---- Steps / aanpak ----------------------------------------------------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--line);
  -webkit-text-stroke: 1px var(--navy-500);
  color: transparent;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; }

/* ---- Split feature ------------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
}
.panel-head .glyph { width: 26px; height: 26px; border-radius: 7px; background: var(--sky-soft); color: var(--sky); display: grid; place-items: center; }
.panel-head .glyph svg { width: 15px; height: 15px; }
.panel-body { padding: 22px; }

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.kpi {
  background: var(--bg-soft); border-radius: var(--radius-sm); padding: 16px;
}
.kpi .v { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.kpi .l { font-size: 0.78rem; color: var(--muted); }
.bar { height: 8px; border-radius: 8px; background: var(--line-soft); overflow: hidden; margin: 9px 0 16px; }
.bar > i { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, var(--sky), var(--teal)); }
.row-line { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--slate); margin-bottom: 6px; }

/* ---- Example chips ------------------------------------------------------ */
.example-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.example {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.example:hover { transform: translateY(-3px); border-color: var(--sky); }
.example .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--sky-soft); color: var(--sky); display: grid; place-items: center; margin-bottom: 14px; }
.example .ic svg { width: 21px; height: 21px; }
.example h4 { margin-bottom: 5px; font-size: 1rem; color: var(--ink); }
.example p { margin: 0; font-size: 0.88rem; color: var(--slate); }

/* ---- Profiles ----------------------------------------------------------- */
.profile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.profile-top { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.avatar {
  width: 78px; height: 78px; border-radius: 20px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: #fff;
}
.avatar.erik { background: linear-gradient(135deg, var(--accent), #ff9a6b); }
.avatar.floris { background: linear-gradient(135deg, var(--navy-600), var(--sky)); }
.profile-top h3 { margin: 0 0 3px; }
.profile-role { font-size: 0.9rem; color: var(--accent-dark); font-weight: 600; font-family: var(--font-head); }
.profile .skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.profile .skills span {
  font-size: 0.8rem; font-weight: 500; color: var(--slate);
  background: var(--bg-soft); border: 1px solid var(--line-soft);
  padding: 6px 12px; border-radius: 999px;
}

/* ---- CTA band ----------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 90% 10%, rgba(255, 106, 61, 0.28), transparent 60%),
    radial-gradient(400px 280px at 5% 100%, rgba(79, 141, 249, 0.3), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3cde2; }

/* ---- Stats -------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat { text-align: center; }
.stat .v { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); line-height: 1; }
.section-navy .stat .v { color: #fff; }
.stat .l { font-size: 0.92rem; color: var(--muted); margin-top: 8px; }

/* ---- Forms -------------------------------------------------------------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 141, 249, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.callout {
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 13px 16px;
}
.callout strong { color: var(--ink); font-weight: 600; }
.form-success {
  display: none;
  background: #e9f9f2;
  border: 1px solid #b8ead2;
  color: #11754f;
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 500;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

.contact-actions { display: grid; gap: 12px; }
.contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.contact-action:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-action .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; }
.contact-action .ic svg { width: 21px; height: 21px; }
.contact-action h4 { margin: 0 0 2px; font-size: 1rem; }
.contact-action p { margin: 0; font-size: 0.86rem; }

/* ---- Page hero (interne pagina's) -------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #c4d0e8;
  background:
    radial-gradient(620px 380px at 88% -10%, rgba(79, 141, 249, 0.20), transparent 60%),
    radial-gradient(560px 360px at 6% 110%, rgba(255, 106, 61, 0.12), transparent 58%),
    linear-gradient(180deg, #0a1530 0%, #0b1d40 100%);
  padding: 72px 0 64px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.5px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(90% 80% at 50% 30%, #000 0%, transparent 80%);
          mask-image: radial-gradient(90% 80% at 50% 30%, #000 0%, transparent 80%);
  opacity: 0.4;
  pointer-events: none;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { max-width: 680px; color: #aab7d4; }
.page-hero .eyebrow { color: #ff8a64; }
.page-hero .badge-soft { background: rgba(255, 255, 255, 0.06); color: #cdd7ea; }
.page-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.page-hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.4); }
.breadcrumb { font-size: 0.85rem; color: #8f9cbb; margin-bottom: 18px; }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb span { margin: 0 7px; opacity: 0.5; }

/* ---- Accordion ---------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.acc-btn .chev { flex: none; width: 24px; height: 24px; transition: transform 0.25s var(--ease); color: var(--accent); }
.acc-btn[aria-expanded="true"] .chev { transform: rotate(45deg); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--ease); }
.acc-panel p { padding-bottom: 24px; margin: 0; }

/* ---- Pricing / pakketten ------------------------------------------------ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--navy-600);
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured::before {
  content: "Meest gekozen";
  position: absolute;
  top: -12px; left: 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .price-desc { font-size: 0.92rem; min-height: 48px; }
.price-card .feat-list { margin: 22px 0 26px; }
.price-card .feat-list li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; font-size: 0.94rem; color: var(--slate); }
.price-card .feat-list li svg { flex: none; width: 19px; height: 19px; color: var(--teal); margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ---- Logos / partner strip --------------------------------------------- */
.tool-strip { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.tool-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--slate);
}
.tool-pill .d { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }

/* ---- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: #9fabc7;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #8a98b8; max-width: 320px; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.95rem; color: #9fabc7; transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: grid; place-items: center; color: #cfd8ea;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; font-size: 0.85rem; color: #7886a6;
}
.footer-bottom a:hover { color: #fff; }

/* ---- Misc helpers ------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider-note { font-size: 0.92rem; color: var(--muted); }
.badge-soft {
  display: inline-block; background: var(--sky-soft); color: var(--navy-600);
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}

/* Scroll-reveal als progressive enhancement: alleen verbergen wanneer JS draait,
   zodat de inhoud zichtbaar blijft als JavaScript faalt. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .example-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1000px) {
  .nav-links,
  .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 22px;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .site-header.open .nav-links a { padding: 13px 12px; font-size: 1.05rem; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured::before { left: 32px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .q-grid { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: repeat(3, 1fr); }
  .cta-band { padding: 38px 26px; }
  .form-wrap { padding: 26px; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-num { font-size: 1.9rem; }
  .hero-chip.one { left: 0; bottom: -16px; }
  .hero-chip.two { right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
