/* Page base overrides from index.html */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #FAFBF7;
  --bg-deep: #F3F8F2;
  --surface: #FFFFFF;
  --surface-2: #F3F8F2;
  --ink: #102017;
  --muted: #5F6F63;
  --soft: rgba(16, 32, 23, 0.08);
  --line: #DDE8DC;
  --green: #123C24;
  --green-2: #B6D72A;
  --green-3: #1F6B3A;
  --natural-green: #1F6B3A;
  --ink-on-dark: #FAFBF7;
  --muted-on-dark: rgba(250, 251, 247, 0.72);
  --dark-bg: #123C24;
  --dark-deep: #0B2F1A;
  --gold: #D7A900;
  --clay: #A65A2E;
  --cyan: #1F6B3A;
  --radius: 8px;
  --shadow: 0 26px 70px rgba(16, 32, 23, 0.16);
  --max: 1180px;
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 2%, rgba(182, 215, 42, 0.13), transparent 24rem),
    linear-gradient(135deg, #FAFBF7, var(--bg-deep) 76%);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--green-2);
  color: #102017;
}

.site-shell {
  min-height: 100vh;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--bg-deep);
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(250, 251, 247, 0.14);
  background: rgba(11, 47, 26, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: max-content;
  color: var(--ink-on-dark);
}

.brand-mark path[stroke] {
  stroke: currentColor;
}

.brand-mark path[fill] {
  fill: var(--green-2);
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-name {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: rgba(250, 251, 247, 0.74);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--ink-on-dark);
  background: rgba(31, 107, 58, 0.42);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 251, 247, 0.22);
  border-radius: var(--radius);
  background: rgba(250, 251, 247, 0.08);
  color: var(--ink-on-dark);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(56px, 8vw, 108px) 0;
}

.section-alt {
  background:
    radial-gradient(circle at 88% 12%, rgba(182, 215, 42, 0.16), transparent 26rem),
    linear-gradient(135deg, var(--surface-2), var(--bg-deep));
  border-block: 1px solid var(--line);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.86;
}

h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.92;
}

h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
}

.lead {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--natural-green);
  color: var(--ink-on-dark);
  box-shadow: 0 14px 34px rgba(31, 107, 58, 0.28);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(18, 60, 36, 0.34);
  outline: none;
}

