@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
}

/* ============================================================
   WATTRA — design tokens
   Kleuren overgenomen uit de aangeleverde referentie (bijlage)
   ============================================================ */
:root {
  /* surfaces */
  --bg: #0a0d0c;
  --surface: #12161488;
  --surface-solid: #141917;
  --surface-2: #1a201d;
  --panel: #10141288;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);

  /* brand */
  --yellow: #ffd426;
  --yellow-deep: #f5c400;
  --on-yellow: #131208;
  --sage: #4c5748;
  --sage-2: #3e4a3c;
  --on-sage: #eef1ec;
  --light: #f4f6f3;
  --on-light: #171c17;

  /* text */
  --text: #f2f5f3;
  --muted: #a7b0ab;
  --muted-2: #7e8883;

  /* misc */
  --ok: #4ade80;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.44, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
  --dur-slow: 700ms;

  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-cta: 0 8px 30px -8px rgba(255, 212, 38, 0.45);
}

/* ============ reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

::selection { background: var(--yellow); color: var(--on-yellow); }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.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;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--yellow);
  color: var(--on-yellow);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus-visible { top: 1rem; }

.accent { color: var(--yellow); }
.dim { color: var(--muted); }

/* ============ shared atoms ============ */
.bolt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(255, 212, 38, 0.12), rgba(255, 212, 38, 0.02));
  color: var(--yellow);
}
.bolt-badge svg { width: 20px; height: 20px; }
.bolt-badge--sm { width: 28px; height: 28px; }
.bolt-badge--sm svg { width: 13px; height: 13px; }
.bolt-badge--lg { width: 64px; height: 64px; }
.bolt-badge--lg svg { width: 30px; height: 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-med) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease-out); }
.btn--primary {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
  color: var(--on-yellow);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(255, 212, 38, 0.55); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--primary:active { transform: translateY(0) scale(0.97); }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)), var(--bg);
  box-shadow: var(--shadow-card);
}
.panel--pad { padding: clamp(1.75rem, 4vw, 3.5rem); }

.section { padding-block: clamp(2.5rem, 6vw, 5rem); }

.section__head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head .pill { margin-bottom: 1.25rem; }
.section__head p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--ok { background: var(--ok); box-shadow: 0 0 8px var(--ok); }

/* ============ photo placeholders ============ */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(70% 60% at 50% 32%, rgba(255, 212, 38, 0.11), transparent 65%),
    radial-gradient(60% 70% at 12% 88%, rgba(41, 182, 232, 0.05), transparent 60%),
    linear-gradient(180deg, #161c19, #0c100e);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(75% 75% at 50% 40%, #000, transparent);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000, transparent);
}
.ph__stroom { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--yellow);
  background: rgba(255, 212, 38, 0.1);
  border: 1px solid rgba(255, 212, 38, 0.25);
}
.ph__badge svg { width: 18px; height: 18px; }
.ph--product img {
  position: relative;
  z-index: 1;
  max-width: 58%;
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55));
  animation: prod-float 7s ease-in-out infinite;
}
@keyframes prod-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fotocard { position: relative; overflow: hidden; border-radius: var(--radius-md); min-height: 130px; margin-block: 0.5rem; }
.fotocard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: fotocard-kb 16s ease-in-out infinite alternate; }
@keyframes fotocard-kb { from { transform: scale(1); } to { transform: scale(1.1) translate(-1.5%, 1.5%); } }
.ph__icon { width: 26px; height: 26px; opacity: 0.7; }
.ph__ring {
  position: absolute;
  inset: auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255, 212, 38, 0.25);
  filter: blur(1px);
  mask-image: linear-gradient(140deg, #000 30%, transparent 65%);
  -webkit-mask-image: linear-gradient(140deg, #000 30%, transparent 65%);
  animation: ring-spin 14s linear infinite;
  pointer-events: none;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-top: 1rem;
  transition: transform var(--dur-med) var(--ease-out);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem 0.7rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 13, 12, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.7);
}
.nav__brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.nav__logo { height: 34px; width: auto; display: block; }
.nav__logo--footer { height: 40px; }
.nav__brand .bolt-badge { width: 38px; height: 38px; background: linear-gradient(160deg, var(--yellow), var(--yellow-deep)); color: var(--on-yellow); border: none; }
.nav__brand .bolt-badge svg { width: 18px; height: 18px; }
.nav__name { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; }
.nav__links > a {
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__links > a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav__cta-mobile { display: none; }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta { padding: 0.7rem 1.25rem; min-height: 44px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
}
.nav__burger span {
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav--hidden { transform: translateY(-120%); } /* niet meer gebruikt: nav blijft zichtbaar */
.nav--scrolled .nav__inner { box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  overflow: clip;
}
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 120vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 212, 38, 0.09) 0%, transparent 60%);
  pointer-events: none;
  will-change: transform;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  font-size: clamp(2.9rem, 11vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
.hero__bolt {
  display: inline-flex;
  color: var(--yellow);
  opacity: 0;
  transform: scale(0.3) rotate(-14deg);
  animation: bolt-pop 0.65s var(--ease-spring) forwards;
  animation-delay: var(--d, 0.25s);
  filter: drop-shadow(0 0 24px rgba(255, 212, 38, 0.45));
}
.hero__bolt svg { width: clamp(2.6rem, 9vw, 7rem); height: auto; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bolt-pop {
  60% { opacity: 1; transform: scale(1.12) rotate(3deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.hero__sub {
  margin-top: 1.25rem;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--muted);
  opacity: 0;
  transform: translateY(14px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0.55s);
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(14px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0.7s);
}
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  background: var(--surface);
}
.hero__meta-value { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.03em; }
.hero__meta-caption { font-size: 0.85rem; color: var(--muted); }
.hero__meta-text { max-width: 260px; text-align: right; font-size: 1.05rem; color: var(--text); }

/* hero visual */
.hero__visual {
  position: relative;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0.8s);
}
.ph--hero {
  min-height: clamp(300px, 44vw, 520px);
  border-radius: var(--radius-lg);
}
.hero__spec {
  position: absolute;
  max-width: 240px;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 18, 16, 0.96); /* dekkend: kaartpunten gloeien niet door */
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
}
.hero__spec p { font-size: 0.88rem; color: var(--muted); margin: 0.4rem 0 0.7rem; }
.hero__spec--left { left: clamp(0.75rem, 3vw, 2.5rem); top: clamp(0.75rem, 3vw, 2.5rem); }
.hero__spec--right { right: clamp(0.75rem, 3vw, 2.5rem); bottom: clamp(0.75rem, 3vw, 2.5rem); text-align: right; }
.hero__spec-code { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--yellow); }
.hero__spec-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__spec-big { display: block; margin-top: 0.4rem; font-size: 2.4rem; font-weight: 700; color: var(--yellow); letter-spacing: -0.02em; }
.hero__spec-big small { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-left: 2px; }
.hero__spec--right p { margin-bottom: 0; }

