/* ============================================================
   0. RESET & BOX MODEL
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --navy:        #13172B;
  --navy-light:  #1E2440;
  --navy-border: #2D3458;
  --orange:      #F97316;
  --orange-mid:  #FB923C;
  --orange-dark: #C2530A;
  --orange-glow: rgba(249, 115, 22, 0.12);
  --cream:       #FAF9F6;
  --white:       #FFFFFF;
  --n900: #1E293B;
  --n700: #334155;
  --n500: #64748B;
  --n400: #94A3B8;
  --n200: #E2E8F0;
  --n100: #F0F2F5;
  --n50:  #F8F9FA;
  --gray-800: var(--n900);
  --gray-600: var(--n500);
  --gray-400: var(--n400);
  --gray-200: var(--n200);
  --gray-100: var(--n100);
  --gray-50:  var(--n50);
  --green:         #10B981;
  --green-light:   rgba(16, 185, 129, 0.10);
  --success:       #10B981;
  --success-light: rgba(16, 185, 129, 0.10);
  --error:         #F87171;
  --warning:       #FBBF24;
  --font-display: 'Syne', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:    8px;
  --radius-pill: 9999px;
  --s4:   4px;
  --s8:   8px;
  --s12: 12px;
  --s16: 16px;
  --s24: 24px;
  --s32: 32px;
  --s48: 48px;
  --s64: 64px;
  --s80: 80px;
  --s96: 96px;
  --sh-xs:     0 1px  4px rgba(0, 0, 0, 0.05);
  --sh-sm:     0 2px  8px rgba(0, 0, 0, 0.07);
  --sh-md:     0 4px 16px rgba(0, 0, 0, 0.09);
  --sh-lg:     0 8px 32px rgba(0, 0, 0, 0.12);
  --sh-orange: 0 6px 20px rgba(249, 115, 22, 0.28);
  --sh-green:  0 4px 14px rgba(16, 185, 129, 0.25);
  --max-width:      1080px;
  --max-width-wide: 1200px;
  --section-pad:    100px 5vw;
  --section-pad-md:  72px 5vw;
}


/* ============================================================
   2. BASE TYPOGRAFIE & BODY
   ============================================================ */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--n900);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--n900);
}

h1 { font-size: clamp(36px, 6vw, 68px);  letter-spacing: -1.5px; }
h2 { font-size: clamp(26px, 4vw, 42px);  letter-spacing: -0.8px; }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(16px, 1.8vw, 20px); }
h5 { font-size: 17px; }
h6 { font-size: 15px; }

p {
  font-size: 15px;
  color: var(--n500);
  line-height: 1.7;
}

p + p { margin-top: var(--s16); }

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover { color: var(--orange-dark); }

strong, b { font-weight: 700; color: var(--n900); }

em { font-style: normal; }

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol { list-style: none; }


/* ============================================================
   3. LAYOUT HULPKLASSEN
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 5vw;
}

.container--wide {
  max-width: var(--max-width-wide);
  margin-inline: auto;
  padding-inline: 5vw;
}

.section { padding: var(--section-pad); }
.section--navy  { background: var(--navy); }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }


/* ============================================================
   4. NAVIGATIE
   ============================================================ */
.nav-logo,
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img,
.brand-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--n400);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: #fff; }
.nav-links a.current-menu-item { color: #fff; }

.nav-cta,
.nav-links a.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius-xs);
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.15s, transform 0.15s !important;
}

.nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}


/* ============================================================
   5. ICONEN (Lucide outline)
   ============================================================ */
.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: currentColor;
  vertical-align: -0.12em;
  flex-shrink: 0;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm  { width: 16px; height: 16px; }
.icon-md  { width: 24px; height: 24px; }
.icon-lg  { width: 32px; height: 32px; }
.icon-xl  { width: 48px; height: 48px; }

.feature-icon .line-icon,
.pain-icon .line-icon,
.block-tag .line-icon,
.who-icon .line-icon,
.card-icon .line-icon,
.addon-icon .line-icon,
.cat-icon-wrap .line-icon {
  width: 24px;
  height: 24px;
}


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero--page {
  min-height: unset;
  padding: 80px 5vw 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(249, 115, 22, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249, 115, 22, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.hero-pill,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.30);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-mid);
  letter-spacing: 0.3px;
  margin-bottom: 28px;
  position: relative;
}

.hero-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  position: relative;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--n400);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.hero-sub strong { color: #E2E8F0; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero preview mockup */
.hero-preview {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  overflow: hidden;
  text-align: left;
}

.preview-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--navy-border);
}

