/* ============================================================
   WEBSITE-LATEN-MAKEN.NL — WordPress onderhoud & beheer
   ============================================================ */

:root {
  /* Kleuren — Bink Online theme */
  --ink: #0a0f1e;
  --ink-soft: #0f172a;
  --navy: #0b1220;
  --primary: #2ea3f2;
  --primary-strong: #0c71c3;
  --orange: #ff6900;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;

  --bg: #ffffff;
  --bg-tinted: #f5f7fc;
  --surface: #ffffff;
  --border: #e6ebf5;
  --border-strong: #d5ddec;

  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --text-invert: #f8fafc;
  --text-invert-soft: #cbd5e1;

  /* Typografie */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Effecten */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --shadow-md: 0 6px 16px -4px rgba(15, 23, 42, .10), 0 2px 4px -2px rgba(15, 23, 42, .06);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, .18);
  --shadow-glow: 0 10px 40px -10px rgba(46, 163, 242, .5);
  --shadow-glow-orange: 0 10px 40px -10px rgba(255, 105, 0, .4);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --grad-brand: linear-gradient(135deg, #2ea3f2 0%, #0c71c3 100%);
  --grad-cta: linear-gradient(135deg, #2ea3f2 0%, #0c71c3 55%, #0a5a9e 100%);

  --container: 1180px;
  --container-narrow: 820px;
}

/* ---------- Reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.35rem, 5.2vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-strong); }

img, svg { display: inline-block; vertical-align: middle; }

ul, ol { padding: 0; margin: 0; list-style: none; }
figure { margin: 0; }
blockquote { margin: 0; }

button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

::selection { background: rgba(37, 99, 235, .18); }

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .55);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding: 96px 0; }
.section-tinted {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f5ff 50%, #f8fafc 100%);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { margin-bottom: .35em; }
.section-sub {
  font-size: 1.125rem;
  color: var(--text-soft);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 105, 0, .08);
  border: 1px solid rgba(255, 105, 0, .18);
  padding: .4rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  padding: .82rem 1.4rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { flex: none; }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: .6rem 1.05rem; font-size: .92rem; border-radius: 10px; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, .35) 50%, rgba(255, 255, 255, 0) 65%),
    var(--grad-cta);
  background-size: 220% 100%, 100% 100%;
  background-position: 140% 0, 0 0;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: var(--shadow-glow);
  transition: transform .2s ease, box-shadow .25s ease, background-position .75s ease;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  background-position: -60% 0, 0 0;
  box-shadow: 0 16px 44px -10px rgba(46, 163, 242, .5);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255,255,255,.35); }

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(37, 99, 235, .04); }

/* ---------- Icon badges ---------- */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  flex: none;
}
.icon-primary {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(46, 163, 242, .12), rgba(12, 113, 195, .08));
  border: 1px solid rgba(46, 163, 242, .2);
  box-shadow: 0 2px 8px -2px rgba(46, 163, 242, .2);
}
.icon-danger {
  color: var(--red);
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .16);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 30, .75);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(10, 15, 30, .92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  line-height: 1.1;
}
.brand:hover { color: #fff; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  flex: none;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-invert-soft);
  margin-top: 1px;
}

