/* ==========================================================================
   AgentsLabs.net — design system (dark-first, "AI lab")
   Handgeschreven CSS, geen framework. Mobile-first, custom properties.
   ========================================================================== */

/* ---------- Fonts (self-hosted Inter, latin subset) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../img/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../img/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../img/fonts/inter-700.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --ink: #f2f5fc;
  --ink-soft: #dfe6f3;
  --bg: #070a12;
  --bg-soft: #0a0f1c;
  --bg-softer: #101828;
  --surface: rgba(255, 255, 255, .035);
  --surface-strong: rgba(255, 255, 255, .06);
  --text: #c4cddd;
  --text-muted: #93a1ba;
  --text-on-dark: #c4cddd;
  --border: rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .16);
  --primary: #7a86ff;
  --primary-dark: #9aa4ff;
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, .14);
  --gradient: linear-gradient(120deg, #6f7bf7 0%, #8b5cf6 50%, #22d3ee 115%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 16px 40px -16px rgba(0, 0, 0, .65);
  --shadow-lg: 0 30px 80px -24px rgba(0, 0, 0, .75);
  --glow-cyan: 0 0 0 1px rgba(34, 211, 238, .35), 0 12px 40px -12px rgba(34, 211, 238, .25);
  --glow-primary: 0 10px 32px -10px rgba(122, 134, 255, .55);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Cascadia Code', Consolas, Menlo, monospace;
  --container: 1180px;
  --nav-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
ul[role='list'], ol[role='list'] { list-style: none; padding: 0; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; }
p { max-width: 68ch; }

::selection { background: rgba(34, 211, 238, .3); color: #fff; }

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, .6);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 300;
  background: var(--ink);
  color: var(--bg);
  padding: .7rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; color: var(--bg); }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(139, 92, 246, .12), transparent 60%),
    radial-gradient(700px 420px at 8% 100%, rgba(34, 211, 238, .08), transparent 60%),
    #05070d;
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ink); }
.section-head { max-width: 740px; margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }
.grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--2-lg { grid-template-columns: repeat(2, 1fr); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--text-muted); margin-top: 1.1rem; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--glow-primary);
}
.btn--primary:hover { color: #fff; box-shadow: 0 14px 40px -10px rgba(122, 134, 255, .7); }
.btn--outline { border-color: var(--border-strong); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 8px 28px -12px rgba(34, 211, 238, .35); }
.btn--light { background: #fff; color: #0b1220; }
.btn--light:hover { color: #3b57d9; }
.btn--ghost-light { border-color: rgba(255, 255, 255, .25); color: #fff; background: rgba(255, 255, 255, .04); }
.btn--ghost-light:hover { border-color: #fff; color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(7, 10, 18, .78);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 10, 18, .92);
  box-shadow: 0 10px 32px -14px rgba(0, 0, 0, .7);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand img { width: 34px; height: 34px; }
.brand span span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: absolute;
  inset: var(--nav-h) 0 auto 0;
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(7, 10, 18, .97);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--text);
  font-weight: 600;
  padding: .65rem .8rem;
  border-radius: var(--radius-sm);
}
.site-nav a:hover { color: var(--accent); background: var(--surface); }
.site-nav a[aria-current='page'] { color: var(--accent); }
.nav-cta { margin-top: .5rem; justify-content: center; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .8rem;
  padding: .3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  align-self: flex-start;
  background: var(--surface);
}
.lang-switch a {
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
}
.lang-switch a[aria-current='true'] { background: var(--gradient); color: #fff; }
.lang-switch a:hover { color: var(--accent); background: transparent; }
.lang-switch a[aria-current='true']:hover { color: #fff; background: var(--gradient); }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav a { padding: .5rem .7rem; font-size: .97rem; }
  .nav-cta { margin: 0 0 0 .5rem; padding: .55rem 1.15rem; }
  .lang-switch { margin: 0 0 0 .6rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--text-on-dark);
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4.5rem, 9vw, 7.5rem);
}
.hero::before {
  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: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 420px at 12% -10%, rgba(122, 134, 255, .3), transparent 65%),
    radial-gradient(720px 480px at 88% 8%, rgba(34, 211, 238, .16), transparent 60%),
    radial-gradient(560px 400px at 55% 115%, rgba(139, 92, 246, .22), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--ink); max-width: 16ch; }
.hero .lead { max-width: 56ch; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-soft);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  backdrop-filter: blur(6px);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .6);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero__panel {
  margin-top: clamp(2.8rem, 6vw, 4.2rem);
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) { .hero__panel { grid-template-columns: repeat(3, 1fr); } }
.hero__stat {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color .2s ease, background .2s ease;
}
.hero__stat:hover { border-color: rgba(34, 211, 238, .4); background: var(--surface-strong); }
.hero__stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stat span { font-size: .92rem; color: var(--text-muted); }

/* ---------- Hero: groeimotor-visual ---------- */
.hero__layout { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .hero__layout { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }
.hero__content, .hero__visual { min-width: 0; }
.hero__assurance {
  list-style: none;
  padding: 0;
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  font-size: .92rem;
  color: var(--text-muted);
}
.hero__assurance li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__assurance li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.system-card {
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-lg), 0 0 70px -24px rgba(122, 134, 255, .4);
}
.system-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.system-card__title {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.system-card__status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mono);
  font-size: .75rem;
  color: #5eeab8;
}
.system-card__status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, .8);
}
.system-card__flow { display: grid; gap: .55rem; padding: 1rem 0; }
.flow-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(7, 10, 18, .5);
  transition: border-color .2s ease;
}
.flow-step:hover { border-color: rgba(34, 211, 238, .4); }
.flow-step__number {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.flow-step strong { display: block; color: var(--ink); font-size: .98rem; }
.flow-step__copy { display: block; color: var(--text-muted); font-size: .84rem; }
.flow-step__result {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(34, 211, 238, .25);
  padding: .3rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.system-card__footer {
  display: flex;
  gap: .6rem;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.system-card__footer span[aria-hidden] { color: var(--accent); }
.hero__visual-note { margin-top: 1.1rem; font-size: .92rem; color: var(--text-muted); }
.hero__visual-note strong { color: var(--ink); margin-right: .5rem; }
@media (max-width: 480px) {
  .flow-step { grid-template-columns: auto 1fr; }
  .flow-step__result { grid-column: 2; justify-self: start; }
}

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 211, 238, .45);
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(34, 211, 238, .25);
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--text-muted); font-size: .99rem; }
.card__link { margin-top: auto; padding-top: 1.1rem; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; color: var(--accent); }
.card__link:hover { color: #7de7f8; }
.card__link::after { content: '→'; transition: transform .15s ease; }
.card__link:hover::after { transform: translateX(4px); }

/* ---------- USP / checklist ---------- */
.check-list { list-style: none; padding: 0; display: grid; gap: .9rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; }
.check-list svg { flex: none; margin-top: .25rem; color: var(--accent); }
.check-list strong { color: var(--ink); }

/* ---------- Media split ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; gap: 4rem; } }
.split--reverse > .split__media { order: 2; }
.split__media img {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), 0 0 60px -20px rgba(122, 134, 255, .35);
}

/* ---------- Cases ---------- */
.case-card { overflow: hidden; padding: 0; }
.case-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  border-bottom: 1px solid var(--border);
  transition: transform .35s ease;
}
.case-card:hover img { transform: scale(1.03); }
.case-card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.case-card__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .8rem; }
.case-showcase {
  background: var(--bg-soft);
  padding: 0 0 clamp(2.8rem, 6vw, 4.8rem);
}
.case-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-lg), 0 0 80px -36px rgba(122, 134, 255, .65);
}
.tag {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(34, 211, 238, .22);
  border-radius: 999px;
  padding: .28rem .75rem;
}
.tag--muted { color: var(--text-muted); background: var(--surface-strong); border-color: var(--border); }

