/* ==========================================================================
   DIGEO — Design System & Styles
   Structuur/opbouw geïnspireerd op Brandfirm.nl (split-hero, donkere
   contrastbanden, grote tweekleurige koppen, social-proof balk) —
   met DIGEO's zwart + neon-mint als merkkleuren i.p.v. Brandfirm's oranje.
   Merkkleuren zijn 1-op-1 overgenomen uit het DIGEO-logo: #0FFFA1 (mint)
   en zwart. --blue* variabelen zijn intern zo genoemd gebleven maar
   bevatten nu de mint/emerald-kleurwaarden (minimale diff, zelfde gedrag).
   ========================================================================== */

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

:root {
  /* Surfaces — warm, licht crème i.p.v. klinisch wit */
  --bg: #fefcfb;
  --bg-soft: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f2f6fb;
  --surface-3: #eaf1fb;
  --border: #e7e5e2;
  --border-strong: #d8d5d1;

  /* Text — warm bijna-zwart i.p.v. koud navy-zwart */
  --text: #1c1c1e;
  --text-muted: #55575c;
  --text-dim: #8a8d93;

  /* Brand — egale kleuren, geen gradients. DIGEO = zwart + neon-mint.
     --blue is nu letterlijk het felle merk-mint (#0fffa1) — overal waar
     eerst blauw stond staat nu die kleur, zowel als tekst als achtergrond. */
  --blue: #0fffa1;
  --blue-hover: #05e695;
  --blue-accent: #0fffa1;
  --blue-tint: #e7fff6;
  --blue-tint-strong: #cffce7;
  --mint: #0fffa1;
  --on-mint: #0b0e0c;
  --mint-deep: #077a4d; /* leesbare, diepere mint-tint voor kleine tekst (11px labels e.d.) — puur mint is daar te licht */

  --green: #17a866;
  --green-tint: #e7f8f0;
  --amber: #c97a12;
  --amber-tint: #fbf1de;
  --red: #d9455a;
  --red-tint: #fdeced;
  --teal: #0f8f82;
  --teal-tint: #e4f6f4;

  /* Donkere contrastband — bijna zwart, subtiele blauwe ondertoon */
  --dark: #16171c;
  --dark-soft: #202128;
  --dark-border: #2d2e37;
  --dark-text-muted: #a3a5ad;

  --shadow-sm: 0 1px 2px rgba(18,24,42,.04), 0 1px 1px rgba(18,24,42,.03);
  --shadow-md: 0 8px 24px -8px rgba(18,24,42,.10);
  --shadow-lg: 0 24px 60px -20px rgba(18,24,42,.16);
  --shadow-button: 0 6px 16px -6px rgba(10,122,80,.45);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(.16,.8,.24,1);
  --container: 1180px;
}