/* calculators */
.calc__head { max-width: 640px; margin-bottom: 2rem; }
.calc__head p { margin-top: 0.75rem; color: var(--muted); }
.calc__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.calc__fields { display: flex; flex-direction: column; gap: 1.1rem; }
.calc__result {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 212, 38, 0.25);
  border-radius: var(--radius-md);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 212, 38, 0.07), transparent 55%),
    var(--surface);
}
.calc__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc__big {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
.calc__sub { font-size: 0.92rem; color: var(--text); }
.calc__rows {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.calc__rows li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.calc__rows li span:last-child { color: var(--text); font-weight: 600; }
.calc__result .btn { margin-top: 0.25rem; justify-content: center; }
.calc__note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--muted-2); max-width: 75ch; }
.calc__checks { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.45rem; }
.calc__check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--dur-fast);
}
.calc__check:hover { border-color: rgba(255, 212, 38, 0.3); }
.calc__check input {
  width: 17px;
  height: 17px;
  accent-color: var(--yellow);
  cursor: pointer;
  flex: 0 0 auto;
}
.calc__check span { flex: 1; }
.calc__check em { font-style: normal; font-size: 0.78rem; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.calc__check:has(input:checked) { border-color: rgba(255, 212, 38, 0.4); }
@media (max-width: 860px) {
  .calc__grid { grid-template-columns: 1fr; }
}

/* regiokaart in de hero van lopende werven */
.heromap--mini {
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(0.75rem, 2vw, 1.25rem) 0.5rem;
  border-radius: var(--radius-lg);
}
.heromap--mini svg { max-height: 340px; }
.heromap--mini .heromap__dot .heromap__core { animation-delay: calc(0.6s + var(--i) * 140ms); }
.heromap__legend--mini { gap: 0.4rem 1.1rem; font-size: 0.76rem; padding: 0.6rem 0 0.4rem; }

/* lopende werven */
.werfgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.werfcard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface-solid));
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med) var(--ease-out);
}
.werfcard:hover { transform: translateY(-6px); border-color: rgba(255, 212, 38, 0.3); box-shadow: var(--shadow-card); }
.werf-foto { aspect-ratio: 16/9; overflow: hidden; background: #0c100e; }
.werf-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: werf-kb1 16s ease-in-out infinite alternate;
  transition: opacity 0.9s var(--ease-out);
}
.werf-foto--kb1 img { animation: werf-kb1 16s ease-in-out infinite alternate; }
.werf-foto--kb2 img { animation: werf-kb2 19s ease-in-out infinite alternate; }
.werf-foto--kb3 img { animation: werf-kb3 14s ease-in-out infinite alternate; }
@keyframes werf-kb1 { from { transform: scale(1); } to { transform: scale(1.1) translate(-1.5%, 1.5%); } }
@keyframes werf-kb2 { from { transform: scale(1.1) translate(1.5%, -1%); } to { transform: scale(1); } }
@keyframes werf-kb3 { from { transform: scale(1.02); } to { transform: scale(1.14) translate(0, -2%); } }
.werf-foto img.is-wisselend { opacity: 0; }
.werf-ph { aspect-ratio: 16/9; border-radius: 0; border-left: none; border-right: none; border-top: none; }
.werfcard__body { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.25rem 1.4rem 1.5rem; }
.werfcard__meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.35rem; }
.werfcard__plaats { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--muted); }
.werfcard__plaats svg { width: 14px; height: 14px; color: var(--yellow); }
.werfcard__dienst { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); }
.werfcard h3 { font-size: 1.1rem; }
.werfcard p { font-size: 0.88rem; color: var(--muted); }
.werf-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 700;
}
.werf-status i { width: 8px; height: 8px; border-radius: 50%; }
.werf-status--nu { color: #7ac943; }
.werf-status--nu i { background: #7ac943; box-shadow: 0 0 8px #7ac943; animation: viz-led 2s ease-in-out infinite; }
.werf-status--week { color: var(--yellow); }
.werf-status--week i { background: var(--yellow); }
.werf-status--plan { color: var(--muted); }
.werf-status--plan i { background: var(--muted-2); }

/* geanimeerde scènes (vervangen foto's) */
.viz {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(80% 70% at 50% 20%, rgba(255, 212, 38, 0.05), transparent 65%),
    #0c100e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viz svg { width: 100%; height: auto; display: block; max-height: 100%; }
.viz svg text { font-family: "Inter", -apple-system, sans-serif; }
.viz--phero { min-height: clamp(280px, 26vw, 380px); border-radius: var(--radius-lg); }
.viz--phero svg { max-width: 480px; }
.viz--bento { min-height: 220px; height: 100%; }
.viz--card { min-height: 130px; margin-block: 0.5rem; background: rgba(0, 0, 0, 0.25); }
.viz--card svg { max-width: 300px; }

.viz-flow {
  stroke-dasharray: 3 8;
  animation: viz-flow 1.1s linear infinite;
}
.viz-flow--delay { animation-delay: 0.55s; }
@keyframes viz-flow { to { stroke-dashoffset: -22; } }

.viz-led { animation: viz-led 2.2s ease-in-out infinite; }
@keyframes viz-led { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.viz-batt {
  transform-origin: 224.5px 131px;
  animation: viz-batt 5s ease-in-out infinite;
}
@keyframes viz-batt { 0% { transform: scaleX(0.15); } 55% { transform: scaleX(1); } 70% { transform: scaleX(1); } 100% { transform: scaleX(0.15); } }

.viz-batt-level {
  transform-origin: 176px 136px;
  animation: viz-batt-level 7s ease-in-out infinite;
}
@keyframes viz-batt-level {
  0% { transform: scaleY(0.25); }
  45% { transform: scaleY(0.92); }
  60% { transform: scaleY(0.92); }
  100% { transform: scaleY(0.25); }
}

.viz-sun { transform-origin: center; transform-box: fill-box; animation: viz-sun 14s linear infinite; }
@keyframes viz-sun { to { transform: rotate(360deg); } }

.viz-window { animation: viz-led 3.5s ease-in-out infinite; }

.viz-breaker { animation: viz-breaker 4.5s ease-in-out infinite; opacity: 0.15; }
@keyframes viz-breaker { 0%, 100% { opacity: 0.15; } 12%, 60% { opacity: 1; } }

.viz-wave {
  stroke-dasharray: 90;
  animation: viz-wave 2.4s linear infinite;
}
@keyframes viz-wave { 0% { stroke-dashoffset: 90; } 55% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -90; } }

/* hero-kaart van Vlaanderen */
.heromap {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 90% at 32% 40%, rgba(255, 212, 38, 0.05), transparent 60%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    #0c100e;
  background-size: auto, 64px 64px, 64px 64px, auto;
  padding: clamp(1rem, 2.5vw, 2rem) clamp(1rem, 2.5vw, 2rem) 0.75rem;
}
.heromap svg { width: 100%; height: auto; display: block; }
.heromap__land path {
  fill: #151b18;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}
.heromap__dot { cursor: pointer; }
.heromap__dot .heromap__core {
  opacity: 0;
  animation: dot-pop 0.5s var(--ease-spring) forwards;
  animation-delay: calc(0.9s + var(--i) * 22ms);
  transform-origin: center;
  transform-box: fill-box;
}
.heromap__dot .heromap__ring {
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  animation: dot-pulse 3.2s ease-out infinite;
  /* mod() spreidt de pulsen binnen één cyclus, hoe veel stippen er ook zijn */
  animation-delay: calc(1.5s + mod(var(--i) * 137ms, 3.2s));
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes dot-pop {
  0% { opacity: 0; transform: scale(0); }
  70% { opacity: 1; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes dot-pulse {
  0% { opacity: 0.8; transform: scale(0.5); }
  70% { opacity: 0; transform: scale(2.6); }
  100% { opacity: 0; transform: scale(2.6); }
}
.heromap__dot--laadpaal .heromap__core { fill: #ffd426; }
.heromap__dot--laadpaal .heromap__ring { stroke: #ffd426; }
.heromap__dot--batterij .heromap__core { fill: #7ac943; }
.heromap__dot--batterij .heromap__ring { stroke: #7ac943; }
.heromap__dot--elektro .heromap__core { fill: #29b6e8; }
.heromap__dot--elektro .heromap__ring { stroke: #29b6e8; }
.heromap__dot--vme .heromap__core { fill: #eef1ec; }
.heromap__dot--vme .heromap__ring { stroke: #eef1ec; }
.heromap__dot:hover .heromap__core { filter: brightness(1.3); }

/* laadpaalclusters met aantallen (zoals op ons laadbeheerplatform) */
.heromap__cluster { cursor: pointer; }
.heromap__cluster-core { fill: var(--yellow); }
.heromap__cluster-ring { fill: rgba(255, 212, 38, 0.18); }
.heromap__cluster text {
  fill: #131208;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 700;
  text-anchor: middle;
}
.heromap__cluster circle,
.heromap__cluster text {
  animation: dot-pop 0.5s var(--ease-spring) both;
  animation-delay: calc(0.9s + var(--i) * 22ms);
  transform-origin: center;
  transform-box: fill-box;
}
.heromap__cluster .heromap__cluster-ring {
  animation: dot-pop 0.5s var(--ease-spring) both,
    cluster-pulse 3.6s ease-in-out calc(1.5s + mod(var(--i) * 137ms, 3.6s)) infinite;
}
@keyframes cluster-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.28); opacity: 0.55; }
}
@keyframes cluster-fade { to { opacity: 1; } }

/* filteren per dienst */
.heromap__dot, .heromap__cluster { transition: opacity 0.35s var(--ease-out); }
.heromap:not([data-filter="alle"]) [data-cat] { opacity: 0.06; }
.heromap[data-filter="laadpaal"] [data-cat="laadpaal"],
.heromap[data-filter="batterij"] [data-cat="batterij"],
.heromap[data-filter="elektro"] [data-cat="elektro"],
.heromap[data-filter="vme"] [data-cat="vme"] { opacity: 1; }
.heromap__home-ring { fill: var(--yellow); }
.heromap__home { filter: drop-shadow(0 0 12px rgba(255, 212, 38, 0.55)); }
.heromap__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}
.heromap__legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.heromap__filter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  min-height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.heromap__filter:hover { color: var(--text); border-color: rgba(255, 212, 38, 0.35); }
.heromap__filter.is-active {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
  color: var(--on-yellow);
  border-color: transparent;
}
.heromap__filter.is-active .heromap__key { outline: 1.5px solid rgba(19, 18, 8, 0.4); }
.heromap__key { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.heromap__key--laadpaal { background: #ffd426; }
.heromap__key--batterij { background: #7ac943; }
.heromap__key--elektro { background: #29b6e8; }
.heromap__key--vme { background: #eef1ec; }

/* hero cards */
.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.hcard {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.hcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.hcard h3 { font-size: 1.35rem; }
.hcard > p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }
.hcard .link-arrow { margin-top: 0.25rem; }

.hcard--dark { background: linear-gradient(180deg, var(--surface-2), var(--surface-solid)); }
.hcard--sage { background: linear-gradient(180deg, var(--sage), var(--sage-2)); color: var(--on-sage); }
.hcard--sage > p { color: rgba(238, 241, 236, 0.75); }
.hcard--sage .link-arrow { color: var(--yellow); }
.hcard--light { background: radial-gradient(90% 80% at 80% 0%, rgba(255, 212, 38, 0.1), transparent 55%),
  linear-gradient(180deg, #171d1a, #101512); color: var(--text); border: 1px solid rgba(255, 255, 255, 0.1); }
.hcard--light > p { color: var(--muted); }
.hcard--light .link-arrow { color: var(--yellow); }

/* monitor mock */
.hcard__monitor {
  margin-top: auto;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #0c100e;
}
.hcard__monitor-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted); }
.hcard__monitor-value { margin-top: 0.4rem; font-size: 1.9rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.hcard__monitor-value small { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.hcard__bars { display: flex; align-items: flex-end; gap: 5px; height: 54px; margin-top: 0.8rem; }
.hcard__bars span {
  flex: 1;
  height: var(--h, 40%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--yellow), rgba(255, 212, 38, 0.25));
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.7s var(--ease-out);
}
.in .hcard__bars span { transform: scaleY(1); }
.in .hcard__bars span:nth-child(2n) { transition-delay: 0.12s; }
.in .hcard__bars span:nth-child(3n) { transition-delay: 0.22s; }
.hcard__monitor-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.ph--card { min-height: 130px; margin-block: 0.5rem; border-color: rgba(255,255,255,0.22); color: rgba(238,241,236,0.6); background: rgba(0,0,0,0.18); }

.hcard__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hcard__specs li { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.75rem; }
.hcard__specs svg { width: 18px; height: 18px; color: var(--yellow); }
.hcard__specs strong { display: block; font-size: 0.95rem; }
.hcard__specs span { display: block; color: rgba(238, 241, 236, 0.65); }

.hcard__cert {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.hcard__cert svg { width: 30px; height: 30px; color: var(--yellow); }
.hcard__cert strong { display: block; font-size: 0.95rem; }
.hcard__cert span { font-size: 0.8rem; color: var(--muted); }

/* USP strip */
.usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.4rem 0.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usps li { display: flex; align-items: center; gap: 0.85rem; }
.usps svg { width: 26px; height: 26px; color: var(--yellow); flex: 0 0 auto; }
.usps strong { display: block; font-size: 0.95rem; }
.usps span { font-size: 0.82rem; color: var(--muted); }

/* ============ STATS ============ */
.stats__panel {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.stats__intro p { margin-top: 0.9rem; color: var(--muted); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color var(--dur-med), transform var(--dur-med) var(--ease-out);
}
.stat:hover { border-color: rgba(255, 212, 38, 0.35); transform: translateY(-4px); }
.stat__icon { margin-bottom: 0.8rem; }
.stat__value { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.03em; color: var(--yellow); font-variant-numeric: tabular-nums; }
.stat__label { font-weight: 600; }
.stat__caption { font-size: 0.82rem; color: var(--muted); }

/* ============ BENTO / DIENSTEN ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.bcard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface-solid));
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med) var(--ease-out);
}
.bcard:hover { transform: translateY(-6px); border-color: rgba(255, 212, 38, 0.3); box-shadow: var(--shadow-card); }
.bcard h3 { font-size: 1.3rem; }
.bcard p { color: var(--muted); font-size: 0.95rem; }
.bcard .link-arrow { margin-top: 0.5rem; }
.bcard__icon { margin-bottom: 0.75rem; }

.bcard--wide {
  grid-column: span 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.bcard--wide .bcard__text { display: flex; flex-direction: column; gap: 0.6rem; }
.bcard--reverse { direction: rtl; }
.bcard--reverse > * { direction: ltr; }
.ph--bento { min-height: 220px; height: 100%; }

@media (min-width: 861px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bcard { grid-column: span 2; }
  .bcard--wide { grid-column: span 3; }
}

/* ============ AUDIENCE / VOOR WIE ============ */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.acard {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface-solid));
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med) var(--ease-out);
}
.acard:hover { transform: translateY(-6px); border-color: rgba(255, 212, 38, 0.3); box-shadow: var(--shadow-card); }
.acard h3 { font-size: 1.3rem; }
.acard > p { color: var(--muted); font-size: 0.95rem; }
.acard--featured {
  border-color: rgba(255, 212, 38, 0.35);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 212, 38, 0.08), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--surface-solid));
}
.acard__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-block: 0.75rem 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.acard__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
}
.acard__list svg { width: 16px; height: 16px; color: var(--yellow); flex: 0 0 auto; }
.acard .link-arrow { margin-top: auto; padding-top: 0.75rem; }

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

/* ============ STEPS ============ */
.steps__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.steps__intro { max-width: 340px; color: var(--muted); font-size: 0.98rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 0.5rem; }
.step__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--text);
  margin-bottom: 1.1rem;
  transition: color var(--dur-med), border-color var(--dur-med), transform var(--dur-med) var(--ease-spring);
}
.step__icon svg { width: 26px; height: 26px; }
.step:hover .step__icon { color: var(--yellow); border-color: rgba(255, 212, 38, 0.4); transform: translateY(-4px); }
.step::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 76px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.step:last-child::before { display: none; }
.step__num { font-size: 0.85rem; font-weight: 700; color: var(--yellow); letter-spacing: 0.08em; }
.step h3 { margin-top: 0.3rem; font-size: 1.15rem; }
.step p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); }

/* ============ TECH ============ */
.tech { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.tech__lead { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; max-width: 46ch; }
.tech__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 1.75rem; }
.tech__list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.tech__list svg { width: 22px; height: 22px; color: var(--yellow); flex: 0 0 auto; margin-top: 2px; }
.tech__list strong { display: block; font-size: 0.95rem; }
.tech__list span { font-size: 0.83rem; color: var(--muted); }
.tech__ctas { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }

.tech__visual { display: flex; flex-direction: column; gap: 1rem; }
.ph--tech { min-height: clamp(240px, 30vw, 340px); }
.tech__chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.tech__chips li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color var(--dur-med);
}
.tech__chips li:hover { border-color: rgba(255, 212, 38, 0.35); }
.tech__chips svg { width: 20px; height: 20px; color: var(--yellow); flex: 0 0 auto; }
.tech__chips strong { display: block; font-size: 0.95rem; color: var(--yellow); }
.tech__chips span { font-size: 0.78rem; color: var(--muted); }

/* ============ ABOUT / QUOTE ============ */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(1rem, 3vw, 2rem);
}
.about blockquote { margin: 0; }
.about blockquote p {
  font-size: clamp(1.35rem, 1rem + 1.8vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.about footer { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.15rem; }
.about footer strong { font-size: 1rem; }
.about footer span { font-size: 0.85rem; color: var(--muted); }

/* ============ CONTACT ============ */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact__text > p { margin-top: 1rem; color: var(--muted); }
.contact__points { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.contact__points li { display: flex; align-items: center; gap: 0.9rem; }
.contact__points strong { display: block; font-size: 0.95rem; }
.contact__points span { font-size: 0.83rem; color: var(--muted); }
.contact__direct { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.contact__direct-item { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; font-size: 0.95rem; color: var(--text); transition: color var(--dur-fast); }
.contact__direct-item:hover { color: var(--yellow); }
.contact__direct-item svg { width: 18px; height: 18px; color: var(--yellow); }

.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field--split > div { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.85rem; font-weight: 600; }
.field__hint { font-size: 0.76rem; color: var(--muted-2); margin-top: 0.3rem; display: block; }
.req { color: var(--yellow); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a7b0ab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 212, 38, 0.15);
}
.field input.invalid, .field textarea.invalid { border-color: #f87171; }
.form-note { min-height: 1.2em; font-size: 0.88rem; color: var(--ok); }
.form-note.error { color: #f87171; }

/* ============ FOOTER ============ */
.footer { padding-bottom: 2rem; }
.footer__panel { padding: clamp(1.75rem, 4vw, 3rem); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand p { margin-top: 1.1rem; font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.footer__col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem; }
.footer__col a, .footer__col span { font-size: 0.92rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.6rem; transition: color var(--dur-fast); width: fit-content; }
.footer__col a:hover { color: var(--yellow); }
.footer__col svg { width: 16px; height: 16px; color: var(--yellow); flex: 0 0 auto; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted-2);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--muted-2); transition: color var(--dur-fast); }
.footer__legal a:hover { color: var(--text); }
.footer__safe { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__safe svg { width: 16px; height: 16px; color: var(--yellow); }

/* ============ scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-child { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.in .reveal-child, .reveal-child.in { opacity: 1; transform: none; }

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .stats__panel { grid-template-columns: 1fr; }
  .tech { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .step::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* nav klapt eerder in: de zes items plus CTA hebben ruimte nodig */
@media (max-width: 1100px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed;
    top: calc(76px + 0.75rem);
    left: 0.75rem;
    right: 0.75rem;
    max-height: calc(100dvh - 76px - 1.5rem);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #10151280;
    background: #101512; /* volledig dekkend: geen tekst die doorschijnt */
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity var(--dur-fast), transform var(--dur-fast);
  }
  .nav__links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links > a {
    padding: 1rem;
    font-size: 1.05rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav__links > a:last-of-type { border-bottom: none; }
  .nav__links > a.btn { color: #10130f; justify-content: center; border-bottom: none; }
  .nav__cta-mobile { display: inline-flex; justify-content: center; margin-top: 0.75rem; min-height: 52px; }
}

@media (max-width: 860px) {
  .hero__cards { grid-template-columns: 1fr; }
  .usps { grid-template-columns: repeat(2, 1fr); }
  .bcard--wide { grid-template-columns: 1fr; }
  .bcard--reverse { direction: ltr; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero__meta-text { text-align: left; max-width: none; }
  .steps__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 560px) {
  .usps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat { padding: 1.1rem; }
  .stat__value { font-size: 1.9rem; }
  .field--split { grid-template-columns: 1fr; }
  .tech__list { grid-template-columns: 1fr; }
  .tech__chips { grid-template-columns: 1fr 1fr; }
  /* compacte mobiele footer: linkkolommen naast elkaar, kleinere marges */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .footer__brand, .footer__contact { grid-column: 1 / -1; }
  .footer__brand p { margin-top: 0.6rem; font-size: 0.85rem; }
  .nav__logo--footer { max-width: 130px; height: auto; }
  .footer__col { gap: 0.45rem; }
  .footer__col a, .footer__col span { font-size: 0.85rem; }
  .footer__col h4 { margin-bottom: 0.2rem; }
  .footer__legal { flex-wrap: wrap; gap: 0.5rem 1.1rem; }
  .footer__bottom { gap: 0.75rem; font-size: 0.8rem; }
  .hero__spec { position: static; max-width: none; margin-top: 0.75rem; }
  .hero__spec--right { text-align: left; }
  .ph--hero { min-height: 220px; }
  .hero__visual { display: flex; flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Subpagina-componenten (zelfde design tokens als hierboven)
   ============================================================ */

.container--narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }

/* page hero (subpagina's) */
.page-hero {
  position: relative;
  padding-top: clamp(7.5rem, 13vw, 10rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  overflow: clip;
}
.page-hero .container { position: relative; }
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.1rem, 1.3rem + 3vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.page-hero .eyebrow, .page-hero h1, .page-hero__lead, .page-hero__ctas,
.page-hero__badges, .page-hero__visual {
  opacity: 0;
  transform: translateY(18px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
.page-hero__lead {
  max-width: 58ch;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--muted);
}
.page-hero__ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.page-hero__visual { position: relative; }
.ph--phero { min-height: clamp(280px, 26vw, 380px); border-radius: var(--radius-lg); }
.page-hero__spec-top { position: absolute; top: clamp(0.75rem, 2vw, 1.5rem); right: clamp(-1rem, -0.5vw, 1rem); max-width: 200px; text-align: right; }
.page-hero__spec-top p { margin-bottom: 0; }
.page-hero__spec-bottom { position: absolute; bottom: clamp(0.75rem, 2vw, 1.5rem); left: clamp(-1rem, -0.5vw, 1rem); padding: 0.9rem 1.1rem; }
.page-hero__chip { display: flex; align-items: center; gap: 0.75rem; }
.page-hero__chip svg { width: 22px; height: 22px; color: var(--yellow); flex: 0 0 auto; }
.page-hero__chip strong { display: block; font-size: 0.95rem; }
.page-hero__chip span { display: block; font-size: 0.78rem; color: var(--muted); }
.page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.page-hero__badges li { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.page-hero__badges svg { width: 18px; height: 18px; color: var(--yellow); flex: 0 0 auto; }
.page-hero__grid--single { grid-template-columns: 1fr; }
.page-hero__grid--single h1 { max-width: 22ch; }
@media (max-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__spec-top { right: 0.75rem; }
  .page-hero__spec-bottom { left: 0.75rem; }
}

/* generieke kaartrasters */
.cardgrid { display: grid; gap: 1.25rem; }
.cardgrid--2 { grid-template-columns: repeat(2, 1fr); }
.cardgrid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .cardgrid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cardgrid--2, .cardgrid--3 { grid-template-columns: 1fr; } }

/* checklist-paneel */
.checkpanel { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 4vw, 3.5rem); }
.checkpanel__intro { margin-top: 1rem; color: var(--muted); }
.checkpanel__list { display: flex; flex-direction: column; gap: 1.1rem; }
.checkpanel__list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.checkpanel__list svg { width: 20px; height: 20px; color: var(--yellow); flex: 0 0 auto; margin-top: 3px; }
.checkpanel__list strong { display: block; font-size: 1rem; }
.checkpanel__list span { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 0.15rem; }
@media (max-width: 860px) { .checkpanel { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--surface-2), var(--surface-solid));
  transition: border-color var(--dur-med);
}
.faq__item[open], .faq__item:hover { border-color: rgba(255, 212, 38, 0.3); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
  transform: translateY(-50%);
  transition: transform var(--dur-med) var(--ease-out);
}
.faq__plus::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: translateY(-50%) rotate(0deg); }
.faq__body { padding: 0 1.4rem 1.25rem; }
.faq__body p { color: var(--muted); font-size: 0.95rem; }

/* bento op subpagina's + strip-kaart */
.bento--sub .bcard--strip {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
.bento--sub .bcard--strip .bcard__striptext { flex: 1; }
.bento--sub .bcard--strip .bcard__icon { margin-bottom: 0; }
.bento--sub .bcard--strip .link-arrow { margin-top: 0; flex: 0 0 auto; }
@media (max-width: 640px) {
  .bento--sub .bcard--strip { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* CTA-band met gloed */
.ctaband { position: relative; overflow: hidden; }
.ctaband::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 640px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 212, 38, 0.1) 0%, transparent 62%);
  pointer-events: none;
}
.ctaband > * { position: relative; }

/* split-CTA (segmentwissel) */
.splitcta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.splitcta > div:first-child { max-width: 56ch; }
.splitcta p { margin-top: 0.75rem; color: var(--muted); }
.splitcta__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* afsluitende CTA-band */
.ctaband { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.ctaband h2 { max-width: 22ch; }
.ctaband > p { max-width: 52ch; color: var(--muted); }
.ctaband__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.ctaband__note { font-size: 0.82rem; color: var(--muted-2); margin-top: 0.5rem; }

/* artikelhero (kennishub) */
.page-hero--article { padding-bottom: clamp(0.5rem, 2vw, 1.5rem); }
.arthero { display: flex; flex-direction: column; align-items: center; text-align: center; }
.arthero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--dur-fast);
  opacity: 0;
  transform: translateY(18px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
.arthero__back:hover { color: var(--yellow); }
.arthero__back svg { width: 15px; height: 15px; transition: transform var(--dur-fast) var(--ease-out); }
.arthero__back:hover svg { transform: translateX(-3px); }
.arthero .pill {
  opacity: 0;
  transform: translateY(18px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
.arthero h1 { max-width: 20ch; }
.arthero .pill { margin-bottom: 1.5rem; }
.arthero .page-hero__lead { margin-inline: auto; max-width: 56ch; }
.arthero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  margin-top: 1.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
  animation-delay: var(--d, 0.45s);
}
.arthero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 500; color: var(--muted); }
.arthero__meta svg { width: 16px; height: 16px; color: var(--yellow); }

/* inhoudsopgave */
.toc {
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.toc__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.toc__label svg { width: 15px; height: 15px; }
.toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 0.4rem; }
.toc li { counter-increment: toc; }
.toc a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--dur-fast);
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
.toc a:hover { color: var(--text); }

/* artikelpaneel */
.section--article { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.prose-panel { padding: clamp(1.5rem, 4.5vw, 3.25rem); }

/* auteurskaart */
.authorcard {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface-solid));
}
.authorcard strong { display: block; font-size: 1rem; }
.authorcard span { display: block; font-size: 0.88rem; color: var(--muted); margin-top: 0.25rem; }
.authorcard > div { flex: 1; }
.authorcard .link-arrow { flex: 0 0 auto; }
@media (max-width: 640px) {
  .authorcard { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
}

/* leesvoortgang */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 300;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-deep));
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* prose (kennishub-artikels) */
.prose { color: var(--text); }
.prose h2 { margin-top: 2.5rem; margin-bottom: 0.9rem; font-size: 1.6rem; scroll-margin-top: 120px; }
.prose h2::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-deep));
  margin-bottom: 0.75rem;
}
.prose > h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.7rem; font-size: 1.2rem; scroll-margin-top: 120px; }
.prose p { margin-bottom: 1rem; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.prose > p:first-child {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.prose strong { color: var(--text); }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose ul { list-style: none; margin-left: 0; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--muted); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.prose ol { list-style: decimal; color: var(--muted); }
.prose a { color: var(--yellow); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface);
  color: var(--text);
}

/* tarieventabel */
.table-wrap { padding: clamp(1rem, 3vw, 2rem); overflow-x: auto; }
.pricetable { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 540px; }
.pricetable th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid var(--line-strong);
}
.pricetable td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); color: var(--muted); }
.pricetable td:first-child { color: var(--text); font-weight: 500; }
.pricetable tr:last-child td { border-bottom: none; }
.pricetable td:last-child { font-variant-numeric: tabular-nums; }
.table-note { margin-top: 1rem; font-size: 0.85rem; color: var(--muted-2); }

/* chips (regio) */
.chipgrid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.chipgrid li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--dur-med), transform var(--dur-med) var(--ease-out);
}
.chipgrid li:hover { border-color: rgba(255, 212, 38, 0.35); transform: translateY(-2px); }
.chipgrid svg { width: 15px; height: 15px; color: var(--yellow); }
.chipgrid__more { text-align: center; margin-top: 1.75rem; }

/* merken */
.brandgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.brandcat {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface-solid));
}
.brandcat__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.brandcat__label svg { width: 18px; height: 18px; color: var(--yellow); }
.brandcat__brands { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-med) var(--ease-out);
}
.brand svg { width: 14px; height: 14px; color: var(--yellow); }
a.brand:hover { border-color: rgba(255, 212, 38, 0.45); transform: translateY(-2px); }
.brand--static { color: var(--muted); }
@media (max-width: 860px) { .brandgrid { grid-template-columns: 1fr; } }

