/* Elect-SA — static site styles */

:root {
  --green: #30b83e;
  --green-dark: #249a31;
  --green-soft: #e8f8ea;
  --black: #0b0b0b;
  --ink: #141414;
  --muted: #5c5c5c;
  --line: #e8e8e8;
  --surface: #f6f6f6;
  --card: #ffffff;
  --dark-card: #171717;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  /* Shared section diagonal — edge→edge parallelogram */
  --section-slant: clamp(44px, 6.5vw, 78px);
  /* Soft AA band along diagonal (~1px feather hides stair-steps) */
  --slant-aa: 1.25px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0a0a0a;
  overscroll-behavior-y: none;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

body.page-dark-top {
  background: #0a0a0a;
}

/* Keep seams under slanted dark blocks pure white (not body dark) */
main {
  background: #fff;
  position: relative;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.12;
  font-weight: 800;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }

::selection {
  background: rgba(48, 184, 62, 0.28);
}

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

.container-wide,
.topbar .container {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 2.35rem; padding: 0.55rem 1rem; font-size: 0.875rem; }

.btn-primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover { background: #1f862a; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn-secondary-dark {
  background: transparent;
  color: var(--ink);
  border-color: #d0d0d0;
}
.btn-secondary-dark:hover { border-color: var(--ink); }

/* Sections */
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-sm { padding: 2.5rem 0; }
.section-label {
  display: inline-flex;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  max-width: 16ch;
}
.section-title.wide { max-width: none; }
.section-lead {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.bg-surface { background: var(--surface); }
.bg-black { background: var(--black); color: #fff; }
.bg-dark { background: #111; color: #fff; }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }

/* Animations */
.fade-up { animation: fadeUp 0.8s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-soft { animation: floatSoft 5.5s ease-in-out infinite; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Header */
.topbar {
  display: none; /* test: hide block above header */
  background: #0a0a0a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: none;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 1.6rem;
  padding: 0.68rem 0;
  min-height: 2.5rem;
}
.topbar-left,
.topbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.6rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  white-space: nowrap;
}
.topbar-item:hover { color: #fff; opacity: 0.92; }
.topbar-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 0.15rem;
}
.topbar-social a {
  display: inline-flex;
  color: #fff;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.topbar-social a:hover {
  opacity: 1;
  color: var(--green);
}
.topbar-social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  border-bottom: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.page-dark-top .site-header:not(.is-solid) {
  background: transparent;
  box-shadow: none;
}
.page-dark-top .site-header.is-solid {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.page-dark-top .hero {
  margin-top: -76px;
}
.page-dark-top .services-hero {
  margin-top: -76px;
}
.page-dark-top .about-hero {
  margin-top: -76px;
}
.page-dark-top .cp-hero {
  margin-top: -76px;
}
.page-dark-top .hero-inner {
  padding-top: calc(2.4rem + 76px);
}
.page-dark-top .page-hero.dark {
  margin-top: -76px;
  padding-top: calc(3.5rem + 76px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.85rem 0;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}
.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--green); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.7rem;
  width: 13px;
  height: 22px;
  transform: translateX(-50%) rotate(90deg);
  background-color: var(--green);
  clip-path: polygon(
    45% 0%,
    72% 0%,
    52% 36%,
    85% 36%,
    28% 100%,
    42% 52%,
    12% 52%
  );
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-electric {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  background: var(--green-dark);
  border: none;
}
.btn-electric:hover {
  background: #1f862a;
}
.btn-electric-inner {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.45rem;
  padding: 0.55rem 1.2rem;
}
.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.btn-icon-arrow {
  width: 1.15rem;
  height: 1.15rem;
}
.btn-electric--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.btn-electric--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-electric--hero {
  font-size: 0.95rem;
}
.btn-electric--hero .btn-electric-inner {
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
}
.btn-waves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}
.btn-waves svg {
  width: 140%;
  height: 100%;
  display: block;
  position: absolute;
  left: -20%;
  top: 0;
}
.btn-waves .ewave {
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 7px rgba(125, 255, 136, 0.75));
  stroke-dasharray: 70 420;
  stroke-dashoffset: 420;
  opacity: 0;
}
.btn-electric:hover .btn-waves {
  opacity: 1;
}
.btn-electric:hover .ewave-1 {
  animation: btn-ewave 0.75s linear 0.04s 1;
}
.btn-electric:hover .ewave-2 {
  animation: btn-ewave 0.8s linear 0.1s 1;
  stroke: rgba(230, 255, 235, 0.95);
  stroke-width: 2;
  stroke-dasharray: 90 400;
}
.btn-electric:hover .ewave-3 {
  animation: btn-ewave 0.75s linear 0.16s 1;
}
@keyframes btn-ewave {
  0% {
    opacity: 0;
    stroke-dashoffset: 420;
  }
  15% {
    opacity: 1;
  }
  70% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: -200;
  }
}
.btn-lightning {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.btn-lightning svg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 28px;
  height: 130%;
  fill: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 12px rgba(125, 255, 136, 0.85));
  opacity: 0;
  transform: translateX(-140%) skewX(-12deg);
}
.btn-electric:hover .btn-lightning svg {
  animation: btn-lightning-strike 0.65s ease-out 1;
}
@keyframes btn-lightning-strike {
  0% {
    opacity: 0;
    transform: translateX(-140%) skewX(-12deg);
  }
  12% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(520%) skewX(-12deg);
  }
}
.nav-mobile-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 80;
  transition: opacity 0.2s ease;
}
.nav-mobile-btn:hover,
.nav-mobile-btn[aria-expanded="true"] {
  background: transparent;
  border: 0;
  opacity: 0.85;
}
.nav-mobile-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 2.5px 0;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-mobile-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-mobile-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-mobile-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(5.5rem + env(safe-area-inset-top, 0px)) 1.35rem calc(1.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 10, 9, 0.88);
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overscroll-behavior: none;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s linear;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-brand {
  position: absolute;
  top: calc(0.95rem + env(safe-area-inset-top, 0px));
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.06s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}
.mobile-menu.open .mobile-menu-brand {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.mobile-menu-brand img {
  display: block;
  height: 36px;
  width: auto;
}
.mobile-menu-panel {
  width: min(100%, 26rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}
.mobile-menu-close {
  position: absolute;
  top: calc(0.85rem + env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: rotate(-45deg) scale(0.85);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.mobile-menu.open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  opacity: 0.85;
  outline: none;
}
.mobile-menu-close::before,
.mobile-menu-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}
.mobile-menu-close::before {
  transform: rotate(45deg);
}
.mobile-menu-close::after {
  transform: rotate(-45deg);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.35rem;
  width: 100%;
}
.mobile-menu-nav a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.2;
  padding: 0.7rem 0.15rem;
  text-decoration: none;
  text-align: center;
  border-bottom: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    color 0.2s ease,
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible {
  color: var(--green);
}
.mobile-menu .btn-mobile-cta {
  width: 100%;
  max-width: 22rem;
  margin-top: 0.35rem;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.34s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.34s;
}
.mobile-menu.open .btn-mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu .btn-mobile-cta .btn-electric-inner {
  width: 100%;
  justify-content: center;
  min-height: 3.1rem;
  font-size: 0.95rem;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-brand,
  .mobile-menu-close,
  .mobile-menu-nav a,
  .mobile-menu .btn-mobile-cta {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    transform: none !important;
  }
  .mobile-menu-brand {
    transform: translateX(-50%) !important;
  }
}
html.menu-open,
body.menu-open {
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}
body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
body.menu-open .site-header {
  z-index: 90;
}
body.menu-open .header-inner {
  /* Keep chrome under the fullscreen menu; close lives inside .mobile-menu */
  pointer-events: none;
}
body.menu-open .mob-dock {
  opacity: 0;
  pointer-events: none;
}

/* Legacy fallback links (if old markup remains briefly) */
.mobile-menu > a {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.55rem 0;
  text-align: center;
}

/* Hero — bottom cut; AA fringe sits on next section (avoids filter glow on photo) */
.hero {
  position: relative;
  height: 95vh;
  min-height: 95vh;
  max-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  padding-bottom: 2rem;
  box-sizing: border-box;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--section-slant)),
    0 100%
  );
}
.hero::after {
  content: none;
  display: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") center 40% / cover no-repeat;
  filter: saturate(1.05) contrast(1.08) brightness(0.42);
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.31) 100%),
    radial-gradient(ellipse at 72% 48%, transparent 18%, rgba(0, 0, 0, 0.44) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(200px, 320px);
  align-items: center;
  gap: 0.75rem 0.5rem;
  padding: 1.5rem 0 2.75rem;
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}
.hero-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
h1.hero-title,
.hero-title {
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 100%;
  margin: 0;
  color: inherit;
}
.hero-title-line {
  white-space: nowrap;
}
/* Desktop: 2 rows */
@media (min-width: 901px) {
  .hero-title .ht-l1b::after {
    content: "\A";
    white-space: pre;
  }
  .hero-title .ht-l1a,
  .hero-title .ht-l1b,
  .hero-title .ht-l2a,
  .hero-title .ht-l2b,
  .hero-title .ht-l2c {
    white-space: nowrap;
  }
}

.hero-text {
  max-width: none;
  position: relative;
  z-index: 2;
  margin-inline-start: 0;
  overflow: visible;
  min-width: 0;
  container-type: inline-size;
  container-name: hero-copy;
}

/*
  Desktop hero: size type from the TEXT COLUMN width (cqi),
  not viewport — so 100% and 110% zoom stay consistent
  (big text, no overlap with the person).
*/
@media (min-width: 901px) {
  .hero-inner {
    width: min(1280px, calc(100% - 2rem));
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 380px);
    align-items: center;
    column-gap: clamp(0.65rem, 1.6vw, 1.15rem);
  }
  .hero-text {
    margin-inline-start: 1.35rem;
    max-width: none;
    width: 100%;
    padding-inline-end: 0.5rem;
    align-self: center;
  }
  .hero-visual {
    z-index: 3;
    justify-content: flex-end;
    align-self: end;
  }
  .hero-visual img {
    width: clamp(320px, 30vw, 440px);
    transform: translate(-10px, 4%);
  }
  .hero .hero-title,
  h1.hero-title,
  .hero-title {
    font-size: clamp(2.55rem, 8.6cqi, 3.55rem);
  }
  .hero .hero-lead,
  .hero-lead {
    font-size: clamp(1.05rem, 2.85cqi, 1.2rem);
    width: 100%;
    max-width: 100%;
  }
}

/* When the copy column gets tight (zoom / narrow laptop), shrink title a bit more */
@container hero-copy (max-width: 620px) {
  .hero .hero-title,
  h1.hero-title,
  .hero-title {
    font-size: clamp(2.35rem, 8cqi, 3.05rem);
  }
  .hero .hero-lead,
  .hero-lead {
    font-size: clamp(1rem, 2.7cqi, 1.12rem);
  }
}

@container hero-copy (max-width: 520px) {
  .hero .hero-title,
  h1.hero-title,
  .hero-title {
    font-size: clamp(2.15rem, 7.6cqi, 2.75rem);
  }
}

.diensten-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 650;
}
.diensten-note a:hover {
  color: #4fd45c;
}

.hero-lead {
  margin-top: 1.05rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
  max-width: 100%;
  line-height: 1.55;
  font-weight: 400;
}
.hero-lead a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 550;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-lead a:hover,
.hero-lead a:focus-visible {
  color: var(--green);
  border-bottom-color: rgba(48, 184, 62, 0.7);
  outline: none;
}
.hero-lead-sep {
  margin: 0 0.35rem;
  color: rgba(255, 255, 255, 0.32);
}
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.05rem;
  padding: 0.45rem 0.85rem 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-google-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
.hero-google-badge .google-g-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 6px;
  background: #fff;
  flex-shrink: 0;
}
.hero-google-badge .google-g-icon svg {
  display: block;
}
.hero-google-score {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-google-stars {
  color: #fbbc04;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.hero-google-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.hero-features {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.35rem;
  margin-top: 1.75rem;
  max-width: none;
  width: fit-content;
}
.hero-features li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  flex: 0 0 auto;
  width: auto;
}
.hero-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.hero-feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
}
.hero-feature-copy strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.hero-feature-copy span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.35;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: end;
  margin-bottom: -1.5rem;
  z-index: 1;
}
.hero-visual img {
  width: clamp(340px, 32vw, 455px);
  max-width: none;
  height: auto;
  aspect-ratio: 834 / 1444;
  flex-shrink: 0;
  transform: translateY(4%);
  filter: brightness(0.81) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green);
}

#diensten,
#offerte {
  scroll-margin-top: 6.5rem;
}

/* Services SEO CTA — video atmosphere transition */
.work-proof {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  min-height: clamp(650px, 78vh, 750px);
  background: #000;
  color: #fff;
}
.work-proof-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}
.work-proof-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.78) blur(2.5px);
}
.work-proof-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.7);
}
.work-proof-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "copy list"
    "cta cta";
  column-gap: clamp(2.5rem, 6vw, 5rem);
  row-gap: clamp(2rem, 4vw, 2.75rem);
  align-items: end;
}
.work-proof-copy {
  grid-area: copy;
  max-width: 34rem;
}
.work-proof-list {
  grid-area: list;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  align-content: end;
}
.work-proof-actions {
  grid-area: cta;
  margin: 0;
}

