/* NeonFlowz v4: high-end herbouw. Eén dimwaarde (--lux) stuurt de gloed op de hele pagina. */
@font-face {
  font-family: 'Clash Grotesk';
  src: url('/wp-content/uploads/2024/12/ClashGrotesk-Variable.woff2') format('woff2');
  font-weight: 200 700;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('/wp-content/uploads/2024/12/GeneralSans-Variable-1.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
}
@property --lux { syntax: '<number>'; inherits: true; initial-value: 1; }

:root {
  --bg: #00091c;
  --bg-2: #030f28;
  --panel: #081533;
  --text: #eef1f8;
  --muted: #a3adc6;
  --soft: #7f8aa6;
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.06);
  --blue: #47a6e5;
  --purple: #bb27ec;
  --grad: linear-gradient(90deg, #47a6e5 0%, #bb27ec 100%);
  --r: 12px;
  --r-lg: 20px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --display: 'Clash Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --body: 'General Sans', 'Segoe UI', Arial, sans-serif;
  --header-h: 72px;
  --bar-h: 0px;
  --lux: 1;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--body); font-size: 17px; font-weight: 400; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  padding-bottom: var(--bar-h); overflow-x: clip;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; margin: 0; line-height: 1.05; letter-spacing: -0.015em; color: #fff; }
h2 + p, h1 + p, h3 + p { margin-top: 16px; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: #8fcaf0; text-underline-offset: 3px; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
address { font-style: normal; }
.ico { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

.section { padding: 128px 0; }
.section.tint { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
@media (max-width: 800px) { .section { padding: 84px 0; } }
.head { max-width: 720px; margin-bottom: 56px; }
.head h2 { font-size: clamp(34px, 4.6vw, 58px); }
.head p { color: var(--muted); font-size: 18px; max-width: 58ch; }
@media (max-width: 800px) { .head { margin-bottom: 38px; } .head p { font-size: 17px; } }

/* ── Knoppen ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border: 0; border-radius: 999px;
  background: var(--grad); color: #fff; text-decoration: none; cursor: pointer;
  font-family: var(--body); font-size: 16px; font-weight: 600; letter-spacing: 0.005em;
  box-shadow: 0 10px 34px rgba(187, 39, 236, 0.28);
  transition: filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn:hover { color: #fff; filter: brightness(1.1); box-shadow: 0 12px 40px rgba(187, 39, 236, 0.42); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; filter: none; }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; box-shadow: none; border: 1px solid rgba(255, 255, 255, 0.24); color: #fff; }
.btn-ghost:hover { filter: none; box-shadow: none; border-color: rgba(255, 255, 255, 0.6); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(0, 9, 28, 0); border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled, body.menu-open .site-header { background: rgba(0, 9, 28, 0.9); border-bottom-color: var(--line-soft); }
@supports (backdrop-filter: blur(10px)) {
  .site-header.scrolled { background: rgba(0, 9, 28, 0.72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); }
  body.menu-open .site-header { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.header-row { display: flex; align-items: center; gap: 28px; }
.logo { display: inline-flex; margin-right: auto; }
.logo img { height: 28px; width: auto; }
.nav { display: flex; gap: 4px; }
.nav a {
  color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500;
  padding: 10px 12px; border-radius: 6px; transition: color 0.4s var(--ease);
}
.nav a:hover, .nav a.active, .nav a[aria-current='page'] { color: #fff; }
.nav a.active, .nav a[aria-current='page'] { text-decoration: underline; text-decoration-color: var(--purple); text-decoration-thickness: 2px; text-underline-offset: 8px; }
.menu-toggle { display: none; }

@media (max-width: 980px) {
  :root { --header-h: 64px; }
  .nav, .header-cta { display: none; }
  .menu-toggle {
    display: grid; place-items: center; gap: 0; width: 46px; height: 46px; margin-right: -10px;
    background: none; border: 0; cursor: pointer; padding: 0;
  }
  .menu-toggle span { display: block; width: 24px; height: 1.8px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease); grid-area: 1 / 1; }
  .menu-toggle span:first-child { transform: translateY(-4px); }
  .menu-toggle span:last-child { transform: translateY(4px); }
  .menu-toggle[aria-expanded='true'] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:last-child { transform: rotate(-45deg); }
}

/* Mobiel menu: vult het hele scherm onder de header */
.menu {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 59; background: var(--bg);
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.menu.open { opacity: 1; }
.menu-inner { padding: 20px 20px calc(28px + env(safe-area-inset-bottom, 0px)); display: flex; flex-direction: column; min-height: 100%; }
.menu-links { list-style: none; margin: 0 0 28px; padding: 0; }
.menu-links li { border-bottom: 1px solid var(--line-soft); }
.menu-links a {
  display: block; padding: 18px 2px; color: #fff; text-decoration: none;
  font-family: var(--display); font-size: 30px; font-weight: 500; letter-spacing: -0.01em;
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s var(--ease);
}
.menu.open .menu-links a { opacity: 1; transform: none; }
.menu.open .menu-links li:nth-child(2) a { transition-delay: 0.04s; }
.menu.open .menu-links li:nth-child(3) a { transition-delay: 0.08s; }
.menu.open .menu-links li:nth-child(4) a { transition-delay: 0.12s; }
.menu.open .menu-links li:nth-child(5) a { transition-delay: 0.16s; }
.menu-links a[aria-current='page'] { color: #d8a8f4; }
.menu-note { color: var(--muted); font-size: 14px; text-align: center; margin: 12px 0 0; }
.menu-contact { list-style: none; margin: auto 0 0; padding: 28px 0 0; display: grid; gap: 6px; }
.menu-contact a { display: flex; align-items: center; gap: 12px; color: var(--muted); text-decoration: none; padding: 10px 0; font-size: 16px; }
.menu-contact a:hover { color: #fff; }
@media (min-width: 981px) { .menu { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .menu, .menu-links a { transition: none; } }

/* ── Hero ── */
.hero { position: relative; padding: 56px 0 96px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto; height: 120%; pointer-events: none;
  background: radial-gradient(640px 420px at 22% 30%, rgba(187, 39, 236, calc(0.16 * var(--lux))), transparent 70%),
    radial-gradient(560px 380px at 8% 70%, rgba(71, 166, 229, calc(0.12 * var(--lux))), transparent 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: 64px; align-items: center; }
.hero-title {
  font-size: clamp(50px, 7.4vw, 104px); line-height: 0.95; letter-spacing: -0.025em; font-weight: 500;
  color: rgb(255 255 255 / calc(0.5 + 0.5 * var(--lux)));
  text-shadow:
    0 0 4px rgb(255 255 255 / calc(0.55 * var(--lux))),
    0 0 18px rgb(187 39 236 / calc(0.75 * var(--lux))),
    0 0 46px rgb(187 39 236 / calc(0.45 * var(--lux))),
    0 0 90px rgb(71 166 229 / calc(0.35 * var(--lux)));
}
.hero-lede { font-size: 19px; color: #c9d0e3; max-width: 46ch; margin: 28px 0 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-facts { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-wrap: wrap; gap: 12px 28px; color: var(--muted); font-size: 15px; }
.hero-facts li { display: inline-flex; align-items: center; gap: 9px; }
.hero-facts .ico { width: 18px; height: 18px; color: #b88cf0; }

.hero-photo { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; background: #000; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(calc(0.22 + 0.78 * var(--lux))) saturate(calc(0.6 + 0.4 * var(--lux))); }
.hero-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 4, 14, 0.92));
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.hero-photo .credit { font-size: 14px; color: #d7dcea; }
.hero-photo .credit strong { display: block; color: #fff; font-weight: 600; font-size: 15px; }

/* De dimmer: echte bediening, net als de afstandsbediening bij elk sign */
.dimmer {
  display: flex; align-items: center; gap: 12px; padding: 8px 12px 8px 8px; border-radius: 999px;
  background: rgba(8, 18, 45, 0.78); border: 1px solid rgba(255, 255, 255, 0.14);
}
@supports (backdrop-filter: blur(8px)) { .dimmer { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } }
.power {
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); color: #fff; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.power[aria-pressed='true'] { background: var(--grad); box-shadow: 0 0 18px rgba(187, 39, 236, 0.6); }
.power .ico { width: 18px; height: 18px; }
.dimmer input[type='range'] { width: 110px; accent-color: #bb27ec; }
.dimmer label { font-size: 13px; color: #d7dcea; white-space: nowrap; }

@media (prefers-reduced-motion: no-preference) {
  .hero.power-on { animation: powerOn 1.6s var(--ease) both; }
  @keyframes powerOn {
    0% { --lux: 0; }
    12% { --lux: 0.7; }
    16% { --lux: 0.1; }
    24% { --lux: 0.85; }
    28% { --lux: 0.35; }
    40%, 100% { --lux: 1; }
  }
}

@media (max-width: 980px) {
  .hero { padding: 28px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-lede { font-size: 18px; margin: 22px 0 28px; }
  .hero-photo { aspect-ratio: 4 / 4.4; }
}
@media (max-width: 600px) {
  .hero-actions .btn { width: 100%; }
  .hero-facts { flex-direction: column; gap: 10px; margin-top: 30px; }
  .dimmer input[type='range'] { width: 84px; }
}

/* ── Klantenband ── */
.clients { border-block: 1px solid var(--line-soft); padding: 26px 0; }
.clients .wrap { display: flex; gap: 14px 40px; align-items: baseline; flex-wrap: wrap; }
.clients p { margin: 0; color: var(--soft); font-size: 14px; flex-shrink: 0; }
.clients ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 26px; }
.clients li { font-family: var(--display); font-size: 18px; color: #d9deeb; font-weight: 500; white-space: nowrap; }

/* ── Werkwijze ── */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: s; border-top: 1px solid var(--line); }
.steps li { counter-increment: s; padding: 30px 28px 0 0; position: relative; }
.steps li::before {
  content: counter(s); display: block; font-family: var(--display); font-size: 64px; font-weight: 300; line-height: 1;
  color: #fff; margin-bottom: 26px;
  text-shadow: 0 0 20px rgb(187 39 236 / calc(0.55 * var(--lux)));
}
.steps li::after { content: ''; position: absolute; top: -1px; left: 0; width: 44px; height: 2px; background: var(--grad); }
.steps h3 { font-size: 22px; margin-bottom: 10px; }
.steps p { color: var(--muted); font-size: 16px; }
.steps .when { display: inline-block; margin-top: 14px; font-size: 14px; color: #d8a8f4; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; row-gap: 44px; } }
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; row-gap: 0; border-top: 0; }
  .steps li { display: grid; grid-template-columns: 58px 1fr; column-gap: 12px; padding: 26px 0; border-top: 1px solid var(--line); }
  .steps li::before { font-size: 44px; margin: 0; grid-row: span 3; }
}
.cta-row { margin-top: 56px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.cta-row p { margin: 0; color: var(--muted); }

/* ── Projecten ── */
.work { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.work figure { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; background: #000; }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.work figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 20px 18px; background: linear-gradient(180deg, transparent, rgba(0, 4, 14, 0.9)); font-size: 14px; color: #cfd5e6; }
.work figcaption strong { display: block; color: #fff; font-family: var(--display); font-weight: 500; font-size: 20px; margin-bottom: 2px; }
.w-a { grid-column: span 7; aspect-ratio: 7 / 6; }
.w-b { grid-column: span 5; aspect-ratio: 5 / 6; }
.w-c { grid-column: span 5; aspect-ratio: 5 / 6; }
.w-d { grid-column: span 7; aspect-ratio: 7 / 6; }
@media (max-width: 900px) {
  .work { grid-template-columns: 1fr 1fr; gap: 12px; }
  .w-a, .w-b, .w-c, .w-d { grid-column: span 1; aspect-ratio: 4 / 5; }
  .w-a, .w-d { grid-column: span 2; aspect-ratio: 4 / 3; }
  .work figcaption { padding: 50px 14px 14px; font-size: 13px; }
  .work figcaption strong { font-size: 17px; }
}

/* ── Product ── */
.product-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: start; }
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; gap: 44px; } }
.inbox { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.inbox li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.inbox .ico { color: #b88cf0; margin-top: 3px; }
.inbox strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.inbox span { color: var(--muted); font-size: 16px; }
.product-shot { border-radius: var(--r-lg); overflow: hidden; background: #eef0f5; }
.product-shot + p { color: var(--soft); font-size: 14px; margin-top: 12px; }

.options { margin-top: 96px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.options > div { padding: 28px 28px 0 0; }
.options h3 { font-size: 20px; margin-bottom: 10px; }
.options p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 900px) { .options { grid-template-columns: 1fr 1fr; row-gap: 20px; } }
@media (max-width: 560px) { .options { grid-template-columns: 1fr; } .options > div { padding: 24px 0 0; } }

.housing { margin-top: 96px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
@media (max-width: 900px) { .housing { grid-template-columns: 1fr; gap: 28px; } }
.housing h3 { font-size: clamp(26px, 3vw, 36px); }
.housing p { color: var(--muted); }
.tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; border: 1px solid var(--line); margin: 20px 0 22px; }
.tabs button {
  border: 0; background: none; color: var(--muted); cursor: pointer; font-family: var(--body); font-size: 15px; font-weight: 600;
  padding: 10px 18px; border-radius: 999px; transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.tabs button[aria-selected='true'] { background: rgba(255, 255, 255, 0.1); color: #fff; }
.housing-panel { background: #01050f; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 32px; }
.housing-panel img { margin: 0 auto; }

.compare { margin-top: 96px; width: 100%; border-collapse: collapse; font-size: 16px; }
.compare caption { text-align: left; font-family: var(--display); font-size: clamp(26px, 3vw, 36px); color: #fff; font-weight: 500; margin-bottom: 24px; }
.compare th, .compare td { text-align: left; padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { color: var(--soft); font-weight: 500; font-size: 14px; }
.compare tbody th { color: #fff; font-weight: 600; width: 22%; }
.compare td { color: var(--muted); }
.compare td:first-of-type { color: #e6eaf4; }
@media (max-width: 600px) { .compare { font-size: 14.5px; } .compare tbody th { width: 30%; } }

/* ── Reviews ── */
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.review { margin: 0; padding: 32px 32px 0 0; }
.review + .review { padding-left: 32px; border-left: 1px solid var(--line-soft); }
.stars { display: flex; gap: 3px; color: #f2c14e; margin-bottom: 18px; }
.stars svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.review blockquote { margin: 0 0 18px; font-size: 18px; color: #e3e7f1; line-height: 1.55; }
.review figcaption { color: var(--muted); font-size: 15px; }
@media (max-width: 900px) {
  .reviews { grid-template-columns: 1fr; }
  .review, .review + .review { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line-soft); }
}

/* ── Vragen ── */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 20px; } }
.faq-aside p { color: var(--muted); }
.faq-aside .btn { margin-top: 12px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 2px; font-size: 18px; font-weight: 600; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { color: #b88cf0; transition: transform 0.4s var(--ease); }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq .answer { padding: 0 44px 24px 2px; color: var(--muted); }
@media (max-width: 600px) { .faq summary { font-size: 16.5px; padding: 19px 0; } .faq .answer { padding-right: 8px; } }

/* ── Aanvragen (wizard) ── */
.request { background: radial-gradient(900px 500px at 85% 20%, rgba(187, 39, 236, 0.12), transparent 70%), var(--bg-2); border-top: 1px solid var(--line-soft); }
.request-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
@media (max-width: 980px) { .request-grid { grid-template-columns: 1fr; gap: 36px; } }
.request h2 { font-size: clamp(36px, 5vw, 60px); }
.request-points { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.request-points li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; color: #d3d9e8; }
.request-points .ico { color: #b88cf0; margin-top: 3px; }
@media (max-width: 980px) { .request-points { display: none; } }

.wizard { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; }
@media (max-width: 600px) { .wizard { padding: 24px 18px; margin-inline: -4px; } }
.wiz-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 30px; }
.wiz-dot { display: flex; flex-direction: column; gap: 9px; }
.wiz-dot .bar { height: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.14); transition: background 0.4s var(--ease); }
.wiz-dot.done .bar, .wiz-dot.current .bar { background: var(--grad); }
.wiz-dot .lbl { font-size: 13px; color: var(--soft); }
.wiz-dot.current .lbl { color: #fff; font-weight: 600; }
@media (max-width: 520px) { .wiz-dot .lbl { display: none; } .wiz-progress { margin-bottom: 22px; } }
.wiz-step { display: none; }
.wiz-step.active { display: block; }
.wiz-step h3 { font-size: 26px; margin-bottom: 8px; }
.step-sub { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.step-label { color: #d3d9e8; font-size: 15px; font-weight: 600; margin: 26px 0 12px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.choice-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 520px) { .choice-grid.three { grid-template-columns: 1fr; } }
.choice {
  display: flex; align-items: center; gap: 12px; text-align: left; min-height: 64px; padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--r);
  color: #fff; cursor: pointer; font-family: var(--body); font-size: 16px; font-weight: 600;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.choice:hover { border-color: rgba(255, 255, 255, 0.4); }
.choice .ico { color: var(--muted); }
.choice .t { display: flex; flex-direction: column; }
.choice .sm { font-size: 13.5px; font-weight: 400; color: var(--muted); }
.choice[aria-pressed='true'] { border-color: transparent; background: linear-gradient(#101d45, #101d45) padding-box, var(--grad) border-box; }
.choice[aria-pressed='true'] .ico { color: #d8a8f4; }

.neon-stage {
  position: relative; background: #01040c; border: 1px solid var(--line-soft); border-radius: var(--r);
  min-height: 200px; display: grid; place-items: center; padding: 28px 20px; overflow: hidden; margin-bottom: 16px;
}
.neon-stage .placeholder { color: var(--soft); font-size: 15px; text-align: center; margin: 0; max-width: 32ch; }
.neon-text { font-family: var(--display); font-size: clamp(28px, 7vw, 48px); font-weight: 500; color: #fff; text-align: center; line-height: 1.1; }
.neon-logo { max-height: 150px; width: auto; }
.neon-logo.lit { filter: brightness(0) invert(1) drop-shadow(0 0 6px var(--glow)) drop-shadow(0 0 18px var(--glow)) drop-shadow(0 0 36px var(--glow)); }
.stage-toggle {
  position: absolute; right: 10px; top: 10px; z-index: 2; background: rgba(255, 255, 255, 0.1); border: 0; color: #fff;
  font-family: var(--body); font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 999px; cursor: pointer;
}
.stage-toggle:hover { background: rgba(255, 255, 255, 0.18); }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { width: 40px; height: 40px; border-radius: 50%; cursor: pointer; padding: 0; border: 2px solid rgba(255, 255, 255, 0.2); transition: box-shadow 0.3s var(--ease); }
.swatch[aria-pressed='true'] { border-color: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16); }

.drop {
  position: relative; border: 1px dashed rgba(255, 255, 255, 0.28); border-radius: var(--r); padding: 26px 18px; text-align: center;
  background: rgba(255, 255, 255, 0.02); transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.drop:hover, .drop.over { border-color: var(--blue); background: rgba(71, 166, 229, 0.07); }
.drop input[type='file'] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.drop .ico { width: 26px; height: 26px; color: #b88cf0; margin: 0 auto 10px; }
.drop strong { display: block; color: #fff; font-size: 16px; margin-bottom: 4px; }
.drop .drop-label span { color: var(--muted); font-size: 14px; }
.drop.has-file { border-style: solid; border-color: rgba(52, 199, 123, 0.55); background: rgba(52, 199, 123, 0.07); }
.file-chip { display: flex; align-items: center; justify-content: center; gap: 10px; color: #8fe3b6; font-size: 15px; }
.file-chip img { width: 36px; height: 36px; object-fit: cover; border-radius: 6px; background: #fff; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: #d3d9e8; }
.field input, .field textarea {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.18); color: #fff;
  border-radius: var(--r); padding: 14px; font-size: 16px; font-family: var(--body); min-height: 52px;
}
.field input::placeholder, .field textarea::placeholder { color: #7b86a3; }
.field input:focus, .field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(71, 166, 229, 0.22); }
.field textarea { resize: vertical; min-height: 110px; }
.field.invalid input { border-color: #ef6b73; }
.field .err { color: #ff9ba0; font-size: 13.5px; display: none; }
.field.invalid .err { display: block; }
.wiz-nav { display: flex; gap: 12px; margin-top: 28px; }
.wiz-nav .btn { flex: 1; }
.wiz-nav .btn-ghost { flex: 0 0 auto; }
.form-note { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }
.form-msg { border-radius: var(--r); padding: 12px 15px; font-size: 15px; margin-top: 16px; display: none; }
.form-msg.err { display: block; background: rgba(212, 55, 62, 0.14); color: #ffb0b4; }
.wiz-success { text-align: center; padding: 16px 4px; }
.wiz-success .tick { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: 0 0 40px rgba(187, 39, 236, 0.45); }
.wiz-success .tick .ico { width: 30px; height: 30px; }
.wiz-success h3 { font-size: 28px; margin-bottom: 12px; }
.wiz-success p { color: var(--muted); }
.next-steps { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; text-align: left; counter-reset: n; }
.next-steps li { counter-increment: n; display: grid; grid-template-columns: 28px 1fr; gap: 12px; color: #d3d9e8; }
.next-steps li::before { content: counter(n); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: rgba(187, 39, 236, 0.18); color: #e2c2f7; font-size: 13px; font-weight: 700; }

/* ── Subpagina's ── */
.page-hero { padding: 72px 0 48px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 80px); letter-spacing: -0.02em; }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 58ch; margin-top: 20px; }
@media (max-width: 800px) { .page-hero { padding: 40px 0 32px; } .page-hero p { font-size: 17.5px; } }

.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: start; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 40px; } }
.about p { color: #c9d0e3; font-size: 18px; }
.about figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; }
.facts { margin: 36px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.facts div { padding: 20px 20px 20px 0; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--soft); font-size: 14px; margin-bottom: 4px; }
.facts dd { margin: 0; color: #fff; }
.facts dd a { color: #fff; }

/* Juridische pagina's */
.legal { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 72px; align-items: start; padding-bottom: 120px; }
@media (max-width: 900px) { .legal { grid-template-columns: 1fr; gap: 28px; padding-bottom: 84px; } }
.toc { position: sticky; top: calc(var(--header-h) + 24px); font-size: 14.5px; }
.toc p { color: var(--soft); margin-bottom: 10px; }
.toc ol { margin: 0; padding: 0 0 0 20px; display: grid; gap: 6px; color: var(--soft); }
.toc a { color: var(--muted); text-decoration: none; }
.toc a:hover { color: #fff; }
@media (max-width: 900px) {
  .toc { position: static; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; }
}
.prose { max-width: 72ch; color: #cdd3e3; }
.prose h2 { font-size: 28px; margin: 56px 0 16px; scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; margin: 30px 0 10px; }
.prose p, .prose li { font-size: 16.5px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.prose strong { color: #fff; font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 12px 12px 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: #fff; font-weight: 600; }
.prose .meta { color: var(--soft); font-size: 14.5px; }
.prose .box { border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; margin: 18px 0 22px; background: rgba(255, 255, 255, 0.02); }
@media (max-width: 600px) {
  .prose table, .prose tbody, .prose tr, .prose td { display: block; width: 100%; }
  .prose thead { display: none; }
  .prose tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .prose td { border: 0; padding: 2px 0; font-size: 15px; }
  .prose td:first-child { color: #fff; font-weight: 600; }
}

/* 404 */
.notfound { min-height: 60vh; display: grid; align-content: center; padding: 80px 0; }
.notfound h1 { font-size: clamp(48px, 8vw, 110px); }
.notfound p { color: var(--muted); font-size: 19px; margin: 20px 0 32px; }

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--line-soft); padding: 88px 0 0; background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 28px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 26px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 15.5px; max-width: 36ch; margin-bottom: 24px; }
.footer-h { font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--soft); margin-bottom: 16px; letter-spacing: 0; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.footer-links a { color: #d9deeb; text-decoration: none; font-size: 15.5px; display: inline-flex; align-items: center; gap: 10px; padding: 6px 0; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links .ico { width: 17px; height: 17px; color: var(--muted); }
.site-footer address { color: var(--muted); font-size: 15px; margin-top: 16px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 22px 0 26px; display: flex; justify-content: space-between; gap: 10px 24px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; color: var(--soft); font-size: 13.5px; }
.footer-bottom a { color: var(--soft); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── Zwevende WhatsApp en mobiele actiebalk ── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 55; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: filter 0.4s var(--ease);
}
.wa-float:hover { color: #fff; filter: brightness(1.08); }
.wa-float .ico { width: 30px; height: 30px; }
.mobile-bar { display: none; }
@media (max-width: 980px) {
  :root { --bar-h: 76px; }
  .wa-float { display: none; }
  .mobile-bar {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 9, 28, 0.94); border-top: 1px solid var(--line-soft);
    transform: translateY(110%); transition: transform 0.45s var(--ease);
  }
  @supports (backdrop-filter: blur(10px)) { .mobile-bar { background: rgba(0, 9, 28, 0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); } }
  .mobile-bar.visible { transform: none; }
  body.menu-open .mobile-bar { transform: translateY(110%); }
  .mobile-bar .btn { flex: 1; box-shadow: none; }
  .mobile-wa { width: 52px; height: 52px; flex-shrink: 0; border-radius: 16px; display: grid; place-items: center; background: #25d366; color: #fff; }
  .mobile-wa .ico { width: 26px; height: 26px; }
}

.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 100; background: #fff; color: var(--bg); padding: 10px 16px; border-radius: 6px; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 10px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ══ Sfeerlaag: gloed, verlopen en glas zoals de oorspronkelijke NeonFlowz-stijl ══ */
.topbar { background: var(--grad); color: #fff; text-align: center; font-size: 13.5px; font-weight: 600; padding: 8px 16px; position: relative; z-index: 61; }
.eyebrow {
  display: inline-block; margin-bottom: 16px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section, .clients { position: relative; isolation: isolate; overflow-x: clip; }
.section.alt { background: linear-gradient(180deg, #041030 0%, var(--bg) 100%); border: 0; }
.section.tint { background: linear-gradient(180deg, #041030 0%, var(--bg) 100%); border: 0; }
.glow-a::before, .glow-b::before {
  content: ''; position: absolute; z-index: -1; pointer-events: none; width: 640px; height: 640px; border-radius: 50%;
  filter: blur(40px); opacity: calc(0.55 * var(--lux));
}
.glow-a::before { right: -180px; top: 60px; background: radial-gradient(circle, rgba(187, 39, 236, 0.28), transparent 65%); }
.glow-b::before { left: -200px; top: 30%; background: radial-gradient(circle, rgba(71, 166, 229, 0.24), transparent 65%); }
@media (max-width: 800px) { .glow-a::before, .glow-b::before { width: 380px; height: 380px; } }

.glass { background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line); border-radius: var(--r-lg); }

/* Stappen als glazen kaarten */
.steps { gap: 18px; border-top: 0; }
.steps li { padding: 28px 24px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line); border-radius: var(--r-lg); transition: border-color 0.4s var(--ease); }
.steps li:hover { border-color: rgba(187, 39, 236, 0.45); }
.steps li::after { display: none; }
.steps li::before {
  content: counter(s); width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  font-size: 20px; font-weight: 600; background: var(--grad); box-shadow: 0 8px 26px rgba(187, 39, 236, calc(0.45 * var(--lux)));
  text-shadow: none;
}
@media (max-width: 560px) {
  .steps { gap: 12px; }
  .steps li { display: grid; grid-template-columns: 46px 1fr; column-gap: 16px; padding: 22px 20px; border-top: 1px solid var(--line); }
  .steps li::before { margin: 0; grid-row: span 3; font-size: 20px; }
}

/* Projecten: gloed rond de foto's */
.work figure { border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }

/* Strook met ontwerpen */
.marquee-wrap { margin-top: 72px; }
.marquee-wrap .marquee-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.marquee-wrap h3 { font-size: 24px; }
.marquee-wrap .marquee-head p { color: var(--muted); margin: 0; font-size: 15px; }
.marquee { overflow: hidden; --gap: 16px; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: var(--gap); width: max-content; }
.marquee img { height: 210px; width: auto; border-radius: 16px; object-fit: cover; border: 1px solid var(--line); }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: scroll-x 60s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes scroll-x { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }
}
@media (max-width: 700px) { .marquee img { height: 140px; border-radius: 12px; } .marquee { --gap: 10px; } .marquee-wrap { margin-top: 48px; } }

/* Product: opties als kaarten met kleur-icoon */
.options { gap: 16px; border-top: 0; }
.options > div { padding: 26px 24px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line); border-radius: var(--r-lg); }
.opt-ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--grad); margin-bottom: 18px; box-shadow: 0 8px 24px rgba(187, 39, 236, calc(0.4 * var(--lux))); }
.opt-ico .ico { color: #fff; width: 22px; height: 22px; }
@media (max-width: 560px) { .options > div { padding: 22px 20px; } }
.inbox { border-top: 0; display: grid; gap: 12px; }
.inbox li { padding: 18px 20px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line); border-radius: var(--r); }
.inbox .ico { width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: var(--grad); color: #fff; margin-top: 0; }
.product-shot { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(187, 39, 236, calc(0.15 * var(--lux))); }

/* Kleurenpaneel: twee kaarten */
.colors-head { margin-top: 104px; }
.colors { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .colors { grid-template-columns: 1fr; gap: 14px; } .colors-head { margin-top: 72px; } }
.color-card { background: #061234; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; text-align: center; }
.color-card h3 { font-size: 22px; margin-bottom: 22px; }
.color-card img { margin: 0 auto 22px; }
.color-card p { color: var(--muted); font-size: 15.5px; margin: 0; }
@media (max-width: 600px) { .color-card { padding: 26px 18px; } }

.compare-card { margin-top: 104px; padding: 36px 40px 20px; }
.compare-card .compare { margin-top: 0; }
@media (max-width: 600px) { .compare-card { padding: 26px 20px 10px; margin-top: 72px; } }

/* Reviews als glazen kaarten */
.reviews { gap: 18px; border-top: 0; }
.review, .review + .review { padding: 30px; border: 1px solid var(--line); border-radius: var(--r-lg); background: rgba(255, 255, 255, 0.035); }
.review figcaption { color: #fff; font-weight: 600; }
@media (max-width: 900px) { .review, .review + .review { padding: 26px 22px; border-bottom: 1px solid var(--line); } }

.faq { background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 6px 26px; border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
@media (max-width: 600px) { .faq { padding: 2px 18px; } }

.request { background: linear-gradient(180deg, var(--bg) 0%, #060427 55%, #0a0433 100%); border-top: 0; }
.wizard { background: rgba(255, 255, 255, 0.04); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45), 0 0 80px rgba(187, 39, 236, calc(0.12 * var(--lux))); }
.request-points .ico { width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--grad); color: #fff; margin-top: 1px; }

.hero-photo { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 90px rgba(187, 39, 236, calc(0.28 * var(--lux))); outline: 1px solid rgba(255, 255, 255, 0.1); }
.clients { background: rgba(255, 255, 255, 0.02); }

.footer-flow {
  display: inline-block; font-family: var(--display); font-size: 15px; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 14px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-footer { background: #030d24; }

/* Rustig binnenkomen van secties */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ══ Hero zoals de oorspronkelijke site: gloeiende signs, sterren en voordelenbalk ══ */
.hero { padding: 72px 0 88px; }
.hero-title { font-size: clamp(42px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.02em; }
.hero-lede { font-size: 18px; color: var(--muted); max-width: 50ch; margin: 22px 0 30px; }
.hero-actions { align-items: center; gap: 22px; }
.rating { display: flex; flex-direction: column; gap: 4px; font-size: 14px; color: var(--muted); }
.rating .stars { margin: 0; }
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 34px; }
.hero-visual .sign { width: min(80%, 440px); filter: brightness(calc(0.18 + 0.82 * var(--lux))) drop-shadow(0 0 calc(34px * var(--lux)) rgba(57, 255, 20, calc(0.3 * var(--lux)))); }
.hero-visual .sign-b { align-self: flex-end; filter: brightness(calc(0.18 + 0.82 * var(--lux))) drop-shadow(0 0 calc(34px * var(--lux)) rgba(245, 192, 78, calc(0.38 * var(--lux)))); }
@media (prefers-reduced-motion: no-preference) {
  .hero-visual .sign { animation: float 7s ease-in-out infinite; }
  .hero-visual .sign-b { animation-delay: -3.5s; }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
}
.hero-visual .dimmer { margin-top: 6px; }
@media (max-width: 980px) {
  .hero { padding: 36px 0 56px; }
  .hero-visual { gap: 18px; }
  .hero-visual .sign { width: 72%; }
  .hero-actions .btn { width: 100%; }
  .rating { flex-direction: row; align-items: center; gap: 12px; }
}

.usp-band { border-block: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.usp-band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding-block: 22px; }
.usp { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text); }
.usp .check { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; background: rgba(71, 166, 229, 0.15); color: var(--blue); }
.usp .check .ico { width: 16px; height: 16px; stroke-width: 2.5; }
@media (max-width: 940px) { .usp-band .wrap { grid-template-columns: 1fr 1fr; gap: 16px 12px; } .usp { font-size: 14.5px; } }
.clients { border-top: 0; }
@media (max-width: 980px) {
  .hero-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 12px; }
  .hero-visual .sign { width: calc(50% - 6px); }
  .hero-visual .sign-b { align-self: center; }
  .hero-visual .dimmer { flex-basis: auto; }
}
@media (max-width: 420px) { .topbar { font-size: 12.5px; padding: 8px 10px; } }

/* ── Klantlogo's als doorlopende carrousel, allemaal in één kleur ── */
.clients { padding: 30px 0 34px; }
.clients .wrap { display: block; }
.clients p { margin: 0 0 18px; color: var(--soft); font-size: 14px; }
.logo-marquee { overflow: hidden; --gap: 72px; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; align-items: center; gap: var(--gap); width: max-content; padding-right: var(--gap); }
.logo-track img { height: 38px; width: auto; max-width: 170px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.72; transition: opacity 0.4s var(--ease); }
.logo-track img.tall { height: 48px; }
.logo-track img:hover { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .logo-track { animation: logos 38s linear infinite; }
  .logo-marquee:hover .logo-track { animation-play-state: paused; }
  @keyframes logos { to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) { .logo-track { flex-wrap: wrap; width: auto; justify-content: center; gap: 28px 44px; padding: 0 20px; } .logo-track .dup { display: none; } }
@media (max-width: 700px) { .logo-marquee { --gap: 44px; } .logo-track img { height: 30px; max-width: 130px; } .logo-track img.tall { height: 38px; } }
.team-h { font-size: 24px; margin: 40px 0 16px; }
.team { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.team li { padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255, 255, 255, 0.035); }
.team strong { display: block; font-family: var(--display); font-weight: 500; font-size: 20px; color: #fff; }
.team span { color: var(--muted); font-size: 15px; }
@media (max-width: 420px) { .team { grid-template-columns: 1fr; } }