.preview-dots { display: flex; gap: 6px; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot:nth-child(1) { background: #ff5f57; }
.preview-dot:nth-child(2) { background: #ffbd2e; }
.preview-dot:nth-child(3) { background: #28c840; }

.preview-url {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--n400);
  flex: 1;
  text-align: center;
}

.preview-body {
  display: grid !important;
  grid-template-columns: 180px 1fr !important;
  min-height: 280px;
}

.preview-sidebar {
  border-right: 1px solid var(--navy-border);
  padding: 16px 12px;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px;
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--n400);
}

.preview-item.active { background: var(--orange-glow); color: #fb923c; }
.preview-item.done { color: var(--green); }

.preview-dot-sm {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-border);
  flex-shrink: 0;
}

.preview-item.active .preview-dot-sm { background: var(--orange); }
.preview-item.done .preview-dot-sm { background: var(--green); }

.preview-main { padding: 24px; }

.preview-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.preview-q { font-size: 14px; font-weight: 700; color: #e2e8f0; margin-bottom: 10px; }

.preview-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 12px;
  font-size: 12px;
  color: var(--n400);
  margin-bottom: 14px;
  line-height: 1.6;
}

.preview-generate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: white;
  border: 0;
  border-radius: 6px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.preview-result {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 10px;
  color: #6ee7b7;
  line-height: 1.5;
}


/* ============================================================
   7. KNOPPEN
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.15s;
  line-height: 1;
}

.btn-primary,
.btn-hero-primary,
.btn-orange,
.cta-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: #fff;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover,
.btn-hero-primary:hover,
.btn-orange:hover,
.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
  color: #fff;
}

.btn-secondary,
.btn-hero-secondary,
.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover,
.btn-hero-secondary:hover,
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-green {
  background: linear-gradient(135deg, #059669, var(--green));
  color: #fff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.btn-green:hover { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--n900);
  border: 1.5px solid var(--n200);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: var(--orange-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
  border-radius: var(--radius-xs);
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}


/* ============================================================
   8. SECTIE-TYPOGRAFIE HELPERS
   ============================================================ */
.section-eyebrow,
.section-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}

.section-kicker { color: var(--n400); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--n900);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.section-sub,
.section-intro,
.section-desc {
  font-size: 16px;
  color: var(--n500);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.section--navy .section-title,
.section--navy .hero-title { color: #fff; }
.section--navy .section-eyebrow { color: var(--orange-mid); }
.section--navy .section-sub { color: var(--n400); }


/* ============================================================
   9. KAARTEN
   ============================================================ */
.card {
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.07);
  transform: translateY(-2px);
}

.card.featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(19, 23, 43, 0.20);
}

.card.featured:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.15);
}

.card-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.3px;
}

.card-icon { font-size: 24px; margin-bottom: 12px; }

.card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--n900);
  margin-bottom: 5px;
}

.card.featured .card-name { color: #fff; }

.card-tagline {
  font-size: 12px;
  color: var(--n500);
  line-height: 1.5;
  max-width: 30ch;
}

.card.featured .card-tagline { color: var(--n400); }

.feat-list { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 20px; }

.feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--n500);
  line-height: 1.4;
}

.card.featured .feat { color: #CBD5E1; }

.chk { color: var(--green); font-weight: 800; flex-shrink: 0; font-size: 13px; }
.card.featured .chk { color: #34D399; }
.crs { color: #D1D5DB; flex-shrink: 0; font-size: 13px; }
.dash { color: var(--n400); flex-shrink: 0; font-size: 13px; }

.card-divider {
  height: 1px;
  background: var(--n200);
  margin: 16px 0;
  align-self: stretch;
}

.card.featured .card-divider { background: var(--navy-border); }

.card-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.15s;
  margin-top: auto;
}


/* ============================================================
   10. PRIJSKAARTEN
   ============================================================ */
.card-price {
  margin: 0 0 4px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.price-prefix { font-size: 11px; color: var(--n400); font-weight: 700; margin-right: 5px; margin-bottom: 6px; }
.price-cur    { font-size: 18px; font-weight: 700; color: var(--n400); margin-bottom: 5px; }
.price-amt    { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--n900); line-height: 1; }
.price-free   { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--green); line-height: 1; margin: 0 0 4px; }
.price-per    { font-size: 12px; color: var(--n400); }

.card.featured .price-amt { color: #fff; }
.card.featured .price-cur { color: #64748B; }

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

@media (max-width: 900px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .cards-4, .cards-3 { grid-template-columns: 1fr; }
}


/* ============================================================
   11. ADD-ON KAARTEN
   ============================================================ */
.addon-card {
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.15s;
}

.addon-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.07);
  transform: translateY(-1px);
}

.addon-icon  { font-size: 22px; color: var(--orange); }
.addon-name  { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--n900); }
.addon-desc  { font-size: 12px; color: var(--n500); line-height: 1.5; }
.addon-price { margin-top: 4px; font-weight: 700; color: var(--n900); font-size: 14px; }
.addon-note  { font-size: 11px; color: var(--n400); }