.work-proof-label,
.work-proof-title,
.work-proof-lead,
.work-proof-list li,
.work-proof-cta {
  opacity: 0;
  transform: translateY(18px);
}
.work-proof.is-inview .work-proof-label,
.work-proof.is-inview .work-proof-title,
.work-proof.is-inview .work-proof-lead,
.work-proof.is-inview .work-proof-list li,
.work-proof.is-inview .work-proof-cta {
  animation: workProofFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.work-proof.is-inview .work-proof-label { animation-delay: 0s; }
.work-proof.is-inview .work-proof-title { animation-delay: 0.1s; }
.work-proof.is-inview .work-proof-lead { animation-delay: 0.2s; }
.work-proof.is-inview .work-proof-list li:nth-child(1) { animation-delay: 0.28s; }
.work-proof.is-inview .work-proof-list li:nth-child(2) { animation-delay: 0.34s; }
.work-proof.is-inview .work-proof-list li:nth-child(3) { animation-delay: 0.4s; }
.work-proof.is-inview .work-proof-list li:nth-child(4) { animation-delay: 0.46s; }
.work-proof.is-inview .work-proof-list li:nth-child(5) { animation-delay: 0.52s; }
.work-proof.is-inview .work-proof-list li:nth-child(6) { animation-delay: 0.58s; }
.work-proof.is-inview .work-proof-cta { animation-delay: 0.68s; }

.work-proof-label {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work-proof-title {
  margin: 1rem 0 0;
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  max-width: 12ch;
}
.work-proof-lead {
  margin: 1.35rem 0 0;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  max-width: 42ch;
}
.work-proof-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}
.work-proof-check {
  color: var(--green);
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  transform: scale(1);
  opacity: 0.4;
}
.work-proof.is-inview .work-proof-list li .work-proof-check {
  animation: workProofCheckIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.work-proof.is-inview .work-proof-list li:nth-child(1) .work-proof-check { animation-delay: 0.38s; }
.work-proof.is-inview .work-proof-list li:nth-child(2) .work-proof-check { animation-delay: 0.44s; }
.work-proof.is-inview .work-proof-list li:nth-child(3) .work-proof-check { animation-delay: 0.5s; }
.work-proof.is-inview .work-proof-list li:nth-child(4) .work-proof-check { animation-delay: 0.56s; }
.work-proof.is-inview .work-proof-list li:nth-child(5) .work-proof-check { animation-delay: 0.62s; }
.work-proof.is-inview .work-proof-list li:nth-child(6) .work-proof-check { animation-delay: 0.68s; }

.work-proof-cta {
  /* Uses shared .btn-electric lightning / waves animation */
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
}
.work-proof-cta.btn-electric {
  width: auto;
}
.work-proof-cta .btn-electric-inner {
  font-weight: 700;
}

@keyframes workProofFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes workProofCheckIn {
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .work-proof-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "list"
      "cta";
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-proof-bg {
    display: none;
  }
  .work-proof-label,
  .work-proof-title,
  .work-proof-lead,
  .work-proof-list li,
  .work-proof-cta,
  .work-proof-check {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Trust elements — premium interactive */
.trust-elements {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 1;
  margin-top: -1px;
}
/* Soft AA cover over hero bottom diagonal */
.trust-elements::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--section-slant) + 3px);
  transform: translateY(-100%);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    #ffffff calc(50% + var(--slant-aa)),
    #ffffff 100%
  );
}
/* Soft AA over merken top diagonal */
.trust-elements::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--section-slant) + 3px);
  transform: translateY(100%);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    #ffffff 0,
    #ffffff calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.trust-elements .container {
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
}
.trust-intro {
  max-width: 40rem;
  margin: 0 auto 3.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.trust-elements.is-inview .trust-intro {
  opacity: 1;
  transform: translateY(0);
}
.trust-intro-label {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.trust-intro-title {
  margin-top: 0.9rem;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.trust-intro-lead {
  margin: 1.1rem auto 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #666;
  font-weight: 500;
}
.trust-board {
  position: relative;
  perspective: 1000px;
}
.trust-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 2;
  pointer-events: none;
}
.trust-elements.is-inview .trust-line {
  animation: trustLineDraw 0.75s ease-out forwards;
}
.trust-elements-list {
  list-style: none;
  margin: 0;
  padding: 1.85rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.trust-card--delay-1 { --delay: 100ms; }
.trust-card--delay-2 { --delay: 180ms; }
.trust-card--delay-3 { --delay: 260ms; }
.trust-card--delay-4 { --delay: 340ms; }
.page-city .city-seo-prose { max-width: 48rem; }
.form-success h3 { font-size: 1.5rem; margin: 0; }
.form-success .text-muted { margin-top: 0.75rem; }
.footer-brand-logo { height: 48px; width: auto; }
.trust-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
  opacity: 0;
  transform: translateY(24px);
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition:
    border-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trust-elements.is-cards .trust-card {
  animation: trustCardIn 650ms ease-out forwards;
  animation-delay: var(--delay, 100ms);
}
.trust-card.is-ready {
  opacity: 1;
  transform: translateY(0);
  animation: none;
  transition:
    transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trust-card.is-ready:hover {
  border-color: var(--green);
  background: #fcfffc;
}
.trust-card-icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--green);
  transform-origin: center center;
}
.trust-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.trust-card-icon path,
.trust-card-icon circle,
.trust-card-icon rect,
.trust-card-icon line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-card-icon.is-drawing path,
.trust-card-icon.is-drawing circle,
.trust-card-icon.is-drawing rect,
.trust-card-icon.is-drawing line {
  stroke-dasharray: var(--path-len, 120);
  stroke-dashoffset: var(--path-len, 120);
  animation: trustStrokeDraw 600ms ease-out forwards;
}
.trust-card-icon.is-bounce {
  animation: trustIconBounce 420ms ease-out;
}
.trust-card.is-ready:hover .trust-card-icon {
  transform: scale(1.08);
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trust-card-title {
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 1.1vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  transition: color 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trust-card.is-ready:hover .trust-card-title {
  color: var(--green);
}
.trust-card-desc {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: #666;
  flex: 1;
}
.trust-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.trust-cta-btn {
  width: min(100%, 420px);
  border-radius: 12px;
}
.trust-cta-btn .btn-electric-inner {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

@keyframes trustLineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes trustCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes trustStrokeDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes trustIconBounce {
  0% { transform: scale(1); }
  55% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-intro,
  .trust-line,
  .trust-card,
  .trust-card-icon path,
  .trust-card-icon circle,
  .trust-card-icon rect,
  .trust-card-icon line {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* Trust block — Google + project gallery */
/* Merken / partners — dark trust band with diagonal cuts */
.merken-block {
  --merken-slant: var(--section-slant);
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: #fff;
  overflow: visible;
  isolation: isolate;
  margin-top: -1px;
}
.merken-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(48, 184, 62, 0.09), transparent 58%),
    linear-gradient(180deg, #121212 0%, #0c0c0c 100%);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--merken-slant),
    100% 0,
    100% calc(100% - var(--merken-slant)),
    0 100%
  );
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.7));
}
.merken-block .container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--merken-slant) + clamp(3.25rem, 6vw, 4.75rem));
  padding-bottom: 0;
}
.merken-intro {
  max-width: 52rem;
  margin: 0 auto 2.15rem;
  text-align: center;
}
.merken-label {
  margin: 0 0 0.65rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.merken-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  white-space: nowrap;
}
.merken-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.35rem;
  padding: 0.85rem 0 calc(var(--merken-slant) + clamp(2.75rem, 5vw, 4rem));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.merken-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  animation: merkenMarquee 55s linear infinite;
}
.merken-marquee:hover .merken-marquee-track {
  animation-play-state: paused;
}
.merken-marquee-group {
  --merken-gap: 7rem;
  list-style: none;
  margin: 0;
  padding: 0 var(--merken-gap) 0 0;
  display: flex;
  align-items: center;
  gap: var(--merken-gap);
}
.merken-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 4.25rem;
  padding-block: 0.35rem;
  overflow: visible;
}
.merken-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  outline-offset: 4px;
}
.merken-item img {
  display: block;
  width: auto;
  max-width: 200px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  opacity: 0.82;
  overflow: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.merken-item a:hover img,
.merken-item a:focus-visible img {
  opacity: 1;
  transform: scale(1.05);
}
.merken-item:nth-child(5) img,
.merken-item:nth-child(6) img,
.merken-item:nth-child(13) img,
.merken-item:nth-child(15) img {
  height: 58px;
  max-width: 160px;
}
.merken-item:nth-child(7) img {
  height: 38px;
  max-width: 200px;
}
.merken-item:nth-child(3) img {
  height: 44px;
  max-width: 200px;
}
.merken-item:nth-child(8) img {
  height: 44px;
  max-width: 200px;
}
.merken-item:nth-child(9) img {
  height: 56px;
  max-width: 220px;
}
@keyframes merkenMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .merken-title {
    white-space: normal;
    font-size: clamp(1.55rem, 5.5vw, 2.1rem);
  }
  .merken-intro {
    max-width: 36rem;
    margin-bottom: 1.75rem;
  }
  .merken-marquee-group {
    --merken-gap: 5rem;
  }
  .merken-item img {
    height: 38px;
  }
  .merken-item:nth-child(5) img,
  .merken-item:nth-child(6) img,
  .merken-item:nth-child(13) img,
  .merken-item:nth-child(15) img {
    height: 48px;
  }
  .merken-item:nth-child(9) img {
    height: 48px;
  }
}
@media (max-width: 700px) {
  .merken-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }
  .merken-marquee-track {
    animation-duration: 42s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .merken-marquee-track {
    animation: none !important;
  }
  .merken-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .merken-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

/* Soft AA over merken bottom diagonal into white trust-block */
.trust-block {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: none;
  /* Prevent CTA margin collapsing into the black page background */
  display: block;
  min-height: 28rem;
  overflow: visible;
  visibility: visible;
  opacity: 1;
}
.trust-block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--section-slant) + 3px);
  transform: translateY(-100%);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    #ffffff calc(50% + var(--slant-aa)),
    #ffffff 100%
  );
}
/* Soft AA cover over why-electsa top diagonal */
.trust-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--section-slant) + 3px);
  transform: translateY(100%);
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    #ffffff 0,
    #ffffff calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.trust-block > .container {
  position: relative;
  z-index: 5;
  padding-top: clamp(4.25rem, 7vw, 6rem);
  padding-bottom: 0;
}
.trust-block .project-gallery,
.trust-block .project-marquee {
  position: relative;
  z-index: 5;
}
.trust-block-intro {
  max-width: 38rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.trust-block-label {
  margin: 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.trust-block-title {
  margin-top: 0.95rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.trust-block-lead {
  margin: 1.15rem auto 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  font-weight: 500;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}
.trust-block.is-inview .trust-block-label,
.trust-block.is-inview .trust-block-title,
.trust-block.is-inview .trust-block-lead {
  opacity: 1;
  transform: translateY(0);
}

.trust-block-cards {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: stretch;
}
.trust-rating-card,
.trust-quote-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: clamp(2.25rem, 3.5vw, 3.15rem);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.05);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.trust-block.is-inview .trust-rating-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}
.trust-block.is-inview .trust-quote-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.trust-rating-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
}
.google-g-icon {
  display: inline-flex;
  flex-shrink: 0;
}
.trust-rating-score {
  margin-top: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.trust-rating-number {
  font-size: clamp(4.25rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #111;
}
.trust-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #fbbc04;
  font-size: 1.55rem;
  line-height: 1;
}
.trust-stars--sm {
  font-size: 1.2rem;
}
.trust-stars span {
  display: inline-block;
  opacity: 1;
  transform: scale(1);
}
.trust-block.is-stars .trust-stars span {
  animation: trustStarIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.trust-stars span:nth-child(1) { animation-delay: 0ms; }
.trust-stars span:nth-child(2) { animation-delay: 90ms; }
.trust-stars span:nth-child(3) { animation-delay: 180ms; }
.trust-stars span:nth-child(4) { animation-delay: 270ms; }
.trust-stars span:nth-child(5) { animation-delay: 360ms; }
.trust-rating-company {
  margin-top: 0.85rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-rating-count {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.trust-rating-fallback {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}
.trust-rating-card.is-fallback .trust-rating-badge {
  margin-top: 1.25rem;
}
.trust-rating-number:empty {
  min-height: 1em;
  visibility: hidden;
}
.trust-rating-card.is-fallback .trust-rating-number {
  display: none;
}
.trust-rating-badge {
  margin-top: 1.25rem;
  margin-bottom: 1.2rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  border-radius: 0;
  background: none;
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 600;
}
.trust-rating-btn.btn-electric {
  margin-top: auto;
  width: 100%;
  height: 3.35rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(48, 184, 62, 0.28);
}
.trust-rating-btn.btn-electric .btn-electric-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1;
  gap: 0.5rem;
  transform: translateY(-1.5px);
}
.trust-rating-btn.btn-electric .btn-icon {
  width: 0.95rem;
  height: 0.95rem;
  transform: translateY(0);
}
.trust-rating-btn.btn-electric:hover {
  background: #1f862a;
  box-shadow: 0 10px 32px rgba(48, 184, 62, 0.4);
}

.trust-quote-card {
  background:
    linear-gradient(165deg, #ffffff 0%, #fbfbfb 55%, #f7faf7 100%);
}
.trust-quote-mark {
  margin-top: 0.85rem;
  display: block;
  font-size: clamp(4.5rem, 8vw, 6rem);
  line-height: 0.7;
  font-weight: 800;
  color: rgba(48, 184, 62, 0.18);
  letter-spacing: -0.06em;
  user-select: none;
}
.trust-quote-text {
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
}
.trust-quote-text p {
  margin: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: #222;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.trust-quote-footer {
  margin-top: auto;
  padding-top: 1.35rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-quote-source {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.trust-quote-source strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #444;
}
.trust-quote-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  transition: gap 0.25s ease, color 0.25s ease;
}
.trust-quote-link:hover {
  gap: 0.55rem;
  color: var(--green);
}

.project-gallery {
  /* Balance space: Google reviews ↔ projects ↔ diagonal cut */
  margin-top: clamp(6.5rem, 10vw, 8.75rem);
  padding-bottom: calc(var(--section-slant) + clamp(4.5rem, 9vw, 7.5rem));
}
.project-gallery-intro {
  max-width: 32rem;
  margin: 0 auto 1.35rem;
  text-align: center;
  opacity: 1;
  transform: none;
}
.project-gallery-title {
  font-size: clamp(1.55rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.project-gallery-lead {
  margin-top: 0.5rem;
  font-size: 0.98rem;
  color: #666;
  font-weight: 500;
  line-height: 1.6;
}
.project-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0.35rem 0 0.55rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  opacity: 1;
  transform: none;
}
.project-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
}
.trust-block.is-gallery .project-marquee-track,
.project-marquee-track.is-marquee-ready {
  animation: projectMarquee 80s linear infinite;
}
.project-marquee:hover .project-marquee-track {
  animation-play-state: paused;
}
.project-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 1.05rem;
  padding: 0 1.05rem;
}
.project-tile {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: min(40vw, 240px);
  height: clamp(200px, 24vw, 248px);
  overflow: hidden;
  border-radius: 14px;
  background: #ececec;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.45s ease;
}
.project-tile--wide {
  width: min(52vw, 320px);
}
.project-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}
.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 12, 0.38);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.project-tile-zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  line-height: 0;
  transform: scale(0.88);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}
.project-tile-zoom svg {
  display: block;
  flex-shrink: 0;
}
.project-tile:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}
.project-tile:hover img {
  transform: scale(1.03);
}
.project-tile:hover .project-tile-overlay {
  opacity: 1;
}
.project-tile:hover .project-tile-zoom {
  transform: scale(1);
  background: rgba(255, 255, 255, 0.2);
}
.project-tile:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
@keyframes projectMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Project lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  touch-action: manipulation;
}
.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(90vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: manipulation;
}
.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: min(860px, calc(100% - 6.5rem));
  touch-action: manipulation;
}
.lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(76vh, 820px);
  border-radius: 16px;
  object-fit: contain;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}
.lightbox-caption {
  display: none;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.26);
}
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.lightbox-close {
  top: 0;
  left: 0;
}
.lightbox-nav--prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-nav--next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .lightbox-close:hover,
  .lightbox-nav:hover {
    transform: scale(1.04);
  }
  .lightbox-nav--prev:hover,
  .lightbox-nav--next:hover {
    transform: translateY(-50%) scale(1.04);
  }
}
body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}
body.lightbox-open .project-marquee-track,
body.lightbox-open .merken-marquee-track {
  animation-play-state: paused !important;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 700px) {
  .lightbox-figure {
    width: min(100%, calc(100% - 0.5rem));
  }
  .lightbox-close {
    top: -0.15rem;
    left: 0.1rem;
  }
  .lightbox-nav--prev {
    left: 0.1rem;
  }
  .lightbox-nav--next {
    right: 0.1rem;
  }
  .lightbox-image {
    max-height: min(68vh, 720px);
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-dialog {
    animation: none;
  }
}

.trust-block-cta {
  margin-top: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  opacity: 1;
  transform: none;
}
.trust-block.is-cta .trust-block-cta {
  opacity: 1;
  transform: none;
}
.trust-block-btn-primary.btn-electric {
  border-radius: 12px;
  height: 3.35rem;
  min-width: min(100%, 280px);
  box-shadow: 0 8px 24px rgba(48, 184, 62, 0.28);
}
.trust-block-btn-primary.btn-electric .btn-electric-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 1.6rem;
  font-size: 0.98rem;
  line-height: 1;
  transform: translateY(-1.5px);
}
.trust-block-btn-primary.btn-electric:hover {
  background: #1f862a;
  box-shadow: 0 12px 36px rgba(48, 184, 62, 0.42);
}

@keyframes trustStarIn {
  to { opacity: 1; transform: scale(1); }
}

/* Failsafe: never leave Google Reviews block invisible if JS stalls */
.trust-block.is-ready .trust-block-label,
.trust-block.is-ready .trust-block-title,
.trust-block.is-ready .trust-block-lead,
.trust-block.is-ready .trust-rating-card,
.trust-block.is-ready .trust-quote-card,
.trust-block.is-ready .project-gallery-intro,
.trust-block.is-ready .trust-block-cta,
.trust-block.is-ready .trust-stars span {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .trust-block-label,
  .trust-block-title,
  .trust-block-lead,
  .trust-rating-card,
  .trust-quote-card,
  .project-gallery-intro,
  .project-marquee,
  .trust-block-cta,
  .trust-stars span {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .project-tile img,
  .project-tile-overlay,
  .project-tile-zoom {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .project-marquee-track {
    animation: none !important;
  }
  .project-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .project-marquee-group[data-marquee-clone] {
    display: none;
  }
}

/* Why Elect-SA — dark fill on ::before (clipped + soft shadow); content unclipped */
.why-electsa {
  --why-slant: var(--section-slant);
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: none;
  overflow: visible;
  margin-top: 0;
  isolation: isolate;
}
.why-electsa::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--why-slant),
    100% 0,
    100% calc(100% - var(--why-slant)),
    0 100%
  );
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.7));
}
.why-electsa::after {
  content: none;
  display: none;
}
.why-electsa > .container {
  position: relative;
  z-index: 1;
}
.how-we-work {
  background: #fff;
  border-bottom: none;
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding-top: 2px;
}
/* Soft AA cover over why-electsa bottom diagonal */
.how-we-work::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--section-slant) + 3px);
  transform: translateY(-100%);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    #ffffff calc(50% + var(--slant-aa)),
    #ffffff 100%
  );
}
.why-electsa-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(6.25rem, 11vw, 9.5rem);
  padding-bottom: clamp(6.25rem, 11vw, 9.5rem);
}
.why-electsa-media {
  position: relative;
  width: 171%;
  max-width: none;
  margin: 0 0 0 -22%;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-electsa.is-inview .why-electsa-media {
  opacity: 1;
  transform: translateY(0);
}
.why-electsa-glow {
  position: absolute;
  inset: 12% 8% 16% 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(48, 184, 62, 0.08) 0%,
    transparent 70%
  );
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}
.why-electsa-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(1825px, 94vh);
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: 0;
  filter: brightness(0.85) sepia(0.28) saturate(1.2) hue-rotate(-12deg);
}
.why-electsa-bolt {
  position: relative;
  z-index: 1;
  margin-top: -0.85rem;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-electsa-bolt svg {
  display: block;
  width: 72%;
  max-width: 240px;
  height: 32px;
  overflow: visible;
}
.why-electsa-bolt-line {
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(48, 184, 62, 0.4));
}
.why-electsa-bolt-icon {
  fill: var(--green);
  filter: drop-shadow(0 0 6px rgba(48, 184, 62, 0.65));
}

.why-electsa-content {
  max-width: 40rem;
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
}
.why-electsa-title,
.why-electsa-lead,
.why-electsa-checks li,
.why-electsa-actions,
.why-electsa-divider {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-electsa.is-inview .why-electsa-title { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.why-electsa.is-inview .why-electsa-lead { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.why-electsa.is-inview .why-electsa-checks li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.why-electsa.is-inview .why-electsa-checks li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }
.why-electsa.is-inview .why-electsa-checks li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.why-electsa.is-inview .why-electsa-checks li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.46s; }
.why-electsa.is-inview .why-electsa-checks li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }
.why-electsa.is-inview .why-electsa-checks li:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }
.why-electsa.is-inview .why-electsa-actions { opacity: 1; transform: translateY(0); transition-delay: 0.68s; }
.why-electsa.is-inview .why-electsa-divider { opacity: 1; transform: none; transition-delay: 0.8s; }

.why-electsa-title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: #fff;
}
.why-electsa-lead {
  margin: 1.4rem 0 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}
