:root {
  --kb-primary: #1e4d79;
  --kb-brand-orange: #f7650d;
  --kb-primary-soft: #eaf1f8;
  --kb-primary-dark: #163a5f;
  --kb-accent: #d4a55c;
  --kb-accent-soft: #faf3e6;
  --kb-ink: #16202b;
  --kb-ink-soft: #3d4b5c;
  --kb-muted: #6b7785;
  --kb-line: #e3e8ee;
  --kb-bg: #fbfbfa;
  --kb-bg-alt: #f4f4f0;
  --kb-orange-check: #fba97a;
  --kb-good: #2c6638;
  --kb-good-soft: #e8f3eb;
  --kb-warn: #8f5419;
  --kb-warn-soft: #fff4e6;

  --kb-radius: 8px;
  --kb-radius-lg: 12px;

  --kb-shadow-sm: 0 1px 2px rgba(22, 32, 43, 0.06);
  --kb-shadow: 0 4px 12px rgba(22, 32, 43, 0.06);
  --kb-shadow-lg: 0 12px 32px rgba(22, 32, 43, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  overflow-x: hidden;
  background: var(--kb-bg);
  color: var(--kb-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--kb-primary); }
a:hover { color: var(--kb-primary-dark); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { color: var(--kb-ink); letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 16px; }
h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; color: var(--kb-brand-orange); }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--kb-brand-orange);
  margin-bottom: 12px;
}

/* Header */
header.site-header {
  background: var(--kb-bg);
  border-bottom: 1px solid var(--kb-line);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site-header .container { position: relative; }
header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; color: var(--kb-ink); text-decoration: none;
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--kb-primary); color: white;
  font-weight: 700; font-size: 16px;
}
.logo-img {
  width: 32px; height: 32px; border-radius: 8px;
  object-fit: cover; display: block;
}
/* EenvoudigOnline.nl wordmark: Eenvoudig + .nl blauw, Online oranje (logo). */
.eo-wordmark { white-space: nowrap; }
.eo-wordmark .eo-a, .eo-wordmark .eo-c { color: #1e4d79; }
.eo-wordmark .eo-b { color: var(--kb-brand-orange); }
nav.site-nav { display: flex; gap: 28px; align-items: center; }
nav.site-nav a {
  color: var(--kb-ink-soft); text-decoration: none; font-size: 15px; font-weight: 500;
}
nav.site-nav a:hover { color: var(--kb-primary); }
nav.site-nav a.btn { color: white; }
nav.site-nav a.btn:hover { color: white; }
/* =============================================
   HAMBURGER — pure CSS (checkbox-hack)
   <input id="nav-check" type="checkbox" class="nav-check">
   <label for="nav-check" class="nav-toggle" aria-label="Menu">
     <span></span><span></span><span></span>
   </label>
   JS in script.js blijft als progressive-enhancement
   (sluit menu na klik op link, update aria-label).
   ============================================= */

/* Verberg de checkbox volledig */
.nav-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Hamburger-label: verborgen op desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--kb-radius);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--kb-ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
  transform-origin: center;
}

/* Kruisje-animatie: checkbox is sibling van <header class="site-header">,
   de .nav-toggle label zit binnen die header — bereikbaar via descendant-selector */