/* artikelkaarten (kennishub) */
.artcard {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface-solid));
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med) var(--ease-out);
}
.artcard:hover { transform: translateY(-6px); border-color: rgba(255, 212, 38, 0.3); box-shadow: var(--shadow-card); }
.artcard__tag {
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.artcard h3 { font-size: 1.15rem; line-height: 1.35; }
.artcard__meta { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: var(--muted); }
.artcard__meta svg { width: 14px; height: 14px; color: var(--yellow); }
.artcard .link-arrow { margin-top: auto; padding-top: 0.5rem; }

/* stats-varianten */
.stats__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .stats__grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .stats__grid--3 { grid-template-columns: 1fr; } }

/* actieve navigatielink */
.nav__links > a[aria-current="page"] { color: var(--text); background: rgba(255, 255, 255, 0.06); }

/* zwevende belknop (alleen mobiel) */
.callfab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
  color: var(--on-yellow);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px -6px rgba(255, 212, 38, 0.55), 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform var(--dur-fast) var(--ease-spring);
}
.callfab:active { transform: scale(0.95); }
.callfab svg { width: 19px; height: 19px; }
@media (max-width: 860px) {
  .callfab { display: inline-flex; }
}

/* reviewband */
.reviewband {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.reviewband__score { display: flex; align-items: center; gap: 1.25rem; }
.reviewband__num { font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.reviewband__num small { font-size: 1.2rem; color: var(--muted); font-weight: 500; }
.reviewband__stars { display: flex; gap: 0.25rem; margin-bottom: 0.4rem; }
.reviewband__stars svg { width: 22px; height: 22px; }
.reviewband__caption { font-size: 0.9rem; color: var(--muted); }
.reviewband__text { max-width: 44ch; color: var(--muted); }
.reviewband__text strong { color: var(--text); }

/* projectkaarten (realisaties) */
.projcard__text { font-size: 0.9rem; color: var(--muted); }
.artcard .ph--card { margin-bottom: 0.5rem; }

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__word, .hero__bolt, .hero__sub, .hero__meta, .hero__visual { opacity: 1; transform: none; animation: none; }
  .reveal, .reveal-child { opacity: 1; transform: none; }
  .hcard__bars span { transform: scaleY(1); }
  .ph__ring { animation: none; }
  .ph--product img, .fotocard img { animation: none; }
  .heromap__dot .heromap__core { opacity: 1; animation: none; }
  .heromap__dot .heromap__ring { animation: none; }
  .heromap__cluster { opacity: 1; animation: none; }
  .heromap__cluster .heromap__cluster-ring { animation: none; }
  .viz-flow, .viz-led, .viz-batt, .viz-batt-level, .viz-sun,
  .viz-window, .viz-breaker, .viz-wave { animation: none; }
  .viz-batt { transform: scaleX(0.8); }
  .viz-batt-level { transform: scaleY(0.8); }
  .viz-breaker { opacity: 1; }
}

/* ------------------------------------------------ cookietoestemming ---- */
.cbanner { position: fixed; inset: auto 0 0 0; z-index: 400; padding: 1rem;
  animation: cbanner-in .35s ease-out both; }
@keyframes cbanner-in { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.cbanner__inner { max-width: 880px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; border-radius: 18px;
  background: rgba(16, 21, 19, .97); border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.5); backdrop-filter: blur(8px); }
.cbanner__tekst { margin: 0; font-size: .9rem; color: var(--muted); max-width: 46ch; }
.cbanner__tekst a { color: var(--yellow); text-decoration: underline; }
.cbanner__acties { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.cbanner__acties .btn { padding: .65rem 1.2rem; font-size: .85rem; }
.cbanner__link { background: none; border: none; color: var(--muted); font: inherit; font-size: .85rem;
  text-decoration: underline; cursor: pointer; padding: .65rem .4rem; }
.cbanner__link:hover { color: var(--text); }
.cmodal { position: fixed; inset: 0; z-index: 410; display: grid; place-items: center;
  padding: 1rem; background: rgba(6, 8, 7, .7); backdrop-filter: blur(4px); }
.cmodal__paneel { width: min(540px, 100%); max-height: 85vh; overflow-y: auto; padding: 1.6rem;
  border-radius: 20px; background: #101513; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.cmodal__paneel h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.cmodal__intro { color: var(--muted); font-size: .88rem; margin-bottom: 1.1rem; }
.cmodal__rij { display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.cmodal__rij p { color: var(--muted); font-size: .82rem; margin-top: .15rem; }
.cmodal__vast { flex: none; font-size: .78rem; font-weight: 600; color: var(--sage-2, #9fb59a);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: .3rem .7rem; }
.cmodal__switch { flex: none; position: relative; display: inline-block; width: 46px; height: 26px; cursor: pointer; }
.cmodal__switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cmodal__switch span { position: absolute; inset: 0; border-radius: 999px; background: rgba(255,255,255,.14);
  transition: background var(--dur-fast); }
.cmodal__switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; transition: transform var(--dur-fast); }
.cmodal__switch input:checked + span { background: var(--yellow); }
.cmodal__switch input:checked + span::after { transform: translateX(20px); background: #10130f; }
.cmodal__switch input:focus-visible + span { outline: 2px solid var(--yellow); outline-offset: 2px; }
.cmodal__acties { margin-top: 1.2rem; }
@media (prefers-reduced-motion: reduce) { .cbanner { animation: none; } }
@media (max-width: 560px) { .cbanner { padding: .5rem; } .cbanner__inner { padding: 1rem; } }

/* -------------------------------------------------- betaalaanbod-band ---- */
.paylane { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.25rem; align-items: center;
  padding: 1.75rem 2rem; }
.paylane__intro h2 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -.01em; }
.paylane__intro p { color: var(--muted); font-size: .9rem; margin-top: .35rem; }
.paylane__optie { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.15rem;
  border-radius: 16px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03);
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast); }
.paylane__optie:hover { border-color: rgba(255,212,38,.45); background: rgba(255,212,38,.05);
  transform: translateY(-2px); }
.paylane__optie > svg:first-child { width: 26px; height: 26px; flex: none; stroke: var(--yellow); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.paylane__tekst { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.paylane__tekst strong { font-size: .95rem; }
.paylane__tekst span { font-size: .8rem; color: var(--muted); }
.paylane__pijl { width: 18px; height: 18px; flex: none; margin-left: auto; color: var(--muted);
  transition: color var(--dur-fast), transform var(--dur-fast); }
.paylane__optie:hover .paylane__pijl { color: var(--yellow); transform: translateX(3px); }
@media (max-width: 900px) { .paylane { grid-template-columns: 1fr; padding: 1.5rem; } }

/* ------------------------------------------------------ privacy-akkoord ---- */
.field--akkoord { margin-top: 0.25rem; }
.akkoord { display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer; font-size: 0.85rem; color: var(--muted); }
.akkoord input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.akkoord__vink { flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.04);
  display: grid; place-items: center; transition: background var(--dur-fast), border-color var(--dur-fast); }
.akkoord__vink::after { content: ""; width: 10px; height: 6px; border-left: 2px solid #10130f;
  border-bottom: 2px solid #10130f; transform: rotate(-45deg) scale(0); transition: transform var(--dur-fast); }
.akkoord input:checked + .akkoord__vink { background: var(--yellow); border-color: var(--yellow); }
.akkoord input:checked + .akkoord__vink::after { transform: rotate(-45deg) scale(1) translate(1px, -1px); }
.akkoord input:focus-visible + .akkoord__vink { outline: 2px solid var(--yellow); outline-offset: 2px; }
.akkoord input.invalid + .akkoord__vink { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.15); }
.akkoord a { color: var(--text); text-decoration: underline; }
.akkoord a:hover { color: var(--yellow); }

/* ------------------------------------------------------ kennishub-filter ---- */
.kfilterbalk { padding-block: 0 !important; margin-top: -1.5rem; }
.kfilters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
  padding: 1rem; border-radius: 18px; background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08); }
.kfilter__n { display: inline-grid; place-items: center; min-width: 20px; height: 20px;
  padding-inline: 5px; margin-left: 0.35rem; border-radius: 999px; font-size: 0.7rem; font-weight: 700;
  background: rgba(255, 255, 255, 0.1); }
.kfilter.is-active .kfilter__n { background: rgba(19, 18, 8, 0.18); }
@media (max-width: 560px) { .kfilters { padding: 0.75rem; gap: 0.45rem; } }

/* ------------------------------------------------------- hero met foto ---- */
.phero-foto { position: relative; aspect-ratio: auto; min-height: clamp(280px, 26vw, 380px);
  height: 100%; border-radius: var(--radius-lg); }
.phero-foto img { transition: opacity 0.9s ease; }
.phero-foto img.is-wisselend { opacity: 0; }
.phero-foto::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 12, 0.55), transparent 45%);
  pointer-events: none; }

