/* ═══════════════════════════════════════════════════════════════════════════
   HFIT (powered by CyberBase) — v2 stylesheet
   Light, professional, MKB-georiënteerd
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette — v2-baseline behouden (werkte goed) */
  --bg:           #FFFFFF;
  --bg-soft:      #F8FAFC;
  --bg-muted:     #F1F5F9;
  --bg-dark:      #0F172A;
  --surface:      #FFFFFF;
  --border:       #E2E8F0;
  --border-h:     #CBD5E1;

  --text:         #0F172A;
  --text-2:       #475569;
  --text-3:       #64748B;
  --text-4:       #94A3B8;

  --accent:       #0EA5E9;
  --accent-d:     #0284C7;
  --accent-dim:   #E0F2FE;
  --accent-deep:  #075985;

  --success:      #16A34A;
  --warning:      #EA580C;
  --danger:       #DC2626;
  --gold:         #F59E0B;

  /* Spacing & radii */
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-sm:    0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow:       0 2px 8px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-lg:    0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-blue:  0 8px 24px rgba(14, 165, 233, 0.18);

  --container:    1200px;

  /* Type */
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

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

a { color: var(--accent-d); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-deep); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────────────────────────────────────
   Container & layout
   ──────────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 120px 0; }
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #E2E8F0; }
.section--dark .section-header h2 { color: #FFFFFF; }
.section--dark .section-header p { color: #94A3B8; }

.section-header {
  max-width: 760px;
  margin: 0 0 48px 0;
}
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-header p { color: var(--text-2); font-size: 17px; line-height: 1.65; }

/* ─────────────────────────────────────────────────────────────────────────
   Typography helpers
   ──────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { color: var(--text); letter-spacing: -0.02em; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; font-weight: 600; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-dim);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.tag--dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-d) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted { color: var(--text-3); }
.text-strong { font-weight: 600; color: var(--text); }

/* ─────────────────────────────────────────────────────────────────────────
   Buttons
   ──────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.15s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
  background: var(--text);
  color: white;
}
.btn-primary:hover { background: var(--accent-deep); color: white; box-shadow: var(--shadow-blue); transform: translateY(-1px); }

.btn-accent {
  background: var(--accent-d);
  color: white;
}
.btn-accent:hover { background: var(--accent-deep); box-shadow: var(--shadow-blue); transform: translateY(-1px); color: white; }

.btn-outline {
  background: white;
  color: var(--text);
  border: 1.5px solid var(--border-h);
}
.btn-outline:hover { border-color: var(--text); background: var(--bg-soft); color: var(--text); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
}
.btn-ghost:hover { color: var(--text); background: var(--bg-muted); }

/* ─────────────────────────────────────────────────────────────────────────
   Navigation
   ──────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02), 0 6px 24px -16px rgba(15, 23, 42, 0.08);
}
/* Solid fallback voor browsers zonder backdrop-filter (oudere Firefox / pre-Chromium Edge) */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav { background: #FFFFFF; }
}
.nav__links a { color: var(--text-2); font-weight: 500; }
.nav__links a:hover { color: var(--text); background: var(--bg-muted); }
.nav__links a.active { color: var(--text); font-weight: 600; }

/* Highlight-variant: laat "Gratis check" in de nav opvallen */
.nav__links a.nav__highlight {
  color: var(--accent-deep);
  background: var(--accent-dim);
  font-weight: 600;
}
.nav__links a.nav__highlight:hover {
  background: var(--accent-d);
  color: white;
}
.nav__links a.nav__highlight.active {
  background: var(--accent-d);
  color: white;
}
.nav__mobile a.nav__highlight {
  color: var(--accent-deep);
  background: var(--accent-dim);
  font-weight: 600;
}
.nav__mobile a.nav__highlight.active {
  background: var(--accent-d);
  color: white;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav__logo:hover { color: var(--text); }
.nav__logo-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: block;
}
.nav__logo-sub {
  display: block;       /* on its own line below "CyberBase MKB" */
  font-size: 10.5px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 1px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.nav__logo > div:not(.nav__logo-mark) { line-height: 1.15; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: all 0.15s;
}
.nav__links a:hover { color: var(--text); background: var(--bg-muted); }
.nav__links a.active { color: var(--text); font-weight: 600; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 8px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* Mobile dropdown — hidden by default on ALL viewports (fix for double-nav bug) */
.nav__mobile { display: none; }

@media (max-width: 920px) {
  .nav__links, .nav__cta .btn:not(.btn-accent) { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav__mobile.open { display: flex; }
  .nav__mobile a {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 8px;
  }
}

/* Compact phone layout (<540px) */
@media (max-width: 540px) {
  .nav__cta .btn-accent { padding: 10px 14px; font-size: 13px; }
  .nav__logo-sub { display: none; }      /* hide "powered by CyberBase" tagline */
  .nav__logo { gap: 8px; }
  .container { padding: 0 18px; }
  .hero { padding: 48px 0 56px; }   /* match .page-hero top on small phones */
  .hero__actions .btn,
  .cta-banner__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
    white-space: normal;       /* allow text wrap on small phones */
    text-align: center;
  }
  .hero__stats { gap: 18px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 48px 0 36px; }
  .price-card { padding: 28px 24px; }
  .card { padding: 24px; }
  .cta-banner { padding: 36px 24px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Hero
   ──────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 85% -120px, rgba(14, 165, 233, 0.09), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, black, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 880px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 { margin-bottom: 20px; }
.hero__sub {
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero__stat-value .unit { font-size: 16px; color: var(--text-3); font-weight: 600; }
.hero__stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

.hero__price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 8px;
}
.hero__price-tag strong { color: var(--accent); font-size: 15px; }

/* Page-hero (sub-pagina's) */
.page-hero {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-2); max-width: 680px; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────────────────
   Cards & grids
   ──────────────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (max-width: 880px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s;
}
.card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 15px; line-height: 1.6; }

.card--soft { background: var(--bg-soft); border-color: transparent; }
.card--accent { background: var(--accent-dim); border-color: rgba(14, 165, 233, 0.15); }
.card--dark { background: var(--bg-dark); color: white; border-color: transparent; }
.card--dark h3 { color: white; }
.card--dark p { color: #94A3B8; }

/* ─────────────────────────────────────────────────────────────────────────
   Feature lists
   ──────────────────────────────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Pricing
   ──────────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.2s;
  display: flex; flex-direction: column;
}
.price-card:hover { border-color: var(--border-h); box-shadow: var(--shadow); }
.price-card--featured {
  border: 2px solid var(--text);
  box-shadow: var(--shadow-lg);
}
.price-card__badge {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--text);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.price-card__price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.price-card__amount { font-size: 44px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.price-card__period { font-size: 14px; color: var(--text-3); font-weight: 500; }
.price-card__scope {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}
.price-card .feature-list { flex: 1; margin-bottom: 28px; }
.price-card .feature-list li { font-size: 14.5px; }
.price-card .btn { width: 100%; }

/* ─────────────────────────────────────────────────────────────────────────
   Stack & logos
   ──────────────────────────────────────────────────────────────────────── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.stack-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.15s;
}
.stack-item:hover { border-color: var(--border-h); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.stack-item__logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.stack-item__name { font-weight: 600; font-size: 14px; color: var(--text); }
.stack-item__role { font-size: 12px; color: var(--text-3); }

/* ─────────────────────────────────────────────────────────────────────────
   Process / timeline
   ──────────────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 920px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
}
.step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.step h3 { margin-bottom: 8px; font-size: 17px; }
.step p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────────────────
   Cases / testimonials
   ──────────────────────────────────────────────────────────────────────── */
.case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-card__sector {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--bg-muted);
  color: var(--text-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}
.case-card__quote {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}
.case-card__meta {
  font-size: 14px;
  color: var(--text-3);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.case-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.case-card__stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-deep);
  letter-spacing: -0.02em;
}
.case-card__stat-lbl { font-size: 12px; color: var(--text-3); }

/* ─────────────────────────────────────────────────────────────────────────
   Pain points / problem grid
   ──────────────────────────────────────────────────────────────────────── */
.pain-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.pain-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.pain-card h3 { font-size: 17px; margin-bottom: 8px; }
.pain-card p { color: var(--text-2); font-size: 14.5px; }

/* ─────────────────────────────────────────────────────────────────────────
   Callout & banner
   ──────────────────────────────────────────────────────────────────────── */
.callout {
  background: var(--accent-dim);
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-left: 4px solid var(--accent-d);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: var(--text);
}
.callout strong { color: var(--accent-deep); }

.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: white; max-width: 700px; margin: 0 auto 16px; }
.cta-banner p { color: #94A3B8; max-width: 600px; margin: 0 auto 32px; font-size: 17px; }
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
@media (max-width: 720px) {
  .cta-banner { padding: 40px 28px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Tables
   ──────────────────────────────────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 14.5px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-muted);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .featured { background: var(--accent-dim); font-weight: 600; }
.compare-table .check { color: var(--success); font-weight: 700; }
.compare-table .cross { color: var(--text-4); }

/* ─────────────────────────────────────────────────────────────────────────
   Forms
   ──────────────────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--border-h);
  border-radius: 10px;
  background: white;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Akkoord-checkbox — duidelijk zichtbaar, klikbare hele box */
.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.form-agree:hover {
  border-color: var(--border-h);
  background: white;
}
.form-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  accent-color: var(--accent-d);
  cursor: pointer;
  flex-shrink: 0;
}
.form-agree__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  line-height: 1.55;
  cursor: pointer;
  margin: 0;
}
.form-agree__label a { color: var(--accent-d); text-decoration: underline; }
.form-agree__label a:hover { color: var(--accent-deep); }

/* ─────────────────────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  padding: 18px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: transparent;
}
.faq__q::after {
  content: '+';
  font-size: 22px;
  color: var(--text-3);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq__item.open .faq__q::after { content: '−'; }
.faq__a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}
.faq__item.open .faq__a {
  padding: 0 24px 20px;
  max-height: 600px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Footer
   ──────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: #94A3B8;
  padding: 72px 0 32px;
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer__brand-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px;
}
.footer__about { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: #94A3B8;
  font-size: 14px;
  transition: color 0.15s;
}
.footer__links a:hover { color: white; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__incident {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  color: #FCA5A5;
  font-size: 13px;
  font-weight: 600;
}
.footer__incident-dot {
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────────────
   Animations (progressive enhancement — only active when JS is enabled)
   ──────────────────────────────────────────────────────────────────────── */
.fade-up { /* No-JS fallback: always visible */ }

.js .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .js .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Mini dashboard mockup (homepage)
   ──────────────────────────────────────────────────────────────────────── */
.dash-mock {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  font-size: 13px;
}
.dash-mock__top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.dash-mock__company { font-weight: 600; color: var(--text); font-size: 13px; }
.dash-mock__date { color: var(--text-3); font-size: 11px; }
.dash-mock__score {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
}
.dash-mock__score-val {
  font-size: 46px;
  font-weight: 800;
  color: var(--warning);
  line-height: 1;
}
.dash-mock__score-lbl { font-size: 11px; color: var(--text-3); margin-bottom: 4px; }
.dash-mock__score-name { font-size: 15px; font-weight: 700; color: var(--text); }
.dash-mock__bar {
  height: 6px;
  background: var(--bg-muted);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}
.dash-mock__bar-fill {
  height: 100%;
  width: 74%;
  background: linear-gradient(90deg, var(--danger), var(--warning), var(--success));
  border-radius: 3px;
}
.dash-mock__rags {
  display: flex; gap: 10px;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
}
.dash-mock__rag { display: flex; align-items: center; gap: 5px; }
.dash-mock__rag-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-mock__rag-dot--r { background: var(--danger); }
.dash-mock__rag-dot--a { background: var(--warning); }
.dash-mock__rag-dot--g { background: var(--success); }
.dash-mock__row {
  display: flex; gap: 10px; padding: 8px 0;
  font-size: 12px;
  border-top: 1px solid var(--border);
}
.dash-mock__row-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.dash-mock__row-badge--r { background: #FEE2E2; color: var(--danger); }
.dash-mock__row-badge--a { background: #FFEDD5; color: var(--warning); }

/* ─────────────────────────────────────────────────────────────────────────
   Hero split layout
   ──────────────────────────────────────────────────────────────────────── */
.hero--split { padding: 72px 0 80px; }
.hero--split .hero__grid-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .hero--split { padding: 56px 0 64px; }
  .hero--split .hero__grid-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero--split .dash-mock { max-width: 480px; margin: 0 auto; }
}
.hero--split h1 {
  font-size: clamp(30px, 4.2vw, 48px);
}
.hero--split .hero__sub { margin-bottom: 18px; }
.hero--split .hero__actions { margin-bottom: 0; }

/* Hero — internal problem statement (StoryBrand: inner-problem boven het gids-moment) */
.hero__problem {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  padding: 14px 18px;
  background: rgba(220, 38, 38, 0.04);
  border-left: 3px solid var(--danger);
  border-radius: 0 8px 8px 0;
  margin: 0 0 28px;
  max-width: 620px;
}
.hero__problem strong { color: var(--text); font-weight: 700; }

/* Hero — micro-context-list onder de CTAs ("48u operationeel · vrijblijvend · ...") */
.hero__cta-context {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.hero__cta-context span { white-space: nowrap; }

/* ─────────────────────────────────────────────────────────────────────────
   Utilities
   ──────────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* SVG icon defs container */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════════════════
   v3 ADDITIONS — persona tracks, price calculator, NIS2 self-check
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Hero powered-by chip
   ──────────────────────────────────────────────────────────────────────── */
.hero__poweredby {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.hero__poweredby svg { color: var(--accent-d); }
.hero__poweredby strong { color: var(--text); font-weight: 700; }

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Tracks-sectie (eigen blok onder hero met prompt + tabs + panel)
   ──────────────────────────────────────────────────────────────────────── */
.tracks-section {
  padding: 72px 0 88px;
  background: var(--bg-soft);
}
@media (max-width: 720px) {
  .tracks-section { padding: 56px 0 64px; }
}

.tracks-prompt {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 640px;
}
.tracks-prompt__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.tracks-prompt__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.tracks-prompt__sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 520px;
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Persona-track switcher (3 tabs onder hero)
   ──────────────────────────────────────────────────────────────────────── */
.tracks {
  background: white;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0;
  box-shadow: 0 -2px 12px -4px rgba(15,23,42,0.04);
}
@media (max-width: 720px) {
  .tracks { grid-template-columns: 1fr; padding: 6px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}
.tracks__btn {
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tracks__btn:hover { background: var(--bg-soft); }
.tracks__btn.active {
  background: var(--text);
  border-color: var(--text);
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.25);
}
.tracks__btn.active .tracks__btn-label { color: white; }
.tracks__btn.active .tracks__btn-sub { color: rgba(255, 255, 255, 0.7); }
.tracks__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.tracks__btn.active .tracks__icon {
  background: rgba(255, 255, 255, 0.12);
}
.tracks__btn-label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.2;
}
.tracks__btn-sub {
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
  line-height: 1.35;
}

/* Track-panel (verborgen content per track) — verbonden met tabs erboven */
.track-panel {
  display: none;
  margin: 0;
  padding: 32px 36px;
  background: white;
  border: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 4px 16px -6px rgba(15,23,42,0.06);
}
.track-panel.active { display: block; }
@media (max-width: 720px) {
  .track-panel { padding: 24px 22px; }
}
.track-panel__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.track-panel__title::before {
  content: '→';
  color: var(--accent-d);
  margin-right: 8px;
  font-weight: 700;
}
.track-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}
@media (max-width: 720px) {
  .track-panel ul { grid-template-columns: 1fr; }
  .track-panel { padding: 24px; }
}
.track-panel li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.track-panel li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Industriestandaarden strip (vervanger voor open-source stack-blok)
   ──────────────────────────────────────────────────────────────────────── */
.standards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.standards__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.standards__icon {
  width: 28px; height: 28px;
  background: var(--bg-muted);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  font-size: 14px;
  flex-shrink: 0;
}
.standards__label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.standards__label small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Prijs-stoelendans (visueel kosten-vergelijking)
   ──────────────────────────────────────────────────────────────────────── */
.cost-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 920px) {
  .cost-compare { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cost-compare { grid-template-columns: 1fr; }
}
.cost-bar {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 280px;
}
.cost-bar--winner {
  background: white;
  border: 2px solid var(--accent-d);
  box-shadow: var(--shadow-lg);
}
.cost-bar__tag {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--text-3);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cost-bar--winner .cost-bar__tag { background: var(--accent-d); }
.cost-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.cost-bar__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.cost-bar__amount {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-2);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cost-bar--winner .cost-bar__amount { color: var(--accent-deep); }
.cost-bar__amount .unit { font-size: 14px; color: var(--text-3); font-weight: 600; }
.cost-bar__sub { font-size: 12.5px; color: var(--text-3); margin-bottom: 16px; }
.cost-bar__visual {
  margin-top: auto;
  height: 6px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.cost-bar__visual-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--text-4);
  border-radius: 3px;
}
.cost-bar--winner .cost-bar__visual-fill {
  background: linear-gradient(90deg, var(--accent), var(--accent-d));
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Calculator widget (pricing-pagina)
   ──────────────────────────────────────────────────────────────────────── */
.calc {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.calc__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
@media (max-width: 720px) { .calc__row { flex-direction: column; align-items: stretch; gap: 12px; } }
.calc__lbl { font-size: 15px; font-weight: 600; color: var(--text); }
.calc__sub { font-size: 13px; color: var(--text-3); }
.calc__slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--bg-muted);
  border-radius: 3px; outline: none;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  background: var(--accent-d);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: var(--shadow);
}
.calc__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--accent-d);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
}
.calc__output {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.calc__output--breakdown { gap: 20px; }
@media (max-width: 720px) { .calc__output { grid-template-columns: 1fr; } }

.calc__col {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.calc__col--diy {
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.calc__col--cb {
  background: linear-gradient(180deg, var(--accent-dim) 0%, #F0F9FF 100%);
  border: 1px solid rgba(14, 165, 233, 0.25);
}
.calc__col-header { margin-bottom: 18px; }
.calc__col-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.calc__col--diy .calc__col-tag { color: var(--text-3); }
.calc__col--cb  .calc__col-tag { color: var(--accent-deep); }
.calc__col--cb  .calc__col-tag span { color: var(--text); }
.calc__col-amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.calc__col--diy .calc__col-amount { color: var(--text-2); }
.calc__col--cb  .calc__col-amount { color: var(--accent-deep); }
.calc__col-sub {
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 6px;
}

.calc__breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  margin-top: 4px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.calc__breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-2);
}
.calc__breakdown .calc__line { flex: 1; line-height: 1.4; }
.calc__breakdown .calc__line em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-3);
  display: block;
  margin-top: 1px;
}
.calc__breakdown strong {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.calc__breakdown--good strong { color: var(--success); }

.calc__col-warn {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(234, 88, 12, 0.08);
  color: #9A3412;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
}
.calc__col-good {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(22, 163, 74, 0.10);
  color: #14532D;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}

.calc__savings {
  margin-top: 22px;
  padding: 20px 24px;
  background: var(--text);
  color: white;
  border-radius: var(--radius);
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.calc__savings strong { color: #7DD3FC; font-size: 22px; font-weight: 800; }

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Variant A: vereenvoudigde calculator-kolommen
   (highlights + accordion-details + tijdsbesparing-regel)
   ──────────────────────────────────────────────────────────────────────── */

/* Highlights — 3 bullets met inline-icon, scanbaar */
.calc__highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.calc__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-2);
}
.calc__highlights li::before {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.calc__highlights--good li::before {
  content: '✓';
  background: #D1FAE5;
  color: var(--success);
}
.calc__highlights--bad li::before {
  content: '!';
  background: #FEF3C7;
  color: var(--warning);
}

/* Accordion — volgt .faq__item-pattern (max-height transition + .open-class) */
.calc__details {
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.calc__details-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.calc__details-toggle:hover { color: var(--text); }
.calc__details-chevron {
  font-size: 11px;
  transition: transform 0.2s ease;
}
.calc__details.open .calc__details-chevron { transform: rotate(180deg); }
.calc__details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.calc__details.open .calc__details-content {
  max-height: 600px;
  padding-top: 12px;
}

/* Savings-banner — tweeregelige variant (geld + tijd) */
.calc__savings-money {
  font-size: 16px;
  line-height: 1.5;
}
.calc__savings-money strong { color: #7DD3FC; font-size: 22px; font-weight: 800; }
.calc__savings-meta {
  display: inline-block;
  margin-left: 6px;
  opacity: 0.75;
  font-size: 14px;
}
.calc__savings-meta strong { font-size: 14px; }
.calc__savings-time {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
}
.calc__savings-time strong { color: #7DD3FC; font-weight: 700; }

@media (max-width: 560px) {
  .calc__savings-meta { display: block; margin-left: 0; margin-top: 4px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — NIS2 zelf-check (quiz)
   ──────────────────────────────────────────────────────────────────────── */
.quiz {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 540px) { .quiz { padding: 28px 22px; } }
.quiz__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.quiz__progress-step {
  flex: 1;
  height: 4px;
  background: var(--bg-muted);
  border-radius: 2px;
}
.quiz__progress-step.done { background: var(--accent-d); }
.quiz__progress-step.current {
  background: linear-gradient(90deg, var(--accent-d) 50%, var(--bg-muted) 50%);
}
.quiz__step { display: none; }
.quiz__step.active { display: block; }
.quiz__qnum {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.quiz__q {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border-h);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.quiz__option:hover { border-color: var(--accent); background: var(--bg-soft); }
.quiz__option.selected {
  border-color: var(--accent-d);
  background: var(--accent-dim);
}
.quiz__option-dot {
  width: 22px; height: 22px;
  border: 2px solid var(--border-h);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}
.quiz__option.selected .quiz__option-dot {
  border-color: var(--accent-d);
  background: var(--accent-d);
}
.quiz__option.selected .quiz__option-dot::after {
  content: '';
  position: absolute; inset: 4px;
  background: white;
  border-radius: 50%;
}
.quiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.quiz__nav-info { font-size: 13px; color: var(--text-3); }

.quiz__result {
  text-align: center;
}
.quiz__result-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.quiz__result-badge--low { background: #D1FAE5; color: var(--success); }
.quiz__result-badge--mid { background: #FFEDD5; color: var(--warning); }
.quiz__result-badge--high { background: #FEE2E2; color: var(--danger); }
.quiz__result-score {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.quiz__result-class { font-size: 18px; color: var(--text-2); margin-bottom: 28px; }
.quiz__result-class strong { color: var(--text); }
.quiz__result-form {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  text-align: left;
}
.quiz__result-form h4 { font-size: 17px; margin-bottom: 12px; }
.quiz__result-form p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; }

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Check-keuze-cards (op /zelfchecks.html)
   ──────────────────────────────────────────────────────────────────────── */
.check-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.check-card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.check-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.check-card__title {
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.check-card__lead {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 22px;
}
.check-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.check-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.check-card__list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 3px;
}
.check-card__list strong { color: var(--text); font-weight: 700; }

.check-card__when {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 22px;
}
.check-card__when-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.check-card__when ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.check-card__when li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.check-card__when li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-d);
  font-weight: 700;
}
.check-card__cta {
  margin-top: auto;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Failure-scenario story (concreet en persoonlijk)
   ──────────────────────────────────────────────────────────────────────── */
.failure-story {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 28px 32px;
  background: white;
  border: 1px solid #FECACA;
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.failure-story__label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--danger);
  background: #FEE2E2;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.failure-story p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 14px;
}
.failure-story p:last-child { margin-bottom: 0; }
.failure-story strong { color: var(--text); font-weight: 700; }
.failure-story__cta {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--text) !important;
  font-weight: 500;
}
@media (max-width: 600px) {
  .failure-story { padding: 22px 22px; }
  .failure-story p { font-size: 14.5px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Jargon-decoder cards ("Uw taal, niet onze")
   ──────────────────────────────────────────────────────────────────────── */
.jargon-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: all 0.15s;
}
.jargon-card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.jargon-card__term {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
  padding: 4px 12px;
  background: var(--accent-dim);
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 14px;
}
.jargon-card__plain {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 8px;
}
.jargon-card__plain:last-child { margin-bottom: 0; }
.jargon-card__plain strong { color: var(--text); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Cyberveilig Check resultaat (actielijst per categorie)
   ──────────────────────────────────────────────────────────────────────── */
.cv-tally {
  font-size: 14px;
  color: var(--text-2);
  background: var(--bg-soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.cv-tally strong { font-weight: 800; margin-right: 4px; }

.cv-result {
  margin-top: 36px;
  text-align: left;
}
.cv-result__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
.cv-result__intro {
  font-size: 14.5px;
  color: var(--text-3);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 24px;
}

.cv-cat {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--text-4);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
}
.cv-cat.cv-status--good    { border-left-color: var(--success); }
.cv-cat.cv-status--partial { border-left-color: var(--warning); }
.cv-cat.cv-status--urgent  { border-left-color: var(--danger); }

.cv-cat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cv-cat__header h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.cv-cat__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.cv-cat.cv-status--good    .cv-cat__badge { background: #D1FAE5; color: #14532D; }
.cv-cat.cv-status--partial .cv-cat__badge { background: #FEF3C7; color: #92400E; }
.cv-cat.cv-status--urgent  .cv-cat__badge { background: #FEE2E2; color: #991B1B; }

.cv-cat__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cv-cat__item {
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 8px;
  border-left: 3px solid var(--text-4);
}
.cv-cat__item.cv-status--good    { border-left-color: var(--success); }
.cv-cat__item.cv-status--partial { border-left-color: var(--warning); }
.cv-cat__item.cv-status--urgent  { border-left-color: var(--danger); }

.cv-cat__item-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.cv-cat__item-a {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 6px;
}
.cv-cat__item-a strong { color: var(--text-3); font-weight: 600; }
.cv-cat__item-tip {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid rgba(15,23,42,0.06);
  margin-top: 6px;
}
.cv-cat__item.cv-status--good .cv-cat__item-tip { display: none; }
.cv-cat__item-tip strong { font-weight: 700; }
.cv-cat__item.cv-status--partial .cv-cat__item-tip strong { color: var(--warning); }
.cv-cat__item.cv-status--urgent  .cv-cat__item-tip strong { color: var(--danger); }

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Trust strip (klein onder hero)
   ──────────────────────────────────────────────────────────────────────── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  padding: 26px 24px;
  background: var(--bg-dark);
  background-image: linear-gradient(180deg, #1E293B 0%, var(--bg-dark) 40%, var(--bg-dark) 100%);
  color: #CBD5E1;
  border: none;
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #CBD5E1;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust-strip__item strong { color: white; font-weight: 700; }
.trust-strip__sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 720px) {
  .trust-strip__sep { display: none; }
  .trust-strip { padding: 18px 20px; gap: 10px 24px; }
  .trust-strip__item { font-size: 12.5px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   v3 — Transformation (before/after)
   ──────────────────────────────────────────────────────────────────────── */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .transform-grid { grid-template-columns: 1fr; }
  .transform-arrow { display: none; }
}
.transform-col {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
}
.transform-col--before {
  background: var(--bg-soft);
  border-color: var(--border);
}
.transform-col--after {
  background: linear-gradient(180deg, var(--accent-dim) 0%, #F0F9FF 100%);
  border-color: rgba(14, 165, 233, 0.25);
}
.transform-col__lbl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.transform-col--before .transform-col__lbl { color: var(--text-3); }
.transform-col--after .transform-col__lbl { color: var(--accent-deep); }
.transform-col h3 { font-size: 20px; margin-bottom: 18px; line-height: 1.3; }
.transform-col ul { display: flex; flex-direction: column; gap: 12px; }
.transform-col li {
  display: flex; gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.transform-col--before li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--text-4);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M14.7 5.3a1 1 0 010 1.4L11.4 10l3.3 3.3a1 1 0 11-1.4 1.4L10 11.4l-3.3 3.3a1 1 0 11-1.4-1.4L8.6 10 5.3 6.7a1 1 0 011.4-1.4L10 8.6l3.3-3.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M14.7 5.3a1 1 0 010 1.4L11.4 10l3.3 3.3a1 1 0 11-1.4 1.4L10 11.4l-3.3 3.3a1 1 0 11-1.4-1.4L8.6 10 5.3 6.7a1 1 0 011.4-1.4L10 8.6l3.3-3.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 3px;
}
.transform-col--after li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='currentColor' d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 3px;
}
.transform-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--text-4);
}
