/* app.css — auto-generated by _SCRIPTS/build_css.php. Do not edit. */

/* === grid.css === */
/* ==========================================================================
   VOLTOO GRID SYSTEM
   12 columns · 78px column · 24px gutter · 1200px grid · 30px outer padding
   Container max-width: 1260px (1200px grid + 2 × 30px padding)
   ========================================================================== */

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.col-1  { grid-column: span 1;  }
.col-2  { grid-column: span 2;  }
.col-3  { grid-column: span 3;  }
.col-4  { grid-column: span 4;  }
.col-5  { grid-column: span 5;  }
.col-6  { grid-column: span 6;  }
.col-7  { grid-column: span 7;  }
.col-8  { grid-column: span 8;  }
.col-9  { grid-column: span 9;  }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }


/* --------------------------------------------------------------------------
   RESPONSIVE
   md  ≤ 1024px  tablet landscape  → 8 columns, fluid
   sm  ≤  768px  tablet portrait   → 4 columns, fluid
   xs  ≤  480px  mobile            → 1 column
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
  }
  .col-1, .col-2                            { grid-column: span 2; }
  .col-3, .col-4                            { grid-column: span 4; }
  .col-5, .col-6                            { grid-column: span 4; }
  .col-7, .col-8, .col-9,
  .col-10, .col-11, .col-12                 { grid-column: span 8; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  [class^="col-"] { grid-column: span 4; }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  [class^="col-"] { grid-column: span 1; }
}

/* === main.css === */
/* ==========================================================================
   VOLTOO HOMEPAGE
   Imports tokens.css and grid.css via <link> in HTML
   ========================================================================== */

/* ── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── BASE ──────────────────────────────────────────────────────────────── */
html { -webkit-font-smoothing: antialiased; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-weight);
  color: var(--color-text);
  background: var(--color-bg);
  letter-spacing: var(--letter-spacing);
}

/* ── TYPOGRAPHY ────────────────────────────────────────────────────────── */
h1 {
  font-family: var(--h1-font);
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-weight);
  letter-spacing: var(--letter-spacing);
}
h2 {
  font-family: var(--h2-font);
  font-size: var(--h2-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-weight);
  letter-spacing: var(--letter-spacing);
}
h6 {
  font-family: var(--h6-font);
  font-size: var(--h6-size);
  line-height: var(--h6-line-height);
  font-weight: var(--h6-weight);
  letter-spacing: var(--letter-spacing);
}

.text-accent { color: var(--color-accent); }

/* ── TICKER ANIMATIE ──────────────────────────────────────────────────── */
.ticker-wrapper {
  display: inline-block;
  overflow: hidden;
  height: var(--h1-line-height);
  vertical-align: bottom;
}

.ticker-track {
  display: flex;
  flex-direction: column;
  animation: ticker-scroll 8s ease-in-out infinite;
}

.ticker-item {
  height: var(--h1-line-height);
  line-height: var(--h1-line-height);
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  font-family: var(--h1-font);
  color: var(--color-accent);
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0%,   19% { transform: translateY(0); }
  25%,  44% { transform: translateY(calc(-1 * var(--h1-line-height))); }
  50%,  69% { transform: translateY(calc(-2 * var(--h1-line-height))); }
  75%,  94% { transform: translateY(calc(-3 * var(--h1-line-height))); }
  100%      { transform: translateY(calc(-4 * var(--h1-line-height))); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    transform: translateY(0);
  }
  .ticker-item:not(:first-child) {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── SECTION LABEL (monospace, uppercase, spaced) ──────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-32);
}

/* ── BREADCRUMB ────────────────────────────────────────────────────────── */
.breadcrumb {
  font: 400 16px/1.5 var(--font-body);
  color: var(--color-muted);
}
.breadcrumb a {
  color: var(--color-text);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.bc-sep {
  margin: 0 6px;
  color: var(--color-border);
}
.bc-ellipsis { display: none; }
@media (max-width: 768px) {
  .bc-middle { display: none; }
  .bc-ellipsis { display: inline; margin: 0 6px; color: var(--color-border); }
}

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 18px;
  line-height: var(--body-line-height);
  font-weight: var(--body-weight);
  letter-spacing: var(--letter-spacing);
  background: var(--color-surface);
  color: var(--color-text);
  border: var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  cursor: pointer;
  transition: background 350ms ease, color 350ms ease, border-color 350ms ease;
}
.btn:hover {
  background: var(--color-text);
  color: var(--color-surface);
  border-color: var(--color-text);
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.btn:active {
  opacity: 0.9;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-accent);
  color: var(--color-surface);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 350ms ease;
}
.btn-icon:hover { background: var(--color-text); }
.btn-icon:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}
.btn-icon:active { opacity: 0.8; }