.btn-secondary {
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(16, 32, 23, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(31, 107, 58, 0.42);
  background: rgba(31, 107, 58, 0.1);
  outline: none;
}

.cta-band .btn-secondary,
.energy-page .energy-title .btn-secondary {
  border-color: rgba(250, 251, 247, 0.28);
  background: rgba(250, 251, 247, 0.08);
  color: var(--ink-on-dark);
}

.cta-band .btn-secondary:hover,
.cta-band .btn-secondary:focus-visible,
.energy-page .energy-title .btn-secondary:hover,
.energy-page .energy-title .btn-secondary:focus-visible {
  border-color: rgba(182, 215, 42, 0.68);
  background: rgba(182, 215, 42, 0.16);
  color: var(--ink-on-dark);
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(250, 251, 247, 0.14);
  background:
    radial-gradient(circle at 88% 8%, rgba(182, 215, 42, 0.16), transparent 30rem),
    radial-gradient(circle at 6% 92%, rgba(31, 107, 58, 0.28), transparent 26rem),
    linear-gradient(150deg, var(--dark-deep) 0%, var(--green) 58%, var(--dark-bg) 100%);
  color: var(--ink-on-dark);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(250, 251, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 251, 247, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 72% 30%, black, transparent 70%);
}

.home-hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) 0 clamp(52px, 7vw, 84px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-lede h1 {
  color: var(--ink-on-dark);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-lede h1 {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--ink-on-dark);
    -webkit-text-fill-color: var(--ink-on-dark);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(250, 251, 247, 0.22);
  border-radius: 999px;
  background: rgba(250, 251, 247, 0.08);
  color: var(--green-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 4px rgba(182, 215, 42, 0.22);
  content: "";
}

.hero-copy {
  max-width: 540px;
  margin-top: 22px;
  color: var(--muted-on-dark);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(640px, 100%);
  margin-top: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 20px 50px rgba(16, 32, 23, 0.1);
}

.metric {
  min-height: 116px;
  padding: 18px;
  background: var(--surface);
  color: var(--ink);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.9;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.feature-grid,
.service-grid,
.style-grid,
.step-grid,
.flow-fallback {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature,
.service,
.style-card,
.step-card,
.fallback-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(16, 32, 23, 0.1);
}

.feature,
.service,
.step-card,
.fallback-card,
.info-panel {
  padding: clamp(20px, 3vw, 28px);
}

.feature h3,
.service h3,
.step-card h3,
.fallback-card h3,
.info-panel h3 {
  margin-bottom: 12px;
}

.feature p,
.service p,
.step-card p,
.fallback-card p,
.info-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-icon,
.step-num,
.service-tag {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(182, 215, 42, 0.16);
  color: var(--natural-green);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-weight: 700;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.power-map {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 16%, rgba(182, 215, 42, 0.14), transparent 22rem),
    linear-gradient(150deg, #FFFFFF, var(--surface-2));
  box-shadow: 0 22px 54px rgba(16, 32, 23, 0.1);
}

.power-map::before {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(18, 60, 36, 0.16);
  border-radius: var(--radius);
  content: "";
}

.power-node {
  position: absolute;
  width: 128px;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(16, 32, 23, 0.12);
}

.power-node small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.node-sun {

  border-color: rgba(215, 169, 0, 0.55);
}

.node-battery {
  top: 42%;
  left: 42%;
  border-color: rgba(182, 215, 42, 0.55);
}

.node-home {
  right: 12%;
  bottom: 18%;
  border-color: rgba(31, 107, 58, 0.45);
}

.flow-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green-2), var(--natural-green), transparent);
  transform-origin: left center;
}

.flow-a {
  width: 38%;
  top: 33%;
  left: 22%;
  transform: rotate(22deg);
}

.flow-b {
  width: 36%;
  top: 60%;
  left: 52%;
  transform: rotate(28deg);
}

.cta-band {
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid rgba(182, 215, 42, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(182, 215, 42, 0.16), transparent 18rem),
    linear-gradient(135deg, var(--green), var(--dark-deep));
  color: var(--ink-on-dark);
  box-shadow: 0 28px 80px rgba(11, 47, 26, 0.22);
}

.cta-band .lead {
  max-width: 760px;
  color: var(--muted-on-dark);
}

.cta-band .eyebrow {
  color: var(--green-2);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 10vw, 118px) 0 clamp(46px, 7vw, 86px);
  border-bottom: 1px solid rgba(250, 251, 247, 0.14);
  background:
    radial-gradient(circle at 86% 6%, rgba(182, 215, 42, 0.14), transparent 30rem),
    radial-gradient(circle at 4% 96%, rgba(31, 107, 58, 0.26), transparent 24rem),
    linear-gradient(150deg, var(--dark-deep), var(--green) 62%, var(--dark-bg));
  color: var(--ink-on-dark);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(250, 251, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 251, 247, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 80% 24%, black, transparent 68%);
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero .eyebrow {
  color: var(--green-2);
}

.page-hero .lead {
  color: var(--muted-on-dark);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.video-frame {
  position: sticky;
  top: 98px;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(16, 32, 23, 0.16);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.step-grid {
  grid-template-columns: 1fr;
}

.step-card {
  min-height: 184px;
}

.style-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.style-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.style-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.style-card {
  overflow: hidden;
}

.style-thumb {
  height: 270px;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 32, 23, 0.1);
  background: #F3F8F2;
}

.style-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.style-body {
  padding: 20px;
}

.style-body h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.style-body h3 span {
  color: var(--green-2);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.style-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.style-note {
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.6;
}

.energy-page {
  background: #0B2F1A;
  color: var(--ink-on-dark);
  color-scheme: dark;
}

.energy-page .energy-title .lead,
.energy-page .fallback-card p {
  color: var(--muted-on-dark);
}

.energy-page .energy-title .eyebrow {
  color: var(--green-2);
}

.energy-page .energy-title .btn-secondary {
  border-color: rgba(250, 251, 247, 0.24);
  background: rgba(250, 251, 247, 0.08);
  color: var(--ink-on-dark);
}

.energy-page .fallback-card {
  border-color: rgba(250, 251, 247, 0.16);
  background: rgba(11, 47, 26, 0.78);
  color: var(--ink-on-dark);
  box-shadow: none;
}

.energy-page .section .cta-band {
  color: var(--ink-on-dark);
}

.energy-page .section .cta-band .eyebrow {
  color: var(--green-3);
}

.energy-page .section .cta-band .lead {
  color: var(--muted-on-dark);
}

/* ===== Interactive 3D stage ===== */
.energy-stage {
  position: relative;
}

.energy-canvas-wrap {
  position: relative;
  height: calc(100vh - 74px);
  min-height: 600px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #123C24, #0B2F1A 75%);
}

[data-energy-flow] {
  position: absolute;
  inset: 0;
  touch-action: none;
}

[data-energy-flow] canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}

[data-energy-flow] canvas.is-grabbing {
  cursor: grabbing;
}

.energy-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, transparent 50%, rgba(11, 47, 26, 0.42) 100%),
    linear-gradient(0deg, rgba(11, 47, 26, 0.62) 0%, transparent 28%, transparent 82%, rgba(11, 47, 26, 0.38) 100%);
}

.energy-title {
  position: absolute;
  left: max(16px, calc((100vw - var(--max)) / 2));
  top: clamp(86px, 11vh, 132px);
  width: min(540px, calc(100% - 32px));
  z-index: 3;
  pointer-events: none;
}

.energy-title h1 {
  max-width: 11ch;
  font-size: clamp(44px, 7vw, 92px);
}

.energy-title .lead {
  font-size: clamp(16px, 1.8vw, 19px);
}

/* drag hint */
.drag-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(124px, 18vh, 168px);
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(250, 251, 247, 0.16);
  border-radius: 999px;
  background: rgba(11, 47, 26, 0.7);
  backdrop-filter: blur(8px);
  color: rgba(250, 251, 247, 0.82);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.drag-hint svg {
  width: 16px;
  height: 16px;
  color: var(--green-2);
}

.drag-hint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