/* ============================================================
   12. FEATURE-RIJEN
   ============================================================ */
.panel {
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-list { display: flex; flex-direction: column; }

.feature-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1fr minmax(120px, auto);
  gap: 20px;
  align-items: start;
  padding: 20px 22px;
  border-bottom: 1px solid var(--n100);
}

.feature-row:last-child { border-bottom: 0; }

.feature-row-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--n900);
  line-height: 1.35;
}

.feature-row-text { font-size: 13px; color: var(--n500); line-height: 1.65; }

.feature-row-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 18px;
  background: var(--n100);
  color: var(--n500);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.pill-accent { background: var(--orange-glow); color: var(--orange-dark); }

@media (max-width: 820px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row-meta { justify-content: flex-start; }
}


/* ============================================================
   13. STAPPEN
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.step { position: relative; }

.step-number {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-body { font-size: 14px; color: var(--n400); line-height: 1.65; }
.step-body strong { color: #E2E8F0; font-weight: 600; }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}


/* ============================================================
   14. PIJNPUNTEN / WHO CARDS
   ============================================================ */
.pain-grid,
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.pain-card {
  background: var(--cream);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 26px;
}

.who-card {
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 26px;
}

.pain-icon,
.who-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  color: var(--orange);
}

.who-icon { font-size: 32px; }

.pain-title,
.who-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--n900) !important;
  margin-bottom: 8px;
}

.who-title { font-size: 17px; }

.pain-body,
.who-body {
  font-size: 14px;
  color: var(--n500) !important;
  line-height: 1.6;
}

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .pain-grid, .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .forwho-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .pain-grid, .problem-grid, .forwho-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   15. FEATURE-ICOON RIJEN
   ============================================================ */
.features-list { display: flex; flex-direction: column; gap: 20px; }

.feature-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 22px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--n900);
  margin-bottom: 6px;
}

.feature-body { font-size: 13px; color: var(--n500); line-height: 1.6; }


/* ============================================================
   16. BLOCK TAGS
   ============================================================ */
.blocks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.block-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1.5px solid var(--n200);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--n900);
  transition: all 0.15s;
}

.block-tag:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.06);
  color: var(--orange-dark);
}


/* ============================================================
   17. SUMMARY STATS
   ============================================================ */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.summary-card {
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 22px;
}

.summary-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.summary-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--n900);
  margin-bottom: 6px;
}

.summary-text { font-size: 13px; color: var(--n500); line-height: 1.6; }

@media (max-width: 700px) {
  .summary-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   18. PLATFORM KAARTEN
   ============================================================ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.platform-card {
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 20px;
}

.platform-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--n900);
  margin-bottom: 8px;
}

.platform-text { font-size: 13px; color: var(--n500); line-height: 1.6; }

@media (max-width: 700px) {
  .platform-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   19. COMPACTE NOTE
   ============================================================ */
.compact-note {
  background: var(--n50);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 22px;
}

.compact-note-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--n900);
  margin-bottom: 12px;
}

.compact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.compact-item {
  font-size: 13px;
  color: var(--n500);
  line-height: 1.5;
  display: flex;
  gap: 8px;
}

.compact-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--n400);
  flex-shrink: 0;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .compact-list { grid-template-columns: 1fr; }
}


/* ============================================================
   20. WHITE LABEL BALK
   ============================================================ */
.wl-card {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.wl-tag {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.30);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wl-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.wl-desc  { font-size: 13px; color: var(--n400); line-height: 1.6; max-width: 480px; }
.wl-pricing { text-align: right; flex-shrink: 0; }
.wl-from    { font-size: 12px; color: var(--n400); margin-bottom: 2px; }
.wl-price   { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: #fff; line-height: 1; }
.wl-sub     { font-size: 12px; color: var(--n400); margin-bottom: 14px; }


/* ============================================================
   21. VERGELIJKINGSTABEL
   ============================================================ */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--n200);
  font-size: 13px;
}