/* ---------- Pricing ---------- */
.price-card { position: relative; }
.price-card--featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(180deg, #101828, #0b101d) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 20px 50px -18px rgba(122, 134, 255, .45);
}
.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--glow-primary);
}
.price-card__amount { font-size: 2.6rem; font-weight: 700; color: var(--ink); letter-spacing: -.04em; margin: .6rem 0 .2rem; }
.price-card__amount small { font-size: 1rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.price-card__period { color: var(--text-muted); font-size: .92rem; margin-bottom: 1.2rem; }
.price-card ul { list-style: none; padding: 0; display: grid; gap: .65rem; margin: 1.2rem 0 1.6rem; }
.price-card ul li { display: flex; gap: .6rem; align-items: flex-start; font-size: .97rem; }
.price-card ul svg { flex: none; margin-top: .28rem; color: var(--accent); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; color: var(--text-muted); font-size: .95rem; margin-top: 2rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: .9rem; max-width: 820px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item:hover, .faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(34, 211, 238, .25);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-item__body { padding: 0 1.4rem 1.3rem; color: var(--text-muted); }

/* ---------- Blog ---------- */
.post-card time, .post-meta { color: var(--text-muted); font-size: .88rem; }
.post-card h3 { margin: .5rem 0 .6rem; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--accent); }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-bottom: 1.2rem; }
.article { max-width: 740px; margin-inline: auto; }
.article > * + * { margin-top: 1.1rem; }
.article h2 { margin-top: 2.4rem; }
.article h3 { margin-top: 2rem; }
.article ul, .article ol { padding-left: 1.4rem; display: grid; gap: .5rem; }
.article blockquote {
  border-left: 4px solid var(--accent);
  padding: .4rem 0 .4rem 1.2rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Steps / proces ---------- */
.steps { counter-reset: step; display: grid; gap: 1.8rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: .5rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .7rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.step p { font-size: .95rem; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: #0a0f1c;
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(2.8rem, 6vw, 4.8rem);
  text-align: center;
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 320px at 15% 0%, rgba(122, 134, 255, .35), transparent 60%),
    radial-gradient(560px 320px at 85% 100%, rgba(34, 211, 238, .22), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--ink); }
.cta-band p { margin: 1rem auto 0; color: var(--text-muted); }
.cta-band .btn-row { justify-content: center; }

/* ---------- Contact / formulieren ---------- */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; } }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: 0; }
.contact-item .card__icon { width: 46px; height: 46px; margin: 0; flex: none; }
.contact-item strong { display: block; color: var(--ink); }
.contact-item a { color: var(--text-muted); }
.contact-item a:hover { color: var(--accent); }