/* ── INPUT ─────────────────────────────────────────────────────────────── */
.input {
  width: 100%;
  font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-weight);
  letter-spacing: var(--letter-spacing);
  color: var(--color-text);
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  outline: none;
}
.input::placeholder { color: var(--color-muted); }
.input:focus { border-color: var(--color-text); }

/* ══════════════════════════════════════════════════════════════════════════
   0. TOPBAR
   ══════════════════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--color-accent-2);
  padding: 10px 0;
  overflow: hidden;
}
.topbar-track {
  display: flex;
  width: max-content;
  animation: topbar-scroll 36s linear infinite;
}
.topbar-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
  padding-right: 200px;
}

.topbar-sparkle {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.topbar-sparkle span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  background: var(--color-text);
  border-radius: 50%;
  animation: sparkle-pop 2.4s ease-in-out infinite;
}
.topbar-sparkle span:nth-child(1) {
  top: 1px;
  left: 2px;
  animation-delay: 0s;
}
.topbar-sparkle span:nth-child(2) {
  top: 8px;
  left: 7px;
  width: 3px;
  height: 3px;
  animation-delay: 0.4s;
}
.topbar-sparkle span:nth-child(3) {
  top: 3px;
  left: 12px;
  animation-delay: 0.8s;
}
@keyframes sparkle-pop {
  0%, 100% { opacity: 0; transform: scale(0); }
  15% { opacity: 1; transform: scale(1.2); }
  30% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(0); }
}

@keyframes topbar-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════════════
   1. NAVIGATIE
   ══════════════════════════════════════════════════════════════════════════ */
.site-header {
  padding-top: 0;
  position: sticky;
  top: 0;
  z-index: 30;
  overflow-x: clip;
}
.navbar {
  background: transparent;
  border: none;
  height: 72px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 var(--space-24);
  position: relative;
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border-bottom: 1px solid var(--color-bg-medium);
  box-shadow: none;
  z-index: -1;
  transition: background 0.9s ease, backdrop-filter 0.9s ease, -webkit-backdrop-filter 0.9s ease, box-shadow 0.9s ease, border-color 0.9s ease;
}
.site-header.is-stuck .navbar::before {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}
.navbar .container {
  max-width: none;
  padding: 0;
  height: 100%;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-32);
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-text);
}
.navbar-logo img,
.navbar-logo svg { height: 26px; width: auto; }
.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-32);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
}
.navbar-links a { display: flex; align-items: center; gap: var(--space-4); }
.navbar-links a:hover { color: var(--color-accent); }
.navbar-links a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn-nav {
  display: inline-block;
  font-family: var(--body-font);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  letter-spacing: var(--letter-spacing);
  background: var(--color-surface);
  color: var(--color-text);
  border: var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--color-accent);
  color: var(--color-surface);
  border-color: var(--color-accent);
}
.btn-nav:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn-nav:active { opacity: 0.9; }

/* ── MEGA MENU ──────────────────────────────────────────────────────── */
.nav-item-mega {
  position: static;
}
.mega-menu {
  position: fixed;
  top: 72px; /* navbar height — zie .navbar { height: 72px } */
  left: 0;
  width: 100vw;
  overflow: hidden;
  border-top: 10px solid transparent;
  background: var(--color-surface);
  background-clip: padding-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 200;
  padding-bottom: 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.nav-item-mega:focus-within .mega-menu,
.nav-item-mega.is-open .mega-menu,
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-item-mega:hover > .has-dropdown,
.nav-item-mega.is-open > .has-dropdown {
  color: var(--color-accent);
}
.nav-item-mega:hover .has-dropdown svg,
.nav-item-mega.is-open .has-dropdown svg {
  transform: rotate(180deg);
}
.has-dropdown svg {
  transition: transform 0.3s ease;
}
.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 0 0;
  display: grid;
  grid-template-columns: 243px 243px 243px 432px;
  gap: 0 24px;
}
.mega-col {
  padding: 16px;
}
.mega-col:first-child {
  padding-left: 0;
}
.mega-col-featured {
  position: relative;
  background: var(--color-bg);
  border-left: 1px dashed #d7d7d7;
  padding: 15px;
  margin-top: -30px;
  padding-top: 46px;
  margin-bottom: -60px;
  padding-bottom: 75px;
}
.mega-col-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: var(--color-bg);
  z-index: -1;
}
.mega-heading {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-16);
  letter-spacing: 0;
}
.mega-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}
.mega-list li a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  transition: color 0.2s ease;
  letter-spacing: 0;
}
.mega-list li a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.mega-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.mega-icon--flash,
.mega-icon--atom,
.mega-icon--license,
.mega-icon--wallet {
  display: inline-block;
  background-color: var(--color-accent);
  -webkit-mask: var(--mega-icon-src) no-repeat center / contain;
          mask: var(--mega-icon-src) no-repeat center / contain;
}
.mega-icon--flash   { --mega-icon-src: url('/brand_assets/logo-flash.svg'); }
.mega-icon--atom    { --mega-icon-src: url('/assets/svg/atom-01-stroke-rounded.svg'); }
.mega-icon--license { --mega-icon-src: url('/assets/svg/license-stroke-rounded.svg'); }
.mega-icon--wallet  { --mega-icon-src: url('/assets/svg/wallet-done-02-stroke-rounded.svg'); }