thead th {
  background: var(--n100);
  padding: 13px 16px;
  font-weight: 800;
  color: var(--n900);
  text-align: left;
  border-bottom: 1.5px solid var(--n200);
  white-space: nowrap;
  font-family: var(--font-body);
}

thead th:not(:first-child) { text-align: center; }

tbody td {
  padding: 11px 16px;
  color: var(--n500);
  border-bottom: 1px solid var(--n100);
  vertical-align: middle;
}

tbody td:not(:first-child) { text-align: center; }
tbody tr:last-child td     { border-bottom: none; }
tbody tr:hover td          { background: var(--n50); }

.group-row td {
  background: var(--n100) !important;
  font-weight: 800;
  color: var(--n900);
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.hl       { background: rgba(249, 115, 22, 0.04) !important; }
.hl-head  { background: rgba(249, 115, 22, 0.08) !important; color: var(--orange-dark) !important; }
.yes  { color: var(--green); font-size: 16px; font-weight: 800; }
.no   { color: #D1D5DB; font-size: 16px; }


/* ============================================================
   22. FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--n200); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--n900);
  cursor: pointer;
  gap: 12px;
  font-family: var(--font-body);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q:hover  { color: var(--orange-dark); }
.faq-chevron  { color: var(--n400); transition: transform 0.2s; flex-shrink: 0; }
.faq-a        { display: none; font-size: 13px; color: var(--n500); line-height: 1.7; padding: 0 2px 16px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }


/* ============================================================
   23. CTA SECTIE
   ============================================================ */
.cta-section,
.cta {
  background: var(--navy);
  padding: 100px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249, 115, 22, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta-sub {
  font-size: 14px;
  color: var(--n400);
  margin-bottom: 32px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-badge {
  display: inline-flex;
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: var(--green);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}


/* ============================================================
   24. FOOTER
   ============================================================ */
.site-footer,
footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding: 28px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .brand-logo img { height: 28px; }
.footer-copy { font-size: 13px; color: var(--n400); }
.footer-copy strong { color: #E2E8F0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--n400); text-decoration: none; }
.footer-links a:hover { color: #fff; }


/* ============================================================
   25. DIVIDERS
   ============================================================ */
.divider { height: 1px; background: var(--n200); margin: 16px 0; }
.or-row { display: flex; align-items: center; gap: 16px; margin: 52px 0 0; }
.or-line  { flex: 1; height: 1px; background: var(--n200); }
.or-label { font-size: 12px; font-weight: 800; color: var(--n400); letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }


/* ============================================================
   26. AUDIENCE PICKER
   ============================================================ */
.audience-picker {
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
}

.audience-title { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--n900); margin-bottom: 2px; }
.audience-sub   { font-size: 13px; color: var(--n500); }

.audience-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 8px;
  flex-shrink: 0;
}

.audience-btn {
  border: 1.5px solid var(--n200);
  background: var(--n50);
  color: var(--n900);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.audience-btn:hover { border-color: rgba(249, 115, 22, 0.35); color: var(--orange-dark); }

.audience-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(19, 23, 43, 0.12);
}

@media (max-width: 720px) {
  .audience-picker  { flex-direction: column; align-items: stretch; }
  .audience-buttons { grid-template-columns: 1fr; }
}


/* ============================================================
   27. FLOW PANEEL
   ============================================================ */
.flow-panel { display: grid; grid-template-columns: minmax(220px, 0.4fr) 1fr; }
.flow-aside { background: var(--navy); color: #fff; padding: 26px; }
.flow-aside-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.flow-aside-text { font-size: 13px; color: var(--n400); line-height: 1.7; }

.flow-row {
  display: grid;
  grid-template-columns: 34px minmax(150px, 0.35fr) 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 22px;
  border-bottom: 1px solid var(--n100);
}

.flow-row:last-child { border-bottom: 0; }

.flow-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
}

.flow-name  { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--n900); padding-top: 5px; }
.flow-desc  { font-size: 13px; color: var(--n500); line-height: 1.6; padding-top: 3px; }

@media (max-width: 820px) {
  .flow-panel  { grid-template-columns: 1fr; }
  .flow-row    { grid-template-columns: 34px 1fr; }
  .flow-desc   { grid-column: 2; padding-top: 0; }
}


/* ============================================================
   28. UTILITY KLASSEN
   ============================================================ */
.is-hidden { display: none !important; }
.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; }

.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--n400); }
.text-white  { color: #fff; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-0  { margin-top: 0; }
.mt-8  { margin-top: var(--s8); }
.mt-16 { margin-top: var(--s16); }
.mt-24 { margin-top: var(--s24); }
.mt-32 { margin-top: var(--s32); }
.mt-48 { margin-top: var(--s48); }
.mt-64 { margin-top: var(--s64); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: var(--s8); }
.mb-16 { margin-bottom: var(--s16); }
.mb-24 { margin-bottom: var(--s24); }
.mb-32 { margin-bottom: var(--s32); }
.mb-48 { margin-bottom: var(--s48); }
.mb-64 { margin-bottom: var(--s64); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8       { gap: var(--s8); }
.gap-16      { gap: var(--s16); }
.gap-24      { gap: var(--s24); }


/* ============================================================
   29. FADE-UP (uitgeschakeld)
   ============================================================ */
.fade-up {
  opacity: 1;
  transform: none;
}


/* ============================================================
   30. WORDPRESS SPECIFIEK
   ============================================================ */
.alignleft   { float: left; margin-right: var(--s24); margin-bottom: var(--s16); }
.alignright  { float: right; margin-left: var(--s24); margin-bottom: var(--s16); }
.aligncenter { display: block; margin-inline: auto; margin-bottom: var(--s16); }
.alignwide   { width: 100%; max-width: var(--max-width-wide); margin-inline: auto; }
.alignfull   { width: 100vw; margin-inline: calc(50% - 50vw); }

.wp-block-paragraph { font-family: var(--font-body); font-size: 15px; color: var(--n500); line-height: 1.7; }
.wp-block-heading   { font-family: var(--font-display); font-weight: 800; color: var(--n900); }

.wp-block-button__link {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-sm) !important;
}

.wp-block-button.is-style-primary .wp-block-button__link {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: #fff;
  box-shadow: var(--sh-orange);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--n900);
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--radius-xs);
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--n200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--n400); }