/* active-stage description panel */
.stage-panel {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: clamp(96px, 16vh, 150px);
  width: min(360px, calc(100% - 32px));
  z-index: 3;
  padding: 22px 24px;
  border: 1px solid rgba(182, 215, 42, 0.32);
  border-radius: 16px;
  background: rgba(11, 47, 26, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.stage-panel.is-in {
  opacity: 1;
  transform: none;
}

.stage-panel-eyebrow {
  margin: 0 0 8px;
  color: var(--green-2);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-panel h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  color: var(--ink-on-dark);
}

.stage-panel p {
  margin: 12px 0 0;
  color: var(--muted-on-dark);
  font-size: 15px;
  line-height: 1.55;
}

/* stage selector */
.stage-nav {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 5vh, 44px);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(var(--max), calc(100% - 24px));
  padding: 8px;
  border: 1px solid rgba(250, 251, 247, 0.12);
  border-radius: 999px;
  background: rgba(11, 47, 26, 0.74);
  backdrop-filter: blur(12px);
}

.stage-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(250, 251, 247, 0.74);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.stage-btn-num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--green-2);
}

.stage-btn:hover {
  color: var(--ink-on-dark);
  background: rgba(182, 215, 42, 0.12);
}

.stage-btn.is-active {
  color: #102017;
  background: var(--green-2);
  border-color: var(--green-2);
}

.stage-btn.is-active .stage-btn-num {
  color: #102017;
}

.flow-fallback {
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.site-footer {
  border-top: 1px solid rgba(250, 251, 247, 0.12);
  background: var(--dark-deep);
}

.footer-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(250, 251, 247, 0.64);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
}

.footer-wrap a {
  text-decoration: none;
  color: var(--ink-on-dark);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    padding: 14px 16px 18px;
    border-bottom: 1px solid rgba(250, 251, 247, 0.12);
    background: rgba(11, 47, 26, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 50px rgba(16, 32, 23, 0.24);
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .main-nav a {
    justify-content: flex-start;
  }

  .feature-grid,
  .service-grid,
  .style-grid,
  .flow-fallback {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-content {
    grid-template-columns: 1fr;
    gap: clamp(32px, 7vw, 56px);
  }

  .split-band,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .video-frame {
    position: static;
  }

  .stage-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: clamp(90px, 14vh, 130px);
    width: min(420px, calc(100% - 24px));
    text-align: center;
  }

  .stage-panel.is-in {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .container,
  .home-hero-content,
  .footer-wrap {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: clamp(50px, 18vw, 78px);
  }

  .home-hero {
    min-height: auto;
  }

  .hero-metrics,
  .feature-grid,
  .service-grid,
  .style-grid,
  .flow-fallback {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 96px;
  }

  .style-intro,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .style-thumb {
    height: 220px;
  }

  .power-map {
    min-height: 410px;
  }

  .power-node {
    width: 108px;
    min-height: 82px;
    font-size: 14px;
  }

  .energy-canvas-wrap {
    height: calc(100vh - 64px);
    min-height: 560px;
  }

  .energy-title {
    top: 84px;
  }

  .energy-title .lead {
    display: none;
  }

  .drag-hint {
    bottom: clamp(150px, 24vh, 200px);
    font-size: 11px;
    padding: 7px 12px;
  }

  .stage-panel {
    bottom: clamp(94px, 16vh, 140px);
    padding: 16px 18px;
  }

  .stage-panel h2 {
    font-size: 22px;
  }

  .stage-panel p {
    font-size: 13.5px;
  }

  .stage-nav {
    bottom: 16px;
    gap: 6px;
    padding: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .stage-btn {
    flex: 0 0 auto;
    padding: 0 14px;
    font-size: 13px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .energy-canvas-wrap {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 120px 0 42px;
  }

  [data-energy-flow],
  .energy-overlay,
  .drag-hint,
  .stage-panel,
  .stage-nav {
    display: none;
  }

  .energy-title {
    position: relative;
    inset: auto;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 34px;
  }

  .flow-fallback {
    display: grid;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
  }
}

/* ============================================================
   SEO / conversie-uitbreiding (certificeringen, footer, FAQ,
   formulieren, contact, diensten) — toegevoegd voor vindbaarheid.
   ============================================================ */

/* ---- Hero certificeringen ---- */
.hero-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-certs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(182, 215, 42, 0.32);
  border-radius: 999px;
  background: rgba(250, 251, 247, 0.06);
  color: var(--ink-on-dark);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: default;
}

.hero-certs li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
}

/* ---- Certificeringen-grid (over ons) ---- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cert-card {
  padding: clamp(18px, 2.6vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(16, 32, 23, 0.08);
}

.cert-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  color: var(--natural-green);
}

.cert-card span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

/* ---- Uitgebreide footer ---- */
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
}

.footer-col h2 {
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-2);
}

.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: rgba(250, 251, 247, 0.74);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.16s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--ink-on-dark);
}

.footer-brand {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--ink-on-dark) !important;
  margin-bottom: 12px !important;
}

.footer-about p {
  margin: 0 0 16px;
  max-width: 34ch;
  color: var(--muted-on-dark);
  font-size: 14px;
  line-height: 1.6;
}


.footer-contact .footer-phone {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-on-dark) !important;
}

.footer-contact p {
  margin: 6px 0 14px;
  color: var(--muted-on-dark);
  font-size: 13px;
  line-height: 1.6;
}

.footer-cta {
  margin-top: 4px;
  color: var(--ink-on-dark) !important;
}