.nav-check:checked ~ .site-header .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-check:checked ~ .site-header .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-check:checked ~ .site-header .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  /* Nav standaard verborgen op mobiel */
  nav.site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--kb-bg);
    border-bottom: 1px solid var(--kb-line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: var(--kb-shadow);
    z-index: 49;
  }

  /* Pure-CSS: checkbox is sibling van header → bereikt nav via descendant */
  .nav-check:checked ~ .site-header nav.site-nav {
    display: flex;
  }
  /* JS-fallback: .open class voor browsers / edge-cases */
  nav.site-nav.open {
    display: flex;
  }

  nav.site-nav a {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 0;
  }
  nav.site-nav a.btn {
    margin: 8px 24px 0;
    text-align: center;
    justify-content: center;
  }
  .nav-toggle { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--kb-radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s, box-shadow .15s, background .15s;
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary { background: var(--kb-brand-orange); color: white; }
.btn-primary:hover { background: #d9540b; color: white; box-shadow: var(--kb-shadow); }
.btn-ghost { background: transparent; color: var(--kb-primary); border-color: var(--kb-primary); }
.btn-ghost:hover { background: var(--kb-primary-soft); }
.btn-large { padding: 18px 32px; font-size: 17px; }
.btn-block { display: flex; width: 100%; }
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
  .btn-large { padding: 14px 20px; font-size: 16px; }
}

/* Sections */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.alt { background: linear-gradient(180deg, var(--kb-bg) 0%, var(--kb-primary-soft) 100%); border-top: 1px solid var(--kb-line); border-bottom: 1px solid var(--kb-line); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--kb-ink-soft); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* Hero */
section.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--kb-bg) 0%, var(--kb-primary-soft) 100%);
  border-bottom: 1px solid var(--kb-line);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--kb-primary); }
.hero .lead { font-size: 19px; color: var(--kb-ink-soft); margin-bottom: 28px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-meta { font-size: 14px; color: var(--kb-muted); display: flex; gap: 18px; flex-wrap: wrap; }
.hero-meta span:before { content: "\2713\00a0\00a0"; color: var(--kb-orange-check); font-weight: 700; }
.hero-image {
  position: relative; border-radius: var(--kb-radius-lg); overflow: hidden;
  box-shadow: var(--kb-shadow-lg); aspect-ratio: 4 / 5; background: var(--kb-bg-alt);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: white; border-radius: var(--kb-radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--kb-shadow); font-size: 14px;
}
.hero-image-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--kb-good); flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--kb-good-soft);
}

/* Pijn */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 720px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card { background: white; border: 1px solid var(--kb-line); border-radius: var(--kb-radius-lg); padding: 24px; }
.pain-card h3 { color: var(--kb-ink); font-size: 18px; }
.pain-card p { color: var(--kb-ink-soft); font-size: 15px; margin: 0; }
.pain-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff0e6; color: var(--kb-orange-check);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 14px;
}

/* How it works */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .how-grid { grid-template-columns: 1fr; } }
.how-steps { display: flex; flex-direction: column; gap: 28px; }
.how-step { display: flex; gap: 18px; }
.how-step .num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--kb-brand-orange); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.how-step h3 { margin: 4px 0 6px; font-size: 18px; }
.how-step p { margin: 0; color: var(--kb-ink-soft); font-size: 15px; }

.chat-mock {
  background: white; border: 1px solid var(--kb-line); border-radius: var(--kb-radius-lg);
  box-shadow: var(--kb-shadow-lg); overflow: hidden;
}
.chat-mock-head {
  background: var(--kb-primary-soft); padding: 12px 16px;
  border-bottom: 1px solid var(--kb-line);
  font-size: 13px; color: var(--kb-primary); font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.chat-mock-tag { background: var(--kb-good-soft); color: var(--kb-good); padding: 2px 8px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.chat-mock-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; }
.chat-bubble.you { align-self: flex-end; background: var(--kb-primary); color: white; border-bottom-right-radius: 4px; }
.chat-bubble.ai { align-self: flex-start; background: var(--kb-bg-alt); color: var(--kb-ink); border-bottom-left-radius: 4px; }
.chat-bubble small { color: var(--kb-muted); font-size: 12px; display: block; margin-top: 4px; }

/* Voor wie / split */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .split-section { grid-template-columns: 1fr; } }
.split-image { border-radius: var(--kb-radius-lg); overflow: hidden; box-shadow: var(--kb-shadow); aspect-ratio: 4 / 3; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 16px; }
.split-text ul { padding-left: 0; list-style: none; }
.split-text li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--kb-line);
  position: relative; color: var(--kb-ink-soft);
}
.split-text li:last-child { border-bottom: none; }
.split-text li:before {
  content: "\2713"; position: absolute; left: 0; top: 12px;
  color: var(--kb-orange-check); font-weight: 700; font-size: 18px;
}
.split-text li strong { color: var(--kb-ink); }