/* ============================================================
   31. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { padding: 80px 5vw 60px; }
  .section { padding: var(--section-pad-md); }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 80px; }
  .hero-actions { margin-bottom: 36px; flex-direction: column; align-items: center; }
  .section { padding: 64px 5vw; }
  footer, .site-footer { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   32. WORDPRESS LAYOUT OVERRIDES
   ============================================================ */
.entry-content,
.content-container,
.site-content,
.wp-block-group {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.content-wrap,
.entry-content-wrap,
.entry,
.content-bg {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  border-bottom: none !important;
}

.site-header-row-container-inner {
  padding: 0 !important;
}

.kadence-sticky-header.item-is-stuck {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.site-header-inner-wrap.kadence-sticky-header.item-is-fixed.item-is-stuck .site-container {
  max-width: none !important;
  padding-left: 5vw !important;
  padding-right: 5vw !important;
}

.hero {
  margin-top: 0 !important;
}

/* Visual blocks */
.vbf-badge {
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
}

.vbf-green  { color: var(--green); background: rgba(16,185,129,0.09); border: 1px solid rgba(16,185,129,0.22); }
.vbf-orange { color: #fb923c; background: rgba(249,115,22,0.09); border: 1px solid rgba(249,115,22,0.22); }

.visual-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: var(--navy-light);
  border-bottom: 1px solid var(--navy-border);
}

.visual-title  { color: white; font-weight: 700; font-size: 13px; flex: 1; }
.visual-tag    { color: var(--green); background: rgba(16,185,129,0.09); border: 1px solid rgba(16,185,129,0.22); border-radius: 20px; font-size: 11px; font-weight: 700; padding: 3px 9px; }
.visual-body   { padding: 20px; display: flex; flex-direction: column; gap: 14px; }

.visual-block {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 16px;
}

.visual-block-label  { font-size: 10px; font-weight: 800; color: var(--n400); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.visual-block-text   { font-size: 12px; color: #cbd5e1; line-height: 1.65; margin-bottom: 12px; }
.visual-block-footer { display: flex; justify-content: flex-end; }

.feature-card .line-icon svg {
  display: inline !important;
}

.features-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.features-visual {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  box-shadow: 0 18px 50px rgba(19,23,43,0.18);
}

.site-bottom-footer-inner-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  align-items: center !important;
  padding: 28px 5vw !important;
}

.site-bottom-footer-inner-wrap .site-footer-section-left {
  justify-content: flex-start !important;
}

.site-bottom-footer-inner-wrap .site-footer-section-center {
  justify-content: center !important;
  text-align: center !important;
}

.site-bottom-footer-inner-wrap .site-footer-section-right {
  justify-content: flex-end !important;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a {
  font-size: 13px !important;
  font-weight: 600 !important;
}