.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 600; font-size: .93rem; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(7, 10, 18, .6);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .16);
}
.field select option { background: var(--bg-softer); color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: .88rem; color: var(--text-muted); }
.form-status { display: none; padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-weight: 600; }
.form-status.is-visible { display: block; }
.form-status--success { background: rgba(52, 211, 153, .12); color: #5eeab8; border: 1px solid rgba(52, 211, 153, .35); }
.form-status--error { background: rgba(248, 113, 113, .12); color: #fca5a5; border: 1px solid rgba(248, 113, 113, .35); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 200;
  max-width: 460px;
  margin-inline: auto;
  background: rgba(10, 15, 28, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: none;
}
.cookie-banner.is-visible { display: block; animation: cookie-in .3s ease; }
@media (min-width: 720px) { .cookie-banner { inset: auto 1.5rem 1.5rem auto; margin: 0; } }
@keyframes cookie-in { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-banner p { font-size: .92rem; }
.cookie-banner .btn-row { margin-top: 1rem; gap: .6rem; }
.cookie-banner .btn { padding: .6rem 1.15rem; font-size: .92rem; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: #05070d;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--ink); }
.footer-grid { display: grid; gap: 2.2rem; margin-bottom: 3rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: .95rem; margin-top: 1rem; max-width: 34ch; }
.footer-title { color: var(--ink); font-size: .95rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2rem;
  justify-content: space-between;
  font-size: .88rem;
}

/* ---------- Diverse ---------- */
.breadcrumbs { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.page-hero {
  background:
    radial-gradient(700px 380px at 85% -10%, rgba(122, 134, 255, .14), transparent 60%),
    var(--bg-soft);
  padding: clamp(3.2rem, 7vw, 5.2rem) 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 22ch; font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.prose p + p { margin-top: 1rem; }
.prose h2 { margin: 2.2rem 0 .8rem; }
.prose h3 { margin: 1.8rem 0 .6rem; }
.prose ul { padding-left: 1.4rem; display: grid; gap: .45rem; margin: .8rem 0; }
.note-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Scroll reveal (JS voegt .reveal toe) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Mobiel menu open: pagina niet scrollen ---------- */
@media (max-width: 959px) {
  body.nav-open { overflow: hidden; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__badge .dot { animation: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .btn-row, .cta-band { display: none !important; }
  body { font-size: 12pt; color: #111; background: #fff; }
  h1, h2, h3, h4 { color: #000; }
  .card, .faq-item, .note-box { border-color: #ccc; background: #fff; }
}