.footer-base {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(250, 251, 247, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: rgba(250, 251, 247, 0.6);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 820px;
  margin: 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 12px;
  box-shadow: 0 12px 30px rgba(16, 32, 23, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 26px;
  line-height: 1;
  color: var(--natural-green);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Formulieren (offerte/contact) ---- */
.form-card {
  max-width: 760px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(31, 107, 58, 0.4);
  outline-offset: 1px;
  border-color: var(--natural-green);
}

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

.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

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

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(16, 32, 23, 0.06);
}

.contact-card .ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(182, 215, 42, 0.16);
  color: var(--natural-green);
}

.contact-card .ico svg {
  width: 20px;
  height: 20px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.contact-card a,
.contact-card p {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
  margin: 0;
}

.contact-card a:hover {
  color: var(--natural-green);
}

.contact-card .big {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  color: var(--ink);
}

/* ---- Diensten-hub ---- */
.dienst-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dienst-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(16, 32, 23, 0.08);
}

.dienst-card h3 {
  margin-bottom: 10px;
}

.dienst-card p {
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.dienst-card .btn {
  margin-top: 18px;
  align-self: flex-start;
}

.dienst-card .tag {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(182, 215, 42, 0.16);
  color: var(--natural-green);
}

.dienst-card .tag svg {
  width: 24px;
  height: 24px;
}

/* ---- USP check-lijst ---- */
.usp-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.usp-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}

.usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---- Responsive aanvullingen ---- */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cert-grid,
  .dienst-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cert-grid,
  .dienst-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Scan → offerte funnel ---- */
.result-intro {
  margin: 6px 0 22px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.6;
}

.scan-result .result-grid-single {
  grid-template-columns: minmax(0, 340px);
}

.scan-offerte {
  margin-top: 24px;
  max-width: none;
}

.scan-offerte-title {
  margin: 0 0 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  color: var(--ink);
}

@keyframes prodIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.result-rec-product {
  animation: prodIn 0.5s both;
}

@media (prefers-reduced-motion: reduce) {
  .result-rec-product {
    animation: none;
  }
}

/* ================= HERO VISUAL (editorial split) ================= */
    .hero-visual {
      position: relative;
      isolation: isolate;
      min-height: 420px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background:
        radial-gradient(circle at 78% 14%, rgba(182,215,42,0.18), transparent 60%),
        linear-gradient(155deg, #ffffff 0%, var(--surface-2) 100%);
      box-shadow: 0 34px 80px rgba(16,32,23,0.16);
      overflow: hidden;
    }

    /* soft moving glow behind the diagram */
    .hero-visual::before {
      content: '';
      position: absolute;
      inset: -30% -10% auto auto;
      width: 70%;
      height: 70%;
      z-index: -1;
      background: radial-gradient(circle, rgba(31,107,58,0.22), transparent 70%);
      animation: heroGlow 9s ease-in-out infinite alternate;
    }

    @keyframes heroGlow {
      0%   { transform: translate(0, 0) scale(1); }
      100% { transform: translate(-12%, 14%) scale(1.18); }
    }

    .hero-visual-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }

    .hero-visual-title {
      font-family: "IBM Plex Mono", monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 11px;
      border: 1px solid rgba(182,215,42,0.4);
      border-radius: 999px;
      background: rgba(182,215,42,0.12);
      font-family: "IBM Plex Mono", monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #1F6B3A;
    }

    .hero-live::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green-2);
      box-shadow: 0 0 0 0 rgba(182,215,42,0.6);
      animation: livePulse 1.6s ease-in-out infinite;
    }

    @keyframes livePulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(182,215,42,0.55); }
      50%       { opacity: 0.55; box-shadow: 0 0 0 6px rgba(182,215,42,0); }
    }

    /* live readout */
    .hero-readout {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 2px 0 16px;
    }

    .hero-readout strong {
      font-family: "Barlow Condensed", Impact, sans-serif;
      font-size: 56px;
      line-height: 0.9;
      color: var(--green);
    }

    .hero-readout span {
      font-family: "IBM Plex Mono", monospace;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
    }

    /* the flow diagram: Zon -> Batterij -> Woning */
    .hero-flow {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      align-items: stretch;
    }

    /* connecting track behind the nodes */
    .hero-flow::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 16%;
      right: 16%;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(215,169,0,0.5), rgba(182,215,42,0.6), rgba(31,107,58,0.55));
      z-index: 0;
    }

    /* travelling energy dot */
    .hero-flow::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 16%;
      width: 11px;
      height: 11px;
      margin-top: -4px;
      border-radius: 50%;
      background: var(--green-2);
      box-shadow: 0 0 12px rgba(182,215,42,0.9);
      animation: heroDot 2.6s cubic-bezier(0.65,0,0.35,1) infinite;
      z-index: 1;
    }

    @keyframes heroDot {
      0%   { left: 16%; opacity: 0; transform: scale(0.6); }
      10%  { opacity: 1; transform: scale(1); }
      90%  { opacity: 1; transform: scale(1); }
      100% { left: 84%; opacity: 0; transform: scale(0.6); }
    }

    .hero-node {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 14px 8px 12px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--surface);
      box-shadow: 0 14px 30px rgba(16,32,23,0.1);
      text-align: center;
    }

    .hero-node-ico {
      position: relative;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(182,215,42,0.14);
      color: var(--green);
    }

    .hero-node-ico svg { width: 24px; height: 24px; }
    .node-sun  .hero-node-ico { background: rgba(215,169,0,0.16); color: #D7A900; }
    .node-cell .hero-node-ico { background: rgba(182,215,42,0.16); color: #1F6B3A; }
    .node-house .hero-node-ico { background: rgba(31,107,58,0.16); color: #1F6B3A; }

    /* pulsing ring on each icon */
    .hero-node-ico::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 14px;
      border: 1.5px solid currentColor;
      opacity: 0;
      animation: nodeRing 2.8s ease-out infinite;
    }
    .node-sun  .hero-node-ico::after { animation-delay: 0s; }
    .node-cell .hero-node-ico::after { animation-delay: 0.9s; }
    .node-house .hero-node-ico::after { animation-delay: 1.8s; }

    @keyframes nodeRing {
      0%   { transform: scale(0.85); opacity: 0; }
      18%  { opacity: 0.6; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    .hero-node b {
      font-family: "Barlow Condensed", Impact, sans-serif;
      font-size: 18px;
      letter-spacing: 0.01em;
      color: var(--ink);
    }

    .hero-node small {
      font-family: "IBM Plex Mono", monospace;
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
    }

    .hero-stat {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-family: "IBM Plex Mono", monospace;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
    }

    .hero-stat b { color: var(--green); }

    /* ================= POWER MAP: live animations (light) ================= */
    .power-node {
      overflow: visible;
      cursor: default;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      z-index: 1;
    }

    .power-node:hover {
      transform: scale(1.07);
      box-shadow: 0 18px 40px rgba(16,32,23,0.2);
      z-index: 3;
    }

    /* Pulsing ring */
    .power-node::before {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 14px;
      border: 1.5px solid;
      opacity: 0;
      pointer-events: none;
      animation: nodeRing 2.8s ease-out infinite;
    }

    .node-sun::before     { border-color: rgba(215,169,0,0.6);  animation-delay: 0s; }
    .node-battery::before { border-color: rgba(182,215,42,0.65); animation-delay: 0.93s; }
    .node-home::before    { border-color: rgba(31,107,58,0.6);  animation-delay: 1.86s; }

    /* Tooltip on hover */
    .power-node::after {
      content: attr(data-tip);
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: var(--green);
      border: 1px solid rgba(182,215,42,0.4);
      border-radius: 8px;
      padding: 8px 13px;
      font-size: 12px;
      font-family: "IBM Plex Sans", sans-serif;
      font-weight: 600;
      color: #FAFBF7;
      white-space: nowrap;
      z-index: 10;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.18s, transform 0.18s;
      box-shadow: 0 12px 28px rgba(16,32,23,0.25);
    }

    .power-node:hover::after {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* Energy dots along flow lines */
    .flow-line { overflow: visible; }

    .flow-line::before,
    .flow-line::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 10px;
      height: 10px;
      background: var(--green-2);
      border-radius: 50%;
      transform: translateY(-50%);
      animation: dotFlow 2.3s linear infinite;
      pointer-events: none;
      box-shadow: 0 0 8px rgba(182,215,42,0.7);
    }

    .flow-line::after {
      width: 7px;
      height: 7px;
      background: rgba(31,107,58,0.9);
      animation-delay: 1.15s;
      box-shadow: 0 0 6px rgba(31,107,58,0.6);
    }

    @keyframes dotFlow {
      0%   { left: 0%;   opacity: 0; }
      8%   { opacity: 1; }
      88%  { opacity: 1; }
      100% { left: 100%; opacity: 0; }
    }

    /* LIVE badge */
    .power-map-live {
      position: absolute;
      top: 14px;
      right: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(182,215,42,0.4);
      border-radius: 999px;
      padding: 5px 11px;
      font-family: "IBM Plex Mono", monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #1F6B3A;
      z-index: 2;
      box-shadow: 0 8px 20px rgba(16,32,23,0.1);
    }

    .power-map-live::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--green-2);
      border-radius: 50%;
      animation: livePulse 1.5s ease-in-out infinite;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-visual::before,
      .hero-flow::after,
      .hero-node-ico::after,
      .hero-live::before,
      .power-node::before,
      .flow-line::before,
      .flow-line::after,
      .power-map-live::before { animation: none; opacity: 1; }
    }
    /* ============================================================
       CONVERSIE-UPGRADE — hero-foto + depth, 2x2 diensten met
       CSS-3D tilt, snelle offerte, formulier en sticky CTA.
       (Pure CSS/JS, geen libraries; respecteert reduced-motion.)
       ============================================================ */

    .btn-lg {
      min-height: 54px;
      padding: 0 26px;
      font-size: 16px;
    }

    #diensten {
      scroll-margin-top: 92px;
    }

    /* ---- Hero: langere conversie-kop netjes laten breken ---- */
    .hero-lede h1 {
      max-width: 15ch;
      font-size: clamp(38px, 6.2vw, 74px);
      line-height: 1.02;
      padding-bottom: 0.04em;
      overflow-wrap: normal;
      word-break: keep-all;
      text-wrap: balance;
    }

    /* ---- Hero: trustpunten onder de knoppen ---- */
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 26px;
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
    }

    .hero-trust li {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--ink-on-dark);
      font-size: 15px;
      font-weight: 700;
    }

    .hero-trust .ico {
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgba(182, 215, 42, 0.42);
      background: rgba(182, 215, 42, 0.14);
      color: var(--green-2);
    }

    .hero-trust .ico svg {
      width: 17px;
      height: 17px;
    }

    /* ---- Hero visual: foto met depth/parallax ---- */
    .hero-stage {
      position: relative;
      perspective: 1500px;
      padding: 6px;
    }

    .hero-stage-inner {
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .hero-photo-card {
      position: relative;
      margin: 0;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(250, 251, 247, 0.16);
      background: #0B2F1A;
      box-shadow: 0 44px 96px rgba(0, 0, 0, 0.46);
      aspect-ratio: 748 / 940;
      transform: translateZ(0);
    }

    .hero-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 42% center;
    }

    .hero-photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 47, 26, 0.18) 0%, transparent 26%, transparent 72%, rgba(11, 47, 26, 0.28) 100%);
      pointer-events: none;
    }

    .hero-photo-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(182, 215, 42, 0.4);
      background: rgba(11, 47, 26, 0.6);
      backdrop-filter: blur(10px);
      transform: translateZ(70px);
    }

    .hero-photo-badge svg {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
    }

    .hero-photo-badge span {
      font-family: "Barlow Condensed", Impact, sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.13em;
      color: var(--ink-on-dark);
    }

    .hero-float-chip {
      position: absolute;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 15px;
      border-radius: 14px;
      border: 1px solid rgba(250, 251, 247, 0.16);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 20px 44px rgba(11, 47, 26, 0.32);
      color: var(--ink);
      font-size: 13.5px;
      font-weight: 700;
      line-height: 1.2;
      animation: heroChipFloat 6s ease-in-out infinite;
    }

    .hero-float-chip small {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 11.5px;
      font-weight: 600;
    }

    .hero-float-chip .dot {
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 9px;
      background: rgba(182, 215, 42, 0.2);
      color: var(--natural-green);
    }

    .hero-float-chip .dot svg {
      width: 16px;
      height: 16px;
    }

    .chip-a {
      right: -14px;
      bottom: 86px;
      transform: translateZ(110px);
      animation-delay: -1.4s;
    }

    .chip-b {
      left: -16px;
      top: 96px;
      transform: translateZ(90px);
    }

    @keyframes heroChipFloat {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -10px; }
    }

    /* ---- 2x2 diensten met CSS-3D tilt ---- */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      perspective: 1600px;
    }

    .product-card {
      position: relative;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      background: var(--surface);
      box-shadow: 0 22px 54px rgba(16, 32, 23, 0.1);
      transform-style: preserve-3d;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
      will-change: transform;
    }

    .product-visual {
      position: relative;
      overflow: hidden;
      background: linear-gradient(150deg, #ffffff, var(--surface-2));
    }

    .product-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 42% center;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #diensten .product-visual {
      padding: clamp(10px, 1.6vw, 18px);
    }

    #diensten .product-visual img {
      object-fit: contain;
      object-position: center;
    }

    .product-visual.is-placeholder {
      display: grid;
      place-items: center;
      background:
        repeating-linear-gradient(135deg, rgba(31, 107, 58, 0.07) 0 11px, transparent 11px 22px),
        linear-gradient(150deg, var(--surface-2), #E8F1E6);
    }

    .product-visual .ph-label {
      padding: 7px 14px;
      border: 1px dashed rgba(31, 107, 58, 0.34);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.66);
      color: var(--natural-green);
      font-family: "IBM Plex Mono", ui-monospace, monospace;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 11px 6px 8px;
      border-radius: 999px;
      border: 1px solid rgba(182, 215, 42, 0.4);
      background: rgba(11, 47, 26, 0.58);
      backdrop-filter: blur(8px);
    }

    .product-badge svg {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
    }

    .product-badge span {
      font-family: "Barlow Condensed", Impact, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--ink-on-dark);
    }

    .product-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: clamp(20px, 2.6vw, 28px);
    }

    .product-cat {
      margin: 0 0 8px;
      color: var(--natural-green);
      font-family: "IBM Plex Mono", ui-monospace, monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .product-card h3 {
      margin-bottom: 10px;
    }

    .product-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .product-card .product-link {
      margin-top: 18px;
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--natural-green);
      font-weight: 800;
      text-decoration: none;
    }

    .product-card .product-link svg {
      width: 17px;
      height: 17px;
      transition: transform 0.2s ease;
    }

    @media (hover: hover) {
      .product-card:hover {
        box-shadow: 0 38px 78px rgba(16, 32, 23, 0.2);
      }

      .product-card:hover .product-visual img {
        transform: scale(1.045);
      }

      .product-card:hover .product-link svg {
        transform: translateX(4px);
      }
    }

    /* ---- Snelle offerte-band ---- */
    .quick-offerte {
      display: grid;
      grid-template-columns: 1.35fr 0.65fr;
      align-items: center;
      gap: clamp(28px, 5vw, 64px);
      padding: clamp(34px, 6vw, 60px);
      border: 1px solid rgba(182, 215, 42, 0.22);
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 88% 16%, rgba(182, 215, 42, 0.16), transparent 20rem),
        linear-gradient(135deg, var(--green), var(--dark-deep));
      color: var(--ink-on-dark);
      box-shadow: 0 28px 80px rgba(11, 47, 26, 0.22);
    }

    .quick-offerte .eyebrow {
      color: var(--green-2);
    }

    .quick-offerte h2 {
      color: var(--ink-on-dark);
    }

    .quick-offerte .lead {
      color: var(--muted-on-dark);
    }

    .quick-points {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .quick-points li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--ink-on-dark);
      font-weight: 700;
      line-height: 1.4;
    }

    .quick-points li svg {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      margin-top: 1px;
      color: var(--green-2);
    }

    /* ---- Offerteformulier ---- */
    .offerte-form,
    .form-success {
      margin-inline: auto;
    }

    .offerte-form .button-row {
      margin-top: 8px;
    }

    .form-success {
      max-width: 760px;
      text-align: center;
      padding: clamp(34px, 5vw, 52px);
    }

    .form-success .ok {
      width: 58px;
      height: 58px;
      margin: 0 auto 16px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(182, 215, 42, 0.2);
      color: var(--natural-green);
    }

    .form-success .ok svg {
      width: 30px;
      height: 30px;
    }

    .form-success h3 {
      margin-bottom: 10px;
    }

    .form-success p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ---- Sticky offerte-CTA ---- */
    .sticky-cta {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 60;
      opacity: 0;
      transform: translateY(16px);
      pointer-events: none;
      transition: opacity 0.32s ease, transform 0.32s ease;
    }

    .sticky-cta.is-visible {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }

    .sticky-cta.is-suppressed {
      opacity: 0 !important;
      transform: translateY(16px) !important;
      pointer-events: none !important;
    }

    .sticky-cta .sticky-btn {
      box-shadow: 0 20px 46px rgba(11, 47, 26, 0.44);
    }

    @media (max-width: 640px) {
      .quick-offerte {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .sticky-cta {
        right: 0;
        left: 0;
        bottom: 0;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(11, 47, 26, 0.96);
        border-top: 1px solid rgba(182, 215, 42, 0.3);
        backdrop-filter: blur(14px);
      }

      .sticky-cta .sticky-btn {
        width: 100%;
        min-height: 52px;
      }

      .chip-a {
        right: -6px;
        bottom: 70px;
      }

      .chip-b {
        display: none;
      }
    }

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

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

    @media (prefers-reduced-motion: reduce) {
      .hero-float-chip {
        animation: none !important;
      }

      .hero-stage-inner,
      .product-card,
      .product-visual img {
        transition: none !important;
      }
    }
    /* ---- Footer certificeringen-emblemen ---- */
.footer-cert-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 32px;
}