.why-electsa-lead--second {
  margin-top: 0.85rem;
}
.why-electsa.is-inview .why-electsa-lead--second {
  transition-delay: 0.24s;
}
.why-electsa-checks {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.75rem;
  list-style: none;
  padding: 0;
}
.why-electsa-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.why-electsa-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--green);
}
.why-electsa-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.why-electsa-divider {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 4.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .why-electsa-media,
  .why-electsa-title,
  .why-electsa-lead,
  .why-electsa-checks li,
  .why-electsa-actions,
  .why-electsa-divider {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .why-electsa {
    --why-slant: 56px;
  }
  .local-area,
  .local-area-frame,
  .local-area-shell {
    --local-slant: 56px;
  }
  .local-area-inner {
    grid-template-columns: 1fr;
    padding-top: 4.75rem;
    padding-bottom: 1.85rem;
    gap: 1.35rem;
  }
  .local-area-visual {
    display: contents;
  }
  .local-area-map {
    order: 1;
    max-width: 260px;
    margin-inline: auto;
    width: 100%;
  }
  .local-area-copy {
    order: 2;
  }
  .local-area-media {
    order: 3;
    justify-content: center;
    max-width: 300px;
    margin: 0.4rem auto 0;
    width: 100%;
    padding-bottom: 0.2rem;
  }
  .local-area-van,
  .local-area-van-body,
  .local-area-van-rig {
    max-width: 280px;
    width: 100%;
  }
  .local-area-cta,
  .local-area-cta.btn-electric {
    width: 100%;
    max-width: 100%;
  }
  .local-area-cta .btn-electric-inner {
    width: 100%;
    justify-content: center;
  }
  .why-electsa-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }
  .why-electsa-media {
    width: 100%;
    max-width: 995px;
    margin: 0 auto;
    order: -1;
  }
  .why-electsa-img {
    max-height: min(1115px, 84vh);
  }
  .why-electsa-content {
    max-width: none;
    padding-left: 0;
    margin-left: 0;
  }
  .why-electsa-checks {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .why-electsa-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .why-electsa-actions .btn-electric {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .why-electsa-media {
    max-width: 100%;
  }
  .why-electsa-img {
    max-height: min(52vh, 420px);
  }
}

/* How we work — editorial asymmetric process */
.how-we-work-inner {
  padding-top: clamp(5.5rem, 10vw, 8.5rem);
  padding-bottom: clamp(5.5rem, 10vw, 8.5rem);
}
.how-we-work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}

.how-we-work-intro {
  position: sticky;
  top: 7rem;
  max-width: 26rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-we-work.is-inview .how-we-work-intro {
  opacity: 1;
  transform: translateY(0);
}
.how-we-work-label {
  margin: 0;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.how-we-work-title {
  margin-top: 1.15rem;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
}
.how-we-work-lead {
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 500;
}
.how-we-work-btn {
  margin-top: 2.25rem;
}

.how-we-work-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ebebeb;
}
.how-step {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding: 1.85rem 0 1.85rem 1.15rem;
  margin: 0;
  border-bottom: 1px solid #ebebeb;
  border-left: 2px solid transparent;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    padding-left 0.35s ease;
}
.how-we-work.is-inview .how-step {
  opacity: 1;
  transform: translateY(0);
}
.how-we-work.is-inview .how-step:nth-child(1) { transition-delay: 0.1s, 0s, 0s, 0s, 0s; }
.how-we-work.is-inview .how-step:nth-child(2) { transition-delay: 0.18s, 0s, 0s, 0s, 0s; }
.how-we-work.is-inview .how-step:nth-child(3) { transition-delay: 0.26s, 0s, 0s, 0s, 0s; }
.how-we-work.is-inview .how-step:nth-child(4) { transition-delay: 0.34s, 0s, 0s, 0s, 0s; }

.how-step-num {
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(20, 20, 20, 0.12);
  transition: color 0.35s ease;
}
.how-step-body {
  padding-top: 0.15rem;
}
.how-step-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s ease;
}
.how-step-text {
  margin: 0.55rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
  max-width: 28rem;
}

.how-step:hover {
  transform: translateX(4px);
  border-left-color: var(--green);
  background: linear-gradient(90deg, rgba(48, 184, 62, 0.04) 0%, transparent 55%);
  padding-left: 1.35rem;
}
.how-step:hover .how-step-num {
  color: var(--green);
}
.how-step:hover .how-step-title {
  color: var(--green-dark);
}

@media (prefers-reduced-motion: reduce) {
  .how-we-work-intro,
  .how-step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .how-step:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .how-we-work-layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .how-we-work-intro {
    position: static;
    max-width: 34rem;
  }
  .how-step {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1rem 1.25rem;
    padding-left: 0.85rem;
  }
  .how-step:hover {
    padding-left: 1.05rem;
  }
}

@media (max-width: 480px) {
  .how-step {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .how-step-num {
    font-size: 1.55rem;
  }
  .how-we-work-btn {
    width: 100%;
  }
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.8rem;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}
.why-card:hover, .review-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}
.why-card, .review-card {
  padding: 1.7rem;
}
.why-icon {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin-bottom: 1.1rem;
  border-radius: 0;
}
.why-card h3, .review-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.why-card p, .review-card p { color: var(--muted); }

/* Reviews */
.score-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.4rem;
  padding: 1.1rem 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.stars { color: #fbbf24; letter-spacing: 0.15em; font-size: 1.35rem; }
.score-box .score {
  font-size: 1.85rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.badge {
  display: inline-block;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.2rem;
}
.badge-outline {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(20, 20, 20, 0.7);
  font-weight: 500;
}

/* Services */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}

.diensten {
  background: #fff;
  color: var(--ink);
  border: 0 none transparent;
  border-block: none;
  border-inline: none;
  position: relative;
  z-index: 2;
  box-shadow: none;
  outline: none;
  margin-bottom: 0;
}
.diensten-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.diensten-intro {
  max-width: 46rem;
}
.diensten-intro .section-title {
  color: var(--ink);
  max-width: 14ch;
}
.diensten-intro .section-lead {
  max-width: 42rem;
}
.diensten-cta {
  flex-shrink: 0;
}
.diensten-grid {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.dienst-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  isolation: isolate;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.dienst-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.dienst-card:hover {
  border-color: rgba(48, 184, 62, 0.35);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(48, 184, 62, 0.08);
  transform: translateY(-4px);
}
.dienst-card:hover::before {
  transform: scaleY(1);
}
.dienst-card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface);
}
.dienst-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 42%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.22) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease, background 0.35s ease;
}
.dienst-card:hover .dienst-card-media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, transparent 40%),
    linear-gradient(0deg, rgba(36, 154, 49, 0.2) 0%, transparent 52%);
}
.dienst-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.dienst-card:hover .dienst-card-media img {
  transform: scale(1.06);
}
.dienst-card-index {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--green);
  padding: 0.42rem 0.62rem;
  border-radius: 8px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(48, 184, 62, 0.35);
}
.dienst-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.45rem 1.55rem;
  padding-right: 3.5rem;
  gap: 0.55rem;
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}
.dienst-card-body h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.45vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: var(--ink);
  transition: color 0.25s ease;
}
.dienst-card:hover .dienst-card-body h3 {
  color: var(--green-dark);
}
.dienst-card-body p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
}
.dienst-card-arrow {
  position: absolute;
  right: 1.25rem;
  bottom: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(48, 184, 62, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.dienst-card-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: -2px;
}
.dienst-card:hover .dienst-card-arrow {
  background: var(--green-dark);
  transform: translateX(4px);
  box-shadow: 0 12px 26px rgba(36, 154, 49, 0.35);
}

.diensten-more {
  margin-top: 2.75rem;
  padding: 1.75rem 2rem;
  border-radius: 18px;
  background: var(--surface);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
}
.diensten-more-label {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.diensten-more-text {
  margin: 0.45rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
  max-width: 22ch;
}
.diensten-more-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  row-gap: 0;
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.diensten-more-list li {
  display: flex;
  min-height: 0;
}
.diensten-more-list a {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.diensten-more-list a > span:first-child {
  flex: 1;
  min-width: 0;
}
.diensten-more-list li:nth-child(1) a,
.diensten-more-list li:nth-child(2) a {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.diensten-more-arrow {
  color: var(--green);
  flex-shrink: 0;
  align-self: center;
  line-height: 1;
  transition: transform 0.2s ease;
}
.diensten-more-list a:hover {
  color: var(--green-dark);
}
.diensten-more-list a:hover .diensten-more-arrow {
  transform: translateX(3px);
}

.diensten-note {
  margin: 2.5rem auto 0;
  max-width: 48rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.service-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--dark-card);
  color: #fff;
  transition: 0.3s ease;
}
.service-card:hover { transform: none; }
.service-card:hover .thumb img { transform: scale(1.03); }
.service-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.service-card:hover .thumb img { transform: scale(1.05); }
.service-card .body {
  padding: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}
.service-card h3 { font-size: 1.05rem; }
.service-card p {
  margin-top: 0.45rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.arrow-pill {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.arrow-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: -2px;
}

/* Local area — clip on shell; soft AA feathers on unclipped frame (above the edge) */
.local-area-frame {
  --local-slant: var(--section-slant);
  background: #ffffff;
  border: none;
  outline: none;
  box-shadow: none;
  margin-top: 0;
  margin-bottom: -1px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.local-area-shell {
  --local-slant: var(--section-slant);
  position: relative;
  background: #0a0a0a;
  border: none;
  outline: none;
  box-shadow: none;
  overflow: visible;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--local-slant),
    100% 0,
    100% calc(100% - var(--local-slant)),
    0 100%
  );
}
.local-area {
  --local-slant: var(--section-slant);
  position: relative;
  z-index: 1;
  background: transparent;
  color: #fff;
  overflow: visible;
  border: 0 none transparent;
  border-block: none;
  border-inline: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  clip-path: none;
}
.local-area-shell::before,
.local-area-shell::after,
.local-area::before,
.local-area::after {
  content: none !important;
  display: none !important;
}
/* Extra soft white fringe from the parent (not clipped) */
.local-area-frame::before,
.local-area-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
  display: block;
}
.local-area-frame::before {
  top: 0;
  height: var(--local-slant);
  background: linear-gradient(
    to bottom right,
    #ffffff 0,
    #ffffff calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.45) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.local-area-frame::after {
  bottom: 0;
  height: var(--local-slant);
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.45) 50%,
    #ffffff calc(50% + var(--slant-aa)),
    #ffffff 100%
  );
}
/* Contact home — white, content left / form right */
.contact-home {
  background: #ffffff;
  color: var(--ink);
  border: none;
  position: relative;
  z-index: 2;
  margin-top: -1px;
  /* Extra white air under local-area slant (~button height) */
  padding-top: calc(clamp(4.5rem, 8vw, 7.5rem) + 3.5rem);
}
.contact-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-home-copy {
  max-width: 34rem;
  padding-top: 0.35rem;
}
.contact-home-copy .section-title {
  color: var(--ink);
  max-width: 16ch;
}
.contact-home-lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
}
.contact-home-checks {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.contact-home-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-home-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--green);
}
.contact-home-social {
  margin-top: 1.85rem;
  padding-top: 1.35rem;
  border-top: 1px solid #ececec;
  max-width: 28rem;
}
.contact-home-social-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.contact-home-social-lead {
  margin: 0.45rem 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}
.city-direct-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
  margin: 0.85rem 0 0.65rem;
}
.city-direct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.city-direct-btn svg {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
}
.city-direct-btn--wa {
  background: var(--green);
  color: #fff;
  border: 1.5px solid var(--green);
}
.city-direct-btn--wa:hover {
  background: var(--green-dark, #1f862a);
  border-color: var(--green-dark, #1f862a);
  color: #fff;
}
.city-direct-btn--call {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #d8d8d8;
}
.city-direct-btn--call:hover {
  border-color: var(--ink);
  background: rgba(20, 20, 20, 0.03);
}
.page-city .contact-home-social {
  max-width: 100%;
}
.contact-home-social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.55rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.contact-social-btn:hover {
  border-color: rgba(48, 184, 62, 0.55);
  color: var(--green);
  background: var(--green-soft);
}
.contact-social-btn svg {
  flex-shrink: 0;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  min-width: 7.5rem;
  min-height: 2.45rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer-social-link svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.footer-social-link:hover {
  color: #fff;
  border-color: rgba(48, 184, 62, 0.65);
  background: rgba(48, 184, 62, 0.12);
}
.diensten-lead-second {
  margin-top: 0.85rem;
}
/* Direct contact strip — before form grid, no AI card stack */
.contact-direct-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}
.contact-direct-strip-copy {
  max-width: 28rem;
}
.contact-direct-strip-title {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}
.contact-direct-strip-lead {
  margin: 0.7rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}
.contact-direct-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}
.contact-direct-strip-row {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  min-width: 0;
}
.contact-direct-strip-row--primary {
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
}
.contact-direct-strip-row--secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contact-direct-strip-row--secondary .contact-direct-cta--full {
  grid-column: 1 / -1;
}
.contact-direct-strip-row .contact-direct-cta {
  width: 100%;
  min-width: 0;
}
.contact-direct-cta.btn-electric {
  border-radius: 8px;
}
.contact-direct-cta--phone .btn-electric-inner {
  justify-content: center;
  white-space: nowrap;
}
.contact-direct-cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(20, 20, 20, 0.18);
}
.contact-direct-cta--ghost:hover {
  border-color: var(--ink);
  background: rgba(20, 20, 20, 0.03);
}
.contact-direct-cta--ghost .btn-waves .ewave {
  stroke: rgba(48, 184, 62, 0.85);
  filter: drop-shadow(0 0 3px rgba(48, 184, 62, 0.45));
}
.contact-direct-cta--ghost .btn-lightning svg {
  fill: var(--green);
}
.contact-direct-cta--social {
  min-width: 0;
}
.contact-direct-cta--social .btn-electric-inner {
  gap: 0.45rem;
  padding-inline: 0.75rem;
  justify-content: center;
}
.contact-direct-cta--social:hover {
  border-color: rgba(48, 184, 62, 0.55);
  color: var(--green);
  background: var(--green-soft);
}
.contact-direct-strip-meta {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.contact-home-form {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.07);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 20px;
}
.contact-home-submit {
  margin-top: 1.15rem;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
}
.contact-home-submit.btn-electric {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(48, 184, 62, 0.28);
}
.contact-home-submit.btn-electric .btn-electric-inner {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
}
.contact-home-submit.btn-electric:hover {
  background: #1f862a;
  box-shadow: 0 10px 28px rgba(48, 184, 62, 0.36);
}

