/* ============================================================
   Je-Ma ICT Beheer — Designsysteem
   Modern & technisch · diepblauw / cyaan · donker thema
   ============================================================ */

/* ---------- Self-hosted Inter (Fontsource v5, latin subset) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-800.woff2") format("woff2");
}

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

:root {
  /* Achtergronden */
  --bg: #060912;
  --bg-elev: #0b1120;
  --bg-elev-2: #0f1729;

  /* Oppervlakken (glas) */
  --card: rgba(255, 255, 255, 0.025);
  --card-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.22);

  /* Tekst */
  --text: #e8eef7;
  --text-muted: #9aa7bd;
  --text-dim: #6b7a92;

  /* Accenten */
  --cyan: #22d3ee;
  --cyan-bright: #67e8f9;
  --blue: #3b82f6;
  --blue-deep: #1d4ed8;
  --gradient: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  --gradient-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.12));
  --glow-cyan: rgba(34, 211, 238, 0.45);
  --glow-blue: rgba(59, 130, 246, 0.4);

  /* Maatvoering */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Typografie */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Transities */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Sfeerverlichting achter de hele pagina */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -10%, rgba(34, 211, 238, 0.1), transparent 60%),
    radial-gradient(800px 600px at 10% 0%, rgba(59, 130, 246, 0.1), transparent 55%);
  pointer-events: none;
}

/* Fijn rasterpatroon */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container--narrow {
  max-width: 820px;
}

section {
  position: relative;
}

.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section--tight {
  padding-block: clamp(48px, 7vw, 80px);
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { color: var(--text-muted); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text-muted);
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Sectiekop */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--gradient-soft);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px 2px var(--glow-cyan);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 20px;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head p {
  font-size: 1.1rem;
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--gradient);
  color: #04121b;
  box-shadow: 0 8px 30px -10px var(--glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px var(--glow-cyan);
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--card-hover);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan-bright);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.text-link svg { width: 16px; height: 16px; }
.text-link:hover { gap: 12px; color: #fff; }

/* ---------- Header / navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 9, 18, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.brand__logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  aspect-ratio: 993 / 716;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.brand:hover .brand__logo { transform: translateY(-1px); }
.footer__brand .brand__logo { height: 64px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  display: inline-block;
  padding: 9px 16px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav__links a:hover { color: var(--text); background: var(--card); }
.nav__links a.active { color: #fff; background: var(--card-hover); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle.open .icon-open { display: none; }
.nav__toggle.open .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(72px, 12vw, 150px);
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

.hero__orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--glow-cyan), transparent 70%);
  top: -140px; right: -80px;
  animation: float 16s ease-in-out infinite;
}

.hero__orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--glow-blue), transparent 70%);
  bottom: -180px; left: -100px;
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(20px); }
}

.hero__inner {
  max-width: 880px;
}

.hero h1 { margin: 22px 0 24px; }

.hero .lead { max-width: 640px; margin-bottom: 16px; }

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 36px;
  font-weight: 500;
}

.hero__tagline svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Stats / kerncijfers ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(56px, 8vw, 88px);
}

.stat {
  background: var(--bg-elev);
  padding: 28px 24px;
  text-align: center;
}

.stat__value {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.stat__value .gradient-text { font-weight: 800; }

.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Kaartrasters ---------- */
.grid {
  display: grid;
  gap: 22px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--card-hover);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
}

.card__icon svg { width: 26px; height: 26px; color: var(--cyan); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }

.card__link {
  margin-top: 18px;
  display: inline-flex;
}

/* Feature-kaart variant (compact, met getal) */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
}
.feature__icon svg { width: 23px; height: 23px; color: var(--cyan); }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; }
.feature p { font-size: 0.96rem; }

/* ---------- Proces / stappen ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #04121b;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; }

/* ---------- Soevereiniteit-band ---------- */
.feature-band {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 300px at 85% 20%, rgba(34, 211, 238, 0.08), transparent 60%),
    var(--bg-elev);
  padding: clamp(40px, 6vw, 64px);
  overflow: hidden;
}

.feature-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.feature-band h2 { margin-bottom: 18px; }
.feature-band .lead { margin-bottom: 28px; }
.feature-band + .feature-band { margin-top: 22px; }

@media (min-width: 981px) {
  .feature-band--reverse .feature-band__grid > div:first-child { order: 2; }
}

/* ---------- Erkenningen (internet.nl badges) ---------- */
.erkenningen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.erkenningen__seal {
  width: 100%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 26px rgba(34, 211, 238, 0.22));
}
.erkenningen__pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 260px;
}
.erkenningen__pills img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(2, 6, 23, 0.45));
}
.erkenningen__pills a,
.erkenningen__seal a { display: block; }