/* Leaflet map pin — inline SVG; oranje delen erven currentColor, wit blijft wit */
.voltoo-map-pin-wrapper { background: none; border: 0; }
.voltoo-map-pin {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-accent);
}
.voltoo-map-pin svg { display: block; width: 100%; height: 100%; }
.mega-link-bottom {
  display: inline-block;
  margin-top: var(--space-24);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0;
  text-decoration: underline;
}
.mega-link-bottom:hover {
  text-decoration: none;
}
.mega-featured-card {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: var(--space-16);
  text-decoration: none;
  color: inherit;
}
.mega-featured-img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  position: relative;
  top: -3px;
}
.mega-featured-content {
  display: flex;
  flex-direction: column;
  padding-left: 5px;
}
.mega-featured-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: var(--space-4);
  letter-spacing: 0;
}
.mega-featured-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-featured-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0;
  text-decoration: underline;
}
.mega-featured-link:hover {
  text-decoration: none;
}

/* ── MEGA MENU — COMPACT (Kennisbank) ───────────────────────────── */
.mega-menu--compact {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: var(--space-32);
}
.mega-menu-inner--compact {
  max-width: none;
  padding: 30px var(--space-32) 0;
  grid-template-columns: repeat(3, 260px);
  gap: 0 var(--space-32);
}

.navbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-16);
  min-width: 250px;
}
.btn-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-text);
  color: var(--color-surface);
  border: 1px solid var(--color-text);
  border-radius: var(--radius);
  transition: background 350ms ease, border-color 350ms ease;
}
.btn-nav-icon:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-nav-icon:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn-nav-icon:active { opacity: 0.9; }

/* ── Nav login-link / account-avatar ── */
.navbar-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: var(--color-text);
  text-decoration: none;
  transition: background 200ms ease;
}
.navbar-login-btn img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.navbar-login-btn:hover { background: var(--color-accent); }

/* Static zodat .navbar-account-menu absolute t.o.v. .navbar (position:relative) hangt,
   precies zoals .nav-item-mega → .mega-menu. Geeft dezelfde 10px gap onder de navbar. */
.navbar-account { position: static; display: flex; align-items: center; }
.navbar-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--color-text);
  color: var(--color-surface);
  border: 1px solid var(--color-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  font: 500 13px/1 var(--font-body);
  text-decoration: none;
  transition: background 350ms ease, border-color 350ms ease, color 350ms ease;
}
.navbar-avatar img { width: 42px; height: 42px; object-fit: cover; display: block; }
.navbar-avatar--logo { background: var(--color-surface); border-color: var(--color-border); }
.navbar-avatar--logo img { object-fit: contain; padding: 0; }
.navbar-avatar--logo:hover,
.navbar-account:hover .navbar-avatar--logo,
.navbar-account:focus-within .navbar-avatar--logo { background: var(--color-surface); border-color: var(--color-accent); }
.navbar-avatar:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.navbar-avatar:hover,
.navbar-account:hover .navbar-avatar,
.navbar-account:focus-within .navbar-avatar {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface);
}

/* Hover-dropdown — position: fixed zodat overflow-x: clip op .site-header
   het menu niet wegknipt (Safari-veilig). Zie .mega-menu voor context. */