/* Value-stack */
.stack-card {
  background: white; border: 2px solid var(--kb-primary); border-radius: var(--kb-radius-lg);
  padding: 32px; box-shadow: var(--kb-shadow-lg); max-width: 720px; margin: 0 auto;
}
.stack-list { list-style: none; padding: 0; margin: 0 0 24px; }
.stack-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--kb-line); gap: 16px;
}
.stack-list li:last-child { border-bottom: none; }
.stack-list .item-name { color: var(--kb-ink); font-weight: 500; flex: 1; }
.stack-list .item-name small { display: block; color: var(--kb-muted); font-size: 13px; font-weight: 400; margin-top: 2px; }
.stack-list .item-value { color: var(--kb-muted); font-size: 14px; white-space: nowrap; text-decoration: line-through; }
.stack-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; font-weight: 600; color: var(--kb-ink);
}
.stack-total .total-value { color: var(--kb-muted); text-decoration: line-through; font-size: 18px; }
@media (max-width: 600px) {
  .stack-card { padding: 20px 16px; }
  .stack-list li { flex-direction: column; gap: 4px; align-items: flex-start; }
  .stack-list .item-value { white-space: normal; font-size: 13px; }
  .stack-total { flex-direction: column; gap: 4px; }
}
.stack-price {
  background: var(--kb-primary-soft); border-radius: var(--kb-radius);
  padding: 24px; text-align: center; margin: 16px 0 8px;
}
.stack-price .price-line { font-size: 14px; color: var(--kb-ink-soft); margin-bottom: 4px; }
.stack-price .price { font-size: 36px; font-weight: 700; color: var(--kb-primary); line-height: 1; }
.stack-price .price small { font-size: 17px; font-weight: 500; color: var(--kb-ink-soft); }
.stack-price .price-alt { font-size: 14px; color: var(--kb-ink-soft); margin-top: 8px; }

/* Pricing — een aanbod */
.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 920px) { .offer-grid { grid-template-columns: 1fr; max-width: 560px; } }

.pay-card {
  background: white;
  border: 1px solid var(--kb-line);
  border-radius: var(--kb-radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.pay-card.featured { border: 2px solid var(--kb-primary); box-shadow: var(--kb-shadow); }
.pay-card .pay-name { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--kb-muted); font-weight: 600; }
.pay-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pay-card li { padding: 6px 0; font-size: 14.5px; color: var(--kb-ink); padding-left: 24px; position: relative; }
.pay-card li:before { content: "\2713"; color: var(--kb-orange-check); position: absolute; left: 0; font-weight: 700; }
.pay-card .featured-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--kb-primary); color: white;
  font-size: 12px; padding: 4px 12px; border-radius: 12px; font-weight: 600;
}

/* Offer price split (eenmalig + maandelijks) */
.offer-price-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 16px 0 16px;
  padding: 24px 16px;
  background: var(--kb-primary-soft);
  border-radius: var(--kb-radius);
}
.ops-block { text-align: center; }
.ops-amount { font-size: 38px; font-weight: 700; color: var(--kb-brand-orange); line-height: 1; margin: 0; }
.ops-label { font-size: 14px; color: var(--kb-ink); margin: 4px 0 2px; font-weight: 600; }
.ops-sub { font-size: 12.5px; color: var(--kb-muted); margin: 0; }
.ops-plus { font-size: 28px; color: var(--kb-brand-orange); font-weight: 300; }
@media (max-width: 480px) {
  .offer-price-split { grid-template-columns: 1fr; gap: 10px; padding: 18px 12px; }
  .ops-plus { display: none; }
}
.offer-year-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--kb-ink-soft);
  margin: 0 0 20px;
  padding: 12px;
  background: var(--kb-primary-soft);
  border-radius: var(--kb-radius);
}
.offer-year-note strong { color: var(--kb-primary); }
.offer-asterisk-note {
  text-align: center;
  font-size: 13px;
  color: var(--kb-muted);
  margin: -4px 0 16px;
}
.ops-asterisk {
  font-size: 20px;
  vertical-align: super;
  line-height: 0;
  color: var(--kb-brand-orange);
}