.footer-cert-head {
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-2);
}

.footer-cert-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  justify-content: start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cert-logo-card {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border: 1px solid rgba(250, 251, 247, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cert-logo-card:hover,
.cert-logo-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(182, 215, 42, 0.58);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.cert-logo-card img {
  width: 100%;
  max-width: 92px;
  height: 30px;
  object-fit: contain;
  border-radius: 0;
}


@media (max-width: 900px) {
  .footer-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 140px));
  }

  .cert-logo-card {
    min-height: 58px;
    padding: 8px;
  }

  .cert-logo-card img {
    max-width: 100px;
    height: 32px;
  }
}
/* ---- Offerte-trigger knoppen: oranje accent ---- */
    .btn-primary[href="Offerte.html"],
    .btn-primary[href^="mailto:info@climature.nl"],
    .offerte-form button[type="submit"] {
      background: #ec7e00;
      color: #ffffff;
      box-shadow: 0 14px 34px rgba(236, 126, 0, 0.32);
    }

    .btn-primary[href="Offerte.html"]:hover,
    .btn-primary[href="Offerte.html"]:focus-visible,
    .btn-primary[href^="mailto:info@climature.nl"]:hover,
    .btn-primary[href^="mailto:info@climature.nl"]:focus-visible,
    .offerte-form button[type="submit"]:hover,
    .offerte-form button[type="submit"]:focus-visible {
      background: #d06f00;
      box-shadow: 0 18px 40px rgba(236, 126, 0, 0.42);
    }

    .sticky-cta .sticky-btn {
      box-shadow: 0 20px 46px rgba(236, 126, 0, 0.42);
    }

