/* =========================================================
   Nembis — style.css
   Licht, professioneel thema voor cybersecurity dienstverlening
   ========================================================= */

:root {
  /* Kleuren */
  --ink:        #0b1f3a;   /* navy tekst */
  --ink-soft:   #2b3f5c;
  --muted:      #5b6b82;
  --line:       #e3e9f2;
  --bg:         #ffffff;
  --bg-soft:    #f5f8fc;
  --bg-tint:    #eef3fb;

  --primary:    #1e5eff;   /* helder blauw */
  --primary-d:  #1747c7;
  --accent:     #06b6d4;   /* cyaan */
  --risk:       #f59e0b;   /* amber voor risico */
  --risk-d:     #b45309;

  --white:      #ffffff;

  /* Maatvoering */
  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 1px 3px rgba(11,31,58,.05);
  --shadow:    0 10px 30px rgba(11,31,58,.08);
  --shadow-lg: 0 24px 60px rgba(11,31,58,.14);

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Space Grotesk', var(--font-body);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 600; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* ---------- Iconen (inline sprite via <use>) ----------
   stroke/fill worden geërfd en stromen zo de use-shadowtree in. */
.hero-trust svg, .card-ic svg, .approach-col h3 svg, .ic-lg,
.feature-ic svg, .plan-feats svg, .risk-panel-head svg, .cta-contact svg {
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(30,94,255,.28); }
.btn-primary:hover { background: var(--primary-d); }
.btn-ghost { background: rgba(11,31,58,.04); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(11,31,58,.07); }
.btn-outline { background: #fff; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand-logo { height: 38px; width: auto; }
.main-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  color: var(--ink-soft); font-weight: 500; font-size: 15.5px;
  padding: 9px 14px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav-menu a:hover { background: var(--bg-tint); color: var(--ink); text-decoration: none; }
.nav-cta { background: var(--primary); color: #fff !important; }
.nav-cta:hover { background: var(--primary-d) !important; }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(6,182,212,.12), transparent 60%),
    radial-gradient(800px 480px at 10% 10%, rgba(30,94,255,.10), transparent 55%),
    linear-gradient(180deg, var(--bg-soft), #fff);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 84px 24px 88px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .02em;
  color: var(--primary-d); background: #fff; border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(6,182,212,.18); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -.02em; margin: 22px 0 18px; }
.hero h1 .hl { color: var(--primary); position: relative; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.hero-trust .ic { width: 18px; height: 18px; color: var(--accent); }
.hero-visual img { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(11,31,58,.16)); }

/* ---------- Strip ---------- */
.strip { background: var(--ink); color: #cfe0ff; }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px; padding: 18px 24px; }
.strip-label { font-family: var(--font-head); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #7da2e6; }
.strip-item { font-weight: 600; font-size: 15px; color: #eaf1ff; }
.strip-sep { color: #43608f; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
  background: var(--bg-tint); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.kicker-light { color: #bfe9ff; background: rgba(255,255,255,.12); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.015em; }
.section-intro { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

/* ---------- Cards (waarom) ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent)); margin-bottom: 18px;
}
.card-ic svg { width: 28px; height: 28px; color: #fff; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; }

/* ---------- Aanpak ---------- */
.approach { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.approach-col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
}
.approach-col h3 { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; margin-bottom: 18px; }
.ic-lg { width: 30px; height: 30px; color: var(--primary); flex: none; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Feature split (ASM / Chain) ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.feature-block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 34px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.feature-block::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.feature-ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--bg-tint); margin-bottom: 20px; }
.feature-ic svg { width: 32px; height: 32px; color: var(--primary); }
.feature-ic--alt { background: #fdf2dd; }
.feature-ic--alt svg { color: var(--risk-d); }
.feature-block h3 { font-size: 1.5rem; margin-bottom: 14px; }
.feature-block p { color: var(--muted); margin-bottom: 12px; }
.feature-block strong { color: var(--ink); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-featured {
  border: 2px solid var(--primary); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff, #f7faff);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 13px; letter-spacing: .03em; padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(30,94,255,.3); white-space: nowrap;
}
.plan-name { font-size: 1.5rem; }
.plan-tag { color: var(--primary); font-weight: 600; font-size: .95rem; margin-top: 2px; }
.plan-price { margin: 18px 0 6px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan-price .amount { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--ink); }
.plan-price .per { color: var(--muted); font-size: .9rem; }
.plan-sub { color: var(--muted); font-size: .98rem; min-height: 48px; }
.plan-feats { margin: 22px 0 26px; border-top: 1px solid var(--line); padding-top: 22px; flex: 1; }
.plan-feats li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: .98rem; color: var(--ink-soft); }
.plan-feats svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--accent); }
.plan-feats svg.star { color: var(--risk); }
.pricing-note { margin-top: 26px; text-align: center; color: var(--muted); font-size: .92rem; }

/* ---------- Voorbeeldcasussen ---------- */
.case {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  position: relative; display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-tag {
  align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: 11.5px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--risk-d);
  background: #fdf2dd; padding: 4px 10px; border-radius: 999px; margin-bottom: 16px;
}
.case .card-ic { margin-bottom: 16px; }
.case h3 { font-size: 1.22rem; margin-bottom: 12px; }
.case p { color: var(--muted); font-size: .98rem; margin-bottom: 12px; }
.case-chain {
  display: flex; flex-wrap: wrap; gap: 6px 4px; align-items: center;
  font-size: .82rem !important; color: var(--ink-soft) !important; margin-bottom: 14px !important;
}
.case-chain span {
  background: var(--bg-tint); border: 1px solid var(--line); border-radius: 8px;
  padding: 4px 9px; font-weight: 600; color: var(--primary-d);
}
.case-impact {
  margin-top: auto !important; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: .95rem !important; color: var(--ink-soft) !important;
}
.case-impact strong { color: var(--risk-d); }

/* ---------- Over Nembis ---------- */
.over-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.over-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 14px 0 18px; }
.over-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.06rem; }
.over-facts { margin: 4px 0 22px; }
.over-facts li {
  position: relative; padding-left: 28px; margin-bottom: 11px;
  color: var(--ink-soft); font-size: 1.02rem;
}
.over-facts li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.over-sign { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.over-trust {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 30px 14px; box-shadow: var(--shadow);
}
.over-trust h3 { font-size: 1.25rem; margin-bottom: 18px; }
.over-trust ul li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.over-trust ul li:last-child { border-bottom: 0; }
.over-trust svg {
  width: 26px; height: 26px; flex: none; margin-top: 2px; color: var(--primary);
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.over-trust strong { display: block; color: var(--ink); font-family: var(--font-head); }
.over-trust span { color: var(--muted); font-size: .95rem; }

/* Honeypot (verborgen spam-veld) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Risico (donker accent blok) ---------- */
.risk {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(245,158,11,.18), transparent 60%),
    linear-gradient(160deg, #0b1f3a, #112c52);
  color: #dbe6f7;
}
.risk h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 14px 0 18px; }
.risk h2 em { color: var(--risk); font-style: normal; }
.risk-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.risk-copy p { color: #b9c8e0; margin-bottom: 14px; }
.risk-copy strong { color: #fff; }
.ticks-light li { color: #cdd9ee; }
.ticks-light li::before { background-color: var(--risk); }
.risk-disclaimer { font-size: .88rem; color: #8aa0c4; border-left: 3px solid var(--risk); padding-left: 14px; margin-top: 20px; }

.risk-panel {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px; backdrop-filter: blur(4px);
}
.risk-panel-head { display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-weight: 600; color: #cfe0ff; margin-bottom: 22px; }
.risk-panel-head svg { width: 24px; height: 24px; color: var(--accent); }
.risk-row { display: flex; justify-content: space-between; font-size: .92rem; color: #b9c8e0; margin-bottom: 8px; }
.risk-row strong { color: var(--risk); }
.bar { height: 10px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; margin-bottom: 24px; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--risk), #ef4444); border-radius: 999px; }
.risk-figure { text-align: center; padding: 18px; background: rgba(245,158,11,.10); border: 1px solid rgba(245,158,11,.3); border-radius: 12px; margin-bottom: 20px; }
.risk-figure-label { display: block; font-size: .82rem; color: #b9c8e0; text-transform: uppercase; letter-spacing: .08em; }
.risk-figure-amount { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: #fff; margin: 6px 0 2px; }
.risk-figure-note { display: block; font-size: .8rem; color: #8aa0c4; }
.risk-mini li { display: flex; justify-content: space-between; font-size: .92rem; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.12); color: #cdd9ee; }
.risk-mini li:last-child { border-bottom: 0; }
.risk-panel-foot { font-size: .8rem; color: #8aa0c4; margin-top: 14px; text-align: center; }

/* ---------- Proces ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  padding: 18px 30px 18px 0; list-style: none; position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--primary); transition: transform .2s; line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding: 0 0 20px; }

/* ---------- CTA / Contact ---------- */
.cta { background: var(--bg-soft); }
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 48px; box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.cta-copy { align-self: center; }
.cta-copy .kicker { color: var(--primary); background: var(--bg-tint); }
.cta-copy h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 14px; }
.cta-copy p { color: var(--muted); margin-bottom: 24px; }
.cta-contact li { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; font-weight: 500; color: var(--ink-soft); }
.cta-contact svg { width: 22px; height: 22px; color: var(--primary); flex: none; }

.cta-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fdfefe;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,94,255,.12);
}
.field textarea { resize: vertical; }
.field-check { grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.field-check input { width: 18px; height: 18px; margin-top: 3px; }
.field-check label { font-weight: 400; color: var(--muted); }
.form-status { font-size: .95rem; font-weight: 500; min-height: 1.2em; }
.form-status.ok { color: #047857; }
.form-status.err { color: #b91c1c; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aebfda; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 38px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: #8aa0c4; font-size: .96rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #aebfda; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .9rem; color: #7186a8;
}
.footer-tag { font-family: var(--font-head); color: #9fb4d8; }

/* ---------- Juridische pagina's ---------- */
.legal-hero { background: linear-gradient(180deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line); padding: 56px 0 40px; }
.legal-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.02em; }
.legal-hero p { color: var(--muted); margin-top: 10px; }
.legal-page { padding: 56px 0 80px; }
.legal-page article { max-width: 800px; margin: 0 auto; }
.legal-page h2 { font-size: 1.45rem; margin: 38px 0 12px; padding-top: 12px; }
.legal-page h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: 12px; }
.legal-page ul.bul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-page ul.bul li { margin-bottom: 8px; }
.legal-page .toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 32px; }
.legal-page .toc h2 { margin: 0 0 12px; font-size: 1.1rem; padding-top: 0; }
.legal-page .toc ol { padding-left: 20px; color: var(--primary); }
.legal-page .toc li { margin-bottom: 6px; }
.legal-page .meta { color: var(--muted); font-size: .92rem; margin-bottom: 28px; }
.legal-page .back { display: inline-block; margin-top: 36px; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: .96rem; }
.legal-page th, .legal-page td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); }
.legal-page th { background: var(--bg-soft); font-family: var(--font-head); }

/* ---------- Reveal animatie ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 60px 24px 64px; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .lead { max-width: none; }
  .cards-3, .pricing, .steps { grid-template-columns: 1fr; }
  .approach, .feature-split, .risk-grid, .cta-inner, .over-grid { grid-template-columns: 1fr; }
  .risk-grid { gap: 32px; }
  .cta-inner { padding: 32px 26px; }
  .steps { gap: 16px; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 14px 20px 22px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 14px; }
  .nav-cta { text-align: center; margin-top: 6px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .plan:hover { transform: none; }
}