/* Wallet / AI-tegoed kaart */
.wallet-card {
  background: white;
  border: 1px solid var(--kb-line);
  border-radius: var(--kb-radius-lg);
  padding: 28px;
  box-shadow: var(--kb-shadow-sm);
  display: flex; flex-direction: column;
}
.wallet-card h3 { font-size: 19px; color: var(--kb-primary); margin-bottom: 12px; }
.wallet-card p { color: var(--kb-ink-soft); font-size: 15px; margin: 0 0 16px; }
.wallet-list { list-style: none; padding: 0; margin: 0 0 16px; }
.wallet-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--kb-ink-soft);
  font-size: 14.5px;
  border-bottom: 1px solid var(--kb-line);
}
.wallet-list li:last-child { border-bottom: none; }
.wallet-list li:before {
  content: "\2713"; position: absolute; left: 0; top: 10px;
  color: var(--kb-orange-check); font-weight: 700;
}
.wallet-list li strong { color: var(--kb-ink); }
.wallet-foot { font-size: 13.5px; color: var(--kb-muted); margin: auto 0 0; font-style: italic; }

.pricing-extras {
  text-align: center; margin-top: 32px; padding: 20px;
  background: white; border: 1px solid var(--kb-line); border-radius: var(--kb-radius-lg);
  color: var(--kb-ink-soft); font-size: 14.5px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.pricing-extras strong { color: var(--kb-ink); }

/* Infrastructuur / techniek-grid */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 920px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  background: white; border: 1px solid var(--kb-line); border-radius: var(--kb-radius-lg);
  padding: 24px;
}
.tech-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--kb-primary-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
  filter: grayscale(0.3) brightness(0.95);
}
.tech-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--kb-ink); }
.tech-card p { color: var(--kb-ink-soft); font-size: 14.5px; margin: 0; }