/* ============================================================
   Homepage conversie-upgrade v2: reviews, adviesformulier,
   projecten, trustbar, werkgebied en eind-CTA.
   ============================================================ */

.hero-actions {
  align-items: stretch;
}

.hero-actions .btn {
  min-width: 220px;
}

.reviews-section {
  padding: clamp(28px, 4.6vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(182, 215, 42, 0.12), transparent 20rem),
    linear-gradient(135deg, #ffffff, var(--surface-2));
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.reviews-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-stars {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(215, 169, 0, 0.34);
  border-radius: 999px;
  background: rgba(215, 169, 0, 0.1);
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.reviews-summary h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
}

.reviews-summary p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 32, 23, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.review-nav:hover,
.review-nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 107, 58, 0.32);
  color: var(--natural-green);
}

.review-nav:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.review-nav svg {
  width: 20px;
  height: 20px;
}

.review-count {
  min-width: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.reviews-slider {
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 107, 58, 0.42) transparent;
}

.reviews-track::-webkit-scrollbar {
  height: 8px;
}

.reviews-track::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.32);
}

.review-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(16, 32, 23, 0.08);
  scroll-snap-align: start;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 107, 58, 0.26);
  box-shadow: 0 24px 54px rgba(16, 32, 23, 0.12);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.62;
}