.navbar-account-menu {
  position: fixed;
  top: 72px;                  /* navbar height */
  right: max(var(--space-24), calc((100vw - 1260px) / 2 + var(--space-24)));
  min-width: 180px;
  overflow: hidden;
  border-top: 10px solid transparent;
  background: var(--color-surface);
  background-clip: padding-box;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 6px 0 var(--space-16);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.navbar-account:focus-within .navbar-account-menu,
.navbar-account.is-open .navbar-account-menu,
.navbar-account-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navbar-account-menu a {
  display: block;
  padding: 10px 18px;
  font: 400 14px/1.5 var(--font-body);
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-account-menu a:hover { color: var(--color-accent); }
.navbar-account-divider { height: 1px; background: #E8E6E1; margin: 4px 0; }
.navbar-account-logout { color: var(--color-muted) !important; }
.navbar-account-logout:hover { color: var(--color-accent) !important; }

/* ══════════════════════════════════════════════════════════════════════════
   2. HERO
   ══════════════════════════════════════════════════════════════════════════ */
.section-hero {
  background-color: var(--color-bg-hero);
  background-image: none;
  background-repeat: repeat;
  padding: 0;
  margin-top: -106px;
  padding-top: 120px;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-size: 51px;
  line-height: 60px;
  font-weight: var(--h1-weight);
  margin-bottom: calc(var(--space-24) - 10px);
  width: 125%;
}
.hero-content .ticker-wrapper {
  height: 60px;
}
.hero-content .ticker-item {
  height: 60px;
  line-height: 60px;
  font-size: 51px;
}
.hero-content .ticker-track {
  animation-name: ticker-scroll-hero;
}
@keyframes ticker-scroll-hero {
  0%,   19% { transform: translateY(0); }
  25%,  44% { transform: translateY(-60px); }
  50%,  69% { transform: translateY(-120px); }
  75%,  94% { transform: translateY(-180px); }
  100%      { transform: translateY(-240px); }
}
.hero-subtitle {
  font-size: var(--body-size);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 42px;
  max-width: 560px;
}
.hero-search-bar {
  display: flex;
  align-items: center;
  width: 582px;
  height: 63px;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1px;
}
.hero-input {
  border-radius: var(--radius);
  border: none;
  flex: 1;
  padding: 0 20px;
  height: 100%;
  font-size: 20px;
  background: transparent;
}
.hero-submit {
  border-radius: var(--radius);
  flex-shrink: 0;
  width: 76px;
  height: 61px;
}
.hero-terms {
  font-size: 14px;
  color: var(--font-body);
  margin-top: 13px;
  font-weight: 500;
}
.hero-terms a { text-decoration: underline; }
.hero-terms a:hover { color: var(--color-text); }

.hero-image-col {
  position: relative;
  z-index: 20;
}
.hero-image-wrapper {
  position: relative;
  width: 85%;
  margin-left: auto;
  transform: translateX(-30px);
}
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  clip-path: inset(0 0 65px 0);
  margin-bottom: -65px;
  opacity: 0;
  transform: translateX(30px);
  animation: hero-image-enter 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes hero-image-enter {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-badge {
  position: absolute;
  bottom: calc(var(--space-32) + 60px);
  left: calc(0px - var(--space-64) + 10px - 30px - 15px);
  width: 228px;
  height: 228px;
  z-index: -1;
}
.hero-badge img,
.hero-badge-mark {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.55);
  animation: badge-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.hero-badge-mark {
  background-color: var(--color-bg-dark);
  -webkit-mask: url('/assets/svg/0installq-certificaat.svg') no-repeat center / contain;
          mask: url('/assets/svg/0installq-certificaat.svg') no-repeat center / contain;
}

@keyframes badge-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   3. CATEGORIEEN
   ══════════════════════════════════════════════════════════════════════════ */
.section-categories {
  background: var(--color-bg);
  padding-top: 40px;
  padding-bottom: 50px;
  text-align: center;
}
.section-categories h2 {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: calc(var(--space-48) - 10px);
}
.categories-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  margin-top: -10px;
  margin-bottom: calc(var(--space-48) - 10px);
}
.category-item {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-16);
  border-radius: 5px;
  transition: background-color 300ms ease;
}
.category-item:hover {
  background-color: #fff;
}
.category-item:first-child { grid-column: 2 / span 2; }
.category-item:hover .category-icon img,
.category-item:hover .category-icon [id^="lottie-"],
.category-item:hover .category-icon span { filter: brightness(0); }
.category-item:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 4px; border-radius: var(--radius); }
.category-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.category-icon img,
.category-icon [id^="lottie-"],
.category-icon span {
  width: 100px;
  height: auto;
  transition: filter 500ms ease;
}
.category-icon span svg { width: 100%; height: auto; }
.category-item span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}
.categories-row-extra {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 500ms ease, opacity 400ms ease, margin 500ms ease;
  margin-bottom: 0;
}
.categories-row-extra .category-item:first-child { grid-column: 2 / span 2; }
.categories-row-extra.is-expanded {
  max-height: 200px;
  opacity: 1;
  margin-bottom: var(--space-48);
}
.categories-cta {
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: -10px;
}