/* ---- Reset ---- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: var(--font-heading); margin: 0; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--blue-tint-strong); color: var(--text); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d3dce8; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #b7c3d6; }

/* ---- Layout helpers ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: 104px 0; }
.section--tight { padding: 68px 0; }
.section-alt { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text);
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  background: var(--bg-soft);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse-dot 2s infinite; }

.section-header { max-width: 720px; margin: 0 0 44px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(27px, 3.6vw, 40px); line-height: 1.18; margin-top: 14px; }
.section-header p { color: var(--text-muted); font-size: 18px; margin-top: 14px; max-width: 620px; }
.section-header.center p { margin-left: auto; margin-right: auto; }

.eyebrow-label {
  display: inline-block; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 8px;
}

/* ---- Buttons — egale kleuren, geen gradients ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-size: 15.5px; font-weight: 700; border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--on-mint); box-shadow: var(--shadow-button); }
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(10,122,80,.55); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--dark); color: var(--text); }
.btn-on-blue { background: var(--dark); color: #fff; }
.btn-on-blue:hover { background: #000; transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-on-dark { background: #fff; color: var(--dark); }
.btn-on-dark:hover { background: var(--blue-tint); color: var(--text); transform: translateY(-1px); }
.btn-ghost { color: var(--text-muted); padding: 13px 4px; background: none; }
.btn-ghost:hover { color: var(--text); }
.btn-text-link { color: var(--text); font-weight: 700; font-size: 15.5px; display: inline-flex; align-items: center; gap: 6px; }
.btn-text-link:hover { text-decoration: underline; }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }
.btn svg { width: 16px; height: 16px; }

/* ---- CTA strip — herhaald conversiepunt ---- */
.cta-strip { background: var(--bg-soft); padding: 56px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-strip h3 { color: var(--text); font-size: clamp(22px, 2.6vw, 29px); margin-bottom: 22px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-strip.light { background: var(--blue-tint); }
.cta-strip.light h3 { color: var(--text); }
.cta-strip.dark { background: var(--dark); }
.cta-strip.dark h3 { color: #fff; }

/* ---- Tweekleurige kop: één uitgelicht woord/zin in blauw ---- */
.hl { color: var(--mint); }

/* ---- Donkere sectie (contrastband, zoals Brandfirm's zwarte banden) ---- */
.section-dark { background: var(--dark); color: #fff; }
.section-dark .eyebrow-label { color: var(--dark-text-muted); }
.section-dark .section-header h2, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-header p, .section-dark p { color: var(--dark-text-muted); }
.section-dark .hl { color: var(--mint); }
.section-dark .btn-text-link { color: #fff; }

/* ---- Manifest-sectie (merkuitspraak, centraal, groot) ---- */
.manifesto { text-align: center; max-width: 720px; margin: 0 auto; }
.manifesto .eyebrow-label { display: block; font-size: 14px; margin-bottom: 10px; }
.manifesto h2 { font-size: clamp(32px, 5vw, 52px); line-height: 1.15; }
.manifesto p { color: var(--text-muted); font-size: 18px; line-height: 1.7; margin-top: 22px; }
.manifesto .btn { margin-top: 30px; }

/* ---- Foto + tekst split (rustig, persoonlijk) ---- */
.photo-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.photo-split img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.photo-split-text .eyebrow-label { display: block; margin-bottom: 10px; }
.photo-split-text h2 { font-size: clamp(28px, 3.8vw, 40px); line-height: 1.2; }
.photo-split-text p { color: var(--text-muted); font-size: 17px; line-height: 1.75; margin-top: 20px; }
.photo-split-text .btn { margin-top: 28px; }
@media (max-width: 860px) {
  .photo-split { grid-template-columns: 1fr; gap: 34px; }
  .photo-split-text { text-align: center; }
}

/* ---- Case-spotlight (uitgelicht) ---- */
.spotlight { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--dark-soft); border: 1px solid var(--dark-border); display: flex; flex-direction: column; }
.spotlight-main { position: relative; flex: 1; min-height: 340px; display: flex; align-items: flex-end; }
.spotlight-logo-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .14; overflow: hidden; }
.spotlight-logo-bg .cf-wordmark { color: #fff; font-size: 90px; white-space: nowrap; }
.spotlight-card { position: relative; z-index: 1; background: #fff; border-radius: var(--radius-md); margin: 28px; padding: 30px 32px; max-width: 440px; box-shadow: var(--shadow-lg); }
.spotlight-card .eyebrow-label { margin-bottom: 10px; }
.spotlight-card p { font-size: 15.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.spotlight-nav { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; background: rgba(255,255,255,.04); border-top: 1px solid var(--dark-border); }
.spotlight-tabs { display: flex; gap: 22px; flex-wrap: wrap; }
.spotlight-tabs button { color: var(--dark-text-muted); font-size: 13.5px; font-weight: 700; opacity: .55; transition: opacity .2s, color .2s; background: none; }
.spotlight-tabs button.active { opacity: 1; color: #fff; }
.spotlight-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; transition: background .2s; }
.spotlight-arrow:hover { background: var(--dark-soft); }
.spotlight-arrow svg { width: 16px; height: 16px; }
@media (max-width: 640px) {
  .spotlight-card { max-width: none; margin: 18px; padding: 24px; }
  .spotlight-nav { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---- Social-proof logostrook (donker) ---- */
.logo-band-heading { text-align: center; margin-bottom: 40px; }
.logo-band-heading h2 { color: #fff; font-size: clamp(22px, 3vw, 30px); }
.logo-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; }
.logo-chip { background: #fff; border-radius: var(--radius-sm); padding: 14px 26px; display: flex; align-items: center; justify-content: center; height: 64px; opacity: .85; transition: opacity .2s, transform .2s; }
.logo-chip:hover { opacity: 1; transform: translateY(-2px); }
.logo-chip img { max-height: 32px; max-width: 130px; object-fit: contain; }
.logo-chip .cf-wordmark { font-size: 19px; }

/* ---- Ingebed lead-formulier (donkere band) ---- */
.lead-band { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.lead-band-text h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); }
.lead-band-text p { color: var(--dark-text-muted); font-size: 16px; margin-top: 16px; }
.lead-form-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
@media (max-width: 900px) {
  .lead-band { grid-template-columns: 1fr; }
}

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 16px 0; background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--border); padding: 12px 0; box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-left { display: flex; align-items: center; gap: 44px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 23px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { position: relative; }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -19px; height: 2px; background: var(--dark); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* ---- Hero ---- */
.hero { position: relative; padding: 150px 0 70px; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: clamp(33px, 5vw, 58px); line-height: 1.1; margin-top: 20px; }
.hero h1 .accent { color: var(--mint); }
.typewriter::after { content: ''; display: inline-block; width: 3px; height: .85em; background: var(--mint); margin-left: 4px; vertical-align: -0.1em; animation: caret-blink .9s step-end infinite; }
@keyframes caret-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .typewriter::after { animation: none; } }
.hero-sub { font-size: 19px; color: var(--text-muted); max-width: 620px; margin: 20px auto 0; }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 32px; }
.hero-reassure { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 34px; padding: 14px 22px; border-radius: var(--radius-full); background: var(--green-tint); border: 1px solid #bfe9d4; }
.hero-reassure span { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: #0c7a49; }
.hero-reassure span svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-reassure .sep { width: 4px; height: 4px; border-radius: 50%; background: #0c7a49; opacity: .4; }
@media (max-width: 640px) { .hero-reassure .sep { display: none; } .hero-reassure { flex-direction: column; align-items: flex-start; } }

/* ---- Split hero (homepage) — links tekst, rechts productbeeld ---- */
.hero--split { padding: 148px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-copy { text-align: left; }
.hero-copy .eyebrow { margin: 0; }
.hero-copy h1 { text-align: left; margin-top: 18px; }
.hero-copy .hero-sub { text-align: left; margin: 18px 0 0; }
.check-list { display: flex; flex-direction: column; gap: 11px; margin: 24px 0 30px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 600; color: var(--text); }
.check-list li svg { width: 19px; height: 19px; color: var(--green); flex-shrink: 0; }
.hero-copy .hero-cta { flex-direction: row; align-items: center; justify-content: flex-start; margin-top: 0; }

.hero-visual { position: relative; }
.hero-visual::before {
  content: ''; position: absolute; top: -40px; right: -60px; width: 120%; height: 130%;
  background: var(--blue-tint); clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0; border-radius: 28px;
}
.hero-preview {
  position: relative; z-index: 1; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; transform: rotate(1.2deg);
}
.hero-preview .dash-topbar { padding: 12px 18px; }
.hero-preview .dash-main { padding: 20px; }
.hero-preview .dash-hero-stat { margin-bottom: 16px; padding: 16px 18px; }
.hero-preview .dash-hero-stat .n { font-size: 32px; }
.hero-preview .dash-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.hero-preview .dash-stat { padding: 12px 14px; }
.hero-preview .dash-stat .num { font-size: 22px; }

/* ---- Hero flow-diagram (i.p.v. dashboard-mockup) — toont het automation-principe zelf ---- */
.hero-preview--flow { padding: 34px 30px 30px; }
@keyframes flow-content-in { from { opacity: 0; } to { opacity: 1; } }
.hero-preview--flow.is-swapping #flowIconA svg,
.hero-preview--flow.is-swapping .flow-step-text { animation: flow-content-in .22s var(--ease); }
@media (prefers-reduced-motion: reduce) { .hero-preview--flow.is-swapping #flowIconA svg, .hero-preview--flow.is-swapping .flow-step-text { animation: none; } }
.flow-live-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 22px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-dim);
}
.flow-live-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px var(--blue-tint); animation: pulse-dot 2s infinite; }
.flow-step { display: flex; align-items: center; gap: 15px; padding: 15px 17px; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--bg-soft); }
.flow-step-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-step-icon svg { width: 20px; height: 20px; }
.flow-step-text { font-size: 14.5px; font-weight: 700; color: var(--text); line-height: 1.3; }
.flow-step-label { display: block; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 3px; }
.flow-step--a .flow-step-icon, .flow-step--c .flow-step-icon { background: #fff; border: 1px solid var(--border-strong); color: var(--dark); }
.flow-step--b { background: var(--mint); border-color: var(--mint); }
.flow-step--b .flow-step-icon { background: var(--on-mint); color: var(--mint); }
.flow-step--b .flow-step-text, .flow-step--b .flow-step-label { color: var(--on-mint); }
.flow-link { display: flex; justify-content: flex-start; padding-left: 37px; height: 26px; position: relative; }
.flow-link::before { content: ''; position: absolute; left: 37px; top: 0; bottom: 0; width: 2px; background: var(--border-strong); }
.flow-link-dot { position: absolute; left: 33px; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); animation: flow-travel 2.2s ease-in-out infinite; }
@keyframes flow-travel { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: calc(100% - 8px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .flow-link-dot { animation: none; opacity: 1; top: 50%; } .flow-live-badge .dot { animation: none; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy .hero-sub { text-align: center; }
  .check-list { align-items: stretch; text-align: left; }
  .hero-copy .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-copy .hero-social-proof { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 50px auto 0; }
}

/* ---- Donkere CTA-band (contrast, zoals lokale dienstverleners doen) ---- */
.navy-band { background: var(--dark); padding: 44px 0; margin-top: 64px; }
.navy-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.navy-band-text { display: flex; align-items: center; gap: 16px; }
.navy-band-text .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--dark-soft); border: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.navy-band-text .ic svg { width: 22px; height: 22px; color: var(--blue-accent); }
.navy-band-text strong { display: block; color: #fff; font-size: 18px; }
.navy-band-text span { color: var(--dark-text-muted); font-size: 14.5px; }

/* ---- Subpage hero (kleiner, geen calculator eronder) ---- */
.hero--page { padding: 140px 0 70px; }
.hero--page .hero-inner { max-width: 720px; }
.hero--page h1 { font-size: clamp(30px, 4.4vw, 48px); }

/* ---- Decoratieve achtergrondvlekken (diepte, geen kale vlaktes) ---- */
.bg-blob { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; z-index: 0; }
.bg-blob.blue { background: radial-gradient(circle, rgba(10,122,80,.28), transparent 70%); }
.bg-blob.teal { background: radial-gradient(circle, rgba(15,143,130,.22), transparent 70%); }
.bg-blob.green { background: radial-gradient(circle, rgba(23,168,102,.22), transparent 70%); }

/* ---- Vertrouwensbalk ---- */
.trust-band-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); padding: 42px 0; }
.trust-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 34px; }
.trust-band-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--text-muted); }
.trust-band-item svg { width: 19px; height: 19px; color: var(--dark); flex-shrink: 0; }

/* ---- Hero social proof (sterren + aantal bedrijven) ---- */
.hero-social-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 24px; font-size: 14.5px; color: var(--text-muted); font-weight: 600; }
.hero-inner .hero-social-proof { justify-content: center; }
.hero-social-proof .stars { color: #f5a524; letter-spacing: 1px; font-size: 15px; line-height: 1; }
.hero-social-proof strong { color: var(--text); font-weight: 800; }
.hero-social-proof .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); flex-shrink: 0; }

/* ---- Logo marquee ("vertrouwd door") — zelfde opbouw/techniek als glansrijkbv.nl ---- */
.logo-ticker-heading { padding: 30px 0 24px; text-align: center; }
.logo-ticker-heading h2 { font-size: clamp(24px, 3vw, 32px); }
@media (min-width: 750px) { .logo-ticker-heading { padding: 40px 0 32px; } }
.logo-ticker-wrapper { width: 100%; overflow: hidden; padding: 24px 0 44px; background: var(--bg); }
.marquee { --gap: 2rem; position: relative; display: flex; overflow: hidden; user-select: none; gap: var(--gap); width: 100%; }
.marquee__content { flex-shrink: 0; display: flex; justify-content: space-around; align-items: center; gap: var(--gap); min-width: 100%; animation: marquee-scroll 25s linear 0s infinite normal none running; }
.marquee__content:last-child { position: absolute; top: 0; left: 0; animation: marquee-scroll-abs 25s linear 0s infinite normal none running; }
.logo-item { display: flex; align-items: center; padding: 0 1rem; }
.logo-link { display: block; transition: opacity .2s, transform .3s; }
.logo-link:hover { opacity: .75; }
.logo-item { width: 130px; height: 46px; }
.logo-item .logo-image { height: 46px; width: 130px; object-fit: contain; transition: transform .3s; }
.logo-item .cf-wordmark { width: 130px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; text-align: center; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% - var(--gap))); } }
@keyframes marquee-scroll-abs { 0% { transform: translateX(calc(100% + var(--gap))); } 100% { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .marquee__content { animation: none; } .marquee__content:last-child { display: none; } }

/* ---- Gekleurde icoon-varianten (visuele variatie i.p.v. overal hetzelfde blauw) ---- */
.card-icon.c-green { background: var(--green-tint); }
.card-icon.c-green svg { color: var(--green); }
.card-icon.c-amber { background: var(--amber-tint); }
.card-icon.c-amber svg { color: var(--amber); }
.card-icon.c-teal { background: var(--teal-tint); }
.card-icon.c-teal svg { color: var(--teal); }

/* ---- Kaart met visuele kop (kleurvlak i.p.v. foto) ---- */
.card-visual-wrap { padding: 0; overflow: hidden; }
.card-visual { height: 128px; display: flex; align-items: center; justify-content: center; position: relative; }
.card-visual::before { content: ''; position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(#fff 1.5px, transparent 1.5px); background-size: 15px 15px; }
.card-visual svg { width: 42px; height: 42px; color: #fff; position: relative; z-index: 1; }
.card-visual.v-blue { background: var(--blue); }
.card-visual.v-blue svg { color: var(--on-mint); }
.card-visual.v-green { background: var(--green); }
.card-visual.v-amber { background: var(--amber); }
.card-visual.v-teal { background: var(--teal); }
.card-visual--photo { height: 150px; overflow: hidden; background: var(--bg-soft); }
.card-visual--photo::before { display: none; }
.card-visual--photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card-visual-wrap:hover .card-visual--photo img { transform: scale(1.05); }
.card-visual-body { padding: 22px 24px 24px; }
.card-visual-body h3 { font-size: 16.5px; margin-bottom: 8px; }
.card-visual-body p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }

/* ---- Cards ---- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px; position: relative; transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { width: 46px; height: 46px; border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; background: var(--blue-tint); margin-bottom: 16px; }
.card-icon svg { width: 22px; height: 22px; color: var(--dark); }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

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

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: .06s; }
.reveal-delay-2.is-visible { transition-delay: .12s; }
.reveal-delay-3.is-visible { transition-delay: .18s; }
.reveal-delay-4.is-visible { transition-delay: .24s; }

/* ---- Problem/Solution & Outcome rows (herbruikt op meerdere plekken) ---- */
.ps-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.ps-row { display: grid; grid-template-columns: 1fr 40px 1fr; align-items: center; gap: 14px; padding: 24px 28px; border-bottom: 1px solid var(--border); border-left: 4px solid transparent; transition: background .2s; }
.ps-row:last-child { border-bottom: none; }
.ps-row:nth-child(even) { background: var(--bg-soft); }
.ps-row:hover { background: var(--blue-tint); }
.ps-row.v-blue { border-left-color: var(--blue); }
.ps-row.v-green { border-left-color: var(--green); }
.ps-row.v-amber { border-left-color: var(--amber); }
.ps-row.v-teal { border-left-color: var(--teal); }
.ps-problem { font-size: 18px; font-weight: 700; color: var(--text); }
.ps-problem .lbl { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; margin-bottom: 5px; }
.ps-arrow { display: flex; align-items: center; justify-content: center; color: var(--dark); }
.ps-arrow svg { width: 24px; height: 24px; }
.ps-solution { font-size: 18px; font-weight: 800; color: var(--text); }
.ps-solution .lbl { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--mint-deep); font-weight: 700; margin-bottom: 5px; }
@media (max-width: 720px) {
  .ps-row { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .ps-arrow { transform: rotate(90deg); justify-content: flex-start; padding-left: 2px; }
}

/* ---- Trust / AI credibility ---- */
.trust-lead { text-align: center; max-width: 780px; margin: 0 auto 40px; padding: 22px 30px; border-radius: var(--radius-md); background: var(--dark); }
.trust-lead p { color: #fff; font-size: 19px; font-weight: 700; line-height: 1.5; }
.trust-lead p .hl { color: var(--mint); text-decoration: none; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trust-card { display: flex; gap: 16px; padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--border); background: #fff; }
.trust-card .card-icon { margin-bottom: 0; flex-shrink: 0; }
.trust-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.trust-card p { font-size: 15px; color: var(--text-muted); }

/* ---- Human-in-the-loop — één sterke uitspraak ---- */
.hitl-statement { max-width: 740px; margin: 0 auto; text-align: center; }
.hitl-statement p { font-size: 19px; color: var(--text); font-weight: 500; line-height: 1.6; }
.hitl-statement p strong { color: var(--text); font-weight: 800; }
.hitl-badges { display: flex; justify-content: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hitl-badge { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: var(--radius-full); font-weight: 700; font-size: 15px; }
.hitl-badge.auto { background: var(--green-tint); color: #0c7a49; }
.hitl-badge.human { background: var(--amber-tint); color: var(--amber); }
.hitl-badge svg { width: 17px; height: 17px; }

/* ---- Dashboard demo ---- */
.dash-frame {
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: #fff; overflow: hidden; box-shadow: var(--shadow-lg);
}
.dash-topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.dash-dots { display: flex; gap: 7px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d8dfea; }
.dash-title { font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); }
.dash-badge { font-size: 12px; padding: 5px 11px; border-radius: var(--radius-full); background: var(--amber-tint); color: var(--amber); font-weight: 700; }
.dash-body { display: flex; min-height: 560px; }
.dash-sidebar { width: 214px; flex-shrink: 0; border-right: 1px solid var(--border); padding: 18px 12px; background: var(--bg-soft); }
.dash-sidebar a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: var(--radius-xs); font-size: 14.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 2px; transition: background .2s, color .2s; }
.dash-sidebar a svg { width: 16px; height: 16px; opacity: .7; }
.dash-sidebar a.active, .dash-sidebar a:hover { background: var(--blue-tint); color: var(--text); }
.dash-main { flex: 1; padding: 26px; min-width: 0; }

.dash-hero-stat { display: flex; align-items: center; gap: 22px; padding: 22px 24px; border-radius: var(--radius-sm); background: var(--mint); margin-bottom: 22px; }
.dash-hero-stat .n { font-family: var(--font-heading); font-size: 44px; font-weight: 800; color: var(--on-mint); line-height: 1; }
.dash-hero-stat .t { color: rgba(11,14,12,.75); font-size: 15.5px; font-weight: 700; max-width: 340px; }

.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.dash-stat { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 17px 18px; }
.dash-stat .num { font-family: var(--font-heading); font-size: 30px; font-weight: 800; }
.dash-stat .lbl { font-size: 13px; color: var(--text-dim); margin-top: 4px; font-weight: 700; }
.dash-stat.warn .num { color: var(--amber); }

.dash-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.dash-table th { text-align: left; font-weight: 700; color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; padding: 0 12px 10px; border-bottom: 1px solid var(--border); }
.dash-table td { padding: 13px 12px; border-bottom: 1px solid var(--border); color: var(--text); font-weight: 600; }
.dash-table tr:last-child td { border-bottom: none; }
.status-live { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 700; font-size: 13.5px; }
.status-live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse-dot 1.8s infinite; }

.dash-feed-panel { margin-top: 22px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; }
.dash-feed-panel h4 { font-size: 13.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 12px; }
.feed-list { display: flex; flex-direction: column; gap: 0; height: 230px; overflow: hidden; }
.feed-item { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; opacity: 0; animation: feed-in .5s var(--ease) forwards; }
.feed-item:last-child { border-bottom: none; }
.feed-item .t { font-family: var(--font-mono); color: var(--text-dim); flex-shrink: 0; font-size: 12.5px; padding-top: 1px; }
.feed-item .m { color: var(--text); font-weight: 600; }
.dash-note { text-align: center; margin-top: 16px; font-size: 12.5px; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: .04em; }

/* ---- Solutions / tabs ---- */
.solutions-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.tab-btn { padding: 10px 18px; border-radius: var(--radius-full); border: 1.5px solid var(--border); background: #fff; color: var(--text-muted); font-size: 14.5px; font-weight: 700; transition: all .2s; }
.tab-btn:hover { border-color: var(--dark); color: var(--text); }
.tab-btn.active { background: var(--dark); border-color: var(--dark); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tab-panel-text h3 { font-size: 23px; margin-bottom: 10px; }
.tab-panel-text p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 22px; }
.tab-list { display: flex; flex-direction: column; gap: 10px; }
.tab-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text); background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 12px 15px; }
.tab-list li svg { width: 15px; height: 15px; color: var(--dark); flex-shrink: 0; }
.tab-visual { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; }

/* ---- Simple compare (chaos vs centraal) ---- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: var(--radius-md); padding: 30px; border: 1px solid var(--border); background: #fff; }
.compare-col.good { border-color: var(--green); background: var(--green-tint); }
.compare-col h4 { font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); margin-bottom: 18px; font-weight: 700; color: var(--text-dim); }
.compare-col.good h4 { color: var(--green); }
.compare-big-list { display: flex; flex-direction: column; gap: 14px; }
.compare-big-list div { font-size: 17.5px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.compare-col:not(.good) .compare-big-list div::before { content: '✕'; color: var(--red); font-weight: 800; }
.compare-col.good .compare-big-list div::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ---- Calculator ---- */
.calc-box { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-lg); }
.calc-inputs { padding: 42px; }
.calc-field { margin-bottom: 30px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.calc-field-head label { font-size: 15px; font-weight: 700; color: var(--text); }
.calc-field-head .val { font-family: var(--font-mono); font-weight: 700; color: var(--text); font-size: 16px; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 4px;
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark) var(--pct,50%), var(--surface-3) var(--pct,50%), var(--surface-3) 100%);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--dark); box-shadow: 0 2px 6px rgba(18,24,42,.2); cursor: pointer;
}
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--dark); cursor: pointer; }
.calc-range-labels { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-dim); margin-top: 8px; }
.calc-results { background: var(--dark); padding: 42px; display: flex; flex-direction: column; justify-content: center; }
.calc-results-label { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 700; }
.calc-results-num { font-family: var(--font-heading); font-size: 44px; font-weight: 800; margin: 6px 0 26px; letter-spacing: -.02em; color: var(--mint); }
.calc-results-sub { font-size: 14px; color: rgba(255,255,255,.7); }
.calc-results-num.small { font-size: 27px; margin-bottom: 8px; color: var(--mint); }
.calc-divider { height: 1px; background: rgba(255,255,255,.15); margin: 22px 0; }
.calc-highlight { font-size: 23px; font-weight: 800; color: var(--mint); }
.calc-disclaimer { font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 26px; line-height: 1.5; }
.calc-results .btn { margin-top: 22px; }