.review-card footer {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-card strong {
  color: var(--ink);
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
}

.product-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.advice-section {
  padding-top: clamp(52px, 7vw, 92px);
}

.advice-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(182, 215, 42, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(182, 215, 42, 0.16), transparent 20rem),
    linear-gradient(135deg, var(--green), var(--dark-deep));
  color: var(--ink-on-dark);
  box-shadow: 0 28px 80px rgba(11, 47, 26, 0.22);
}

.advice-panel .eyebrow,
.advice-panel h2 {
  color: var(--ink-on-dark);
}

.advice-panel .eyebrow {
  color: var(--green-2);
}

.advice-panel .lead {
  color: var(--muted-on-dark);
}

.advice-copy h2,
.home-cert-bar h2,
.service-area-panel h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.98;
}

.home-advice-form {
  max-width: none;
  width: 100%;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.home-advice-form .field-grid {
  margin-bottom: 4px;
}

.home-advice-form button[type="submit"] {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: #ec7e00;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(236, 126, 0, 0.32);
}

.home-advice-form button[type="submit"]:hover,
.home-advice-form button[type="submit"]:focus-visible {
  background: #d06f00;
  box-shadow: 0 18px 40px rgba(236, 126, 0, 0.42);
  outline: none;
}

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

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark-deep);
  box-shadow: 0 22px 54px rgba(16, 32, 23, 0.12);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 47, 26, 0.04) 0%, rgba(11, 47, 26, 0.22) 42%, rgba(11, 47, 26, 0.86) 100%);
  pointer-events: none;
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  color: var(--ink-on-dark);
}

