/* ============================================================
   NOLO RADAR — design system v2
   Palette:  ink petrol #0C1E2B · deep petrol #10293A · amber #FFB454
             mist #EEF3F2 · paper #FFFFFF · muted #5E7486 · coral #FF6B5E
   Type:     Sora (display) · Instrument Sans (body) · IBM Plex Mono (data)
   ============================================================ */

:root {
  --ink: #0C1E2B;
  --petrol: #10293A;
  --petrol-soft: #16344a;
  --amber: #FFB454;
  --amber-deep: #E89A2F;
  --mist: #EEF3F2;
  --paper: #FFFFFF;
  --text-dark: #10293A;
  --text-muted: #5E7486;
  --text-light: #E8EFF4;
  --text-light-muted: #9FB4C4;
  --coral: #FF6B5E;
  --line-light: rgba(16, 41, 58, 0.12);
  --line-dark: rgba(232, 239, 244, 0.12);
  --radius: 18px;
  --font-display: "Sora", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- layout ---------- */
.container { width: min(1140px, 100% - 48px); margin-inline: auto; }
.container-narrow { width: min(760px, 100% - 48px); }

.section { padding: 110px 0; }
.section-light { background: var(--mist); color: var(--text-dark); }
.section-dark { background: var(--ink); color: var(--text-light); }

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-light { color: var(--amber); }

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 700;
  max-width: 24ch;
  margin-bottom: 28px;
}
.section-dark .section-title { color: var(--paper); }

.section-sub {
  font-size: 1.125rem;
  color: var(--text-light-muted);
  max-width: 56ch;
  margin-bottom: 36px;
}
.section-light .section-sub { color: var(--text-muted); }

.hl { color: var(--amber-deep); }
.hl-amber { color: var(--amber); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(255, 180, 84, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); background: #ffc272; box-shadow: 0 12px 34px rgba(255, 180, 84, 0.4); }
.btn-glow { position: relative; }
.btn-glow::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: var(--amber);
  opacity: 0.28;
  filter: blur(14px);
  z-index: -1;
  animation: glow-breathe 3s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.4; }
}
.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--line-dark);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { display: block; text-align: center; }
.btn-nav { padding: 11px 22px; font-size: 0.88rem; background: var(--amber); color: var(--ink); }
.btn-nav:hover { background: #ffc272; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 30, 43, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo strong { font-weight: 800; color: var(--amber); }
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 180, 84, 0.18);
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--amber); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 600px at 78% 30%, rgba(255, 180, 84, 0.08), transparent 60%),
    radial-gradient(900px 700px at 15% 85%, rgba(22, 52, 74, 0.9), transparent 65%),
    var(--ink);
  color: var(--text-light);
  overflow: hidden;
}
.hero-inner {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 92px 0 64px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero h1 s {
  text-decoration-color: var(--coral);
  text-decoration-thickness: 4px;
  color: var(--text-light-muted);
}
.hero-sub {
  font-size: 1.14rem;
  color: var(--text-light-muted);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-light-muted);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 180, 84, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255, 180, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 180, 84, 0); }
}

/* page-load choreografie */
.load-1, .load-2, .load-3, .load-4, .load-5 {
  opacity: 0;
  transform: translateY(18px);
  animation: load-in 0.7s ease forwards;
}
.load-1 { animation-delay: 0.05s; }
.load-2 { animation-delay: 0.16s; }
.load-3 { animation-delay: 0.3s; }
.load-4 { animation-delay: 0.46s; }
.load-5 { animation-delay: 0.62s; }
@keyframes load-in { to { opacity: 1; transform: none; } }