/* FAQ under contact form — SEO / AI Search */
.faq-under {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  scroll-margin-top: 6rem;
}
.faq-under-head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.faq-under-head .section-title {
  color: var(--ink);
  max-width: 18ch;
}
.faq-under-lead {
  margin: 0.9rem 0 0;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
}
.faq-under-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  align-items: start;
}
.faq-under-item {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 0 1.15rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-under-item[open] {
  border-color: rgba(48, 184, 62, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}
.faq-under-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 0;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--ink);
}
.faq-under-item summary::-webkit-details-marker { display: none; }
.faq-under-item summary span {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  font-size: 0;
  line-height: 0;
  padding: 0;
  overflow: visible;
  transition: transform 0.2s ease;
}
/* Plus / cross — alleen streepjes, geen cirkel */
.faq-under-item summary span::before,
.faq-under-item summary span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: currentColor;
  border-radius: 1px;
  transform: none;
}
.faq-under-item summary span::before {
  width: 12px;
  height: 2px;
}
.faq-under-item summary span::after {
  width: 2px;
  height: 12px;
}
.faq-under-item[open] summary span {
  transform: rotate(45deg);
  background: transparent;
}
.faq-under-item p {
  margin: 0;
  padding: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-under-item p a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.faq-under-item p a:hover {
  text-decoration: underline;
}
.faq-under-item strong {
  color: var(--ink);
  font-weight: 600;
}

/* Related pages — duidelijke paginalinks (geen pill-tags) */
.related-pages {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: #f6f8f6;
  border-top: 1px solid rgba(15, 23, 20, 0.06);
}
.related-pages-inner {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}
.related-pages-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.related-pages-title {
  margin: 0 0 1.65rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.related-pages-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
}
.related-pages-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem 0.7rem 1.05rem;
  font-size: 0.94rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-radius: 10px;
  border: 1.5px solid rgba(15, 23, 20, 0.12);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 20, 0.04);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.related-pages-nav a::after {
  content: "";
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.1rem;
  border-right: 2px solid var(--green);
  border-top: 2px solid var(--green);
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.related-pages-nav a:hover,
.related-pages-nav a:focus-visible {
  color: var(--ink);
  border-color: rgba(36, 154, 49, 0.55);
  background: #f3faf4;
  box-shadow: 0 4px 14px rgba(36, 154, 49, 0.12);
  transform: translateY(-1px);
  outline: none;
}
.related-pages-nav a:hover::after,
.related-pages-nav a:focus-visible::after {
  transform: rotate(45deg) translate(1px, -1px);
  border-color: var(--green-dark, #249a31);
}
@media (max-width: 640px) {
  .related-pages-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  .related-pages-nav a {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* Legacy FAQ (other pages) */
.faq-list { max-width: 48rem; margin: 2.4rem auto 0; }
.faq-item {
  margin-bottom: 0.7rem;
  padding: 0 1.15rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  font-size: 0;
  line-height: 0;
  padding: 0;
  overflow: visible;
  transition: transform 0.2s ease;
}
.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.faq-item summary span::before {
  width: 12px;
  height: 2px;
}
.faq-item summary span::after {
  width: 2px;
  height: 12px;
}
.faq-item[open] summary span {
  transform: rotate(45deg);
  background: transparent;
}
.faq-item p {
  padding-bottom: 1.15rem;
  color: var(--muted);
}
.contact-home + .section-sm,
.contact-home + .section-sm.bg-surface {
  border: 0 none transparent !important;
  border-block: none !important;
  border-inline: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 1;
  background: var(--surface);
}
.section-sm.bg-surface {
  border: 0 none transparent !important;
  border-block: none !important;
  box-shadow: none !important;
}
.local-area-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: center;
  padding-top: clamp(6.25rem, 11vw, 9.5rem);
  padding-bottom: clamp(6.25rem, 11vw, 9.5rem);
}
.local-area-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: none;
}
.local-area-label {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.local-area-title {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
  max-width: 22ch;
}
.local-area-lead {
  margin: 0.95rem 0 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.local-area-checks {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.local-area-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.local-area-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--green);
}
.local-area-cta {
  margin-top: 1.45rem;
}
.local-area-cities {
  margin: 1.15rem 0 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.55rem;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.local-area-cities-label {
  flex: 0 0 100%;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.local-area-city {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.local-area-city:not(:last-child)::after {
  content: "·";
  margin-left: 0.55rem;
  color: var(--green);
  font-weight: 700;
}
.local-area-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  justify-self: center;
}
.local-area-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0.85rem;
}
.local-area-van-rig {
  position: relative;
  width: 100%;
  max-width: 320px;
  will-change: transform;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5));
}
.local-area-van-rig.is-waiting {
  transform: translate3d(112%, 0, 0);
}
.local-area-van-rig.is-parked {
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
.local-area-van,
.local-area-van-body {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}
.local-area-van-wheel {
  position: absolute;
  width: 11.198%;
  height: auto;
  pointer-events: none;
  user-select: none;
  transform-origin: 50% 50%;
  will-change: transform;
}
.local-area-van-wheel--front {
  left: 11.263%;
  top: 61.23%;
}
.local-area-van-wheel--rear {
  left: 74.089%;
  top: 61.914%;
}
@media (prefers-reduced-motion: reduce) {
  .local-area-van-rig.is-waiting {
    transform: none;
  }
  .local-area-van-wheel {
    will-change: auto;
  }
}
.local-area-map {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
  max-width: 300px;
}
.local-area-map-label {
  margin: 0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.local-area-map-regions {
  margin: 0.3rem 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.local-area-map-svg {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  overflow: visible;
}
.local-map-be {
  fill: rgba(255, 255, 255, 0.055);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  stroke-linejoin: round;
}
.local-map-flanders {
  fill: #30b83e;
  fill-opacity: 0.88;
  stroke: #5ee06a;
  stroke-width: 1.35;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 28px rgba(48, 184, 62, 0.28));
}
.local-map-dot {
  fill: #fff;
  stroke: #0a0a0a;
  stroke-width: 1.6;
}
.local-map-dot-ring {
  fill: rgba(48, 184, 62, 0.35);
  stroke: none;
}
.local-map-cities text {
  fill: rgba(255, 255, 255, 0.95);
  font-size: 11.5px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}
/* Legacy local helpers still used elsewhere */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}
.check-list { margin-top: 1.6rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 1.7rem;
}
.city-chips span {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.map-card {
  aspect-ratio: 1;
  max-width: 360px;
  margin-inline: auto;
  border-radius: 22px;
  background: #eef7ef;
  padding: 1.4rem;
}
.map-card svg { width: 100%; height: auto; }

/* Trust checks */
.trust-checks .item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  font-weight: 600;
}

/* Slogan */
.slogan {
  max-width: 52rem;
  margin: 0 auto;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
  white-space: pre-line;
}

/* Mid CTA */
.mid-cta {
  border-radius: 22px;
  background: #000;
  color: #fff;
  padding: 2.4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.mid-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 28rem;
}
.mid-cta p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 32rem;
}

/* Contact block */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.85fr;
  gap: 1.75rem;
}
.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.input, .select, .textarea {
  width: 100%;
  border: 1px solid #e2e2e2;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
  transition: 0.2s ease;
  font: inherit;
  line-height: 1.35;
  box-sizing: border-box;
}
.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.6rem;
  background-color: #f3f3f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 1rem;
  cursor: pointer;
}
.select:invalid,
.select option[value=""][disabled] {
  color: #6b6b6b;
}
.select option {
  color: var(--ink);
  background: #fff;
}
.input:focus, .select:focus, .textarea:focus {
  background-color: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(48, 184, 62, 0.15);
}
.select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2330b83e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 1rem;
}
.textarea { min-height: 130px; resize: vertical; }
.form-consent-field {
  margin-top: 0.2rem;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--muted, #5c5c5c);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.12rem;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}
.form-consent a {
  color: var(--green-dark, #249a31);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent a:hover {
  color: var(--green);
}
.form-note {
  margin-top: 0.7rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.contact-side {
  background: var(--dark-card);
  border-radius: 18px;
  padding: 1.7rem;
}
.contact-side .icon-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #000;
  margin-bottom: 1rem;
  object-fit: contain;
}
.contact-side h3 { font-size: 1.25rem; margin-bottom: 1.1rem; }
.contact-side li { margin-bottom: 1rem; }
.contact-side .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}
.contact-side a:hover { color: var(--green); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.show { display: block; }
.form-card.sent .form-fields { display: none; }
.form-error {
  display: none;
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  font-size: 0.92rem;
  line-height: 1.45;
}
.form-error.show { display: block; }
.form-fields [type="submit"].is-sending {
  opacity: 0.72;
  pointer-events: none;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
}
.site-footer > .container {
  width: min(1400px, calc(100% - 2rem));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
.footer-grid h3 {
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--green);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-grid p { color: rgba(255, 255, 255, 0.65); max-width: 20rem; margin: 1rem 0 1.15rem; font-size: 0.92rem; line-height: 1.55; }
.footer-grid ul li { margin-bottom: 0.65rem; color: rgba(255, 255, 255, 0.75); }
.footer-grid a:hover { color: #fff; }
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  max-width: 22rem;
}
.footer-cta-primary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}
.footer-cta-primary .btn {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1;
  justify-content: center;
}
.footer-cta-primary .btn:hover {
  transform: none;
}
.footer-cta-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}
.footer-cta-social .footer-social-link {
  width: 100%;
  min-width: 0;
  justify-content: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}
.footer-bottom-social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-bottom .footer-social-link {
  min-width: 7.25rem;
  min-height: 2.25rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}
.footer-bottom p {
  margin: 0;
}

/* Services page — premium editorial */
.services-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(94vh, 900px);
  color: #fff;
  overflow: hidden;
  background: #050505;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--section-slant)),
    0 100%
  );
}
.services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("../images/services-hero-bg.jpg") center 42% / cover no-repeat;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.12) brightness(0.34);
  will-change: transform;
  animation: servicesHeroKen 20s ease-in-out infinite alternate;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 34%, rgba(0, 0, 0, 0.28) 62%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 32%, rgba(0, 0, 0, 0.62) 100%);
}
.services-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(105deg, #000 0%, transparent 58%);
}
.services-hero-glow {
  position: absolute;
  left: -10%;
  bottom: 4%;
  width: min(58vw, 620px);
  height: min(46vw, 460px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(48, 184, 62, 0.22) 0%, transparent 70%);
  filter: blur(34px);
}
.services-hero-side {
  position: absolute;
  right: clamp(0.5rem, 2vw, 1.5rem);
  top: 50%;
  z-index: 2;
  margin: 0;
  writing-mode: vertical-rl;
  transform: translateY(-42%) rotate(180deg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.services-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: calc(5.75rem + 76px) 0 clamp(5rem, 10vw, 7.5rem);
}
.services-hero-kicker {
  margin: 0 0 1.1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 10vw, 7.25rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.88;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}
.services-hero-brand::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 1.2rem;
  background: var(--green);
  border-radius: 2px;
  box-shadow: 0 0 22px rgba(48, 184, 62, 0.6);
}
.services-hero-heading-wrap {
  margin: 1.45rem 0 0;
  max-width: min(48rem, 100%);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.14s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}
.services-hero h1 {
  margin: 0;
  display: inline;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.1;
}
.services-hero-h1-rest {
  display: inline;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.1;
  color: #fff;
}
.services-hero-lead {
  margin: 1.25rem 0 0;
  max-width: 50rem;
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.24s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.24s;
}
.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.36s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.36s;
}
.services-hero-bolt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  width: min(100%, 420px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.46s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.46s;
}
.services-hero-bolt-rule {
  flex: 1 1 auto;
  height: 1.5px;
  min-width: 1.5rem;
  background: linear-gradient(90deg, transparent, var(--green) 18%, var(--green) 82%, transparent);
  opacity: 0.75;
  border-radius: 2px;
}
.services-hero-bolt-icon {
  display: inline-flex;
  color: var(--green);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(48, 184, 62, 0.55));
}
.services-hero-bolt-icon svg {
  display: block;
}
.services-hero .hero-google-badge--bolt {
  margin: 0;
  padding: 0;
  gap: 0.4rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 1;
  transform: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.services-hero .hero-google-badge--bolt:hover {
  background: transparent;
  transform: translateY(-1px);
  opacity: 0.88;
}
.services-hero .hero-google-badge--bolt .google-g-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border-radius: 4px;
}
.services-hero .hero-google-badge--bolt .hero-google-score {
  font-size: 0.84rem;
}
.services-hero .hero-google-badge--bolt .hero-google-stars {
  font-size: 0.7rem;
}
.services-hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: calc(var(--section-slant) + 1.5rem);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
.services-hero-scroll::after {
  content: "";
  width: 1px;
  height: 2.4rem;
  background: linear-gradient(180deg, var(--green), transparent);
  animation: servicesScrollPulse 1.8s ease-in-out infinite;
}
.services-hero.is-ready .services-hero-kicker,
.services-hero.is-ready .services-hero-brand,
.services-hero.is-ready .services-hero-heading-wrap,
.services-hero.is-ready .services-hero-lead,
.services-hero.is-ready .services-hero-actions,
.services-hero.is-ready .services-hero-bolt {
  opacity: 1;
  transform: translateY(0);
}
@keyframes servicesHeroKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.4%, -0.8%, 0); }
}
@keyframes servicesScrollPulse {
  0%, 100% { transform: scaleY(0.7); opacity: 0.35; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}
@media (prefers-reduced-motion: reduce) {
  .services-hero-bg { animation: none; transform: scale(1.05); }
  .services-hero-scroll::after { animation: none; }
  .services-hero-kicker,
  .services-hero-brand,
  .services-hero-heading-wrap,
  .services-hero-lead,
  .services-hero-actions,
  .services-hero-bolt {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.services-hero + .services-nav { position: relative; z-index: 2; }

/* Services jump nav */
.services-nav {
  background: #fff;
  color: var(--ink);
  border-bottom: none;
  padding: 1.35rem 0 1.55rem;
}
.services-nav-wrap {
  display: grid;
  gap: 0.85rem;
  position: relative;
  padding-bottom: 1.15rem;
}
.services-nav-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(62.21rem, 100%);
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}
.services-nav-title {
  margin: 0;
  text-align: center;
  color: #8a8a8a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.services-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  justify-content: center;
}
.services-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.4rem 0.95rem 0.4rem 0.7rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.services-nav a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  height: 1.35rem;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.services-nav a:hover {
  color: var(--green);
  background: var(--green-soft);
  transform: translateY(-1px);
}
.services-nav a:hover span {
  background: #fff;
  color: var(--green-dark);
}

@media (max-width: 900px) {
  .services-nav {
    padding: 0.85rem 0 0.95rem;
  }
  .services-nav-wrap {
    gap: 0.5rem;
    padding-bottom: 0.75rem;
  }
  .services-nav-title {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .services-nav-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 0.35rem;
    justify-content: stretch;
  }
  .services-nav a {
    min-height: 0;
    padding: 0.28rem 0.35rem 0.28rem 0.28rem;
    gap: 0.35rem;
    font-size: 0.78rem;
    border-radius: 6px;
    width: 100%;
    min-width: 0;
  }
  .services-nav a span {
    min-width: 1.3rem;
    height: 1.15rem;
    font-size: 0.62rem;
    border-radius: 4px;
    flex-shrink: 0;
  }
}

/* Premium service blocks */
.service-block {
  position: relative;
  background: #fff;
  padding: clamp(1.75rem, 3.5vw, 3rem) 0;
  scroll-margin-top: 5.5rem;
  overflow: hidden;
}
.service-block--dark {
  --service-slant: var(--section-slant);
  z-index: 1;
  overflow: visible;
  isolation: isolate;
  /* White fill in the cut triangles so adjacent light blocks read continuously */
  background: #fff;
  color: #fff;
  padding-top: calc(clamp(2.75rem, 5.5vw, 4.5rem) + var(--service-slant));
  padding-bottom: calc(clamp(2.75rem, 5.5vw, 4.5rem) + var(--service-slant));
}
/* Last dark block → Vertrouwen: keep cut triangles white (no gray band) */
.service-block--dark:has(+ .services-why) {
  background: #fff;
}
.service-block--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(48, 184, 62, 0.08), transparent 42%),
    linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--service-slant),
    100% 0,
    100% calc(100% - var(--service-slant)),
    0 100%
  );
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.7));
}
.service-block--dark > .container {
  position: relative;
  z-index: 1;
}
.service-block-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.25rem, 5.5vw, 5rem);
  align-items: center;
}
.service-block-grid.service-block--flip .service-block-media { order: 2; }
.service-block-grid.service-block--flip .service-gallery { order: 2; }
.service-gallery {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}
.service-gallery-main {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
}
.service-gallery-item:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.service-gallery-main::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 4px;
  z-index: 2;
  background: var(--green);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 18px rgba(48, 184, 62, 0.45);
  pointer-events: none;
}
.service-block-grid.service-block--flip .service-gallery-main::after {
  left: auto;
  right: 0;
  border-radius: 4px 0 0 4px;
}
.service-gallery-main img,
.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}
.service-gallery-main:hover img,
.service-gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.05);
}
.service-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}
.service-gallery-thumbs .service-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
}
/* 3 thumbs: equal thirds */
.service-gallery-thumbs:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* 4 thumbs */
.service-gallery-thumbs:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* Max 1 thumb row (4): extras stay in lightbox navigation */
.service-gallery-thumbs > :nth-child(n + 5) {
  display: none;
}
.service-gallery-thumbs:has(> :nth-child(5)) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-gallery-thumbs:has(> :nth-child(5)) > :nth-child(4)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(10, 14, 12, 0.58);
  color: #fff;
  font-family: inherit;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.service-gallery-thumbs:has(> :nth-child(5):last-child) > :nth-child(4)::after {
  content: "+1";
}
.service-gallery-thumbs:has(> :nth-child(6):last-child) > :nth-child(4)::after {
  content: "+2";
}
.service-gallery-thumbs:has(> :nth-child(7):last-child) > :nth-child(4)::after {
  content: "+3";
}
.service-gallery-thumbs:has(> :nth-child(8):last-child) > :nth-child(4)::after {
  content: "+4";
}

.service-block-media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}
.service-block-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.service-block-media::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 4px;
  z-index: 3;
  background: var(--green);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 18px rgba(48, 184, 62, 0.45);
}
.service-block-grid.service-block--flip .service-block-media::after {
  left: auto;
  right: 0;
  border-radius: 4px 0 0 4px;
}
.service-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
  filter: saturate(1.05) contrast(1.04);
}
.service-block-media:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.08);
}
.service-block-copy {
  position: relative;
  max-width: 34rem;
  z-index: 1;
}
.service-block-index {
  position: absolute;
  right: -0.08em;
  top: -0.12em;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(11rem, 22vw, 13.75rem); /* ~176–220px */
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.78;
  color: rgba(15, 15, 15, 0.035);
  pointer-events: none;
  user-select: none;
}
.service-block--dark .service-block-index {
  color: rgba(255, 255, 255, 0.03);
}
.service-block-label {
  position: relative;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-block-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.65rem;
  padding: 0 0.5rem;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green-dark);
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}
.service-block--dark .service-block-label span {
  background: rgba(48, 184, 62, 0.16);
  color: #7dff88;
}
.service-block-copy h2 {
  position: relative;
  margin-top: 1rem;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
}
.service-block--dark .service-block-copy h2 { color: #fff; }
.service-block-lead {
  position: relative;
  margin: 1.15rem 0 0;
  font-size: 1.06rem;
  line-height: 1.7;
  color: #5a5a5a;
  font-weight: 500;
}
.service-block--dark .service-block-lead { color: rgba(255, 255, 255, 0.7); }
.service-block-checks {
  position: relative;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.service-block-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.service-block--dark .service-block-checks li { color: rgba(255, 255, 255, 0.92); }
.service-check {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 0.1rem;
}
.service-check circle,
.services-why-check circle {
  display: none;
}
.service-block-seo {
  position: relative;
  margin: 1.4rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--green);
  background: rgba(48, 184, 62, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
  border-radius: 0 12px 12px 0;
}
.service-block--dark .service-block-seo {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.62);
}
.service-block-cta { position: relative; margin-top: 1.75rem; }
.service-werkgebied {
  position: relative;
  z-index: 1;
  margin: 1.15rem 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6a6a6a;
  letter-spacing: -0.01em;
}
.service-werkgebied span {
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-block--dark .service-werkgebied {
  color: rgba(255, 255, 255, 0.55);
}
.service-block--dark .service-werkgebied span {
  color: var(--green);
}

/* SEO depth under each service block (prose + mini FAQ) */
.service-seo-depth {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.service-block--dark .service-seo-depth {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.service-seo-depth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.service-seo-prose h3,
.service-seo-faq h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.service-block--dark .service-seo-prose h3,
.service-block--dark .service-seo-faq h3 { color: #fff; }
.service-seo-prose p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  font-weight: 500;
}
.service-seo-prose p:last-child { margin-bottom: 0; }
.service-block--dark .service-seo-prose p { color: rgba(255, 255, 255, 0.68); }
.service-seo-faq-item {
  margin: 0 0 0.55rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0 0.95rem;
  background: rgba(255, 255, 255, 0.7);
}
.service-block--dark .service-seo-faq-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.service-seo-faq-item[open] {
  border-color: rgba(48, 184, 62, 0.4);
}
.service-seo-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink);
}
.service-block--dark .service-seo-faq-item summary { color: rgba(255, 255, 255, 0.92); }
.service-seo-faq-item summary::-webkit-details-marker { display: none; }
.service-seo-faq-item summary span {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}
.service-seo-faq-item summary span::before,
.service-seo-faq-item summary span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
}
.service-seo-faq-item summary span::before {
  width: 12px;
  height: 2px;
}
.service-seo-faq-item summary span::after {
  width: 2px;
  height: 12px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.service-seo-faq-item[open] summary span::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.service-seo-faq-item p {
  margin: 0 0 0.95rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5c5c5c;
}
.service-block--dark .service-seo-faq-item p { color: rgba(255, 255, 255, 0.62); }

.service-seo-more-btn {
  display: none;
}

@media (max-width: 900px) {
  .service-seo-depth {
    margin-top: 1.15rem;
    padding-top: 1rem;
  }
  .service-seo-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #f6f7f6;
    color: var(--ink);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-align: left;
  }
  .service-block--dark .service-seo-more-btn {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }
  .service-seo-more-chevron {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.7;
  }
  .service-seo-depth.is-open .service-seo-more-chevron {
    transform: rotate(225deg);
  }
  .service-seo-depth.is-collapsed .service-seo-depth-grid {
    display: none;
  }
  .service-seo-depth.is-open .service-seo-depth-grid {
    display: grid;
    margin-top: 1rem;
  }
  .service-seo-depth.is-collapsed {
    padding-bottom: 0;
  }
}

@media (max-width: 900px) {
  .service-seo-depth-grid { grid-template-columns: 1fr; }
}

/* Why Elect-SA — objection closer before final CTA */
.services-why {
  position: relative;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(48, 184, 62, 0.07), transparent 45%),
    radial-gradient(ellipse at 88% 80%, rgba(48, 184, 62, 0.05), transparent 40%),
    #fff;
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
  border-top: none;
  overflow: hidden;
}
.services-why::before {
  content: "Elect-SA";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(15, 15, 15, 0.028);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.services-why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}