.main-nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.main-nav a {
  color: var(--text-invert-soft);
  font-weight: 500;
  font-size: .95rem;
  transition: color .16s ease;
}
.main-nav a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: .8rem; }

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: .5rem 24px 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a:not(.btn) {
  color: var(--text-invert-soft);
  font-weight: 500;
  padding: .7rem .5rem;
  border-radius: 8px;
}
.mobile-nav a:not(.btn):hover { color: #fff; background: rgba(255, 255, 255, .06); }
.mobile-nav .btn { margin-top: .6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--text-invert);
  overflow: hidden;
  padding: 88px 0 104px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 420px at 12% -10%, rgba(46, 163, 242, .35), transparent 60%),
    radial-gradient(520px 400px at 88% 8%, rgba(12, 113, 195, .28), transparent 60%),
    radial-gradient(700px 500px at 50% 120%, rgba(34, 211, 238, .15), transparent 60%),
    radial-gradient(300px 300px at 70% 60%, rgba(255, 105, 0, .08), transparent 60%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 0%, transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-invert-soft);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .45rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .22);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .4); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
  color: #fff;
  margin-bottom: .5em;
}
.hero h1 .grad-text {
  background: linear-gradient(90deg, #2ea3f2, #0c71c3, #22d3ee, #2ea3f2);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradShift 7s linear infinite;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-invert-soft);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }

.hero-trust { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: #fbbf24; }
.hero-trust-text { color: var(--text-invert-soft); font-size: .92rem; }
.hero-trust-text strong { color: #fff; }

/* Dashboard */
.hero-visual { position: relative; }
.dashboard {
  background: linear-gradient(160deg, #ffffff 0%, #f6f8fd 100%);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  border-top: 3px solid var(--primary);
}
.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.dashboard-title { display: flex; align-items: center; gap: .7rem; }
.dashboard-title strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.dashboard-title span { display: block; font-size: .8rem; color: var(--text-muted); }
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .18);
  flex: none;
}
.chip-live {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .25);
  padding: .3rem .6rem;
  border-radius: 999px;
}

.dashboard-rows { display: flex; flex-direction: column; }
.dashboard-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 11px 4px;
  font-size: .92rem;
  border-bottom: 1px dashed var(--border);
}
.dashboard-rows li:last-child { border-bottom: 0; }
.d-label { display: inline-flex; align-items: center; gap: .55rem; font-weight: 500; color: var(--text-soft); }
.d-label svg { color: var(--green); flex: none; }
.d-value { color: var(--text-soft); font-weight: 500; text-align: right; }

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.metric-label { display: block; font-size: .78rem; color: var(--text-muted); margin-bottom: .2rem; }
.metric-value { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.metric-value span { font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.sparkline { width: 100%; height: 44px; margin-top: 6px; }
.progress {
  height: 8px;
  background: var(--bg-tinted);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: var(--grad-brand);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  color: var(--text);
  padding: .8rem 1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  font-size: .85rem;
  line-height: 1.25;
  animation: floaty 5s ease-in-out infinite;
}
.float-card svg { color: var(--primary); }
.float-card strong { display: block; font-family: var(--font-display); font-size: .88rem; }
.float-card span { color: var(--text-muted); }
.float-top { top: -22px; right: -14px; }
.float-bottom { bottom: -20px; left: -14px; animation-delay: 2.4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, #f8fafc, #eef4ff);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-block: -1px;
}
.stat {
  background: #fff;
  text-align: center;
  padding: 30px 16px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label { font-size: .9rem; color: var(--text-muted); font-weight: 500; }

/* ---------- Problemen ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.problem-card {
  border-top: 3px solid var(--red);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(239, 68, 68, .3);
  border-top-color: var(--red);
}
.problem-card .icon-badge { margin-bottom: 1rem; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: .45em; }
.problem-card p { color: var(--text-soft); font-size: .97rem; margin: 0; }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card {
  border-top: 3px solid var(--primary);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(46, 163, 242, .14), transparent 45%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 163, 242, .3);
  border-top-color: var(--primary);
}
.feature-card .icon-badge { margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: .45em; }
.feature-card p { color: var(--text-soft); font-size: .97rem; margin: 0; }

/* ---------- Werkwijze ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: var(--grad-brand);
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 20px -4px rgba(46, 163, 242, .45);
}
.step h3 { font-size: 1.12rem; margin-bottom: .45em; }
.step p { color: var(--text-soft); font-size: .97rem; margin: 0; }

.how-cta { text-align: center; margin-top: 40px; }

/* ---------- Prijzen ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card h3 { font-size: 1.25rem; margin-bottom: .2em; }
.price-desc { color: var(--text-soft); font-size: .95rem; margin-bottom: 1.2rem; min-height: 2.6em; }
.price {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: baseline;
  gap: .15rem;
}
.price .currency { font-size: 1.5rem; font-weight: 700; }
.price { font-size: 3rem; }
.price .cents { font-size: 1.5rem; font-weight: 700; }
.price .period { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: var(--text-muted); margin-left: .35rem; }

.price-card .btn { margin-bottom: 1.5rem; }
.price-list { display: flex; flex-direction: column; gap: .7rem; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text-soft);
}
.price-list svg { color: var(--green); flex: none; margin-top: 2px; }

.price-card-featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-brand) border-box;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(46, 163, 242, .1);
  transform: scale(1.03);
}
.price-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.price-card-featured .btn { box-shadow: var(--shadow-glow); }
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin: 34px 0 0;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.stars-sm { margin-bottom: 1rem; }
.review-card blockquote {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.review-card figcaption strong { display: block; color: var(--ink); font-size: .95rem; }
.review-card figcaption span { color: var(--text-muted); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: rgba(46, 163, 242, .35); box-shadow: 0 4px 20px -4px rgba(46, 163, 242, .15); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  color: var(--text-muted);
  transition: transform .25s ease;
  flex: none;
}
.faq-item[open] summary svg { transform: rotate(90deg); color: var(--primary); }
.faq-item summary:hover { color: var(--primary); }
.faq-body {
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
}
.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-body p { overflow: hidden; color: var(--text-soft); margin: 0; padding: 0 24px 22px; }

/* ---------- CTA / Contact ---------- */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 320px at 0% 0%, rgba(59, 130, 246, .35), transparent 60%),
    radial-gradient(500px 320px at 100% 100%, rgba(124, 58, 237, .35), transparent 60%);
  pointer-events: none;
}
.cta-copy { position: relative; }
.cta-copy h2 { color: #fff; }
.cta-copy p { color: var(--text-invert-soft); font-size: 1.1rem; }
.cta-bullets { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.4rem; }
.cta-bullets li { display: flex; align-items: center; gap: .6rem; color: var(--text-invert-soft); font-weight: 500; }
.cta-bullets svg { color: var(--green); flex: none; }

.cta-actions { margin-top: 1.7rem; }

.contact-info {
  position: relative;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.contact-info-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 .4rem;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 13px 2px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.contact-info-row:hover { color: var(--text); }
.contact-info-row .icon-badge { width: 42px; height: 42px; border-radius: 11px; }
.contact-info-row strong { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--ink); }
.contact-info-row small { color: var(--text-muted); font-size: .86rem; }
.contact-info .btn { margin-top: 18px; }
.contact-info-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin: .75rem 0 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #0a0f1e 0%, #070b14 100%);
  color: var(--text-invert-soft);
  padding: 72px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--orange), var(--green));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.brand-footer { margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; max-width: 340px; margin: 1rem 0 0; }
.footer-byline { font-size: .88rem; }
.footer-byline a { color: #93c5fd; }
.footer-byline a:hover { color: #fff; }
.footer-col h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: var(--text-invert-soft);
  font-size: .95rem;
  padding: .3rem 0;
  transition: color .16s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: 22px;
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Premium scroll-effecten ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2ea3f2, #0c71c3, #22d3ee);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 300;
  pointer-events: none;
}

/* Marquee */
.marquee {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex: none; }
.mq-item {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  padding: 0 30px;
  white-space: nowrap;
}
.mq-item.outline {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, .5);
}
.mq-sep { color: var(--cyan); display: inline-flex; flex: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero entrance */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(34px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.hero .badge { animation: heroUp .7s cubic-bezier(.22, .61, .36, 1) .05s both; }
.hero h1 { animation: heroUp .8s cubic-bezier(.22, .61, .36, 1) .12s both; }
.hero .hero-lead { animation: heroUp .8s cubic-bezier(.22, .61, .36, 1) .22s both; }
.hero .hero-cta { animation: heroUp .8s cubic-bezier(.22, .61, .36, 1) .3s both; }
.hero .hero-trust { animation: heroUp .8s cubic-bezier(.22, .61, .36, 1) .38s both; }
.hero .hero-visual { animation: heroVisualIn 1s cubic-bezier(.22, .61, .36, 1) .25s both; }

/* Animatede gradient tekst */
@keyframes gradShift { to { background-position: 220% center; } }

/* Werkwijze: lijn die meegroeit met scrollen */
.steps-line {
  position: absolute;
  top: 54px;
  left: 48px;
  right: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2ea3f2, #0c71c3);
  transform: scaleX(0);
  transform-origin: left;
  opacity: .55;
}

/* Back-to-top met voortgangsring */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 15, 30, .9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  z-index: 200;
  padding: 0;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top-ring { position: absolute; inset: 0; transform: rotate(-90deg); }
.to-top-ring circle { fill: none; stroke-width: 3; }
.ring-track { stroke: rgba(255, 255, 255, .16); }
.ring-fill { stroke: #2ea3f2; stroke-linecap: round; stroke-dasharray: 125.66; stroke-dashoffset: 125.66; }
.to-top-arrow { position: relative; }

/* ---------- Reveal animaties ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.985);
  filter: blur(8px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1), filter .7s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform, filter;
}
.reveal.visible { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Responsief ---------- */
@media (max-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .price-card-featured { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 64px 0 84px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-lead { max-width: 100%; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 36px 28px; }
  .section { padding: 72px 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.8rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .float-card { position: static; margin-top: 14px; animation: none; }
  .hero-visual .float-top, .hero-visual .float-bottom { display: none; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Toegankelijkheid: minder beweging ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none; }
}