/* ---- Growth calc ---- */
.growth-box { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.growth-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.growth-card .n { font-family: var(--font-heading); font-size: 42px; font-weight: 800; margin: 10px 0 4px; }
.growth-card .lbl { font-size: 14px; font-weight: 700; }
.growth-card.without { border-color: var(--border-strong); }
.growth-card.without .n, .growth-card.without .lbl { color: var(--text); }
.growth-card.with { border-color: var(--green); background: var(--green-tint); }
.growth-card.with .n, .growth-card.with .lbl { color: var(--green); }

/* ---- Booking ---- */
.booking-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: #fff; min-height: 560px; box-shadow: var(--shadow-lg); }
.booking-side { padding: 42px; background: var(--blue-tint); border-right: 1px solid var(--border); }
.booking-side h3 { font-size: 21px; margin-bottom: 12px; }
.booking-side p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.booking-meta { display: flex; flex-direction: column; gap: 14px; }
.booking-meta div { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--text-muted); }
.booking-meta svg { width: 17px; height: 17px; color: var(--dark); }
.booking-steps { display: flex; gap: 8px; margin-top: 30px; }
.booking-steps span { flex: 1; height: 3px; border-radius: 2px; background: var(--border-strong); }
.booking-steps span.done, .booking-steps span.active { background: var(--dark); }
.booking-main { padding: 42px; }
.booking-panel { display: none; }
.booking-panel.active { display: block; animation: fade-in .4s var(--ease); }
.booking-panel h4 { font-size: 17px; margin-bottom: 18px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 22px; }
.cal-dow { text-align: center; font-size: 12px; color: var(--text-dim); font-weight: 700; padding-bottom: 6px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-xs); font-size: 14px; font-weight: 600; color: var(--text-muted); border: 1px solid transparent; cursor: pointer; transition: all .15s; }
.cal-day:hover:not(.disabled) { background: var(--blue-tint); border-color: var(--border-strong); }
.cal-day.disabled { color: #d3dce8; cursor: not-allowed; }
.cal-day.selected { background: var(--dark); color: #fff; font-weight: 700; }
.cal-day.empty { visibility: hidden; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-slot { padding: 12px; text-align: center; border-radius: var(--radius-xs); border: 1px solid var(--border); background: var(--bg-soft); font-size: 14.5px; font-weight: 700; color: var(--text-muted); cursor: pointer; transition: all .15s; }
.time-slot:hover { border-color: var(--dark); color: var(--text); }
.time-slot.selected { background: var(--dark); border-color: var(--dark); color: #fff; }
.time-slot.taken { text-decoration: line-through; opacity: .35; cursor: not-allowed; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--text-muted); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-xs); color: var(--text); font-size: 15px; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--dark); }
.form-group textarea { resize: vertical; min-height: 80px; }
.chip-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-select button { padding: 9px 15px; border-radius: var(--radius-full); border: 1.5px solid var(--border); background: #fff; color: var(--text-muted); font-size: 14px; font-weight: 700; transition: all .15s; }
.chip-select button.selected { background: var(--bg-soft); border-color: var(--dark); color: var(--text); }
.booking-actions { display: flex; justify-content: space-between; margin-top: 26px; gap: 12px; }
.booking-confirm { text-align: center; padding: 20px 0; }
.confirm-icon { width: 66px; height: 66px; border-radius: 50%; background: var(--green-tint); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.confirm-icon svg { width: 32px; height: 32px; color: var(--green); }
.confirm-details { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; margin: 20px 0; text-align: left; font-size: 14.5px; }
.confirm-details div { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); }
.confirm-details div:last-child { border-bottom: none; }
.confirm-details span:first-child { color: var(--text-dim); }
.confirm-details span:last-child { font-weight: 700; }
.form-error { font-size: 13px; color: var(--red); margin-top: 6px; display: none; }
.form-error.show { display: block; }

/* ---- Sectors ---- */
.sector-card { display: flex; flex-direction: column; height: 100%; }
.sector-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.sector-card .tags span { font-size: 12.5px; padding: 5px 10px; border-radius: var(--radius-full); background: var(--blue-tint); color: var(--text); font-weight: 700; }

/* ---- Werkwijze — grote nummers ---- */
.werkwijze-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; position: relative; }
.werkwijze-grid::before { content: ''; position: absolute; top: 26px; left: 26px; right: 26px; height: 2px; background: var(--border-strong); z-index: 0; }
.ww-row { position: relative; z-index: 1; text-align: left; }
.ww-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
  font-weight: 800; font-size: 19px; box-shadow: 0 0 0 6px #fff, var(--shadow-button); margin-bottom: 18px;
}
.ww-text h3 { font-size: 16.5px; margin-bottom: 6px; }
.ww-text p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 900px) {
  .werkwijze-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .werkwijze-grid::before { display: none; }
}
@media (max-width: 560px) {
  .werkwijze-grid { grid-template-columns: 1fr; }
}