/* ---------- radar scope (signature) ---------- */
.hero-radar { display: flex; justify-content: center; }
.radar-scope {
  position: relative;
  width: min(470px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 180, 84, 0.05), transparent 70%),
    var(--petrol);
  box-shadow:
    0 0 0 1px rgba(255, 180, 84, 0.14),
    0 0 110px rgba(255, 180, 84, 0.09),
    inset 0 0 70px rgba(0, 0, 0, 0.45);
}
.radar-grid { position: absolute; inset: 0; }
.rg-ring { fill: none; stroke: rgba(255, 180, 84, 0.16); stroke-width: 1; }
.rg-faint { stroke: rgba(255, 180, 84, 0.07); }
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 180, 84, 0.32), rgba(255, 180, 84, 0.05) 68deg, transparent 95deg);
  animation: sweep 5.2s linear infinite;
  mix-blend-mode: screen;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 84, 0.10), transparent 62%);
  animation: glow-breathe 4.4s ease-in-out infinite;
  pointer-events: none;
}
.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(255, 180, 84, 0.8);
}

.ping {
  position: absolute;
  left: var(--x);
  top: var(--y);
  animation: ping-cycle 10.4s infinite;
  animation-delay: var(--d);
  opacity: 0;
}
.ping-dot {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(255, 180, 84, 0.9);
}
.ping-label {
  position: absolute;
  left: 16px;
  top: -8px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--text-light);
  background: rgba(12, 30, 43, 0.92);
  border: 1px solid rgba(255, 180, 84, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
}
.ping-label em {
  display: block;
  font-style: normal;
  color: var(--amber);
  font-size: 0.62rem;
}
@keyframes ping-cycle {
  0% { opacity: 0; transform: scale(0.6); }
  4% { opacity: 1; transform: scale(1); }
  38% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- stat strip ---------- */
.stat-strip {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 0 44px;
}
.stat {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(16, 41, 58, 0.6);
  padding: 18px 22px;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--amber);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
}

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  background: rgba(255, 180, 84, 0.04);
}
.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  padding: 13px 0;
  animation: ticker 42s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-track span::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }

/* ---------- pijn ---------- */
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line-light);
}
.card h3 { font-size: 1.18rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.98rem; }

.card-pain { border-left: 4px solid var(--coral); }
.pain-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255, 107, 94, 0.1);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 16px;
}
.pain-bridge {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.4;
}
.pain-bridge strong { color: var(--amber-deep); }

/* ---------- vergelijking ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
}
.compare-col {
  border-radius: var(--radius);
  padding: 36px 32px;
}
.compare-old {
  background: rgba(255, 107, 94, 0.05);
  border: 1px solid rgba(255, 107, 94, 0.25);
}
.compare-new {
  background: linear-gradient(150deg, rgba(255, 180, 84, 0.12), rgba(255, 180, 84, 0.03)), var(--petrol);
  border: 1px solid rgba(255, 180, 84, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(255, 180, 84, 0.06);
}
.compare-head {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}
.compare-head-new {
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-vs {
  align-self: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--petrol);
}
.x-list { list-style: none; display: grid; gap: 14px; }
.x-list li {
  padding-left: 30px;
  position: relative;
  color: var(--text-light-muted);
  font-size: 0.99rem;
}
.x-list li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  color: var(--coral);
}

.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.99rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  color: var(--amber-deep);
}
.check-list-dark li { color: var(--text-light); }
.check-list-dark li::before { color: var(--amber); }

/* ---------- waarde / math ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.math-cards { display: grid; gap: 18px; }
.math-card {
  background: var(--petrol);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.math-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}
.math-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}
.math-per { font-size: 1rem; font-weight: 500; color: var(--text-light-muted); }
.math-desc { color: var(--text-light-muted); font-size: 0.95rem; }
.math-card-price {
  border-color: rgba(255, 180, 84, 0.5);
  background: linear-gradient(140deg, rgba(255, 180, 84, 0.12), rgba(255, 180, 84, 0.03)), var(--petrol);
}
.math-card-price .math-value { color: var(--amber); }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- features (light) ---------- */
.features-grid { margin-top: 48px; }
.feature {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: var(--paper);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  border-color: rgba(232, 154, 47, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(16, 41, 58, 0.08);
}
.feature h3 { font-size: 1.08rem; margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- voor wie (dark) ---------- */
.audience {
  background: var(--petrol);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.audience-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 180, 84, 0.12);
  color: var(--amber);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.audience h3 { font-size: 1.4rem; margin-bottom: 20px; max-width: 20ch; color: var(--paper); }

.sectors {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.sectors-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light-muted);
  margin-right: 6px;
}
.chip {
  background: var(--petrol);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ---------- prijs ---------- */
.section-price { text-align: center; }
.section-price .eyebrow { justify-content: center; }
.section-price .section-title { margin-inline: auto; }
.price-card {
  margin-top: 44px;
  background: var(--petrol);
  border: 1px solid rgba(255, 180, 84, 0.4);
  border-radius: 26px;
  padding: 46px 44px 38px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 180, 84, 0.06);
  text-align: left;
}
.price-head { text-align: center; margin-bottom: 32px; }
.price-name {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.2rem);
  font-weight: 800;
  color: var(--paper);
  line-height: 1;
}
.price-amount span { font-size: 1.15rem; font-weight: 500; color: var(--text-light-muted); }
.price-note { margin-top: 12px; font-size: 0.92rem; color: var(--text-light-muted); }
.check-list-price { margin-bottom: 34px; }
.check-list-price li { color: var(--text-light); }
.check-list-price li::before { color: var(--amber); }
.price-secure {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-light-muted);
}
.price-anchor {
  margin-top: 34px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--amber);
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 44px; display: grid; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 0 26px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 22px 36px 22px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--amber-deep);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--text-muted); padding-bottom: 24px; font-size: 0.98rem; }

