:root {
  --bg: #070b15;
  --bg2: #0b1120;
  --panel: rgba(17, 26, 48, 0.72);
  --panel-solid: #101a30;
  --line: rgba(148, 170, 220, 0.14);
  --line-bright: rgba(111, 149, 255, 0.38);
  --ink: #e9eef9;
  --soft: #93a3c4;
  --dim: #61719a;
  --blue: #4f7cff;
  --cyan: #8ed44a; /* brand lime — accent from the logo */
  --green: #34d17b;
  --glow: rgba(79, 124, 255, 0.35);
  --display: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(79,124,255,0.4); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 11, 21, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 22px;
  padding: 14px 24px; max-width: 1120px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-f { height: 28px; width: auto; display: block; }
.term-bot { height: 19px; width: auto; display: block; margin-left: 6px; flex-shrink: 0; }
.logo-word { font-weight: 600; letter-spacing: 0.2em; font-size: 14.5px; color: var(--ink); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--soft); text-decoration: none; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.lang-switch { display: flex; gap: 2px; font-family: var(--mono); font-size: 11px; }
.lang-switch a {
  color: var(--dim); text-decoration: none; padding: 3px 5px; border-radius: 4px;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.cur { color: var(--cyan); }
@media (max-width: 860px) { .nav-links a.nl { display: none; } }
@media (max-width: 560px) { .nav-links a.btn { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 14.5px;
  padding: 11px 22px; border-radius: 8px; color: #fff !important;
  background: linear-gradient(120deg, var(--blue), #3a63e8);
  box-shadow: 0 0 22px var(--glow), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 0 34px var(--glow); }
.btn-ghost {
  display: inline-block; text-decoration: none; font-weight: 500; font-size: 14.5px;
  padding: 11px 20px; border-radius: 8px; color: var(--soft);
  border: 1px solid var(--line);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--line-bright); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(900px 480px at 18% -10%, rgba(79,124,255,0.16), transparent 60%),
    radial-gradient(700px 420px at 92% 8%, rgba(63,208,240,0.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
#net { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.8; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(34px, 5.4vw, 54px); font-weight: 700; line-height: 1.08;
  margin: 0 0 18px; letter-spacing: -0.015em; text-wrap: balance;
}
.h1-key {
  display: block; font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 .alt {
  background: linear-gradient(100deg, #a8e06b, #6cc73e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub { color: var(--soft); font-size: 17px; max-width: 50ch; margin: 0 0 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.stats {
  position: relative; z-index: 1;
  display: flex; margin-top: 64px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--panel); backdrop-filter: blur(8px);
  overflow: hidden;
}
.stat { flex: 1; padding: 18px 22px; border-right: 1px solid var(--line); min-width: 0; }
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: var(--mono); font-size: 19px; font-weight: 700; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat .l { font-size: 12.5px; color: var(--dim); margin-top: 2px; }
@media (max-width: 720px) {
  .stats { flex-direction: column; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* ---------- terminal ---------- */
.term {
  border: 1px solid var(--line-bright); border-radius: 12px;
  background: rgba(6, 10, 20, 0.92);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(79,124,255,0.12);
  overflow: hidden; font-family: var(--mono); font-size: 13px;
  min-height: 262px;
}
.term-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid var(--line);
  background: rgba(17, 26, 48, 0.6);
}
.tdot { width: 10px; height: 10px; border-radius: 50%; background: #2a3654; }
.tdot.r { background: #ff5f57; } .tdot.y { background: #febc2e; } .tdot.g { background: #28c840; }
.term-title { margin-left: 8px; color: var(--dim); font-size: 12px; }
.term-live {
  margin-left: auto; color: var(--green); font-size: 11px; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 6px;
}
.term-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .term-live::before { animation: none; } }
.term-body { padding: 16px 18px; min-height: 196px; }
.term-body .row { white-space: pre-wrap; word-break: break-word; margin: 0 0 7px; color: var(--soft); }
.term-body .row .ts { color: var(--dim); }
.term-body .row.ok { color: var(--green); }
.term-body .row.act { color: var(--cyan); }
.term-body .row.in { color: var(--ink); }
.caret {
  display: inline-block; width: 8px; height: 15px; vertical-align: -2px;
  background: var(--cyan); animation: blink 1s step-end infinite;
}

/* ---------- sections ---------- */
section { padding: 92px 0; border-bottom: 1px solid var(--line); }
.sec-tag {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.1em;
  color: var(--cyan); display: block; margin-bottom: 14px;
}
.sec-h {
  font-size: clamp(26px, 3.6vw, 36px); font-weight: 700; line-height: 1.15;
  margin: 0 0 12px; letter-spacing: -0.01em; text-wrap: balance;
}
.sec-sub { color: var(--soft); font-size: 16px; max-width: 58ch; margin: 0 0 44px; }

/* diensten */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px 24px;
  background: linear-gradient(170deg, rgba(21, 32, 60, 0.55), rgba(11, 17, 32, 0.4));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--line-bright);
  box-shadow: 0 0 34px rgba(79,124,255,0.14);
  transform: translateY(-2px);
}
.card-ico {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: rgba(79,124,255,0.12); border: 1px solid var(--line-bright);
  color: var(--cyan);
}
.card h3 { font-size: 18.5px; margin: 0 0 10px; font-weight: 600; }
.card p { color: var(--soft); font-size: 14.5px; margin: 0 0 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-family: var(--mono); font-size: 11.5px; color: var(--dim);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px;
}

/* cases */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: linear-gradient(170deg, rgba(21, 32, 60, 0.5), rgba(11, 17, 32, 0.35));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.case:hover { border-color: var(--line-bright); box-shadow: 0 0 34px rgba(79,124,255,0.12); }
.case-visual {
  height: 240px; display: grid; place-items: center;
  background:
    radial-gradient(420px 200px at 50% 115%, rgba(79,124,255,0.18), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(148,170,220,0.05) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(148,170,220,0.05) 39px 40px),
    var(--bg2);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 20px;
}
.case-body { padding: 22px 24px 24px; }
.case-body h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.case-body p { color: var(--soft); font-size: 14.5px; margin: 0 0 16px; }

/* phone mockup */
.phone {
  width: 176px; border-radius: 26px; border: 2px solid #24304f;
  background: #0a1222; padding: 12px 12px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.phone-notch { width: 54px; height: 5px; border-radius: 3px; background: #24304f; margin: 0 auto 12px; }
.phone-app-title { font-family: var(--mono); font-size: 9.5px; color: var(--dim); text-align: center; margin-bottom: 10px; letter-spacing: 0.08em; }
.startbtn {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 10px;
  display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 32% 28%, #3ee08d, #17a35b);
  color: #04160c; font-weight: 800; font-size: 13px; font-family: var(--display);
  box-shadow: 0 0 24px rgba(52, 209, 123, 0.4);
}
.startbtn::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(52, 209, 123, 0.45);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.85); opacity: 1; } 100% { transform: scale(1.25); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .startbtn::after { animation: none; opacity: 0.5; } }
.phone-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 9.5px; color: var(--soft);
  border-top: 1px solid var(--line); padding-top: 8px; margin-top: 4px;
}
.gps { color: var(--green); }

/* calculator mockup */
.calc {
  width: min(300px, 100%); border: 1px solid var(--line-bright); border-radius: 12px;
  background: rgba(6, 10, 20, 0.9); padding: 16px 18px;
  font-family: var(--mono); font-size: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.calc-title { color: var(--dim); font-size: 10.5px; letter-spacing: 0.1em; margin-bottom: 12px; }
.calc-row {
  display: flex; justify-content: space-between; padding: 7px 0;
  border-bottom: 1px solid var(--line); color: var(--soft);
}
.calc-row .v { color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-total {
  display: flex; justify-content: space-between; padding-top: 12px;
  color: var(--cyan); font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums;
}

/* mini log mockup */
.minilog {
  width: min(320px, 100%); border: 1px solid var(--line-bright); border-radius: 12px;
  background: rgba(6, 10, 20, 0.9); padding: 14px 16px;
  font-family: var(--mono); font-size: 11.5px; line-height: 1.9;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.minilog .ok { color: var(--green); }
.minilog .act { color: var(--cyan); }
.minilog .mut { color: var(--dim); }

/* browser mockup */
.miniweb {
  width: min(320px, 100%); border: 1px solid var(--line-bright); border-radius: 12px;
  background: rgba(6, 10, 20, 0.9); overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.miniweb-bar {
  padding: 8px 12px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 10.5px; color: var(--dim); text-align: center;
  background: rgba(17, 26, 48, 0.6);
}
.miniweb-body { padding: 14px; display: grid; gap: 9px; }
.skel { height: 11px; border-radius: 4px; background: rgba(148,170,220,0.14); }
.skel.w60 { width: 60%; } .skel.w80 { width: 80%; } .skel.w40 { width: 40%; }
.skel.hl { background: rgba(79,124,255,0.35); }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .pricing { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px;
  background: linear-gradient(170deg, rgba(21, 32, 60, 0.55), rgba(11, 17, 32, 0.4));
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.price-card:hover {
  border-color: var(--line-bright);
  box-shadow: 0 0 34px rgba(79,124,255,0.14);
  transform: translateY(-2px);
}
.price-card h3 { font-size: 16.5px; margin: 0 0 14px; font-weight: 600; min-height: 2.6em; }
.price-card .price {
  font-family: var(--mono); font-size: 21px; font-weight: 700; color: var(--cyan);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.price-card .per { font-size: 12.5px; color: var(--dim); margin-top: 2px; }
.price-card .permo {
  font-family: var(--mono); font-size: 12px; color: var(--soft);
  border-top: 1px solid var(--line); margin-top: 12px; padding-top: 10px;
}
.price-card p { color: var(--soft); font-size: 13.5px; margin: 14px 0 18px; flex: 1; }
.price-card .btn-ghost { text-align: center; }
.pr-note { font-size: 13px; color: var(--dim); margin: 22px 0 0; max-width: 66ch; }

/* faq */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px;
  background: linear-gradient(170deg, rgba(21, 32, 60, 0.45), rgba(11, 17, 32, 0.3));
  padding: 0 20px;
  transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: var(--line-bright); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+"; font-family: var(--mono); color: var(--cyan); font-size: 17px;
  flex-shrink: 0; width: 18px; text-align: center;
}
.faq-item[open] summary::before { content: "–"; }
.faq-item summary h3 { display: inline; font-size: 15px; font-weight: 600; margin: 0; }
.faq-item > p { color: var(--soft); font-size: 14px; margin: 0 0 18px 32px; }

/* werkwijze */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px;
  background: linear-gradient(170deg, rgba(21, 32, 60, 0.45), rgba(11, 17, 32, 0.3));
  position: relative;
}
.step-num {
  font-family: var(--mono); font-size: 12.5px; color: var(--cyan);
  letter-spacing: 0.1em; margin-bottom: 14px; display: block;
}
.step h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; }
.step p { color: var(--soft); font-size: 14.5px; margin: 0; }
.step .free-badge {
  position: absolute; top: 22px; right: 20px;
  font-family: var(--mono); font-size: 10.5px; color: var(--green);
  border: 1px solid rgba(52,209,123,0.4); border-radius: 999px; padding: 3px 10px;
}

/* over */
.over-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .over-grid { grid-template-columns: 1fr; } }
.over-grid p { color: var(--soft); font-size: 16px; max-width: 58ch; }
.over-grid p strong { color: var(--ink); }
.over-panel {
  border: 1px solid var(--line); border-radius: 14px; padding: 24px;
  background: var(--panel); font-family: var(--mono); font-size: 13px; color: var(--soft);
}
.over-panel .k { color: var(--dim); }
.over-panel .row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.over-panel .row:last-child { border-bottom: 0; }

/* contact */
.contact { text-align: center; padding: 110px 0; border-bottom: 0; position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(640px 320px at 50% 120%, rgba(79,124,255,0.2), transparent 70%);
  pointer-events: none;
}
.contact h2 { position: relative; font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin: 0 0 14px; letter-spacing: -0.01em; text-wrap: balance; }
.contact p { position: relative; color: var(--soft); max-width: 52ch; margin: 0 auto 32px; }
.contact .small { font-size: 13.5px; color: var(--dim); margin-top: 22px; }
.contact .small a { color: var(--soft); }

/* footer */
footer {
  border-top: 1px solid var(--line); padding: 30px 0 40px;
  font-size: 13px; color: var(--dim);
}
.foot-inner { display: flex; gap: 18px; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.foot-note { font-family: var(--mono); font-size: 12px; }

/* scan modal */
.scan-overlay {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(4, 7, 14, 0.8); backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center; overflow-y: auto; padding: 40px 16px;
}
.scan-overlay.open { display: flex; }
.scan-panel {
  width: 100%; max-width: 560px; border: 1px solid var(--line-bright); border-radius: 14px;
  background: #0b1120; padding: 28px 28px 26px; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.scan-close {
  position: absolute; top: 14px; right: 14px; background: none; border: 0;
  color: var(--dim); font-size: 22px; cursor: pointer; line-height: 1; padding: 6px;
}
.scan-close:hover { color: var(--ink); }
.scan-panel h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; font-family: var(--display); color: var(--ink); }
.scan-panel .scan-intro { color: var(--soft); font-size: 14px; margin: 0 0 20px; }
.scan-form { display: grid; gap: 12px; }
.scan-form input[type="text"], .scan-form input[type="email"], .scan-form textarea {
  width: 100%; background: rgba(17, 26, 48, 0.6); border: 1px solid var(--line);
  border-radius: 8px; color: var(--ink); font-family: var(--display); font-size: 14.5px;
  padding: 11px 14px; outline: none;
}
.scan-form input:focus, .scan-form textarea:focus { border-color: var(--line-bright); }
.scan-form textarea { min-height: 76px; resize: vertical; }
.scan-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--dim); }
.scan-consent input { margin-top: 2px; }
.scan-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.scan-form .btn { border: 0; cursor: pointer; font-family: var(--display); width: 100%; }
.scan-progress { display: none; padding: 26px 0 10px; font-family: var(--mono); font-size: 13px; }
.scan-progress .row { color: var(--soft); margin-bottom: 9px; }
.scan-progress .row.on { color: var(--cyan); }
.scan-result { display: none; }
.scan-result .sum { color: var(--soft); font-size: 14.5px; margin: 0 0 16px; }
.scan-result h4 { margin: 16px 0 4px; font-size: 15px; color: var(--cyan); font-family: var(--display); }
.scan-result p { margin: 0; color: var(--soft); font-size: 14px; }
.scan-result .done-note {
  margin-top: 22px; border-top: 1px solid var(--line); padding-top: 14px;
  font-size: 13px; color: var(--dim);
}
.scan-error { display: none; color: #e8a9a5; font-size: 14px; padding: 14px 0 4px; }
.scan-error a { color: var(--ink); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
