:root {
  --bg: #070a08;
  --panel: #0c120e;
  --panel2: #101812;
  --line: rgba(156, 203, 178, 0.13);
  --line-strong: rgba(156, 203, 178, 0.26);
  --ink: #e8eff5;
  --muted: #8b9dad;
  --lime: #2f8f63;
  --lime-soft: rgba(47, 143, 99, 0.12);
  --lime-line: rgba(47, 143, 99, 0.4);
  --amber: #f5b453;
  --sans: "Space Grotesk", -apple-system, sans-serif;
  --mono: "JetBrains Mono", Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(rgba(156, 203, 178, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 203, 178, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
}
::selection { background: var(--lime); color: #eef6f0; }
img, iframe { max-width: 100%; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.mono { font-family: var(--mono); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 10, 8, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.nav-logo { font-family: var(--mono); font-weight: 700; font-size: 18px; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo i { font-style: normal; color: var(--lime); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--mono); font-size: 12px; font-weight: 500; text-transform: lowercase;
  color: var(--muted); text-decoration: none; padding: 8px 12px; border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--lime); background: var(--lime-soft); }
.nav-links a.cta { background: var(--lime); color: #eef6f0; font-weight: 700; margin-left: 10px; }
.nav-links a.cta:hover { background: #37a674; color: #eef6f0; }
.burger { display: none; background: none; border: 1px solid var(--line-strong); color: var(--ink); font-family: var(--mono); font-size: 11px; padding: 9px 16px; cursor: pointer; border-radius: 4px; }
.mnav { display: none; background: var(--panel); border-bottom: 1px solid var(--line); position: relative; z-index: 49; }
.mnav.open { display: block; }
.mnav a { display: block; padding: 17px 28px; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; font-family: var(--mono); font-size: 15px; }
.mnav a:hover { color: var(--lime); }

/* ============ HERO ============ */
.hero { padding: 88px 0 72px; position: relative; }
.hero::before {
  content: ""; position: absolute; top: -260px; right: -140px; width: 780px; height: 640px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(47, 143, 99, 0.07), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 64px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; color: var(--lime);
  border: 1px solid var(--lime-line); border-radius: 999px; padding: 7px 14px;
  background: var(--lime-soft); margin-bottom: 28px;
}
.chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: pl 2s ease-in-out infinite; }
@keyframes pl { 50% { opacity: 0.35; } }
h1 { font-weight: 700; letter-spacing: -0.035em; font-size: clamp(50px, 7.4vw, 102px); line-height: 0.98; }
h1 .g { color: var(--lime); }
h1 .hcaret { display: inline-block; width: 0.5em; height: 0.82em; background: var(--lime); vertical-align: baseline; transform: translateY(0.08em); margin-left: 8px; animation: blink 1s steps(1) infinite; }
.hero-sub { font-size: 18.5px; color: var(--muted); max-width: 30em; margin-top: 26px; }
.hero-sub b { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 700; font-size: 13px; text-transform: lowercase;
  text-decoration: none; cursor: pointer; border-radius: 6px;
  padding: 15px 26px; background: var(--lime); color: #eef6f0; border: 1px solid var(--lime);
  transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: #37a674; border-color: #37a674; box-shadow: 0 0 34px rgba(47, 143, 99, 0.3); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.ghost:hover { border-color: var(--lime); color: var(--lime); box-shadow: none; background: var(--lime-soft); }
.hero-fine { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 26px; }
.hero-fine b { color: var(--lime); font-weight: 500; }

/* Hero mini-telefoon */
.herostack { display: grid; gap: 24px; }
.hphone {
  width: 300px; justify-self: center; position: relative; transform: rotate(-3deg); margin-top: 12px;
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: 36px; padding: 10px;
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.9), 0 0 60px -18px rgba(47, 143, 99, 0.16);
}
.hphone-scr { border-radius: 27px; overflow: hidden; background: #0b141a; display: flex; flex-direction: column; height: 474px; }
.hphone .wa-ava { width: 30px; height: 30px; font-size: 13px; }
.hphone .wa-name { font-size: 13px; }
.hphone .wa-msg { font-size: 12px; border-radius: 8px; padding: 7px 10px 5px; }
.hphone .wa-msg .tm { font-size: 8.5px; }
.hphone .wa-input .send { width: 32px; height: 32px; font-size: 14px; }
.hphone-badge {
  position: absolute; top: -14px; right: -20px; transform: rotate(6deg); z-index: 2;
  background: var(--lime); color: #eef6f0; font-family: var(--mono); font-size: 11.5px; font-weight: 700;
  border-radius: 999px; padding: 7px 13px; box-shadow: 0 12px 30px -10px rgba(47, 143, 99, 0.5);
  opacity: 0; animation: waIn 0.35s ease 4.6s forwards;
}

.heropanel {
  display: flex; align-items: center; gap: 22px; justify-content: space-between;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px;
}
.heropanel .lbl { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.heropanel .num { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-top: 2px; }
.heropanel .badge { font-family: var(--mono); font-size: 11.5px; color: var(--lime); background: var(--lime-soft); border: 1px solid var(--lime-line); border-radius: 4px; padding: 3px 8px; font-weight: 700; }
.spark { flex-shrink: 0; }
.spark polyline { fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 2.4s ease-out forwards 0.5s; filter: drop-shadow(0 0 6px rgba(47, 143, 99, 0.5)); }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Statstrook */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 10px; margin-top: 72px; background: var(--panel); overflow: hidden; }
.stat { padding: 26px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .n { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; }
.stat .n small { font-size: 17px; color: var(--lime); font-family: var(--mono); }
.stat .l { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ============ SECTIES ============ */
.sec { padding: 112px 0; position: relative; }
.slab { font-family: var(--mono); font-size: 12.5px; color: var(--lime); margin-bottom: 24px; font-weight: 500; }
.slab::before { content: "// "; color: var(--muted); }
h2 { font-weight: 700; font-size: clamp(36px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -0.03em; max-width: 20ch; }
h2 .g { color: var(--lime); }
.lead { font-size: 17px; color: var(--muted); margin-top: 20px; max-width: 32em; }
.lead b { color: var(--ink); font-weight: 600; }

/* ============ EEFJE ============ */
.wa-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 76px; align-items: center; }
.checklist { list-style: none; margin-top: 30px; display: grid; gap: 4px; }
.checklist li { display: flex; gap: 14px; align-items: baseline; padding: 13px 16px; font-size: 15px; border: 1px solid transparent; border-radius: 8px; transition: border-color 0.15s ease, background 0.15s ease; }
.checklist li:hover { background: var(--panel); border-color: var(--line); }
.checklist .tick { font-family: var(--mono); color: var(--lime); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.latency { display: inline-flex; gap: 8px; align-items: center; margin-top: 26px; font-family: var(--mono); font-size: 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 6px; padding: 8px 14px; background: var(--panel); }
.latency b { color: var(--lime); font-weight: 700; }
.phone {
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: 38px; padding: 12px;
  max-width: 392px; width: 100%; justify-self: center;
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.9), 0 0 60px -20px rgba(47, 143, 99, 0.14);
}
.phone-screen { border-radius: 28px; overflow: hidden; background: #0b141a; display: flex; flex-direction: column; height: 560px; }
.wa-top { display: flex; align-items: center; gap: 10px; padding: 14px 14px 12px; background: #17222a; }
.wa-ava { width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: #eef6f0; display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.wa-name { color: #e9edef; font-weight: 600; font-size: 14px; line-height: 1.15; }
.wa-status { color: #8696a0; font-size: 11px; font-family: var(--mono); }
.wa-body { flex: 1; overflow: hidden; padding: 14px 10px; display: flex; flex-direction: column; gap: 7px; background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 22px 22px; }
.wa-msg { max-width: 88%; padding: 8px 11px 6px; border-radius: 8px; font-size: 13px; line-height: 1.45; color: #e9edef; opacity: 0; transform: translateY(8px); animation: waIn 0.35s ease forwards; }
.wa-msg.in { align-self: flex-start; background: #1c2731; border-top-left-radius: 2px; }
.wa-msg.out { align-self: flex-end; background: #14503f; border-top-right-radius: 2px; }
.wa-msg b { color: #fff; }
.wa-msg .tm { display: block; text-align: right; font-size: 9px; color: rgba(255, 255, 255, 0.45); margin-top: 3px; }
@keyframes waIn { to { opacity: 1; transform: none; } }
.wa-typing { align-self: flex-start; background: #1c2731; border-radius: 8px; border-top-left-radius: 2px; padding: 10px 12px; display: inline-flex; gap: 4px; opacity: 0; animation: waIn 0.3s ease forwards; }
.wa-typing span { width: 6px; height: 6px; border-radius: 50%; background: #8696a0; animation: wb 1.2s ease-in-out infinite; }
.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes wb { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.wa-input { display: flex; gap: 8px; padding: 10px; background: #17222a; }
.wa-input .box { flex: 1; background: #24313c; border-radius: 20px; padding: 9px 14px; font-size: 12px; color: #8696a0; }
.wa-input .send { width: 36px; height: 36px; border-radius: 50%; background: var(--lime); color: #eef6f0; display: grid; place-items: center; font-weight: 900; }

/* ============ MODULES / DIENSTEN ============ */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.mod {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.mod:hover { border-color: var(--lime-line); transform: translateY(-4px); box-shadow: 0 20px 60px -30px rgba(47, 143, 99, 0.25); }
.mod-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11px; color: var(--muted); }
.mod-head .st { color: var(--lime); font-weight: 700; }
.mod-body { padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.mod h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.mod p { font-size: 14.5px; color: var(--muted); flex: 1; }
.mod .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.mod .chips span { font-family: var(--mono); font-size: 10.5px; color: var(--muted); border: 1px solid var(--line); border-radius: 4px; padding: 3px 8px; }

/* ============ PRIJZEN ============ */
.prijs { background: linear-gradient(#0a100c, var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prijs-note { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-top: 18px; max-width: 52em; line-height: 1.7; }
.tiers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; margin-top: 60px; align-items: stretch; }
.tier {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  display: flex; flex-direction: column; position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tier:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.tier.feat { border-color: var(--lime-line); box-shadow: 0 0 70px -20px rgba(47, 143, 99, 0.28); transform: translateY(-12px); background: linear-gradient(170deg, #0e1a13, var(--panel) 45%); }
.tier.feat:hover { transform: translateY(-16px); }
.tier-flag {
  position: absolute; top: -12px; left: 24px;
  background: var(--lime); color: #eef6f0; padding: 4px 12px; border-radius: 4px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.tier-head { padding: 30px 26px 22px; border-bottom: 1px solid var(--line); }
.tier-name { font-family: var(--mono); font-size: 12px; color: var(--lime); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.tier-price { font-size: 48px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin: 16px 0 10px; }
.tier-price small { font-family: var(--mono); font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0; }
.tier-desc { font-size: 14px; color: var(--muted); }
.tier-list { list-style: none; padding: 22px 26px; display: grid; gap: 11px; flex: 1; }
.tier-list li { position: relative; padding-left: 32px; font-size: 14px; }
.tier-list li::before { content: "[✓]"; position: absolute; left: 0; top: 4px; font-family: var(--mono); font-size: 11px; color: var(--lime); }
.tier-list li.no { color: var(--muted); opacity: 0.55; }
.tier-list li.no::before { content: "[—]"; color: var(--muted); }
.tier-list li b { font-weight: 600; color: var(--ink); }
.tier-cta { padding: 0 26px 26px; }
.tier-cta .btn { width: 100%; justify-content: center; }
.prijs-fine { margin-top: 48px; display: grid; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.prijs-fine div::before { content: "→ "; color: var(--lime); }
.prijs-fine a { color: var(--lime); }

/* ============ DIAGNOSE / FISCALE TEST ============ */
.diag-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.diag-panel { background: var(--panel); border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; }
.diag-head { display: flex; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.diag-head b { color: var(--lime); font-weight: 700; }
.diag-body { padding: 20px; display: grid; gap: 16px; }
.drow { display: grid; grid-template-columns: 1fr 92px; gap: 8px 16px; align-items: center; }
.drow .dl { font-family: var(--mono); font-size: 12px; color: var(--ink); overflow-wrap: anywhere; }
.drow .ds { font-family: var(--mono); font-size: 10.5px; font-weight: 700; text-align: right; color: var(--lime); }
.drow.miss .ds { color: var(--amber); }
.drow .bar { grid-column: 1 / -1; height: 4px; background: rgba(156, 203, 178, 0.12); border-radius: 2px; overflow: hidden; }
.drow .bar span { display: block; height: 100%; width: 0; background: var(--lime); border-radius: 2px; transition: width 1.1s cubic-bezier(0.22, 0.61, 0.36, 1); }
.drow.miss .bar span { background: var(--amber); }
.diag-panel.rv.in .drow:nth-child(1) .bar span { transition-delay: 0.2s; }
.diag-panel.rv.in .drow:nth-child(2) .bar span { transition-delay: 0.45s; }
.diag-panel.rv.in .drow:nth-child(3) .bar span { transition-delay: 0.7s; }
.diag-panel.rv.in .drow:nth-child(4) .bar span { transition-delay: 0.95s; }
.diag-panel.rv.in .drow .bar span { width: var(--w, 100%); }
.diag-foot { padding: 14px 20px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.diag-stats { display: flex; gap: 34px; margin: 30px 0 34px; flex-wrap: wrap; }
.diag-stat .n { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; }
.diag-stat .l { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-top: 4px; }

/* ============ WAAROM ============ */
.why-rows { margin-top: 56px; border-top: 1px solid var(--line); }
.why-row {
  display: grid; grid-template-columns: 80px 0.9fr 1.3fr; gap: 28px; align-items: baseline;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.why-row:hover { background: var(--panel); padding-left: 20px; }
.why-row .no { font-family: var(--mono); font-size: 14px; color: var(--lime); font-weight: 700; }
.why-row h3 { font-size: 23px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.why-row p { font-size: 15px; color: var(--muted); max-width: 44em; }
.why-row p b { color: var(--ink); font-weight: 600; }

/* ============ FOUNDER-KAART ============ */
.founder { margin-top: 44px; display: flex; gap: 24px; align-items: flex-start; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 26px; max-width: 760px; scroll-margin-top: 86px; }
.founder img { width: 156px; height: 156px; border-radius: 50%; object-fit: cover; border: 2px solid var(--lime-line); flex-shrink: 0; }
.founder .fh { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.founder .fh span { font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: var(--lime); margin-left: 10px; }
.founder p { font-size: 14.5px; color: var(--muted); margin-top: 8px; max-width: 46em; }
.founder p b { color: var(--ink); font-weight: 600; }
.founder .fmeta { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-top: 12px; line-height: 1.9; }
.founder .fmeta b { color: var(--lime); font-weight: 500; }
.founder .fmeta a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line-strong); transition: color 0.15s, border-color 0.15s; }
.founder .fmeta a:hover { color: var(--lime); border-color: var(--lime); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 860px; margin: 52px auto 0; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; background: var(--panel); transition: border-color 0.2s ease; }
.faq-item.open { border-color: var(--lime-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink);
  padding: 20px 60px 20px 52px; position: relative; line-height: 1.3;
}
.faq-q::before { content: "?"; position: absolute; left: 20px; top: 19px; font-family: var(--mono); color: var(--lime); font-weight: 700; }
.faq-q::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 19px; color: var(--muted); transition: transform 0.25s ease, color 0.25s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); color: var(--lime); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 22px 52px; font-size: 14.5px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 340px; }

/* ============ EIND-CTA ============ */
.endcta { padding: 150px 0 140px; text-align: center; position: relative; overflow: hidden; }
.endcta::before {
  content: ""; position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 640px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(47, 143, 99, 0.12), transparent 70%);
}
.endcta .wrap { position: relative; z-index: 1; }
.endcta .cmdline { font-family: var(--mono); font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.endcta .cmdline b { color: var(--lime); font-weight: 700; }
.endcta h2 { font-size: clamp(44px, 6.8vw, 92px); max-width: 15ch; margin: 0 auto 24px; }
.endcta p { font-size: 17px; color: var(--muted); margin-bottom: 40px; }
.endcta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { background: #05070a; border-top: 1px solid var(--line); padding: 68px 0 0; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.foot-logo { font-family: var(--mono); font-weight: 700; font-size: 20px; color: var(--ink); }
.foot-logo i { font-style: normal; color: var(--lime); }
.foot-brand p { font-family: var(--mono); font-size: 12.5px; color: var(--muted); max-width: 26em; margin-top: 14px; line-height: 1.7; }
.foot-col h5 { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime); margin-bottom: 18px; }
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.15s ease; }
.foot-col a:hover { color: var(--lime); }
.foot-mega {
  font-family: var(--mono); font-weight: 700; text-align: center; text-transform: lowercase;
  font-size: clamp(52px, 10.5vw, 170px); line-height: 0.9; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 1px rgba(47, 143, 99, 0.3);
  user-select: none; transform: translateY(0.12em);
}
.foot-bottom {
  border-top: 1px solid var(--line); padding: 18px 0 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.foot-bottom a { color: inherit; text-decoration: none; }
.foot-bottom a:hover { color: var(--lime); }
.foot-id { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 6px; font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.6; }
.foot-id b { color: var(--ink); font-weight: 500; }
.foot-id a { color: var(--muted); text-decoration: none; transition: color 0.15s ease; }
.foot-id a:hover { color: var(--lime); }

/* ============ REVEAL ============ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .nav-logo i, .hcaret, .chip .d, .spark polyline { animation: none; }
  .wa-msg, .wa-typing, .hphone-badge { animation: none; opacity: 1; transform: none; }
  .hphone-badge { transform: rotate(6deg); }
  .spark polyline { stroke-dashoffset: 0; }
  .diag-panel .drow .bar span { width: var(--w, 100%); transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  /* menulinks gaan achter de burger, maar de taalwissel blijft zichtbaar in de balk */
  .nav-links { display: flex; margin-left: auto; gap: 0; }
  .nav-links > a { display: none; }
  .lang-sw { margin-left: 0; padding-left: 0; border-left: none; }
  .burger { display: block; }
  .hero-grid, .wa-grid, .diag-grid { grid-template-columns: 1fr; gap: 52px; }
  .herostack { max-width: 620px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .mod-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .tier.feat { transform: none; }
  .why-row { grid-template-columns: 48px 1fr; }
  .why-row p { grid-column: 2; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-inner { gap: 12px; }
  .sec { padding: 76px 0; }
  .hero { padding: 56px 0; }
  /* koppen schalen mee met het scherm — lange woorden (Grāmatvedība?/Бухгалтерия?) passen dan altijd */
  h1 { font-size: clamp(36px, 12vw, 64px); }
  .foot-mega { font-size: 13vw; }
  /* ontbrak hier (zat wel in dark.css): footer stapelt op mobiel */
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .founder { flex-direction: column; padding: 22px; }
  .founder img { width: 124px; height: 124px; }
  .hero-cta .btn, .endcta .row .btn { width: 100%; justify-content: center; }
  .mod-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 56px; }
  .stat { padding: 20px 18px; }
  .stat .n { font-size: 26px; }
  .phone-screen { height: 480px; }
  .heropanel { flex-wrap: wrap; }
  .why-row:hover { padding-left: 8px; }
}

/* ============ TAALWISSEL (nl/en/lv/ru) ============ */
.lang-sw { display: inline-flex; align-items: center; gap: 2px; margin-left: 10px; padding-left: 12px; border-left: 1px solid var(--line); }
.lang-sw a {
  font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: lowercase;
  color: var(--muted); text-decoration: none; padding: 5px 7px; border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.lang-sw a:hover { color: var(--lime); background: var(--lime-soft); }
.lang-sw a.on { color: var(--lime); font-weight: 700; }
.mnav .mnav-lang { display: flex; flex-wrap: wrap; gap: 10px; padding: 16px 28px 18px; border-top: 1px solid var(--line); }
.mnav .mnav-lang a {
  display: inline-block; padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 4px;
  color: var(--muted); font-size: 13px;
}
.mnav .mnav-lang a.on { color: var(--lime); border-color: var(--lime-line); background: var(--lime-soft); }
@media (max-width: 350px) {
  .nav-logo { font-size: 15px; }
  .lang-sw a { padding: 5px 4px; }
}