/* ---------- final CTA ---------- */
.section-final {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255, 180, 84, 0.09), transparent 65%),
    var(--ink);
  text-align: center;
}
.final-cta .section-title { margin-inline: auto; max-width: 26ch; }
.final-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  color: var(--text-light-muted);
  padding: 56px 0 40px;
}
.footer-inner { display: grid; gap: 28px; }
.footer-tag { margin-top: 10px; font-size: 0.92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { text-decoration: none; font-size: 0.9rem; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--amber); }
.footer-legal { font-size: 0.8rem; font-family: var(--font-mono); }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(12, 30, 43, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 180, 84, 0.3);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  display: none;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
.mobile-cta-text { display: grid; line-height: 1.3; }
.mobile-cta-text strong {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 1.05rem;
}
.mobile-cta-text span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
}
.mobile-cta .btn { padding: 12px 22px; font-size: 0.9rem; white-space: nowrap; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
.br-desktop { display: inline; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 68px 0 48px; gap: 48px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .grid-3, .steps { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-vs { justify-self: center; }
  .nav-links { display: none; }
  .br-desktop { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .price-card { padding: 36px 26px 30px; }
  .ping-label { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 0; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .radar-sweep, .ticker-track, .pulse-dot, .radar-glow, .btn-glow::after { animation: none; }
  .ping { animation: none; opacity: 1; }
  .load-1, .load-2, .load-3, .load-4, .load-5 { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature { transition: none; }
  .mobile-cta { transition: none; }
}

/* ---------- logo mark ---------- */
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
}
.footer .logo-mark { width: 30px; height: 30px; }

/* ---------- notice / disclaimer ---------- */
.notice {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  background: rgba(255, 180, 84, 0.07);
  border: 1px solid rgba(255, 180, 84, 0.3);
  border-radius: 14px;
  padding: 18px 22px;
}
.notice-icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.notice p { font-size: 0.92rem; color: var(--text-light-muted); line-height: 1.55; }
.notice p strong { color: var(--text-light); }

/* ---------- nav login ---------- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-login {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav-login:hover { color: var(--amber); }

@media (max-width: 480px) {
  .nav-actions { gap: 14px; }
  .btn-nav { padding: 10px 16px; font-size: 0.82rem; }
  .nav-login { font-size: 0.85rem; }
}

/* ---------- footer bedrijfsgegevens ---------- */
.footer-company {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}
.footer-company a {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-company a:hover { color: var(--amber); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.5rem;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-inner p {
  flex: 1 1 400px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-light-muted);
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-actions {
    justify-content: center;
  }
}