/* ---- API custom flow (compact) ---- */
.api-flow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.api-flow .node { padding: 13px 22px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--border); font-size: 14px; font-weight: 700; }
.api-flow .node.brand { background: var(--dark); color: #fff; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; border-color: var(--dark); }
.api-flow .arrow { color: var(--text-dim); }
.api-flow .arrow svg { width: 18px; height: 18px; }

/* ---- Cases — groot, logo-first (Brandfirm-stijl) ---- */
.case-grid-big { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.case-feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.case-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cf-logo-panel {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); padding: 34px 44px; border-bottom-width: 5px; border-bottom-style: solid;
}
.cf-logo-panel img { max-height: 84px; max-width: 78%; object-fit: contain; }
.cf-wordmark { font-family: var(--font-heading); font-weight: 800; font-size: 32px; letter-spacing: -.01em; }
.cf-sector { position: relative; }
.cf-sector .eyebrow-label { position: absolute; top: 18px; left: 24px; background: rgba(255,255,255,.92); padding: 5px 12px; border-radius: var(--radius-full); margin: 0; }
.cf-body { padding: 28px 32px 32px; }
.cf-headline { font-family: var(--font-heading); font-size: 24px; line-height: 1.28; font-weight: 800; margin-bottom: 14px; }
.cf-headline .hl { display: block; }
.cf-headline .rest { display: block; color: var(--text); }
.cf-body p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.cf-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 700; color: var(--text); }
.cf-link:hover { text-decoration: underline; }
.cf-link svg { width: 14px; height: 14px; }
@media (max-width: 860px) {
  .case-grid-big { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; gap: 20px; }
.faq-q h4 { font-size: 16.5px; font-weight: 700; }
.faq-q .icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1.5px solid var(--border-strong); transition: transform .3s var(--ease), background .3s; }
.faq-q .icon svg { width: 12px; height: 12px; transition: transform .3s var(--ease); color: var(--text-muted); }
.faq-item.open .faq-q .icon { background: var(--dark); border-color: var(--dark); }
.faq-item.open .faq-q .icon svg { transform: rotate(45deg); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 0 22px; color: var(--text-muted); font-size: 15.5px; max-width: 660px; line-height: 1.65; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 23px; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 26px; }
.contact-channel { display: flex; align-items: center; gap: 14px; padding: 17px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: #fff; margin-bottom: 12px; transition: all .2s; }
.contact-channel:hover { border-color: var(--dark); }
.contact-channel .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-channel .txt strong { display: block; font-size: 15px; }
.contact-channel .txt span { font-size: 13.5px; color: var(--text-dim); }

/* ---- Footer ---- */
.footer { padding: 72px 0 30px; background: var(--dark); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--dark-text-muted); max-width: 260px; line-height: 1.6; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--dark-text-muted); margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; font-size: 14.5px; color: #fff; opacity: .85; margin-bottom: 10px; transition: opacity .2s, color .2s; font-weight: 500; }
.footer-col a:hover { opacity: 1; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--dark-border); font-size: 13px; color: var(--dark-text-muted); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--dark-text-muted); transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #17b866; box-shadow: 0 10px 26px -8px rgba(23,184,102,.55);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; color: #fff; }