/* ══════════════════════════════════════════════════════════════════════════
   4. STATS BAND
   ══════════════════════════════════════════════════════════════════════════ */
.section-stats {
  background: var(--color-surface);
  padding: var(--space-48) 0;
  border-top: var(--border-dashed);
  border-bottom: var(--border-dashed);
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-64);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}
.stat-number {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}
.stat-label {
  font-size: var(--body-size);
  color: var(--color-muted);
}

/* ══════════════════════════════════════════════════════════════════════════
   5 & 9. MERK LOGOS BAND
   ══════════════════════════════════════════════════════════════════════════ */
.section-logos {
  max-width: 1260px;
  margin-inline: auto;
  padding: 20px 0 64px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 50px, black calc(100% - 50px), transparent);
  mask-image: linear-gradient(to right, transparent, black 50px, black calc(100% - 50px), transparent);
}
.section-logos-bottom {
  display: none;
  text-align: center;
  padding-top: var(--space-32);
}
.section-logos-bottom .section-label {
  margin-bottom: var(--space-24);
}
.logos-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 74s linear infinite;
}
.logos-track-reverse {
  animation: logo-scroll-reverse 74s linear infinite;
}
.logos-slide {
  display: flex;
  align-items: center;
  gap: 98px;
  padding: 0 49px;
}
.logos-slide img.logo-tesla {
  height: 16px;
}
.logos-slide img.logo-daikin {
  height: 18px;
}
.logos-slide img.logo-vaillant {
  height: 18px;
}
.logos-slide img.logo-goodwe {
  height: 19px;
}
.logos-slide img.logo-fronius {
  height: 25px;
}
.logos-slide img.logo-wallbox {
  height: 28px;
}
.logos-slide img.logo-bosch {
  height: 25px;
}
.logos-slide img.logo-byd {
  height: 19px;
}
.logos-slide img.logo-myenergi {
  height: 28px;
}
.logos-slide img {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.4;
  filter: grayscale(100%);
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes logo-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ══════════════════════════════════════════════════════════════════════════
   6. CONTENT CARDS
   ══════════════════════════════════════════════════════════════════════════ */
.section-cards {
  background: var(--color-bg);
  padding: calc(var(--space-64) - 10px) 0 var(--space-64);
}
.section-cards h2 {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-48);
}
.section-cards .card {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 350ms ease;
}
.card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-pill-nieuw {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px 4px 10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--radius);
}
.card-image-wrap img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}
.section-cards .card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.section-cards .card-link:hover .card {
  border-color: var(--color-accent);
}
.section-cards .card-link:hover .card-image-wrap img {
  transform: scale(1.1);
}
.section-cards .card-link:hover .card-btn {
  background: var(--color-text);
  color: var(--color-surface);
  border-color: var(--color-text);
}
.section-cards .card-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}
.section-cards .card h6 {
  padding: var(--space-24) var(--space-24) 0;
  margin-bottom: var(--space-8);
  font-size: 22px;
  font-weight: 700;
}
.section-cards .card p {
  padding: 0 var(--space-24);
  color: var(--color-muted);
  margin-bottom: var(--space-16);
  flex: 1;
}
.card-btn {
  margin: 0 var(--space-24) var(--space-24);
  text-align: center;
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.cards-cta {
  text-align: center;
  margin-top: 50px;
}

/* ══════════════════════════════════════════════════════════════════════════
   8. DRIE STAPPEN
   ══════════════════════════════════════════════════════════════════════════ */
.section-steps {
  background: var(--color-bg);
  padding: var(--space-64) 0;
  padding-top: 0px;
  position: relative;
}
.section-steps-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-steps-bar .section-label,
.brands-top .section-label {
  font-family: var(--font-mono);
  font-size: var(--h4-size);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 0;
}
.section-steps .grid {
  padding-top: var(--space-48);
}
.step-item {
  text-align: center;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-16);
}
.step-title {
  font-family: var(--font-mono);
  font-size: var(--h6-size);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}