.services-why-head {
  max-width: 40rem;
}
.services-why-head .section-label { color: var(--green); }
.services-why-head h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
}
.services-why-lead {
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #5c5c5c;
  font-weight: 500;
  max-width: 36rem;
}
.services-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}
.services-why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.services-why-list li:hover {
  border-color: rgba(48, 184, 62, 0.35);
  background: #fff;
  transform: translateY(-1px);
}
.services-why-check {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--green);
}
.services-why-check svg {
  display: block;
}

@media (max-width: 560px) {
  .services-why-list { grid-template-columns: 1fr; }
}

/* Bottom conversion band */
.services-cta {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
}
.services-cta::before {
  content: none;
  display: none;
}
.services-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.services-cta-copy .section-label { color: var(--green); }
.services-cta-copy h2 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 15ch;
  color: var(--ink);
}
.services-cta-copy p {
  margin: 1.05rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
  font-weight: 500;
}
.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}
.services-cta .btn-electric--outline {
  color: var(--ink);
  border-color: rgba(20, 20, 20, 0.28);
  background: transparent;
}
.services-cta .btn-electric--outline:hover {
  border-color: var(--ink);
  background: rgba(20, 20, 20, 0.04);
}

@media (max-width: 900px) {
  .services-hero-side,
  .services-hero-scroll { display: none; }
  .service-block-grid,
  .service-block-grid.service-block--flip { grid-template-columns: 1fr; }
  .service-block-grid.service-block--flip .service-block-media { order: 0; }
  .service-block-grid.service-block--flip .service-gallery { order: 0; }
  .service-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-gallery-thumbs:has(> :nth-child(3):last-child),
  .service-gallery-thumbs:has(> :nth-child(4):last-child),
  .service-gallery-thumbs:has(> :nth-child(5)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-block-copy { max-width: none; }
  .service-block-index { right: -0.05em; top: -0.1em; }
  .services-why-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-cta-inner { grid-template-columns: 1fr; }
  .services-cta-actions { justify-content: flex-start; }
  .services-cta-copy h2 { max-width: none; }
}

/* Inner pages */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0;
}
.page-hero.dark {
  background: #000;
  color: #fff;
  border: none;
}
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  max-width: 22ch;
  font-weight: 800;
}
.page-hero .lead {
  margin-top: 1.1rem;
  max-width: 40rem;
  font-size: 1.1rem;
  color: var(--muted);
}
.page-hero.dark .lead { color: rgba(255, 255, 255, 0.7); }
.legal-meta {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.legal-section {
  padding-top: 0.5rem;
}
.legal-doc {
  max-width: 46rem;
}
.legal-doc h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}
.legal-doc p,
.legal-doc li {
  color: #3a3a3a;
  line-height: 1.7;
}
.legal-doc ul {
  margin: 0.6rem 0 1rem;
  padding-left: 1.25rem;
}
.legal-doc li + li {
  margin-top: 0.35rem;
}
.legal-doc a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-doc a:hover {
  color: var(--green);
}
.legal-related {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}
.service-detail .media {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail.alt .media { order: 2; }
.local-seo-note {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.chip-nav {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 1.4rem 0;
}
.chip-nav a {
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.chip-nav a:hover {
  border-color: var(--green);
  color: var(--green);
}
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.map-embed {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Large screens — same cqi logic, only widen the stage */
@media (min-width: 1600px) {
  .hero-inner {
    width: min(1480px, calc(100% - 3.5rem));
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 460px);
    column-gap: clamp(1rem, 2vw, 1.75rem);
  }
  .hero-text {
    max-width: none;
    margin-inline-start: 1.75rem;
  }
  .hero-eyebrow {
    font-size: clamp(0.88rem, 0.65vw, 0.98rem);
    margin-bottom: 0.8rem;
  }
  .hero .hero-title,
  h1.hero-title,
  .hero-title {
    font-size: clamp(2.75rem, 8.4cqi, 3.7rem);
  }
  .hero .hero-lead,
  .hero-lead {
    font-size: clamp(1.08rem, 2.7cqi, 1.22rem);
    max-width: 100%;
    width: 100%;
    margin-top: 1.05rem;
  }
  .hero-actions {
    gap: 0.9rem;
    margin-top: 1.35rem;
  }
  .hero-features {
    gap: 1.45rem;
    margin-top: 1.8rem;
  }
  .hero-feature-copy strong {
    font-size: clamp(0.98rem, 0.75vw, 1.1rem);
  }
  .hero-feature-icon {
    width: clamp(2.85rem, 2.1vw, 3.35rem);
    height: clamp(2.85rem, 2.1vw, 3.35rem);
  }
  .hero-visual img {
    width: clamp(400px, 27vw, 500px);
    transform: translate(-12px, 4%);
  }
  .btn-electric--hero {
    font-size: clamp(1rem, 0.82vw, 1.1rem);
  }
  .btn-electric--hero .btn-electric-inner {
    min-height: clamp(3rem, 3.8vh, 3.4rem);
    padding: 0.8rem 1.55rem;
  }
}

@media (min-width: 1920px) {
  .hero-inner {
    width: min(1580px, calc(100% - 4.5rem));
    grid-template-columns: minmax(0, 1.2fr) minmax(380px, 520px);
    column-gap: 1.85rem;
  }
  .hero-text {
    max-width: none;
  }
  .hero .hero-title,
  h1.hero-title,
  .hero-title {
    font-size: clamp(2.9rem, 8.2cqi, 3.85rem);
  }
  .hero .hero-lead,
  .hero-lead {
    font-size: clamp(1.1rem, 2.6cqi, 1.26rem);
    max-width: 100%;
    width: 100%;
  }
  .hero-visual img {
    width: clamp(440px, 26vw, 540px);
    transform: translate(-12px, 4%);
  }
  .hero-feature-copy strong {
    font-size: clamp(1.02rem, 0.8vw, 1.15rem);
  }
  .btn-electric--hero .btn-electric-inner {
    min-height: 3.4rem;
    padding: 0.85rem 1.75rem;
  }
}

@media (min-width: 2560px) {
  .hero-inner {
    width: min(1720px, calc(100% - 5.5rem));
    grid-template-columns: minmax(0, 1.15fr) minmax(440px, 580px);
    column-gap: 2rem;
  }
  .hero .hero-title,
  h1.hero-title,
  .hero-title {
    font-size: clamp(3.05rem, 7.8cqi, 4rem);
  }
  .hero .hero-lead,
  .hero-lead {
    font-size: clamp(1.14rem, 2.5cqi, 1.3rem);
    max-width: 100%;
    width: 100%;
  }
  .hero-visual img {
    width: clamp(480px, 24vw, 600px);
    transform: translate(-10px, 4%);
  }
  .hero-eyebrow {
    font-size: 0.98rem;
  }
  .hero-feature-copy strong {
    font-size: 1.12rem;
  }
  .hero-feature-icon {
    width: 3.35rem;
    height: 3.35rem;
  }
  .btn-electric--hero {
    font-size: 1.08rem;
  }
  .btn-electric--hero .btn-electric-inner {
    min-height: 3.5rem;
    padding: 0.9rem 1.9rem;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .why-electsa-media {
    width: 150%;
    margin-left: -14%;
  }
  .hero-features {
    gap: 1.15rem;
  }
  .trust-elements-list {
    gap: 1.15rem;
  }
}

/* Tablet / mobile — polished later; desktop layout stays above 900px */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-mobile-btn { display: inline-flex; }
  .btn-header-cta { display: none; }
  .header-inner {
    position: relative;
    justify-content: flex-end;
  }
  .header-inner .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .header-inner .logo img {
    height: 36px;
  }
  .header-actions {
    margin-left: auto;
    z-index: 80;
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .diensten-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 1.75rem;
    margin-right: calc(50% - 50vw);
    padding: 0.15rem max(1.25rem, calc(50vw - 50%)) 0.85rem 0;
    grid-template-columns: none;
  }
  .diensten-grid::-webkit-scrollbar {
    display: none;
  }
  .diensten-grid > li {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    min-width: 0;
  }
  .diensten-grid .dienst-card {
    height: 100%;
  }
  .diensten-more {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .diensten-more-text { max-width: none; }
  .local-grid { grid-template-columns: 1fr; }
  .local-area-inner {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-bottom: 1.85rem;
  }
  .local-area-copy {
    max-width: none;
  }
  .local-area-visual {
    display: contents;
  }
  .local-area-map {
    grid-column: auto;
    order: 1;
    max-width: 260px;
    margin-inline: auto;
    width: 100%;
  }
  .local-area-copy {
    order: 2;
  }
  .local-area-media {
    order: 3;
    max-width: 300px;
    margin: 0.4rem auto 0;
    width: 100%;
    justify-content: center;
    padding-bottom: 0.2rem;
  }
  .local-area-cta,
  .local-area-cta.btn-electric {
    width: 100%;
    max-width: 100%;
  }
  .local-area-cta .btn-electric-inner {
    width: 100%;
    justify-content: center;
  }
  .local-area-title { max-width: none; }
  .contact-home-grid { grid-template-columns: 1fr; }
  .contact-home-copy { max-width: none; }
  .contact-home-copy .section-title { max-width: none; }
  .contact-direct-strip {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.35rem;
  }
  .contact-direct-strip-actions {
    justify-content: flex-start;
  }
  .contact-direct-strip-row--primary {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  }
  .contact-direct-cta--social .btn-electric-inner {
    font-size: 0.92rem;
    padding-inline: 0.55rem;
  }
  .contact-home {
    padding-top: calc(clamp(3.5rem, 7vw, 5rem) + 3rem);
  }
  .faq-under-list { grid-template-columns: 1fr; }
  .faq-under-head .section-title { max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand,
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    column-gap: 0.3rem;
    row-gap: 0;
    align-items: end;
    width: min(100% - 1.5rem, 1280px);
    max-width: 100%;
    box-sizing: border-box;
    padding-top: calc(5.65rem + env(safe-area-inset-top, 0px));
    padding-bottom: 0.5rem;
    min-height: 0;
    overflow: hidden;
  }
  .hero-text {
    display: contents;
  }
  .hero-eyebrow-extra {
    display: none;
  }
  .hero-eyebrow {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: end;
    width: min(100%, 18rem);
    margin: 0 0 0.15rem;
    padding: 0;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
    color: var(--green);
    position: relative;
    z-index: 2;
  }
  .hero-lead {
    display: none;
  }
  h1.hero-title,
  .hero-title {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    width: 92%;
    max-width: none;
    font-size: 1.42rem;
    line-height: 1.28;
    letter-spacing: -0.03em;
    margin: 0 0 1.15rem;
    padding-top: 0;
    overflow-wrap: normal;
    word-break: normal;
    position: relative;
    z-index: 2;
  }
  .hero-title-line {
    display: block;
    white-space: normal;
  }
  .hero-title br {
    display: none;
  }
  /* Mobile: exactly 3 rows on every phone width */
  .hero-title .ht-l1a {
    display: block;
    white-space: nowrap;
  }
  .hero-title .ht-l1b {
    display: inline;
    white-space: nowrap;
  }
  .hero-title .ht-l2a {
    display: inline;
    white-space: nowrap;
  }
  .hero-title .ht-l2a::after {
    content: "";
    display: block;
  }
  .hero-title .ht-l2b,
  .hero-title .ht-l2c {
    display: inline;
    white-space: nowrap;
  }
  .hero-title .ht-l2b::before {
    content: none;
  }
  .hero-title .ht-l1b::after {
    content: none;
  }
  .hero-google-badge { margin-top: 0.9rem; }
  .hero-actions .btn-electric--outline {
    display: inline-flex;
  }
  .hero-actions {
    grid-column: 1 / -1;
    grid-row: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin: 5rem 0 0;
    padding: 0;
    max-width: 100%;
    min-width: 0;
    position: relative;
    z-index: 2;
  }
  .hero-actions .btn-electric {
    width: 100%;
    max-width: 100%;
  }
  .hero-actions .btn-electric-inner {
    width: 100%;
    justify-content: center;
    min-height: 2.9rem;
  }
  .hero {
    padding-top: 0;
    padding-bottom: 3rem;
    height: auto;
    min-height: 0;
    max-height: none;
    --section-slant: 44px;
    overflow-x: clip;
  }
  .page-dark-top .hero-inner {
    padding-top: calc(5.65rem + env(safe-area-inset-top, 0px));
  }

  /* Features under title (left), photo beside title+features (right) */
  .hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 1.7rem 0 0;
    width: auto;
    max-width: 100%;
    min-width: 0;
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    justify-self: start;
    padding-right: 0.15rem;
    padding-bottom: 0;
    transform: none;
  }
  .hero-features li {
    width: auto;
    max-width: 100%;
    gap: 0.38rem;
  }
  .hero-feature-icon {
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
  }
  .hero-feature-copy {
    min-width: 0;
  }
  .hero-feature-copy strong {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .hero-feature-copy strong br {
    display: none;
  }
  .hero-visual {
    grid-column: 2;
    grid-row: 2 / 5;
    justify-self: end;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 260px;
    margin: 0;
    /* Flush with green CTA top: both buttons + gap (not the actions margin) */
    padding: 0 0 calc(2 * 2.9rem + 0.55rem);
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
  }
  .hero-visual img {
    transform: translateY(6px);
    transform-origin: bottom right;
    width: 90%;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: bottom right;
    display: block;
    filter: brightness(0.81) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
  }

  /* Same home hero on every mobile width — no tiny-phone overrides */

  .diensten-head {
    align-items: stretch;
    flex-direction: column;
    gap: 1.15rem;
  }
  .diensten-cta,
  .diensten-cta.btn-electric {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
  }
  .diensten-cta .btn-electric-inner {
    width: 100%;
    justify-content: center;
  }
  .diensten-note {
    display: none;
  }
  .diensten-more {
    padding: 1.35rem 1.25rem;
  }
  .diensten-more-list {
    grid-template-columns: 1fr;
  }
  .diensten-more-list li:nth-child(2) a {
    border-top: none;
  }
  .trust-elements .container {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
    padding-right: 0;
  }
  .trust-intro {
    margin-bottom: 2.4rem;
    padding-right: 1.25rem;
    text-align: left;
  }
  .trust-board {
    padding-right: 0;
  }
  .trust-line {
    left: 0;
    right: 0;
  }
  .trust-elements-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1.75rem 1.25rem 0.35rem 0;
  }
  .trust-elements-list::-webkit-scrollbar {
    display: none;
  }
  .trust-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
    padding: 28px;
  }
  .trust-cta {
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .trust-cta-btn {
    width: 100%;
    max-width: none;
  }
  .trust-block > .container {
    padding-top: 3.25rem;
    padding-bottom: 0;
  }
  .project-gallery {
    padding-bottom: calc(var(--section-slant) + 5.5rem);
  }
  .trust-block-intro {
    margin-bottom: 2rem;
  }
  .trust-block-cards {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .trust-rating-card,
  .trust-quote-card {
    padding: 1.9rem;
  }
  .trust-rating-number {
    font-size: 3.75rem;
  }
  .project-tile {
    width: min(58vw, 220px);
    height: 210px;
  }
  .project-tile--wide {
    width: min(72vw, 290px);
  }
  .trust-block-cta {
    margin-bottom: 0;
  }
  .trust-block-btn-primary {
    width: 100%;
  }
  .grid-3, .grid-5 { grid-template-columns: 1fr; }
  .service-detail, .service-detail.alt .media,
  .split-2 { grid-template-columns: 1fr; }
  .service-detail.alt .media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 700px) {
  .topbar-right .topbar-item { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
    row-gap: 1.65rem;
    padding: 2.25rem 0 1.35rem;
  }
  .footer-brand,
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-col,
  .footer-actief,
  .footer-grid > div:not(:first-child) {
    min-width: 0;
  }
  .footer-grid h3 {
    margin-bottom: 0.7rem;
    font-size: 0.84rem;
  }
  .footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .footer-grid ul li {
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.4;
  }
  .footer-actief {
    grid-column: auto;
  }
  .footer-actief ul {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    columns: auto;
    gap: 0.45rem;
  }
  .footer-brand p {
    max-width: none;
    margin: 0.85rem 0 1rem;
    font-size: 0.88rem;
  }
  .footer-cta {
    width: 100%;
    align-items: stretch;
    gap: 0.55rem;
  }
  .footer-cta-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }
  .footer-cta-primary .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-cta-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }
  .footer-cta-social a,
  .footer-cta-social .footer-social-link {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .footer-bottom-social {
    display: none; /* already in brand CTA */
  }
  .project-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  }
  .project-tile-overlay {
    opacity: 0;
  }
  .project-tile:hover .project-tile-overlay,
  .project-tile:focus-visible .project-tile-overlay {
    opacity: 1;
  }
  .work-proof {
    min-height: 0;
  }
  .work-proof-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "list"
      "cta";
    padding: 3.75rem 0;
    row-gap: 1.75rem;
  }
  .work-proof-title {
    max-width: none;
    font-size: clamp(1.85rem, 7.5vw, 2.45rem);
  }
  .work-proof-lead {
    max-width: none;
  }
  .work-proof-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }
  .work-proof-actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .work-proof-cta,
  .work-proof-cta.btn-electric {
    width: 100%;
    max-width: 100%;
  }
  .work-proof-cta .btn-electric-inner {
    width: 100%;
    justify-content: center;
  }
}

/* ===== About Elect-SA page ===== */
.page-about {
  --about-slant: clamp(48px, 6.5vw, 78px);
}

.about-hero-shell {
  position: relative;
  background: #ffffff;
  isolation: isolate;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 900px);
  color: #fff;
  overflow: hidden;
  background: #050505;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--about-slant);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--about-slant)),
    0 100%
  );
}

/* Full darkened photo background */
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/services-hero-bg.jpg") center 40% / cover no-repeat;
  transform: scale(1.05);
}
.about-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.93) 100%),
    radial-gradient(ellipse 50% 45% at 70% 48%, rgba(48, 184, 62, 0.08), transparent 65%);
}