/* ---- Results ---- */
.result-card { text-align: center; padding: 28px 18px; }
.result-card h3 { font-size: 15.5px !important; }
.result-card svg { width: 22px; height: 22px; }

/* ---- Animations ---- */
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes feed-in { to { opacity: 1; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .dash-sidebar { width: 170px; }
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-xs); border: 1px solid var(--border-strong); flex-shrink: 0; }
  .nav-toggle svg { width: 18px; height: 18px; }
  .hero { padding: 120px 0 50px; }
  .hero--page { padding: 110px 0 60px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .compare, .contact-grid, .growth-box { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .calc-box, .booking-shell { grid-template-columns: 1fr; }
  .booking-side { border-right: none; border-bottom: 1px solid var(--border); }
  .dash-body { flex-direction: column; }
  .dash-sidebar { width: 100%; display: flex; overflow-x: auto; gap: 4px; border-right: none; border-bottom: 1px solid var(--border); padding: 12px; }
  .dash-sidebar a { white-space: nowrap; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 15px 24px; font-size: 15.5px; }
  .hero-flow { gap: 10px; }
  .dash-hero-stat { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .dash-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Kennisbank — artikel-overzicht en artikelpagina's (SEO/GEO-content)
   ========================================================================== */
.kb-card-title { font-size: 17px; margin: 4px 0 8px; line-height: 1.35; }
.kb-meta { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); margin-top: 14px; }
.kb-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); }

.article-hero { padding: 150px 0 46px; }
.article-hero .container { max-width: 760px; }
.article-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); margin: 18px 0 4px; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: clamp(22px, 2.6vw, 27px); margin: 46px 0 16px; line-height: 1.28; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 19px; margin: 30px 0 12px; }
.article-body p { font-size: 16.5px; line-height: 1.8; color: var(--text-muted); margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { font-size: 16.5px; line-height: 1.8; color: var(--text-muted); margin-bottom: 9px; }
.article-body li strong, .article-body p strong { color: var(--text); }
.article-callout { background: var(--blue-tint); border: 1px solid var(--blue-tint-strong); border-radius: var(--radius-md); padding: 22px 26px; margin: 30px 0; }
.article-callout p { color: var(--text); font-weight: 700; margin: 0; font-size: 16px; }
.article-cta-inline { margin: 44px 0 12px; text-align: center; padding: 34px; background: var(--bg-soft); border-radius: var(--radius-md); }
.article-cta-inline p { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.article-back { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--text-muted); margin-bottom: 22px; }
.article-back:hover { color: var(--text); }
.article-back svg { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .article-hero { padding: 130px 0 34px; }
}