.step-item p:last-child {
  color: var(--color-muted);
}

/* ══════════════════════════════════════════════════════════════════════════
   10. TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */
.section-testimonials {
  background: var(--color-accent-2);
  padding: var(--space-64) 0;
  border-top: 1px solid var(--color-border);
}
.testimonial-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: var(--space-24) var(--space-24) var(--space-24) 0;
  margin-left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}
.testimonial-card blockquote {
  flex: 1;
  margin-bottom: var(--space-16);
}
.testimonial-card blockquote p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-text);
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 46px;
}
.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}
.testimonial-avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.testimonial-brand {
  height: 25px;
  width: auto;
  opacity: 1;
  filter: brightness(0);
}

/* ══════════════════════════════════════════════════════════════════════════
   10b. MERKEN WAARMEE WE WERKEN
   ══════════════════════════════════════════════════════════════════════════ */
.section-brands {
  background: var(--color-surface);
  height: 184px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.brands-top {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-slider {
  flex: 1;
  overflow: hidden;
  padding: 30px 0 35px!important;
}
.logos-slide--black img {
  filter: brightness(0) saturate(100%);
  opacity: 1 !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   11. FAQ
   ══════════════════════════════════════════════════════════════════════════ */
.section-faq {
  background: var(--color-bg);
  padding: 0 0 var(--space-64);
}
.faq-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  margin-top: calc(var(--space-48) + 20px);
  margin-bottom: calc(var(--space-32) + 20px);
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.article-faq-item {
  border: var(--border);
  border-radius: var(--radius);
}
.article-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding: var(--space-16) var(--space-24);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-text);
  letter-spacing: var(--letter-spacing);
}
.article-faq-item summary::-webkit-details-marker { display: none; }
.article-faq-item summary::marker { display: none; content: ''; }
.article-faq-item summary:hover { color: var(--color-accent); }
.article-faq-item summary:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -2px; border-radius: var(--radius); }
.faq-plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  color: var(--color-muted);
  transition: transform 300ms ease;
}
.article-faq-item[open] .faq-plus { transform: rotate(45deg); }
.article-faq-item[open] .article-faq-answer { max-height: 500px; padding-bottom: var(--space-24); }
.article-faq-answer {
  padding: 0 var(--space-24);
  color: var(--color-text);
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 300ms ease, padding-bottom 300ms ease;
}
.article-faq-answer p,
.article-body .article-faq-answer p {
  margin: 0;
  padding: 0;
}
.faq-cta {
  margin-top: calc(var(--space-32) + 20px);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════════
   12. CTA BAND
   ══════════════════════════════════════════════════════════════════════════ */
.section-cta-band {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  height: 100px;
  cursor: pointer;
  transition: background 500ms ease;
}
.section-cta-band:hover { background: var(--color-text); }
.section-cta-band:focus-visible { outline: 3px solid var(--color-text); outline-offset: -3px; }
.section-cta-band:active { opacity: 0.85; }
.cta-band-text {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-surface);
  text-transform: uppercase;
}
.cta-band-text svg {
  transition: transform 500ms ease;
}
.section-cta-band:hover .cta-band-text svg {
  transform: rotate(90deg);
}

/* ══════════════════════════════════════════════════════════════════════════
   13. SITEMAP / MERK-NAVIGATIE
   ══════════════════════════════════════════════════════════════════════════ */