.project-overlay h3 {
  max-width: 12ch;
  margin-bottom: 8px;
  color: var(--ink-on-dark);
}

.project-overlay p {
  margin: 0;
  color: var(--muted-on-dark);
  line-height: 1.45;
}

.project-overlay a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-2);
  font-weight: 800;
  text-decoration: none;
}

.project-card:hover img {
  transform: scale(1.055);
}

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

.benefit-card {
  min-height: 210px;
  padding: clamp(20px, 2.5vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(16, 32, 23, 0.08);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(182, 215, 42, 0.16);
  color: var(--natural-green);
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
}

.benefit-card h3 {
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.02;
}

.why-now-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(31, 107, 58, 0.18);
  border-radius: var(--radius);
  background: rgba(31, 107, 58, 0.08);
}

.why-now-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
}

.home-cert-bar {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(16, 32, 23, 0.08);
}

.home-cert-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-cert-list li {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.home-cert-list img {
  width: 100%;
  max-width: 104px;
  height: 34px;
  object-fit: contain;
}

.service-area-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(31, 107, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 107, 58, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, var(--surface-2));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 22px 54px rgba(16, 32, 23, 0.1);
}

.area-map {
  min-height: 260px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
  padding: 22px;
  border: 1px dashed rgba(31, 107, 58, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.area-map span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(31, 107, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.area-map span:first-child {
  grid-column: 1 / -1;
  background: rgba(182, 215, 42, 0.22);
}

.final-cta-section {
  padding-top: 0;
}

.final-cta-band {
  text-align: left;
}

.cta-proof {
  margin: 22px 0 0;
  color: rgba(250, 251, 247, 0.78);
  font-size: 14px;
  font-weight: 700;
}

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

  .reviews-track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .project-card,
  .project-card img {
    min-height: 360px;
  }

  .advice-panel,
  .home-cert-bar,
  .service-area-panel {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cert-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-hero-content {
    padding: 38px 0 42px;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.15;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-trust li {
    font-size: 14px;
  }

  .hero-stage {
    width: min(100%, 380px);
    margin: 0 auto;
  }

  .hero-photo-card {
    aspect-ratio: 16 / 10;
  }

  .chip-a {
    right: 10px;
    bottom: 14px;
  }

  .reviews-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-controls {
    width: 100%;
    justify-content: space-between;
  }

  .reviews-track {
    grid-auto-columns: min(86vw, 360px);
    padding-bottom: 14px;
  }

  .review-card {
    min-height: auto;
  }

  .advice-panel {
    padding: 24px;
  }

  .home-advice-form {
    padding: 20px;
  }

  .project-card,
  .project-card img {
    min-height: 330px;
  }

  .benefit-grid,
  .home-cert-list {
    grid-template-columns: 1fr;
  }

  .why-now-copy {
    align-items: stretch;
    flex-direction: column;
  }

  .why-now-copy .btn,
  .final-cta-band .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.15;
  }

  .area-map {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-card,
  .project-card img {
    transition: none !important;
  }

  .review-card:hover,
  .project-card:hover img {
    transform: none !important;
  }
}

/* ============================================================
   CLIMATURE 1.1.2 — gelijke hero-titelgrootte op alle pagina's
   Maakt de hoofdkoppen gelijk aan de homepage hero.
   ============================================================ */
.hero-lede h1,
.page-hero h1,
.scan-hero h1,
.play-hero h1,
.terms-hero h1,
.guarantee-hero h1,
.energy-title h1 {
  max-width: 15ch;
  font-size: clamp(38px, 6.2vw, 74px);
  line-height: 1.02;
  padding-bottom: 0.04em;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.process-page .page-hero h1 {
  max-width: 15ch;
}

@media (max-width: 640px) {
  .hero-lede h1,
  .page-hero h1,
  .scan-hero h1,
  .play-hero h1,
  .terms-hero h1,
  .guarantee-hero h1,
  .energy-title h1 {
    font-size: clamp(38px, 13.5vw, 62px);
    line-height: 1;
  }
}