.about-hero-split {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  min-height: 0;
  align-items: stretch;
}

.about-hero-panel--copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(4.25rem + 76px) clamp(1.5rem, 3vw, 2.75rem) 2.5rem clamp(2.5rem, 6.5vw, 5.75rem);
  background: transparent;
}

.about-hero-copy {
  max-width: 44rem;
  margin-left: clamp(0.25rem, 1.5vw, 1.5rem);
}

.about-hero-kicker {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.about-hero-kicker::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(48, 184, 62, 0.75);
}
.about-hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.9rem, 9.6vw, 6.9rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.05s, transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.05s;
}
.about-hero-title {
  margin: 1.2rem 0 0;
  font-size: clamp(1.65rem, 3.05vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: 34ch;
  color: rgba(255,255,255,0.95);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.12s, transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.12s;
}
.about-hero-lead {
  margin: 1.1rem 0 0;
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  max-width: 44rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.2s, transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.28s, transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.28s;
}
.about-hero-team-cards {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.22s, transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.22s;
}

/* Right media — bigger, lower; short green rule */
.about-hero-panel--media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 100%;
  padding: 0;
  overflow: visible;
  border-left: 0;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(24px, 0, 0);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1) 0.1s, transform 1s cubic-bezier(0.22,1,0.36,1) 0.1s;
}
/* Vertical accent — ~4× taller, 20% more transparent */
.about-hero-panel--media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 3px;
  height: clamp(17.92rem, 53.8vh, 31rem);
  z-index: 2;
  border-radius: 2px;
  opacity: 0.8;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--green) 6%,
    var(--green) 94%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(48, 184, 62, 0.28);
  pointer-events: none;
}
.about-hero-media-frame {
  position: absolute;
  right: -3%;
  bottom: calc(var(--about-slant) * -0.85);
  z-index: 6;
  width: min(60vw, 960px);
  margin: 0;
  padding: 0;
  line-height: 0;
  background: transparent;
  transform: none;
}
.about-hero-media-img {
  position: relative;
  z-index: 6;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(90vh, 900px);
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(0.85) sepia(0.18) saturate(1.12) hue-rotate(-6deg) contrast(1.04);
}
.about-hero-media-captions {
  position: absolute;
  left: 4%;
  right: 8%;
  bottom: calc(var(--about-slant) * 0.75);
  z-index: 8;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  pointer-events: none;
}
.about-hero-media-caption {
  margin: 0;
  padding: 0.55rem 0.8rem 0.55rem 0.85rem;
  border-left: 2px solid var(--green);
  border-top: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-shadow: none;
}
.about-hero-media-caption strong {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-shadow: none;
}
.about-hero-media-caption span {
  font-size: 0.78rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  text-shadow: none;
}

/* Logos left-bottom at the cut — transparent, above clip */
.about-hero-merken {
  position: absolute;
  left: 1.25rem;
  right: auto;
  bottom: calc(var(--about-slant) * 0.55);
  width: min(68%, 800px);
  z-index: 4;
  margin: 0;
  padding: 0.35rem 0 0.4rem 0;
  background: transparent !important;
  border: none;
  box-shadow: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1) 0.36s, transform 0.85s cubic-bezier(0.22,1,0.36,1) 0.36s;
}
.about-hero-merken-marquee {
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 82%, transparent 100%);
}
.about-hero-merken-track {
  display: flex;
  width: max-content;
  animation: aboutHeroMerken 38s linear infinite;
}
.about-hero-merken:hover .about-hero-merken-track {
  animation-play-state: paused;
}
.about-hero-merken-group {
  --gap: 2.75rem;
  list-style: none;
  margin: 0;
  padding: 0 var(--gap) 0 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.about-hero-merken-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 2.6rem;
}
.about-hero-merken-item img {
  display: block;
  width: auto;
  height: 2.05rem;
  max-width: 7.75rem;
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(1.2) contrast(1.08);
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.about-hero-merken-item:hover img {
  opacity: 1;
  filter: brightness(1.3) contrast(1.1);
  transform: scale(1.04);
}
@keyframes aboutHeroMerken {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.about-hero.is-ready .about-hero-kicker,
.about-hero.is-ready .about-hero-brand,
.about-hero.is-ready .about-hero-title,
.about-hero.is-ready .about-hero-lead,
.about-hero.is-ready .about-hero-team-cards,
.about-hero.is-ready .about-hero-actions,
.about-hero.is-ready .about-hero-merken,
.about-hero.is-ready .about-hero-panel--media {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .about-hero-kicker,
  .about-hero-brand,
  .about-hero-title,
  .about-hero-lead,
  .about-hero-team-cards,
  .about-hero-actions,
  .about-hero-merken,
  .about-hero-panel--media {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about-hero-merken-track { animation: none; }
  .about-hero-bg { transform: none; }
}


.about-trust {
  position: relative;
  z-index: 2;
  background: #fff;
  margin-top: -1px;
  padding: 0 0 clamp(1.35rem, 2.8vw, 2rem);
}
.about-trust::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--about-slant) + 3px);
  transform: translateY(-100%);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.55) 50%,
    #ffffff calc(50% + var(--slant-aa)),
    #ffffff 100%
  );
}
.about-trust-band {
  background: #fff;
  border: 0;
}
.about-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  max-width: 1080px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.about-trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  min-width: 0;
  padding: clamp(1.85rem, 3.8vw, 2.6rem) clamp(0.85rem, 1.8vw, 1.35rem);
  text-decoration: none;
  color: inherit;
  border: 0;
  transition: color 0.2s ease;
}
.about-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32%;
  bottom: 32%;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.08) 80%,
    transparent
  );
  pointer-events: none;
}
.about-trust-item:last-child { border-right: 0; }
.about-trust-item:hover {
  background: transparent;
}
.about-trust-item:hover strong {
  color: var(--green);
}
.about-trust-item strong {
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
  text-wrap: balance;
  transition: color 0.2s ease;
}
.about-trust-item > span,
.about-trust-copy > span:not(.about-trust-score) {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}
.about-trust-item--google {
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
}
.about-trust-item--google:hover {
  background: transparent;
}
.about-trust-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  text-align: center;
}
.about-trust-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.about-trust-item--google .google-g-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.about-trust-item--google .google-g-icon svg {
  display: block;
}

/* Story / Waarom Elect-SA */
.about-story {
  background: #fff;
  padding: clamp(1.5rem, 3.5vw, 2.75rem) 0 clamp(3.25rem, 6.5vw, 5rem);
}
.about-story-head {
  text-align: center;
  margin: 0 0 clamp(1.35rem, 2.8vw, 2rem);
}
.about-story-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-story-kicker::before,
.about-story-kicker::after {
  content: "";
  width: 1.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(48, 184, 62, 0.45);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: stretch;
}
.about-story-copy.reveal {
  transition-delay: 0s;
}
.about-story-panel.reveal {
  transition-delay: 0.12s;
}
.about-story-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.1;
  max-width: 15.5em;
  color: var(--ink);
  text-wrap: balance;
}
.about-story-copy p {
  margin: 1rem 0 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 500;
  max-width: 36rem;
  text-wrap: pretty;
}
.about-story-quote {
  margin: 1.75rem 0 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink);
  max-width: 20em;
  text-wrap: balance;
}
.about-story-quote::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-bottom: 0.85rem;
  background: var(--green);
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(48,184,62,0.35);
}
.about-story-panel {
  position: relative;
  isolation: isolate;
  background: #070807;
  color: #fff;
  padding: clamp(1.85rem, 3.5vw, 2.55rem);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow:
    0 24px 50px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.about-story-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/diensten/verdeelborden/02.jpg") center 42% / cover no-repeat;
  transform: scale(1.04);
  filter: brightness(0.6) saturate(0.9) contrast(1.03);
  pointer-events: none;
}
.about-story-panel-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.26) 72%,
      rgba(0, 0, 0, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 45%,
      rgba(0, 0, 0, 0.55) 100%
    );
}
.about-story-panel::before {
  content: none;
}
.about-story-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 3px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--green) 18%, var(--green) 82%, transparent);
  box-shadow: 0 0 12px rgba(48,184,62,0.28);
}
.about-story-panel > *:not(.about-story-panel-bg):not(.about-story-panel-veil) {
  position: relative;
  z-index: 2;
}
.about-story-panel-label {
  margin: 0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.about-story-panel-text {
  margin: 1rem 0 0;
  font-size: clamp(1.08rem, 1.85vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #fff;
  text-wrap: pretty;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.about-story-panel-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.about-story-panel-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.about-story-panel.visible .about-story-panel-list li {
  opacity: 1;
  transform: translateY(0);
}
.about-story-panel.visible .about-story-panel-list li:nth-child(1) { transition-delay: 0.08s; }
.about-story-panel.visible .about-story-panel-list li:nth-child(2) { transition-delay: 0.14s; }
.about-story-panel.visible .about-story-panel-list li:nth-child(3) { transition-delay: 0.2s; }
.about-story-panel.visible .about-story-panel-list li:nth-child(4) { transition-delay: 0.26s; }
.about-story-panel.visible .about-story-panel-list li:nth-child(5) { transition-delay: 0.32s; }
.about-story-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.7rem;
  height: 2px;
  border-radius: 1px;
  background: var(--green);
  box-shadow: none;
}
.about-story-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  align-self: flex-start;
  margin-top: auto;
  padding: 1.2rem 0 0.35rem;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid var(--green);
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    gap 0.2s ease;
}
.about-story-cta-arrow {
  display: inline-block;
  color: var(--green);
  transition: transform 0.2s ease;
}
.about-story-cta:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}
.about-story-cta:hover .about-story-cta-arrow {
  transform: translateX(4px);
}
.about-story-cta:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .about-story-copy.reveal,
  .about-story-panel.reveal {
    transition-delay: 0s;
  }
  .about-story-panel-list li,
  .about-story-panel.visible .about-story-panel-list li {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about-story-cta,
  .about-story-cta-arrow {
    transition: none;
  }
}

/* Team — compact premium split */
.about-team-shell {
  position: relative;
  background: #f4f5f4;
  isolation: isolate;
  overflow: visible;
}
.about-team {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: calc(clamp(2.4rem, 4.5vw, 3.6rem) + var(--about-slant)) 0;
  overflow: hidden;
  background: transparent;
}
.about-team::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 28% 45%, rgba(48, 184, 62, 0.06), transparent 62%),
    radial-gradient(ellipse 50% 40% at 88% 20%, rgba(48, 184, 62, 0.035), transparent 58%),
    linear-gradient(180deg, #0a0c0a 0%, #070907 48%, #080a08 100%);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--about-slant),
    100% 0,
    100% calc(100% - var(--about-slant)),
    0 100%
  );
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.55));
}
.about-team-shell::before,
.about-team-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--about-slant) + 3px);
  z-index: 2;
  pointer-events: none;
}
.about-team-shell::before {
  top: 0;
  background: linear-gradient(
    to bottom right,
    #ffffff 0,
    #ffffff calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.about-team-shell::after {
  bottom: 0;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(244, 245, 244, 0.5) 50%,
    #f4f5f4 calc(50% + var(--slant-aa)),
    #f4f5f4 100%
  );
}
.about-team-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3.5vw, 3.25rem);
  align-items: center;
  min-height: clamp(320px, 40vw, 480px);
}
.about-team-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  align-self: center;
  overflow: visible;
  min-height: clamp(280px, 36vw, 420px);
}
.about-team-van-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.about-team-van-rig {
  width: min(108%, 640px);
  transform: translate3d(120%, 0, 0);
  will-change: transform;
}
.about-team-van {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55));
}
.about-team-visual.visible .about-team-van-rig {
  animation: aboutTeamVanDrive 1.75s cubic-bezier(0.16, 0.84, 0.24, 1) 0.15s forwards;
}
@keyframes aboutTeamVanDrive {
  0% {
    transform: translate3d(120%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.about-team-visual.reveal {
  transition-duration: 0.75s;
}
.about-team-copy.reveal {
  transition-delay: 0.1s;
  transition-duration: 0.65s;
}
.about-team-copy {
  min-width: 0;
  max-width: 32rem;
  padding: 0.35rem 0 0.5rem;
}
.about-team-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-team-kicker::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  flex: 0 0 auto;
}
.about-team-copy h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(1.75rem, 3.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #f5f7f5;
  max-width: 14em;
  text-wrap: balance;
}
.about-team-copy > p {
  margin: 0.95rem 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  max-width: 34rem;
}
.about-team-copy > p + p {
  margin-top: 0.7rem;
}
.about-team-usps {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.about-team-usps li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.about-team-copy.visible .about-team-usps li {
  opacity: 1;
  transform: translateY(0);
}
.about-team-copy.visible .about-team-usps li:nth-child(1) { transition-delay: 0.12s; }
.about-team-copy.visible .about-team-usps li:nth-child(2) { transition-delay: 0.17s; }
.about-team-copy.visible .about-team-usps li:nth-child(3) { transition-delay: 0.22s; }
.about-team-usps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.7rem;
  height: 2px;
  border-radius: 1px;
  background: var(--green);
  box-shadow: none;
}
.about-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.45rem;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.about-team-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.about-team-cta:hover {
  color: #4fd45c;
}
.about-team-cta:hover .about-team-cta-arrow {
  transform: translateX(3px);
}
.about-team-cta:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .about-team-visual.reveal,
  .about-team-copy.reveal {
    transition-delay: 0s;
    transition-duration: 0.01ms;
  }
  .about-team-usps li,
  .about-team-copy.visible .about-team-usps li {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about-team-cta-arrow {
    transition: none;
  }
  .about-team-van-rig {
    transform: translate3d(0, 0, 0);
    animation: none !important;
  }
}

/* Principles */
.about-principles {
  position: relative;
  background:
    radial-gradient(ellipse 55% 40% at 6% 0%, rgba(48, 184, 62, 0.06), transparent 58%),
    linear-gradient(180deg, #f4f5f4 0%, #fafafa 55%, #ffffff 100%);
  padding: clamp(2.4rem, 4.5vw, 3.5rem) 0;
  overflow: hidden;
}
.about-principles-head {
  max-width: 38rem;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
}
.about-principles-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-principles-kicker::before {
  content: "";
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  flex: 0 0 auto;
}
.about-principles-head h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
  max-width: 18em;
  text-wrap: balance;
}
.about-principles-lead {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
  font-weight: 500;
  max-width: 34rem;
}
.about-principles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.about-principles-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem 0.95rem;
  align-items: start;
  padding: 1rem 1.1rem 1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 20, 0.06);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.025);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.about-principles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, rgba(48, 184, 62, 0.25) 100%);
  opacity: 0.85;
  transition: width 0.2s ease, opacity 0.2s ease;
}
.about-principles-list li:hover {
  border-color: rgba(48, 184, 62, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(48, 184, 62, 0.07);
}
.about-principles-list li:hover::before {
  width: 3px;
  opacity: 1;
}
.about-principles-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1.2;
  opacity: 0.7;
  padding-top: 0.1rem;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.2s ease;
}
.about-principles-list li:hover .about-principles-num {
  opacity: 1;
}
.about-principles-body {
  min-width: 0;
}
.about-principles-list h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}
.about-principles-list p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5a5a5a;
  font-weight: 500;
  max-width: 34rem;
}
.about-principles-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  margin-top: clamp(1.15rem, 2.4vw, 1.65rem);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.about-principles-foot p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.about-principles-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-principles-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.about-principles-cta:hover {
  color: #249a32;
}
.about-principles-cta:hover .about-principles-cta-arrow {
  transform: translateX(3px);
}
.about-principles-cta:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .about-principles-list li,
  .about-principles-cta-arrow {
    transition: none;
  }
  .about-principles-list li:hover {
    transform: none;
  }
}

/* AREI shell */
.about-arei-shell {
  position: relative;
  background: #ffffff;
  isolation: isolate;
}
.about-arei {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: calc(clamp(2.75rem, 5.5vw, 4.5rem) + var(--about-slant)) 0;
  background: transparent;
  overflow: hidden;
}
.about-arei::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 92% 35%, rgba(48, 184, 62, 0.07), transparent 62%),
    radial-gradient(ellipse 45% 40% at 12% 70%, rgba(48, 184, 62, 0.035), transparent 58%),
    linear-gradient(180deg, #0c0e0c 0%, #070907 52%, #080a08 100%);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--about-slant),
    100% 0,
    100% calc(100% - var(--about-slant)),
    0 100%
  );
  filter: drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.55));
}
.about-arei-shell::before,
.about-arei-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--about-slant) + 3px);
  z-index: 2;
  pointer-events: none;
}
.about-arei-shell::before {
  top: 0;
  background: linear-gradient(
    to bottom right,
    #ffffff 0,
    #ffffff calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.about-arei-shell::after {
  bottom: 0;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    #ffffff calc(50% + var(--slant-aa)),
    #ffffff 100%
  );
}
.about-arei-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.about-arei-copy.reveal {
  transition-duration: 0.65s;
}
.about-arei-panel.reveal {
  transition-delay: 0.1s;
  transition-duration: 0.7s;
}
.about-arei-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-arei-kicker::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  flex: 0 0 auto;
}
.about-arei-copy h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 15em;
  color: #f5f7f5;
  text-wrap: balance;
}
.about-arei-copy > p {
  margin: 1.05rem 0 0;
  max-width: 36rem;
  font-size: 1.04rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.about-arei-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.35rem;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.about-arei-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.about-arei-cta:hover {
  color: #4fd45c;
}
.about-arei-cta:hover .about-arei-cta-arrow {
  transform: translateX(3px);
}
.about-arei-cta:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}
.about-arei-panel {
  position: relative;
  padding: clamp(1.35rem, 2.8vw, 1.75rem);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.about-arei-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, transparent, var(--green) 20%, var(--green) 80%, transparent);
  opacity: 0.85;
}
.about-arei-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.about-arei-points li {
  padding: 0 0 0.95rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-arei-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.about-arei-points strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}
.about-arei-points span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}
.about-arei-meta {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  .about-arei-copy.reveal,
  .about-arei-panel.reveal {
    transition-delay: 0s;
    transition-duration: 0.01ms;
  }
  .about-arei-cta-arrow {
    transition: none;
  }
}