.section-sitemap {
  background: var(--color-surface);
  padding: var(--space-64) 0;
  border-top: var(--border);
}
.sitemap-heading {
  font-size: 28px;
  margin-bottom: var(--space-32);
}
.sitemap-col-title {
  margin-bottom: var(--space-12);
}
.sitemap-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sitemap-links a {
  font-size: var(--body-size);
  color: var(--color-text);
  text-decoration: underline;
}
.sitemap-links a:hover { color: var(--color-accent); }
.sitemap-links a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════════════════════
   14. FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer-dark {
  background: var(--color-bg-dark);
  color: var(--color-surface);
  padding: var(--space-80) 0 calc(var(--space-24) + 30px);
  position: relative;
  overflow: hidden;
}
#footer-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.footer-dark .container {
  position: relative;
  z-index: 1;
}
.footer-watermark {
  position: absolute;
  bottom: calc(-20% + 15px);
  right: calc(-5% + 200px);
  width: clamp(375px, 45%, 600px);
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: var(--h6-weight);
  color: var(--color-surface);
  margin-bottom: var(--space-64);
}
.footer-columns {
  display: flex;
  gap: var(--space-32);
  max-width: 1200px;
  align-items: flex-start;
}
.footer-brand {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-32);
}
.footer-logo { height: 26px; width: auto; }
.footer-certificates {
  width: 120px;
  height: auto;
}
.footer-col {
  flex: 1;
}
.footer-dark h6 {
  color: var(--color-surface);
  font-weight: 700;
  margin-bottom: var(--space-16);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 350ms ease;
  text-decoration: underline;
}
.footer-links a:hover { color: var(--color-surface); text-decoration: underline; }
.footer-links a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.footer-bottom {
  margin-top: var(--space-64);
  padding-top: var(--space-32);
  border-top: 0px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-accent);
  opacity: 0.75;
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-24);
}
.footer-bottom-links a { color: var(--color-accent); }
.footer-bottom-links a:hover { color: var(--color-surface); }
.footer-bottom-links a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.footer-socials {
  display: flex;
  gap: var(--space-12);
}
.footer-socials a {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.footer-socials a:hover { color: var(--color-surface); }
.footer-socials a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
/* ── HAMBURGER MENU ─────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 300ms ease, opacity 300ms ease;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  width: 100%;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    padding: 0 var(--space-16);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 100;
    transition: max-height 350ms ease, opacity 300ms ease, padding 350ms ease;
  }
  .mobile-menu[aria-hidden="false"] {
    max-height: 500px;
    opacity: 1;
    padding: var(--space-16);
  }
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}
.mobile-menu-links a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .navbar-links { gap: var(--space-24); }
  .categories-row { gap: var(--space-32); }
  .stats-row { gap: var(--space-48); }
  .cta-band-text { font-size: 24px; }
}

/* ── Mobile line breaks & visibility helpers (hidden on desktop) ── */
.mobile-br { display: none; }
.show-mobile { display: none; }
.hide-mobile { display: inline; }

@media (max-width: 768px) {
  /* ── Mobile line breaks & visibility ── */
  .mobile-br { display: block; }
  .show-mobile { display: inline; }
  .hide-mobile { display: none; }

  /* ── Topbar ── */
  .topbar { padding: 6px 0; }

  /* ── Navbar ── */
  .site-header { padding-top: 0; top: 0; overflow-x: visible; }
  .hamburger { display: flex; border: none; padding: 4px; width: 28px; height: 28px; }
  .navbar-links { display: none !important; }
  .navbar-actions .btn-nav-icon { display: none; }
  .navbar-actions .btn-nav {
    display: inline-flex;
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-text);
    font-size: 13px;
    padding: 6px 12px;
  }
  .navbar { height: auto; padding: var(--space-8) var(--space-16); border-radius: 0; }
  .navbar-inner { flex-wrap: nowrap; gap: 12px; }
  .navbar-logo { margin-right: auto; }
  .navbar-actions { min-width: 0; gap: 8px; }
  .navbar-actions .btn-nav { padding: 6px 10px; }
  .navbar-login-btn,
  .navbar-avatar { width: 36px; height: 36px; }
  .mega-menu { display: none !important; }

  /* ── Hero ── */
  .section-hero { padding: var(--space-32) 0 var(--space-48); margin-top: 0; }
  .hero-content h1 {
    font-size: 54px;
    line-height: 64px;
    width: 100%;
  }
  .hero-content .ticker-wrapper {
    height: 64px;
    display: block;
  }
  .hero-content .ticker-track {
    animation-name: ticker-scroll;
  }
  .hero-content .ticker-item {
    height: 64px;
    line-height: 64px;
    font-size: 54px;
  }
  @keyframes ticker-scroll {
    0%,   19% { transform: translateY(0); }
    25%,  44% { transform: translateY(-64px); }
    50%,  69% { transform: translateY(-128px); }
    75%,  94% { transform: translateY(-192px); }
    100%      { transform: translateY(-256px); }
  }
  .hero-subtitle {
    max-width: 100%;
    padding-bottom: 20px;
  }
  .hero-search-bar {
    width: 100%;
    max-width: calc(100vw - 32px);
  }
  .hero-input {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-image-col { display: none; }
  .hero-badge { display: none; }

  /* ── Categories: tekst-only, volle breedte ── */
  .categories-row {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: var(--space-8);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .category-item { grid-column: span 1; }
  .category-item:first-child { grid-column: span 1; }
  .category-icon { display: none; }
  .category-item span {
    font-size: 18px;
    font-weight: 700;
  }
  .category-item {
    padding: var(--space-12) var(--space-16);
    border: var(--border);
    border-radius: var(--radius);
    background: var(--color-surface);
  }
  /* ── CTA: underline link i.p.v. knop ── */
  .categories-cta .btn {
    background: none;
    border: none;
    color: var(--color-text);
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
  }

  /* ── Artikelkaarten: extra ruimte ── */
  .section-cards .grid { gap: 26px; }

  /* ── Sitemap: ruimte na elke linksgroep ── */
  .section-sitemap .sitemap-links { margin-bottom: 20px; }

  /* ── Stats ── */
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: var(--space-24);
  }
  .stat-line { width: 40px; }

  /* ── Drie stappen bar ── */
  .section-steps-bar {
    height: auto;
    padding: 15px var(--space-16);
  }

  .cta-band-text { font-size: 20px; }
  .cta-band-text svg { display: none; }
  .brands-top .section-label { font-size: 21px; }

  /* ── Footer ── */
  .footer-columns {
    flex-direction: column;
    gap: var(--space-32);
  }
  .footer-brand {
    flex-direction: row;
    align-items: center;
    gap: var(--space-16);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-12);
    text-align: center;
  }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 40px; line-height: 41px; font-weight: 700; }
  .hero-content .ticker-wrapper { height: 48px; }
  .hero-content .ticker-item { height: 48px; line-height: 48px; font-size: 40px; font-weight: 700; }
  @keyframes ticker-scroll {
    0%,   19% { transform: translateY(0); }
    25%,  44% { transform: translateY(-48px); }
    50%,  69% { transform: translateY(-96px); }
    75%,  94% { transform: translateY(-144px); }
    100%      { transform: translateY(-192px); }
  }
  .stat-number { font-size: var(--h3-size); }
  .cta-band-text { font-size: 18px; }
  .testimonial-card { padding: var(--space-16); }
  .testimonial-author { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOMEPAGE — VOLTOO SCORE EXPLAINER
   ══════════════════════════════════════════════════════════════════════════ */
.section-voltoo-score {
  background: var(--color-bg);
  padding-top: 19px !important;
  padding-bottom: 64px;
}
.vs-explainer-header {
  text-align: center;
  margin-bottom: 68px !important;
}
.vs-explainer-title {
  font-family: var(--font-mono);
  font-size: var(--h4-size);
  line-height: var(--h4-line-height, 1.15);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 31px !important;
}
.vs-explainer-intro {
  max-width: 850px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
}
.vs-explainer-grid {
  align-items: center;
}
.vs-explainer-gauge {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vs-explainer-gauge .voltoo-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vs-explainer-gauge .voltoo-score__num {
  font-family: var(--font-mono);
  font-size: 60px;
  font-weight: 800;
  fill: #000000;
}
.vs-explainer-gauge .voltoo-score__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  fill: var(--color-muted);
}
.vs-explainer-gauge .voltoo-score__icon { fill: #000000; }
.vs-explainer-gauge .voltoo-score__sweep {
  animation: voltooSweepHome 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
}
.section-voltoo-score.in-view .vs-explainer-gauge .voltoo-score__sweep {
  animation-play-state: running;
}
@keyframes voltooSweepHome {
  from { stroke-dasharray: 0 452.39; }
}

.vs-bars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}
.vs-bar {
  display: block;
}
.vs-bar-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 14px;
  margin-bottom: var(--space-8);
}
.vs-bar-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  align-self: center;
}
.vs-bar-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--color-border, #b8b6ae);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  cursor: help;
}
.vs-bar-value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}
.vs-bar-track {
  display: block;
  width: 100%;
  height: 8px;
  background: var(--color-surface, #eeede7);
  border-radius: 1px;
  overflow: hidden;
}
.vs-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 1px;
  transition: width 1500ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1024px) {
  .vs-explainer-gauge { margin-bottom: var(--space-32); }
}
@media (max-width: 768px) {
  .section-voltoo-score { padding: var(--space-48) 0; }
  .vs-explainer-title { font-size: 22px; line-height: 26px; }
  .vs-explainer-gauge .voltoo-score svg { width: 200px; height: 200px; }
}