/* merklinks in lopende tekst */
.merklink { color: var(--text); text-decoration: underline; text-decoration-color: rgba(255, 212, 38, 0.5); text-underline-offset: 3px; }
.merklink:hover { color: var(--yellow); }

/* ------------------------------------------------------ dienstnavigatie ---- */
.dnav { margin-top: -1rem; }
.dnav__rij { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.75rem 0.25rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.dnav__rij::-webkit-scrollbar { display: none; }
.dnav__item { flex: none; display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap; transition: color var(--dur-fast), border-color var(--dur-fast); }
.dnav__item svg { width: 15px; height: 15px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dnav__item:hover { color: var(--text); border-color: rgba(255, 212, 38, 0.4); }
.dnav__item.is-hier { color: #10130f; background: var(--yellow); border-color: var(--yellow); }
/* met een muis kun je niet swipen: dan alle knoppen zichtbaar in meerdere rijen */
@media (hover: hover) and (pointer: fine) {
  .dnav__rij { flex-wrap: wrap; overflow-x: visible; justify-content: center; }
}

/* ------------------------------------------------------- belknop in nav ---- */
.nav__bel { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.9rem;
  border-radius: 999px; font-weight: 700; font-size: 0.88rem; color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16); transition: border-color var(--dur-fast), color var(--dur-fast); }
.nav__bel svg { width: 16px; height: 16px; }
.nav__bel:hover { color: var(--yellow); border-color: rgba(255, 212, 38, 0.45); }
@media (max-width: 1100px) {
  /* mobiel: alleen het icoon, minstens 44x44 aanraakvlak */
  .nav__bel { padding: 0.65rem; min-width: 44px; min-height: 44px; justify-content: center; }
  .nav__bel span { display: none; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; } /* offerteknop zit in het uitklapmenu; bel + burger blijven */
}

/* eendraadschema-figuren in artikelen */
.ed-schema { margin: 1.5rem 0; max-width: 420px; }
.ed-schema svg { width: 100%; height: auto; border-radius: 14px; }
.ed-schema figcaption { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
@media (min-width: 760px) { .ed-schema { display: inline-block; width: calc(50% - 0.75rem); vertical-align: top; margin-right: 0.75rem; } }

/* hele kaart klikbaar: de link strekt zich uit over het volledige vlak */
.bcard { position: relative; }
.bcard .link-arrow::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.bcard:has(.link-arrow):hover { border-color: rgba(255, 212, 38, 0.4); }

/* hero-spec-kaarten compact op mobiel zodat de foto zichtbaar blijft */
@media (max-width: 560px) {
  .page-hero__spec-top { max-width: 140px; padding: 0.6rem 0.75rem; }
  .page-hero__spec-top p { display: none; }
  .page-hero__spec-top .hero__spec-big { font-size: 1.4rem; }
  .page-hero__spec-bottom { padding: 0.55rem 0.75rem; max-width: 180px; }
  .page-hero__chip span { display: none; }
  .callfab { display: none !important; }
}

/* ------------------------------------------------------------ galerij ---- */
.galerij { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gitem { position: relative; margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid rgba(255, 255, 255, 0.09); background: #0c100e; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.gitem:hover img { transform: scale(1.04); }
.gitem figcaption { position: absolute; inset: auto 0 0 0; padding: 1.5rem 0.9rem 0.75rem; font-size: 0.78rem;
  font-weight: 600; color: var(--text); background: linear-gradient(to top, rgba(10, 13, 12, 0.85), transparent); }
.gitem[hidden] { display: none; }
@media (max-width: 560px) { .galerij { grid-template-columns: 1fr 1fr; gap: 0.6rem; } .gitem figcaption { font-size: 0.68rem; padding: 1rem 0.6rem 0.5rem; } }

/* -------------------------------------------- mobiele tikdoelen (audit) ---- */
/* stadschips: de hele chip is het tikdoel, niet alleen het woord */
.chipgrid li { position: relative; }
.chipgrid li a::after { content: ""; position: absolute; inset: 0; border-radius: 999px; }
/* filterknoppen: minstens 44px hoog op aanraakschermen */
@media (max-width: 1100px) {
  .heromap__filter { min-height: 44px; padding-block: 0.65rem; }
}

/* --------------------------------------------------------- kruimelpad ---- */
.crumbs { padding-top: calc(76px + 1.25rem); margin-bottom: -4.5rem; position: relative; z-index: 5; }
.crumbs .container { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--muted-2);
  white-space: nowrap; overflow: hidden; }
.crumbs a { color: var(--muted); flex: none; }
.crumbs a:hover { color: var(--yellow); }
.crumbs span[aria-current] { overflow: hidden; text-overflow: ellipsis; }
.crumbs__sep { flex: none; opacity: 0.5; }

/* ------------------------------------------------------ kennishub-zoek ---- */
.kzoek { position: relative; display: flex; align-items: center; max-width: 560px; margin: 0 auto 0.9rem; }
.kzoek svg { position: absolute; left: 1rem; width: 17px; height: 17px; color: var(--muted-2); pointer-events: none; }
.kzoek input { width: 100%; min-height: 48px; padding: 0.8rem 1rem 0.8rem 2.7rem; border-radius: 14px;
  font: inherit; font-size: 0.95rem; color: var(--text); background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12); transition: border-color var(--dur-fast); }
.kzoek input::placeholder { color: var(--muted-2); }
.kzoek input:focus { outline: none; border-color: rgba(255, 212, 38, 0.5); }
.kzoek__n { position: absolute; right: 1rem; font-size: 0.75rem; color: var(--yellow); font-weight: 700; }

/* pagina staat stil zolang het menu open is, met donker waas eronder */
html.menu-open, html.menu-open body { overflow: hidden; }
html.menu-open body::before { content: ""; position: fixed; inset: 0; z-index: 90;
  background: rgba(5, 7, 6, 0.65); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }

/* galerij: tegels buiten beeld worden pas gerenderd bij het scrollen */
.gitem { content-visibility: auto; contain-intrinsic-size: 280px 350px; }

/* ------------------------------------------------------- bestandsupload ---- */
.upload { display: flex; align-items: center; gap: 0.7rem; min-height: 52px; padding: 0.8rem 1rem;
  border-radius: 12px; border: 1px dashed rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.03);
  color: var(--muted); font-size: 0.9rem; cursor: pointer; transition: border-color var(--dur-fast); }
.upload:hover { border-color: rgba(255, 212, 38, 0.5); color: var(--text); }
.upload svg { width: 18px; height: 18px; flex: none; color: var(--yellow); }
.upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }

/* realisaties-teaser op de homepage: 4 naast elkaar, 2x2 op mobiel */
.galerij--teaser { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .galerij--teaser { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------- kaart-tooltip ---- */
.heromap { position: relative; }
.maptip { position: absolute; z-index: 20; transform: translate(-50%, -100%); padding: 0.4rem 0.7rem;
  border-radius: 8px; background: rgba(12, 16, 14, 0.95); border: 1px solid rgba(255, 212, 38, 0.35);
  color: var(--text); font-size: 0.76rem; font-weight: 600; white-space: nowrap;
  pointer-events: none; opacity: 0; transition: opacity 0.12s ease; }
.maptip.is-zichtbaar { opacity: 1; }

/* ------------------------------------------- kaartbijschrift onder de map ---- */
.mapmeta { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 1rem; margin-top: 1rem; }
.mapmeta__item { padding: 1.1rem 1.25rem; border-radius: var(--radius-md);
  background: rgba(14, 18, 16, 0.85); border: 1px solid var(--line); }
.mapmeta__item p { font-size: 0.88rem; color: var(--muted); margin-top: 0.4rem; }
.mapmeta__item .link-arrow { margin-top: 0.5rem; }
.mapmeta__item--midden { text-align: center; }
.mapmeta__item:last-child { text-align: right; }
@media (max-width: 860px) {
  .mapmeta { grid-template-columns: 1fr; }
  .mapmeta__item, .mapmeta__item--midden, .mapmeta__item:last-child { text-align: left; }
}

/* header met 7 items: nooit wikkelen, iets compacter op middelgrote schermen */
.nav__links > a, .nav__cta, .nav__bel, .nav__bel span { white-space: nowrap; }
@media (min-width: 1101px) and (max-width: 1500px) {
  .nav__links { gap: 0.1rem; }
  .nav__links > a { padding: 0.55rem 0.6rem; font-size: 0.88rem; }
  .nav__cta { padding: 0.65rem 1rem; font-size: 0.88rem; }
  .nav__bel { padding: 0.55rem 0.75rem; font-size: 0.85rem; }
}

/* reviewquotes onder de reviewband */
.reviewgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.rquote {
  background: var(--panel, #151b18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rquote__stars { display: flex; gap: 2px; }
.rquote__stars svg { width: 15px; height: 15px; }
.rquote blockquote { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--tekst-zacht, #c9d1c9); }
.rquote figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 0.1rem; }
.rquote figcaption strong { font-size: 0.9rem; }
.rquote figcaption span { font-size: 0.78rem; color: var(--tekst-dim, #8a938a); }

/* Zwevende WhatsApp-knop (rendert enkel als WHATSAPP_NUMMER is ingesteld in build.py) */
.wa-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 8px 26px rgba(0, 0, 0, 0.34); }
.wa-fab:focus-visible { outline: 3px solid #F5C518; outline-offset: 3px; }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 600px) {
  .wa-fab { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); width: 52px; height: 52px; }
  .wa-fab svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { transition: none; }
  .wa-fab:hover { transform: none; }
}