/* Vergelijking */
.compare-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--kb-radius-lg); overflow: hidden; box-shadow: var(--kb-shadow-sm); font-size: 14.5px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--kb-line); vertical-align: top; }
.compare-table th { background: var(--kb-primary-soft); color: var(--kb-primary); font-weight: 600; font-size: 13px; }
.compare-table .yes { color: var(--kb-good); font-weight: 600; }
.compare-table .no  { color: var(--kb-muted); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  /* Isoleer de horizontale scroll zodat hij niet lekt naar de body */
  contain: layout;
}
/* 3-aanbod feature-matrix (Hoofd vs Onderhoud vs Eenmalig) */
.compare-3offer th { vertical-align: top; padding: 14px 12px; min-width: 170px; }
.compare-3offer .featured-col { background: #fff8e8; }
.compare-3offer thead .featured-col { background: #ffe9b0; }
.compare-3offer .offer-badge { display: inline-block; font-size: 10.5px; font-weight: 700; padding: 2px 10px; border-radius: 999px; background: #e2e8f0; color: #475569; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.compare-3offer .offer-badge-featured { background: #f7650d; color: white; }
.compare-3offer .offer-name { display: block; font-size: 15px; font-weight: 700; color: var(--kb-ink); margin: 2px 0; }
.compare-3offer .offer-price-mini { display: block; font-size: 12px; color: var(--kb-muted); font-weight: 500; }
.compare-3offer .compare-row-summary td { background: #f8fafc; font-size: 13px; }
.compare-3offer .compare-row-summary .featured-col { background: #fff4d6; font-weight: 600; }

/* Risk reversal */
.risk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 720px) { .risk-grid { grid-template-columns: repeat(2, 1fr); } }
.risk-card { background: white; border: 1px solid var(--kb-line); border-radius: var(--kb-radius-lg); padding: 20px; text-align: center; }
.risk-card .icon {
  width: 44px; height: 44px;
  background: #fff0e6; color: var(--kb-orange-check);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 12px; font-size: 20px;
}
.risk-card h3 { font-size: 15px; margin-bottom: 6px; color: var(--kb-primary); }
.risk-card p { font-size: 13.5px; color: var(--kb-ink-soft); margin: 0; }

/* FAQ */
section#vragen { background: linear-gradient(180deg, var(--kb-primary-soft) 0%, var(--kb-bg) 100%); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--kb-line); border-radius: var(--kb-radius); margin-bottom: 12px; }
.faq-item summary {
  padding: 18px 20px; font-weight: 600; font-size: 16px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:after { content: "+"; color: var(--kb-brand-orange); font-size: 22px; line-height: 1; }
.faq-item[open] summary:after { content: "\2212"; }
.faq-item .answer { padding: 0 20px 20px; color: var(--kb-ink-soft); font-size: 15.5px; }

/* Demo form */
section#demo { background: linear-gradient(180deg, var(--kb-bg) 0%, var(--kb-primary-soft) 100%); border-top: 1px solid var(--kb-line); border-bottom: 1px solid var(--kb-line); }
.demo-form-wrap { background: transparent; }
.demo-form-card {
  max-width: 560px; margin: 0 auto;
  background: white; border-radius: var(--kb-radius-lg);
  box-shadow: var(--kb-shadow-lg); padding: 36px;
}
@media (max-width: 600px) {
  .demo-form-card { padding: 24px 20px; box-shadow: none; border: 1px solid var(--kb-line); }
}
.demo-form-card h2 { text-align: center; }
.demo-form-card .form-lead { text-align: center; color: var(--kb-ink-soft); margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 14px; font-weight: 500; color: var(--kb-ink); margin-bottom: 6px; }
.form-row input { width: 100%; padding: 12px 14px; border: 1px solid var(--kb-line); border-radius: var(--kb-radius); font-size: 15.5px; font-family: inherit; background: var(--kb-bg); }
.form-row input:focus { outline: none; border-color: var(--kb-primary); background: white; }
.form-row input::placeholder { color: var(--kb-muted); opacity: 0.7; }
.form-row .hint { font-size: 13px; color: var(--kb-muted); margin-top: 4px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; }
.form-error { background: #fdebec; color: #8a3641; padding: 14px 16px; border-radius: var(--kb-radius); margin-bottom: 16px; font-size: 14.5px; }
.form-success { background: var(--kb-good-soft); color: var(--kb-good); padding: 28px; border-radius: var(--kb-radius); text-align: center; }
.form-success h3 { color: var(--kb-good); margin-bottom: 8px; }
.form-success .fallback { margin-top: 14px; font-size: 14px; color: var(--kb-ink-soft); }
.form-disclaimer { font-size: 13px; color: var(--kb-muted); text-align: center; margin-top: 16px; }

/* Final CTA — als card binnen container */
section.final-cta { padding: 80px 0; }
.final-cta-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: var(--kb-radius-lg);
  overflow: hidden;
  box-shadow: var(--kb-shadow-lg);
  background: var(--kb-primary);
}
@media (max-width: 920px) { .final-cta-card { grid-template-columns: 1fr; } }
.final-cta-text { color: white; padding: 56px 44px; }
.final-cta-text h2 { color: white; }
.final-cta-text .eyebrow { color: var(--kb-accent); }
.final-cta-text p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; max-width: 420px; }
.final-cta-image {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 720px) {
  section.final-cta { padding: 48px 0; }
  .final-cta-text { padding: 32px 24px; }
  .final-cta-text p { max-width: 100%; font-size: 16px; }
  .final-cta-image { min-height: 200px; }
}

/* Footer */
footer.site-footer { background: var(--kb-bg-alt); border-top: 1px solid var(--kb-line); padding: 48px 0 24px; color: var(--kb-ink-soft); font-size: 14px; }
footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
@media (max-width: 720px) { footer .footer-grid { grid-template-columns: 1fr; } }
footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--kb-ink); margin-bottom: 16px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a { color: var(--kb-ink-soft); text-decoration: none; }
footer a:hover { color: var(--kb-primary); }
.footer-bottom { border-top: 1px solid var(--kb-line); padding-top: 24px; font-size: 13px; color: var(--kb-muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Terug naar boven */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--kb-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--kb-shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, background .15s, transform .15s;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--kb-primary-dark); transform: translateY(-2px); }

/* EO:APPEARANCE start */
html { scroll-behavior: smooth; }
/* EO:APPEARANCE end */