/* ---------- Artikel (nieuws.html) ---------- */
.article {
  color: var(--text);
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.article__sep { opacity: 0.5; }
.article__hero {
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
}
.article h2 {
  font-size: 1.55rem;
  margin: 36px 0 14px;
}
.article p { margin-bottom: 16px; line-height: 1.7; }
.article ul {
  padding-left: 22px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.article ul li { margin-bottom: 6px; }
.article a {
  color: var(--cyan-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article a:hover { color: var(--cyan); }
.article__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 16px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checklist__icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
}
.checklist__icon svg { width: 15px; height: 15px; color: var(--cyan); }
.checklist li strong { color: var(--text); font-weight: 600; display: block; }
.checklist li span { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- CTA-band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 56px);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(34, 211, 238, 0.14), transparent 65%),
    linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--border-strong);
  overflow: hidden;
}

.cta-band h2 { margin-bottom: 16px; max-width: 680px; margin-inline: auto; }
.cta-band p { font-size: 1.12rem; max-width: 560px; margin: 0 auto 32px; }

.cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Pagina-kop (subpagina's) ---------- */
.page-hero {
  position: relative;
  padding-block: clamp(64px, 9vw, 108px) clamp(40px, 6vw, 64px);
  overflow: hidden;
}

.page-hero__orb {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-blue), transparent 70%);
  filter: blur(100px);
  opacity: 0.4;
  top: -180px; right: -60px;
  z-index: -1;
}

.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 20px; max-width: 760px; }
.page-hero .lead { max-width: 640px; }

/* ---------- Formulier (contact) ---------- */
.form {
  display: grid;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field { display: grid; gap: 8px; }

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}

.field textarea { resize: vertical; min-height: 140px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239aa7bd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form__note {
  font-size: 0.86rem;
  color: var(--text-dim);
}
.form__note + .form__note { margin-top: -10px; }
.form__note a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}
.form__note a:hover { color: var(--cyan-bright); }

/* Altcha-widget: thematisering via CSS custom properties (Shadow DOM). */
altcha-widget {
  display: block;
  margin-bottom: 4px;
  --altcha-color-base: var(--bg-elev);
  --altcha-color-border: var(--border-strong);
  --altcha-color-text: var(--text);
  --altcha-color-border-focus: var(--cyan);
  --altcha-color-error-text: #f87171;
  --altcha-border-radius: var(--radius-sm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-info__item:hover { border-color: var(--border-strong); background: var(--card-hover); }

.contact-info__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { width: 22px; height: 22px; color: var(--cyan); }
.contact-info__item strong { display: block; color: #fff; font-size: 1rem; }
.contact-info__item a, .contact-info__item span { color: var(--text-muted); font-size: 0.96rem; }
.contact-info__item a:hover { color: var(--cyan-bright); }

/* Formfeedback */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--cyan);
  color: var(--text);
  font-size: 0.96rem;
  margin-bottom: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }

.form-error {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.5);
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.form-error.show { display: block; }

/* Honeypot: volledig verborgen, geen tab-focus */
.honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Knop in uitgeschakelde staat (bv. tijdens verzenden) */
.btn:disabled {
  opacity: 0.65;
  cursor: progress;
  transform: none !important;
  box-shadow: none !important;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq__item[open] { border-color: var(--border-strong); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary .chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--cyan);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary .chevron { transform: rotate(180deg); }

.faq__answer {
  padding: 0 26px 24px;
  color: var(--text-muted);
}

/* ---------- Voor wie / doelgroep ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience__item {
  text-align: center;
  padding: 34px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.audience__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
}
.audience__icon svg { width: 28px; height: 28px; color: var(--cyan); }
.audience__item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.audience__item p { font-size: 0.96rem; }

/* ---------- Waarden (over ons) ---------- */
.value-list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.value-list__item {
  background: var(--bg-elev);
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}
.value-list__item h3 { font-size: 1.2rem; }
.value-list__item p { font-size: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(48px, 7vw, 72px) 32px;
  margin-top: clamp(64px, 9vw, 110px);
  background: linear-gradient(180deg, transparent, rgba(11, 17, 32, 0.6));
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand { max-width: 320px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { font-size: 0.96rem; }

.footer__col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer__col ul { list-style: none; display: grid; gap: 12px; }
.footer__col a {
  color: var(--text-muted);
  font-size: 0.96rem;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--cyan-bright); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.88rem; color: var(--text-dim); }
.footer__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer__legal a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0 14px;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}
.footer__legal a:first-child { padding-left: 0; }
.footer__legal a + a::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
  transform: translateY(-50%);
}
.footer__legal a:hover { color: var(--cyan-bright); }
.footer__badge {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer__badge svg { width: 14px; height: 14px; color: var(--cyan); }

/* ---------- Reveal-animatie ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobiel menu ---------- */
.nav__backdrop {
  display: none;
}

/* ---------- Responsief ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .feature-band__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(6, 9, 18, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px var(--gutter) 28px;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    z-index: 90;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 16px; font-size: 1.05rem; }

  .nav__toggle { display: inline-flex; }
  .nav__actions .btn { display: none; }

  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .value-list__item { grid-template-columns: 1fr; gap: 10px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
}