/* Merken — pure white slanted band + marquee */
.about-merken-shell {
  position: relative;
  background: #ffffff;
  isolation: isolate;
}
.about-merken {
  position: relative;
  z-index: 1;
  padding: calc(clamp(2.1rem, 4vw, 3rem) + var(--about-slant)) 0 clamp(1.75rem, 3.5vw, 2.5rem);
  background: transparent;
  overflow: hidden;
}
.about-merken::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--about-slant),
    100% 0,
    100% 100%,
    0 100%
  );
}
.about-merken-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--about-slant) + 3px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    #ffffff 0,
    #ffffff calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.about-merken > .container {
  position: relative;
  z-index: 1;
}
.about-merken-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(1.15rem, 2.5vw, 1.65rem);
}
.about-merken-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-merken-kicker::before,
.about-merken-kicker::after {
  content: "";
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}
.about-merken-head h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.55rem, 2.9vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}
.about-merken-lead {
  margin: 0.7rem auto 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
  font-weight: 500;
  max-width: 34rem;
}
.about-merken-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.35rem;
  padding: 0.55rem 0 0.15rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.about-merken-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: aboutMerkenMarquee 48s linear infinite;
}
.about-merken-marquee:hover .about-merken-marquee-track {
  animation-play-state: paused;
}
.about-merken-marquee-group {
  --merken-gap: 3.25rem;
  list-style: none;
  margin: 0;
  padding: 0 var(--merken-gap) 0 0;
  display: flex;
  align-items: center;
  gap: var(--merken-gap);
}
.about-merken-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 3.6rem;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 20, 0.07);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}
.about-merken-item img {
  display: block;
  width: auto;
  max-width: 148px;
  height: 2rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  filter: contrast(1.05);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.about-merken-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}
.about-merken-item--aceg img,
.about-merken-item--weid img {
  height: 2.35rem;
  max-width: 132px;
  border-radius: 4px;
}
.about-merken-item--huawei img {
  height: 1.85rem;
  max-width: 168px;
}
@keyframes aboutMerkenMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 760px) {
  .about-merken-marquee-group {
    --merken-gap: 1.75rem;
  }
  .about-merken-item {
    min-height: 3.15rem;
    padding: 0.35rem 0.7rem;
  }
  .about-merken-item img {
    height: 1.7rem;
    max-width: 120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-merken-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .about-merken-marquee-track {
    animation: none;
  }
  .about-merken-marquee-group[aria-hidden="true"] {
    display: none;
  }
  .about-merken-item:hover img {
    transform: none;
  }
}

.about-faq-shell {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff calc(100% - var(--about-slant) - 8px),
    #050605 calc(100% - var(--about-slant) - 8px),
    #050605 100%
  );
  isolation: isolate;
}
.about-faq {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 2.85rem) 0 calc(clamp(2.25rem, 5vw, 3.5rem) + var(--about-slant));
  background: transparent;
  overflow: hidden;
}
.about-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--about-slant)),
    0 100%
  );
}
.about-faq-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--about-slant) + 3px);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(5, 6, 5, 0.5) 50%,
    #050605 calc(50% + var(--slant-aa)),
    #050605 100%
  );
}
.about-faq-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
}
.about-faq-kicker {
  margin: 0 auto clamp(1.25rem, 2.8vw, 1.85rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-faq-kicker::before,
.about-faq-kicker::after {
  content: "";
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  flex: 0 0 auto;
}
.about-faq-intro h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
}
.about-faq-intro p {
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #5c5c5c;
  font-weight: 500;
  max-width: 28rem;
}
.about-faq-list { display: grid; gap: 0.7rem; }
.about-faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 0 1.15rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.035);
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-faq-item[open] {
  border-color: rgba(48,184,62,0.4);
  box-shadow: 0 14px 34px rgba(48,184,62,0.08);
}
.about-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem 0;
  font-weight: 750;
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--ink);
}
.about-faq-item summary::-webkit-details-marker { display: none; }
.about-faq-item summary span {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}
.about-faq-item summary span::before,
.about-faq-item summary span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
}
.about-faq-item summary span::before { width: 12px; height: 2px; }
.about-faq-item summary span::after {
  width: 2px;
  height: 12px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.about-faq-item[open] summary span::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.about-faq-item p {
  margin: 0 0 1.1rem;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #555;
  font-weight: 500;
}
.about-faq-item a { color: var(--green); font-weight: 650; }

/* Contact band after FAQ — dark slanted */
.about-contact-shell {
  position: relative;
  background: linear-gradient(
    180deg,
    #050605 0%,
    #050605 calc(100% - var(--about-slant) - 8px),
    #ffffff calc(100% - var(--about-slant) - 8px),
    #ffffff 100%
  );
  isolation: isolate;
}
.about-contact {
  position: relative;
  z-index: 1;
  color: #fff;
  padding:
    calc(clamp(0.55rem, 1.4vw, 0.95rem) + var(--about-slant))
    0
    calc(clamp(2.25rem, 4.5vw, 3.25rem) + var(--about-slant));
  background: transparent;
  overflow: hidden;
}
.about-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #050605 0%, #080908 55%, #050605 100%);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--about-slant),
    100% 0,
    100% calc(100% - var(--about-slant)),
    0 100%
  );
}
.about-contact-shell::before,
.about-contact-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--about-slant) + 3px);
  z-index: 2;
  pointer-events: none;
}
.about-contact-shell::before {
  top: 0;
  background: linear-gradient(
    to bottom right,
    #050605 0,
    #050605 calc(50% - var(--slant-aa)),
    rgba(5, 6, 5, 0.5) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.about-contact-shell::after {
  bottom: 0;
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    #ffffff calc(50% + var(--slant-aa)),
    #ffffff 100%
  );
}
.about-contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}
.about-contact-copy {
  max-width: 36rem;
  text-align: center;
  margin-inline: auto;
}
.about-contact-copy .section-label {
  color: rgba(48,184,62,0.95);
}
.about-contact-copy h2 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #fff;
}
.about-contact-copy p {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
}
.about-contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.about-contact-channels a {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
  padding: 1.15rem 1.2rem;
  min-height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
  color: inherit;
  text-decoration: none;
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.about-contact-channels a:hover {
  border-color: rgba(48,184,62,0.55);
  background: rgba(48,184,62,0.1);
  transform: translateY(-2px);
}
.about-contact-icon {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.about-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.about-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.about-contact-value {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.02em;
}
.about-contact-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  padding-top: 0.35rem;
}
.about-contact-foot p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 550;
  color: rgba(255,255,255,0.55);
}
.about-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-weight: 750;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.about-contact-cta svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.2s ease;
}
.about-contact-cta:hover svg {
  transform: translateX(3px);
}

/* Legacy / Ons verhaal — top slant only, flat bottom into CTA */
.about-legacy-shell {
  position: relative;
  background: #ffffff;
  isolation: isolate;
}
.about-legacy {
  position: relative;
  z-index: 1;
  padding: calc(clamp(2.75rem, 6vw, 4.5rem) + var(--about-slant)) 0 clamp(2.75rem, 6vw, 4.5rem);
  background: transparent;
  overflow: hidden;
}
.about-legacy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  clip-path: polygon(
    0 var(--about-slant),
    100% 0,
    100% 100%,
    0 100%
  );
}
.about-legacy-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--about-slant) + 3px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    #ffffff 0,
    #ffffff calc(50% - var(--slant-aa)),
    rgba(255, 255, 255, 0.5) 50%,
    transparent calc(50% + var(--slant-aa))
  );
}
.about-legacy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.about-legacy-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-legacy-kicker::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}
.about-legacy-copy h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(1.95rem, 3.6vw, 2.95rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  max-width: 14em;
  text-wrap: balance;
}
.about-legacy-copy > p {
  margin: 1rem 0 0;
  font-size: 1.04rem;
  line-height: 1.65;
  color: #4a4a4a;
  font-weight: 500;
  max-width: 36rem;
}
.about-legacy-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: end;
}
.about-legacy-card {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 3 / 4.15;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: radial-gradient(#000, #000);
  mask-image: radial-gradient(#000, #000);
}
.about-legacy-card img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: none;
  margin: -1px;
  object-fit: cover;
  object-position: top center;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.55s ease;
}
.about-legacy-card:hover img {
  transform: translateZ(0) scale(1.03);
}
.about-legacy-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  margin: 0;
  padding: 0 0 0 0.85rem;
  border-left: 2px solid var(--green);
  background: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.about-legacy-card strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.about-legacy-card span {
  display: block;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 550;
  line-height: 1.25;
}
/* Soft dark fade only under text — no blur */
.about-legacy-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
}

/* Final CTA — flat, no slant */
.about-cta-shell {
  position: relative;
  background: #070907;
}
.about-cta {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background: #070907;
  color: #fff;
  padding: clamp(3.75rem, 8vw, 6.25rem) 0;
  overflow: hidden;
  text-align: center;
}
.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 100%, rgba(48, 184, 62, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 35% at 50% 0%, rgba(48, 184, 62, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(7, 9, 7, 0.35) 0%, rgba(7, 9, 7, 0.72) 50%, #070907 100%);
}
.about-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}
.about-cta-bg img {
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: min(920px, 92vw);
  height: auto;
  transform: translateX(-50%);
  filter: grayscale(0.15);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 72%, transparent 100%);
}
.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-cta-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-cta-kicker::before,
.about-cta-kicker::after {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}
.about-cta-inner h2 {
  margin: 0.95rem 0 0;
  font-size: clamp(2.15rem, 4.4vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #fff;
  max-width: 14em;
  text-wrap: balance;
}
.about-cta-lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
.about-cta-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  width: auto;
  max-width: 100%;
}
.about-cta-primary.btn-electric,
.about-cta-secondary.btn-electric {
  flex: 0 1 auto;
  width: auto;
  min-width: 0;
  white-space: nowrap;
}
.about-cta-primary.btn-electric {
  min-width: 0;
}
.about-cta .btn-electric--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}
.about-cta .btn-electric--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
@media (prefers-reduced-motion: reduce) {
  .about-legacy-card img {
    transition: none;
  }
  .about-legacy-card:hover img {
    transform: translateZ(0);
  }
}


@media (max-width: 980px) {
  .about-hero {
    min-height: 0;
  }
  .about-hero-split {
    grid-template-columns: 1fr;
  }
  .about-hero-panel--media {
    display: none !important;
  }
  .about-hero-panel--copy {
    padding: 5.5rem 1.35rem 3.5rem 1.35rem;
    justify-content: flex-start;
  }
  .about-hero-copy { margin-left: 0; }
  .about-hero-title { max-width: none; }
  .about-hero-brand { font-size: clamp(2.8rem, 12vw, 4rem); }
  .about-hero-lead {
    display: none !important;
  }
  .about-hero-team-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    margin: 1.05rem 0 0;
    opacity: 1 !important;
    transform: none !important;
  }
  .about-hero-team-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    min-width: 0;
  }
  .about-hero-team-card img {
    display: block;
    width: 100%;
    height: clamp(260px, 62vw, 340px);
    object-fit: cover;
    object-position: center top;
    background: transparent;
  }
  .about-hero-team-card .about-hero-media-caption {
    position: absolute;
    left: 0.35rem;
    right: 0.35rem;
    bottom: 0.4rem;
    width: auto;
    min-width: 0;
    box-sizing: border-box;
    pointer-events: none;
    padding: 0.5rem 0.55rem 0.5rem 0.65rem;
  }
  .about-hero-team-card .about-hero-media-caption strong {
    font-size: 0.95rem;
  }
  .about-hero-team-card .about-hero-media-caption span {
    font-size: 0.68rem;
    line-height: 1.25;
  }
  .about-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.15rem;
  }
  .about-hero-actions .btn-electric {
    width: 100%;
    max-width: 100%;
  }
  .about-hero-actions .btn-electric-inner {
    width: 100%;
    justify-content: center;
  }
  .about-hero-merken {
    left: 1rem;
    right: auto;
    width: min(94%, 520px);
    bottom: calc(var(--about-slant) * 0.55);
    padding: 0.35rem 0 0.45rem 0;
  }
  .about-trust-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-trust-item:nth-child(2)::after { display: none; }
  .about-trust-item:nth-child(odd)::after { display: none; }
  .about-trust-item:nth-child(1),
  .about-trust-item:nth-child(2) {
    border-bottom: 0;
  }
  .about-trust-item:nth-child(1),
  .about-trust-item:nth-child(2) {
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
  }
  .about-story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 1.35rem;
  }
  .about-faq-grid,
  .about-arei-inner { grid-template-columns: 1fr; }
  .about-contact-channels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-legacy-grid { grid-template-columns: 1fr; }
  .about-principles-list { grid-template-columns: 1fr; }
  .about-cta-actions { justify-content: center; }
}
@media (max-width: 760px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-story-panel.reveal {
    transition-delay: 0.06s;
  }
  .about-principles-list {
    grid-template-columns: 1fr;
  }
  .about-principles-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-legacy-grid {
    grid-template-columns: 1fr;
  }
  .about-legacy-copy {
    order: -1;
  }
  .about-contact-channels {
    grid-template-columns: 1fr;
  }
  .about-contact-foot {
    flex-direction: column;
    text-align: center;
  }
  .about-legacy-photos {
    max-width: 28rem;
    margin-inline: auto;
  }
  .about-cta-actions {
    flex-wrap: nowrap;
    width: auto;
    max-width: 100%;
    gap: 0.55rem;
  }
  .about-cta-primary,
  .about-cta-secondary {
    width: auto;
    flex: 0 1 auto;
  }
  .about-cta-primary .btn-electric-inner,
  .about-cta-secondary .btn-electric-inner {
    padding-inline: 0.95rem;
    font-size: 0.86rem;
    min-height: 2.55rem;
  }
  .about-team-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
  }
  .about-team-copy {
    order: -1;
    max-width: none;
    padding: 0;
  }
  .about-team-visual {
    align-self: center;
    justify-content: center;
    min-height: 220px;
  }
  .about-team-van-rig {
    width: min(100%, 520px);
    margin-inline: auto;
  }
  .about-team-copy h2 {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .page-about { --about-slant: 44px; }
  .about-trust-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-trust-item::after { display: none; }
  .about-trust-item {
    border-right: 0;
    border-bottom: 0;
    padding: 1.35rem 0.75rem;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
  }
  .about-trust-item:nth-child(odd) {
    box-shadow:
      inset 0 -1px 0 rgba(0,0,0,0.06),
      inset -1px 0 0 rgba(0,0,0,0.05);
  }
  .about-trust-item:nth-child(3),
  .about-trust-item:nth-child(4) {
    box-shadow: none;
  }
  .about-trust-item:nth-child(3) {
    box-shadow: inset -1px 0 0 rgba(0,0,0,0.05);
  }
  .about-trust-item strong {
    font-size: 1.02rem;
  }
  .about-hero-brand { font-size: clamp(2.55rem, 13vw, 3.3rem); }
  .about-story {
    padding: 1.35rem 0 2.75rem;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-story-copy h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7.2vw, 2.15rem);
  }
  .about-story-panel {
    padding: 1.5rem;
  }
  .about-story-panel-bg {
    background-position: 58% 42%;
  }
  .about-story-cta {
    width: auto;
    align-self: flex-start;
  }
}

/* ===== Contact page (full) ===== */
.page-contact {
  --cp-ink: #0b0d0b;
  --cp-muted: #5c635c;
  --cp-line: rgba(11, 13, 11, 0.1);
  --cp-soft: #f4f6f4;
}

/* Hero */
.cp-hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 860px);
  padding: calc(5.75rem + 76px) 0 clamp(4.5rem, 7vw, 6rem);
  background: #050605;
}
.cp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/diensten/laadpalen/04.jpg") center 48% / cover no-repeat;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.08) brightness(0.4);
  will-change: transform;
  animation: cpHeroKen 22s ease-in-out infinite alternate;
}
.cp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(5, 6, 5, 0.9) 0%, rgba(5, 6, 5, 0.78) 38%, rgba(5, 6, 5, 0.38) 68%, rgba(5, 6, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 6, 5, 0.5) 0%, transparent 38%, rgba(5, 6, 5, 0.78) 100%),
    radial-gradient(ellipse 45% 50% at 72% 55%, rgba(48, 184, 62, 0.1), transparent 62%);
}
.cp-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.18fr) minmax(0, 44rem) minmax(0, 1fr);
  align-items: end;
}
.cp-hero-copy {
  grid-column: 2;
  max-width: 44rem;
  width: 100%;
  text-align: left;
  margin: 0;
}
.cp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.cp-hero-kicker::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(48, 184, 62, 0.7);
}
.cp-hero-brand {
  position: relative;
  margin: 0.95rem 0 0;
  font-size: clamp(2.85rem, 7.5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.cp-hero-brand::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: 0.85rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), rgba(48, 184, 62, 0.15));
  box-shadow: 0 0 18px rgba(48, 184, 62, 0.55);
}
.cp-hero h1 {
  margin: 1.15rem 0 0;
  max-width: none;
  font-size: clamp(1.45rem, 2.9vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
.cp-hero-h1-accent {
  display: inline;
  color: rgba(232, 255, 233, 0.92);
  background: linear-gradient(90deg, #fff 0%, rgba(180, 255, 190, 0.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cp-hero-lead {
  margin: 1.2rem 0 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.cp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 2rem;
}
.cp-hero-form-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.cp-hero-form-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}
.cp-hero-form-link:hover {
  color: #fff;
}
.cp-hero-form-link:hover svg {
  transform: translateY(2px);
}
.cp-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.58) 0%, rgba(8, 10, 8, 0.4) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.cp-hero-trust > li {
  margin: 0;
  min-width: 0;
}
.cp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  height: 100%;
  min-height: 4.35rem;
  padding: 0.85rem 0.95rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.2s ease;
}
.cp-hero-trust > li:not(:last-child) .cp-trust-item::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.18) 20%,
    rgba(255, 255, 255, 0.18) 80%,
    transparent
  );
}
a.cp-trust-item:hover {
  background: rgba(48, 184, 62, 0.1);
}
.cp-trust-icon {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: rgba(48, 184, 62, 0.14);
  color: var(--green);
  box-shadow: 0 0 0 1px rgba(48, 184, 62, 0.2);
}
.cp-trust-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.cp-trust-item--google .cp-trust-icon {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.cp-trust-body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}
.cp-trust-top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.cp-trust-body strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.cp-trust-stars {
  color: #fbbc04;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.cp-trust-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.cp-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 4;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: start center;
  padding-top: 0.4rem;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.cp-hero-scroll span {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(48, 184, 62, 0.7);
  animation: cpScrollDot 1.6s ease-in-out infinite;
}
.cp-hero-scroll:hover {
  border-color: rgba(255, 255, 255, 0.55);
}
.cp-hero-copy > * {
  animation: cpFadeUp 0.75s cubic-bezier(0.16, 0.84, 0.24, 1) both;
}
.cp-hero-kicker { animation-delay: 0.05s; }
.cp-hero-brand { animation-delay: 0.1s; }
.cp-hero h1 { animation-delay: 0.16s; }
.cp-hero-lead { animation-delay: 0.22s; }
.cp-hero-actions { animation-delay: 0.28s; }
.cp-hero-trust { animation-delay: 0.36s; }

@keyframes cpHeroKen {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(1%, -0.6%, 0); }
}
@keyframes cpScrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(12px); opacity: 0.35; }
}

/* Main: channels + form */
.cp-main {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(48, 184, 62, 0.05), transparent 55%),
    #fff;
}
.cp-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.cp-aside-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.cp-aside h2,
.cp-form-head h2,
.cp-map-copy h2,
.cp-faq-head h2,
.cp-cta h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--cp-ink);
}
.cp-aside-lead,
.cp-form-head p,
.cp-map-copy p {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: var(--cp-muted);
  line-height: 1.6;
  font-weight: 500;
}
.cp-channels {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.cp-channel {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.05rem 1.15rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--cp-line);
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cp-channel:hover {
  border-color: rgba(48, 184, 62, 0.45);
  box-shadow: 0 10px 28px rgba(11, 13, 11, 0.06);
  transform: translateY(-1px);
}
.cp-channel-icon {
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--green);
}
.cp-channel-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.cp-channel-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.cp-channel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cp-muted);
}
.cp-channel-value {
  font-size: 1.05rem;
  font-weight: 740;
  letter-spacing: -0.02em;
  color: var(--cp-ink);
  word-break: break-word;
}
.cp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
  margin: 1.85rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--cp-line);
}
.cp-meta dt {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cp-muted);
}
.cp-meta dd {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.4;
  color: var(--cp-ink);
}
.cp-aside-social {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cp-line);
}
.cp-aside-social-label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.cp-form-wrap {
  min-width: 0;
}
.cp-form-head {
  margin-bottom: 1.25rem;
}
.cp-form-card {
  padding: clamp(1.45rem, 3vw, 2rem);
  border: 1px solid var(--cp-line);
  border-radius: 1.25rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(48, 184, 62, 0.06), transparent 55%),
    #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 22px 56px rgba(11, 13, 11, 0.06);
}
.cp-form-card .form-success h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.cp-form-card .form-success p {
  margin: 0.7rem 0 0;
  color: var(--cp-muted);
}
.cp-form-submit {
  margin-top: 1.15rem;
  width: 100%;
}
.cp-form-submit .btn-electric-inner {
  width: 100%;
  justify-content: center;
}

/* Map */
.cp-map {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  background: var(--cp-soft);
}
.cp-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.cp-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  padding: 0.1rem 0 0.3rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--green);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cp-map-link svg {
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.2s ease;
}
.cp-map-link:hover {
  color: var(--green-dark, #249a31);
  border-color: var(--green-dark, #249a31);
}
.cp-map-link:hover svg {
  transform: translateX(3px);
}
.cp-map-frame {
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(11, 13, 11, 0.08);
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 13, 11, 0.06);
  min-height: 320px;
}
.cp-map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* FAQ */
.cp-faq {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: #fff;
}
.cp-faq-head {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.cp-faq-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.cp-faq-head p {
  margin: 0.75rem 0 0;
  color: var(--cp-muted);
  line-height: 1.55;
  font-weight: 500;
}
.cp-faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}
.cp-faq-item {
  border: 1px solid var(--cp-line);
  border-radius: 0.95rem;
  background: #fff;
  overflow: hidden;
}
.cp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 720;
  letter-spacing: -0.015em;
  color: var(--cp-ink);
}
.cp-faq-item summary::-webkit-details-marker { display: none; }
.cp-faq-item summary span {
  position: relative;
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0;
  background: transparent;
}
.cp-faq-item summary span::before,
.cp-faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 2px;
  background: var(--green);
  transform: translate(-50%, -50%);
}
.cp-faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cp-faq-item[open] summary span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}
.cp-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--cp-muted);
  line-height: 1.6;
  font-weight: 500;
}
.cp-faq-item a {
  color: var(--green);
  font-weight: 650;
  text-decoration: none;
}
.cp-faq-item a:hover {
  text-decoration: underline;
}

/* Final CRO */
.cp-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(3.75rem, 7vw, 5.75rem) 0;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 70% at 50% -10%, rgba(48, 184, 62, 0.22), transparent 58%),
    linear-gradient(180deg, #080a08 0%, #101410 100%);
  text-align: center;
}
.cp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 40%, #000, transparent 75%);
}
.cp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}
.cp-cta-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.cp-cta h2 {
  color: #fff;
}
.cp-cta p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
  font-weight: 500;
}
.cp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

@keyframes cpFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .cp-hero {
    min-height: min(88vh, 760px);
    padding: calc(4.5rem + 76px) 0 4.5rem;
    align-items: center;
  }
  .cp-main-grid,
  .cp-map-grid {
    grid-template-columns: 1fr;
  }
  .cp-hero-bg {
    background-position: center 44%;
    filter: saturate(1.04) contrast(1.06) brightness(0.34);
  }
  .cp-hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 5, 0.7) 0%, rgba(5, 6, 5, 0.8) 48%, rgba(5, 6, 5, 0.9) 100%),
      linear-gradient(95deg, rgba(5, 6, 5, 0.86) 0%, rgba(5, 6, 5, 0.55) 100%);
  }
  .cp-hero-inner {
    display: block;
  }
  .cp-hero-copy {
    max-width: 44rem;
    margin: 0;
  }
  .cp-hero-trust {
    max-width: 100%;
    grid-template-columns: 1fr;
  }
  .cp-hero-trust > li:not(:last-child) .cp-trust-item::after {
    top: auto;
    bottom: 0;
    left: 12%;
    right: 12%;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.16) 20%,
      rgba(255, 255, 255, 0.16) 80%,
      transparent
    );
  }
  .cp-trust-item {
    min-height: 3.85rem;
  }
  .cp-hero-brand {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }
  .cp-hero-scroll {
    display: none;
  }
}

@media (max-width: 560px) {
  .cp-meta {
    grid-template-columns: 1fr;
  }
  .cp-hero h1 {
    white-space: normal;
  }
  .cp-hero-actions,
  .cp-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cp-hero-actions .btn-electric,
  .cp-cta-actions .btn-electric {
    width: 100%;
  }
  .cp-hero-actions .btn-electric-inner,
  .cp-cta-actions .btn-electric-inner {
    width: 100%;
    justify-content: center;
  }
  .cp-hero-form-link {
    justify-content: center;
    width: 100%;
  }
  .cp-map-frame iframe {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cp-hero-copy > *,
  .cp-hero-bg,
  .cp-hero-scroll span {
    animation: none !important;
  }
  .cp-hero-bg {
    transform: scale(1.05);
  }
}

/* ===== Local city SEO pages ===== */
.footer-grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr 0.85fr 1fr;
}
.footer-actief ul {
  columns: 1;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-actief {
    grid-column: 1 / -1;
  }
  .footer-actief ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 1.25rem;
  }
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
    row-gap: 1.65rem;
  }
  .footer-brand,
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-actief {
    grid-column: auto;
  }
  .footer-actief ul {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    columns: auto;
    gap: 0.45rem;
  }
}

.page-city .site-header {
  background: #0a0a0a;
}

.city-crumbs {
  padding: 0.85rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.city-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.city-crumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.city-crumbs a:hover { color: #fff; }
.city-crumbs [aria-current="page"] {
  color: rgba(255, 255, 255, 0.92);
}
.city-crumbs-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.city-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  padding: 2.25rem 0 3.25rem;
  background: #0a0a0a;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--section-slant)), 0 100%);
}
.city-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/hero-bg.jpg") center 42% / cover no-repeat;
  filter: saturate(1.05) contrast(1.08) brightness(0.42);
  transform: scale(1.03);
}
.city-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.35) 100%),
    radial-gradient(ellipse at 78% 45%, transparent 18%, rgba(0, 0, 0, 0.4) 100%);
}
.city-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  padding-top: 0.5rem;
  padding-bottom: 1.25rem;
}
.city-hero-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.city-hero-title {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 18ch;
}
.city-hero-lead {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 40rem;
}
.city-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}
.city-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.city-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.city-hero-trust svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--green);
  flex-shrink: 0;
}

.city-section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}
.city-section--surface { background: var(--surface); }
.city-section--dark {
  background: #0a0a0a;
  color: #fff;
}
.city-section-label {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.city-section-title {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 22ch;
}
.city-section--dark .city-section-title { color: #fff; }
.city-prose {
  margin-top: 1.15rem;
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.city-section--dark .city-prose { color: rgba(255, 255, 255, 0.72); }
.city-prose p { margin: 0 0 1rem; }
.city-prose p:last-child { margin-bottom: 0; }
.city-prose a {
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.city-section--dark .city-prose a { color: #7dff88; }

.city-services {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  list-style: none;
  padding: 0;
}
.city-service {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.city-service:hover {
  border-color: rgba(36, 154, 49, 0.45);
  transform: translateY(-2px);
}
.city-service h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.city-service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.city-service-link {
  margin-top: 0.35rem;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.city-why {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  list-style: none;
  padding: 0;
}
.city-why li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 1rem 0;
}
.city-why svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  color: var(--green);
  flex-shrink: 0;
}
.city-why strong {
  display: block;
  font-size: 1rem;
  font-weight: 750;
  margin-bottom: 0.25rem;
}
.city-why span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.city-region {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.city-region a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.city-region a:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.city-cta {
  background: #0a0a0a;
  color: #fff;
  padding: clamp(3.25rem, 6vw, 4.75rem) 0;
  text-align: left;
}
.city-cta-inner {
  max-width: 40rem;
}
.city-cta h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.city-cta p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 36rem;
}
.city-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

@media (max-width: 900px) {
  .city-hero {
    padding: 1.75rem 0 2.75rem;
    --section-slant: 48px;
  }
  .city-hero-title { max-width: none; }
  .city-services,
  .city-why {
    grid-template-columns: 1fr;
  }
  .city-hero-actions .btn-electric,
  .city-cta-actions .btn-electric {
    width: 100%;
  }
  .city-hero-actions .btn-electric-inner,
  .city-cta-actions .btn-electric-inner {
    width: 100%;
    justify-content: center;
  }
}

/* ===== City pages CRO upgrade ===== */
.city-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.city-split-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}
.city-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.city-split-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1.35;
  max-width: 16rem;
  backdrop-filter: blur(8px);
}
.city-split-badge strong {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.city-steps {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  list-style: none;
  padding: 0;
}
.city-step {
  padding: 1.25rem 1.3rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.city-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.city-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 750;
}
.city-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.city-projects {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.city-projects .project-tile {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}
.city-projects .project-tile--wide {
  grid-column: span 2;
}

.city-service-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.city-service-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.city-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 154, 49, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.city-service-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.city-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.city-service-card:hover .city-service-card-media img {
  transform: scale(1.04);
}
.city-service-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.city-service-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
}
.city-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}
.city-service-card span {
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.city-form-section {
  background: #fff;
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}
.city-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.city-form-copy .city-section-title {
  max-width: 16ch;
}
.city-form-lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 34rem;
}
.city-form-checks {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.city-form-checks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 650;
  color: var(--ink);
}
.city-form-checks svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.city-form-direct {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.city-form-direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  border: 1.5px solid rgba(20, 20, 20, 0.14);
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
}
.city-form-direct a:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.page-city .form-card {
  margin: 0;
}
.page-city .contact-home-submit {
  width: 100%;
}
.page-city .contact-home-submit .btn-electric-inner {
  width: 100%;
  justify-content: center;
}

.city-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.city-cta-band .city-cta-inner {
  max-width: 34rem;
}
.city-cta-band .city-cta-actions {
  margin-top: 0;
}

@media (max-width: 900px) {
  .city-split,
  .city-form-grid,
  .city-steps,
  .city-service-grid,
  .city-projects {
    grid-template-columns: 1fr;
  }
  .city-projects .project-tile--wide {
    grid-column: auto;
  }
  .city-split-media {
    max-height: 360px;
    aspect-ratio: 16 / 11;
  }
  .city-cta-band {
    align-items: stretch;
  }
  .city-cta-band .city-cta-actions {
    width: 100%;
  }
}


/* City pages: Home+Contact mix tweaks */
.page-city .cp-hero-copy .city-crumbs {
  margin: 0 0 1rem;
  padding: 0;
}
.page-city .city-crumbs ol {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.45rem;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.page-city .city-crumbs a { color: rgba(255,255,255,0.72); text-decoration: none; }
.page-city .city-crumbs a:hover { color: #fff; }
.page-city .city-crumbs [aria-current="page"] { color: rgba(255,255,255,0.92); }
.page-city .city-crumbs-sep { color: rgba(255,255,255,0.35); }
.page-city .city-seo-prose p { margin: 0 0 1rem; color: var(--muted); }
.page-city .city-seo-prose p:last-child { margin-bottom: 0; }
.page-city .city-seo-prose a { color: var(--green-dark); font-weight: 650; }
.page-city .contact-home { padding-top: clamp(3.5rem, 7vw, 5.5rem); }

/* ===== Mobile polish + sticky contact dock ===== */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
}

@media (max-width: 760px) {
  .container,
  .container-wide,
  .site-footer > .container {
    width: min(100% - 1.5rem, 1400px);
  }

  /* iOS: prevent zoom on focus */
  .form-fields input,
  .form-fields select,
  .form-fields textarea {
    font-size: 16px;
  }

  .form-fields [type="submit"] {
    width: 100%;
  }
  .form-fields [type="submit"] .btn-electric-inner,
  .form-card .btn-electric {
    width: 100%;
    justify-content: center;
  }

  .contact-direct-strip-row--primary {
    grid-template-columns: 1fr;
  }

  body.has-mob-dock {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .mob-dock {
    position: fixed;
    left: auto;
    right: 0.9rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    z-index: 80;
    display: block;
    width: auto;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mob-dock a,
  .mob-dock a.mob-dock-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 3.35rem;
    height: 3.35rem;
    min-height: 0;
    padding: 0;
    border-radius: 14px;
    font-size: 0;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
    color: #fff;
    background: var(--green-btn, #249a31);
    border: 0;
    box-shadow: none;
    filter: none;
  }
  .mob-dock a:hover,
  .mob-dock a.mob-dock-wa:hover {
    background: var(--green, #30b83e);
    box-shadow: none;
    filter: none;
  }
  .mob-dock a svg {
    width: 1.45rem;
    height: 1.45rem;
    flex-shrink: 0;
  }
}

@media (min-width: 761px) {
  .mob-dock { display: none !important; }
}

/* ===== Cookie / GDPR banner ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 240;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  background: rgba(10, 12, 11, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: #fff;
}
.cookie-banner-copy {
  flex: 1 1 14rem;
  min-width: 0;
}
.cookie-banner-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.18rem;
}
.cookie-banner-copy p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}
.cookie-banner-link {
  color: #8dff97;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover {
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 0 0 auto;
}
.cookie-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cookie-btn--primary {
  background: var(--green);
  color: #fff;
}
.cookie-btn--primary:hover {
  background: var(--green-dark, #249a31);
}
.cookie-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.cookie-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 700px) {
  .cookie-banner-inner {
    padding: 1rem;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  body:has(.cookie-banner.is-visible) .mob-dock {
    bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Advies & Regio hub */
.advies-hero {
  min-height: min(74vh, 780px);
}
.advies-hero .services-hero-bg {
  background:
    url("../images/projects/11-zonnepanelen.jpg") center 45% / cover no-repeat;
  filter: saturate(1.05) contrast(1.08) brightness(0.38);
}
.advies-hero .services-hero-inner {
  padding: calc(4.4rem + 76px) 0 clamp(3.6rem, 8vw, 5.6rem);
}
.advies-hero .city-crumbs {
  margin: 0 0 1.2rem;
  padding: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.advies-hero.is-ready .city-crumbs {
  opacity: 1;
  transform: translateY(0);
}
.advies-hero .services-hero-brand {
  font-size: clamp(3rem, 8.6vw, 6.1rem);
}
#artikels {
  scroll-margin-top: 6.5rem;
}
.advies-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem 1.2rem;
}
.advies-article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.advies-article:hover,
.advies-article:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(36, 154, 49, 0.42);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.advies-article-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.advies-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.advies-article:hover .advies-article-media img,
.advies-article:focus-visible .advies-article-media img {
  transform: scale(1.05);
}
.advies-article-body {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 1.05rem 1.1rem 1.15rem;
  flex: 1;
}
.advies-article-kicker {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.advies-article h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.advies-article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.advies-article-cta {
  margin-top: 0.35rem;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
}
.advies-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.advies-pager-btn {
  min-width: 2.55rem;
  height: 2.55rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}
.advies-pager-btn:hover:not(:disabled):not(.is-current) {
  border-color: rgba(36, 154, 49, 0.45);
}
.advies-pager-btn.is-current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.advies-pager-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
@media (max-width: 1100px) {
  .advies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .advies-hero {
    min-height: 0;
  }
  .advies-hero .services-hero-inner {
    padding: calc(3.2rem + 76px) 0 3.4rem;
  }
  .advies-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .advies-hero .city-crumbs,
  .advies-article,
  .advies-article-media img {
    transition: none;
  }
  .advies-hero .city-crumbs {
    opacity: 1;
    transform: none;
  }
  .advies-article:hover .advies-article-media img,
  .advies-article:focus-visible .advies-article-media img {
    transform: none;
  }
}

