/* =========================================================================
   ENERGIESTURING.BE — Design System & Styles
   Stack: vanilla HTML/CSS/JS · mobile-first · no build step
   ========================================================================= */

/* ---- 1. Design tokens ------------------------------------------------- */
:root {
  /* Brand */
  --ink:        #0C1A22;   /* deep teal-navy — headings, dark sections */
  --ink-2:      #112733;
  --ink-3:      #16323F;
  --green:      #7D9F26;   /* energy green — primary accent (brand main color) */
  --green-600:  #6B8A20;
  --green-700:  #546E18;
  --teal:       #1AA6B7;   /* flow / verbinding — secondary accent */
  --amber:      #F0A92B;   /* productie / highlight (matches dashboard) */

  /* Surfaces */
  --bg:         #FFFFFF;
  --bg-soft:    #F3F7F5;
  --bg-soft-2:  #ECF2EF;
  --card:       #FFFFFF;
  --line:       #E4ECE8;
  --line-2:     #D5E0DB;

  /* Text */
  --text:       #0C1A22;
  --muted:      #54656D;
  --muted-2:    #7B8A90;
  --on-dark:    #EAF2EE;
  --on-dark-mut:#9DB2AC;

  /* Effects */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --shadow-sm:  0 1px 2px rgba(12,26,34,.06), 0 1px 3px rgba(12,26,34,.05);
  --shadow:     0 8px 24px rgba(12,26,34,.08), 0 2px 6px rgba(12,26,34,.05);
  --shadow-lg:  0 24px 60px rgba(12,26,34,.16);
  --ring:       0 0 0 4px rgba(125,159,38,.18);

  --maxw:       1160px;
  --gap:        clamp(1rem, 3vw, 2rem);

  --font-head:  "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body:  "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---- 2. Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { font-size: 106.25%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; color: var(--ink); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---- 3. Layout helpers ------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(1.8rem, 4vw, 3.2rem); }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--tight { padding-block: clamp(1.6rem, 3.5vw, 2.8rem); }
.uc-page .section { padding-block: clamp(1.6rem, 3.4vw, 2.5rem); }
.uc-page .section-head { margin-bottom: clamp(.9rem, 2.4vw, 1.5rem); }
.uc-page .page-hero { padding-block: clamp(1.2rem, 2.4vw, 1.9rem); }
.uc-systems { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 0 0 1.3rem; }
.uc-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem .8rem .4rem .62rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--ink); }
.uc-chip svg { width: 16px; height: 16px; color: var(--green-700); flex: none; }
.uc-intro { font-size: 1.04rem; color: var(--text); line-height: 1.6; max-width: 680px; margin: 0 auto 1.6rem; text-align: center; }
.uc-hero { display: grid; gap: clamp(1.4rem, 4vw, 2.6rem); align-items: start; }
@media (min-width: 880px) { .uc-hero { grid-template-columns: 1.22fr .78fr; align-items: stretch; } }
.uc-hero-text .uc-comp { margin: 0 0 1rem; }
.uc-hero-text .uc-intro { text-align: left; max-width: none; margin: .3rem 0 1.1rem; }
.uc-illu { margin: 0; order: 2; background: #EEF4F1; border-radius: 18px; display: flex; align-items: center; justify-content: center; padding: clamp(.7rem, 2vw, 1.4rem); }
.uc-illu svg { width: 100%; height: auto; display: block; }
@media (max-width: 879px) { .uc-illu { max-width: 460px; margin-inline: auto; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--green-600);
}
.section--ink .eyebrow { color: var(--green); }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

.section-head { max-width: 740px; margin-bottom: clamp(1.3rem, 3vw, 2rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); margin-top: .7rem; }
.section-head p { color: var(--muted); margin-top: .9rem; font-size: 1.06rem; }
.section--ink .section-head p { color: var(--on-dark-mut); }

.grid { display: grid; gap: var(--gap); }
@media (min-width: 720px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px)  { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---- 4. Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.4rem; border-radius: 10px; border: 1px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
/* Subtiele, trage beweging van het rekenmachine-icoon in de header-CTA */
.nav-cta svg { transform-origin: 50% 60%; animation: nav-cta-calc 3.4s ease-in-out infinite; }
@keyframes nav-cta-calc { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-1.5px) rotate(-5deg); } }
/* Trage achtergrondpuls (groen → iets donkerder → terug) zodat de knop opvalt */
.nav-cta { animation: nav-cta-bg 3.4s ease-in-out infinite; }
@keyframes nav-cta-bg { 0%, 100% { background-color: var(--green); } 50% { background-color: var(--green-700); } }
@media (prefers-reduced-motion: reduce) { .nav-cta svg, .nav-cta { animation: none; } }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(125,159,38,.32); }
.btn--primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(125,159,38,.4); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---- 5. Header / nav -------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
/* Bredere hoofdmenu-balk: logo verder naar links, CTA verder naar rechts */
.site-header .container { max-width: 1640px; padding-inline: clamp(1.1rem, 3.5vw, 2.6rem); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; }
.brand .logo-mark { width: 40px; height: 40px; flex: none; }
.brand b { font-weight: 700; color: #3A464E; }
.brand span { color: #3A464E; }
.site-header .brand { font-size: 1.5rem; }
.site-header .brand .logo-mark { width: 40px; height: 40px; }
.brand .tld { color: var(--green-600); }

.nav-links { display: none; align-items: center; gap: .35rem; }
.nav-links a { padding: .55rem .9rem; border-radius: 8px; font-weight: 600; font-size: 1.08rem; color: #233139; white-space: nowrap; transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); background: var(--bg-soft); }
.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; border: 1px solid var(--line-2);
  background: #fff; border-radius: 10px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: .25rem; padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: .8rem .4rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: .8rem; }
.mobile-menu .btn--primary { color: #fff; border-bottom: 0; }

@media (min-width: 940px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---- 6. Hero ---------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark);
  padding-block: clamp(2.2rem, 5vw, 3.6rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 78% -10%, rgba(125,159,38,.22), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(26,166,183,.16), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { color: #fff; font-size: clamp(1.85rem, 4.2vw, 2.8rem); line-height: 1.08; }
.hero h1 em { font-style: normal; color: var(--green); }
.page-hero h1 em { font-style: normal; color: var(--green); }
.price-was { text-decoration: line-through; opacity: .5; font-weight: 600; margin-right: .2rem; }
.hand-circle { position: relative; display: inline-block; }
.hand-circle-svg { position: absolute; left: -14%; top: -42%; width: 130%; height: 184%; max-width: none; pointer-events: none; overflow: visible; }
.hand-circle-svg path { fill: none; stroke: #e23b2e; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.hero .lead { color: var(--on-dark-mut); font-size: clamp(1.05rem, 2.2vw, 1.22rem); margin-top: 1.2rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin-top: 2.2rem; color: var(--on-dark-mut); font-size: .92rem; }
.hero-trust div { display: flex; align-items: center; gap: .5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--green); flex: none; }

.pill-badge {
  display: inline-flex; align-items: center; gap: .55rem; padding: .45rem .9rem;
  background: rgba(125,159,38,.12); border: 1px solid rgba(125,159,38,.3);
  border-radius: 999px; font-size: .85rem; font-weight: 500; color: var(--green);
}
.pill-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(125,159,38,.2); }

/* ---- 7. Hero visual: foto (zelfde formaat als de vroegere flowcard) -- */
.hero .ph-shot img { max-height: none; height: clamp(320px, 38vw, 470px); }

/* ---- 7b. Energy-flow mock (nu op /voorbeelden) ----------------------- */
.flowcard {
  background: linear-gradient(160deg, #0F2530, #0A171F);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 1.4rem; box-shadow: var(--shadow-lg);
}
.flowcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.flowcard-top .tag { font-family: var(--font-head); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-mut); }
.flow-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.flow-node {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: .85rem .7rem; text-align: center;
}
.flow-node .ico { font-size: 1.3rem; }
.flow-node .val { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #fff; margin-top: .25rem; }
.flow-node .lbl { font-size: .72rem; color: var(--on-dark-mut); text-transform: uppercase; letter-spacing: .06em; }
.flow-balance {
  margin-top: .8rem; background: rgba(125,159,38,.14); border: 1px solid rgba(125,159,38,.3);
  color: var(--green); border-radius: 12px; text-align: center; padding: .7rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
}
.flow-stats { margin-top: .8rem; display: grid; gap: .1rem; }
.flow-stats .line { display: flex; justify-content: space-between; padding: .5rem .2rem; border-top: 1px solid rgba(255,255,255,.06); font-size: .9rem; }
.flow-stats .line span:first-child { color: var(--on-dark-mut); }
.flow-stats .line span:last-child { font-family: var(--font-head); font-weight: 600; color: #fff; }
.flow-stats .pos { color: var(--green) !important; }

/* ---- 8. Logo strip ---------------------------------------------------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; }
.logos .lbl { width: 100%; text-align: center; color: var(--muted-2); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .3rem; }
.logos span.eco { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--muted); opacity: .85; transition: color .2s; }
.logos span.eco:hover { color: var(--ink); }

/* ---- 8b. Bewegend logo-lint (marquee) -------------------------------- */
.marquee-label { text-align: center; color: var(--muted); font-size: 1.02rem; font-weight: 500; margin: 0 0 1.5rem; }
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee { display: flex; width: max-content; animation: es-marquee 42s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .ml {
  display: inline-flex; align-items: center; height: 44px; padding: 0 clamp(1.4rem, 4vw, 2.8rem);
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: var(--ink); opacity: .55; filter: grayscale(1); white-space: nowrap; letter-spacing: -.01em;
  transition: opacity .2s;
}
.marquee .ml:hover { opacity: .9; }
@keyframes es-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ---- 9. Cards --------------------------------------------------------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(125,159,38,.14), rgba(26,166,183,.12));
  color: var(--green-600); margin-bottom: 1.1rem;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; }
.card p { color: var(--muted); margin-top: .55rem; font-size: .98rem; }
.card .more { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; color: var(--green-600); font-weight: 600; font-size: .92rem; font-family: var(--font-head); }
.card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .more svg { transform: translateX(3px); }

/* benefit row */
.benefit { display: flex; gap: 1rem; align-items: flex-start; }
.benefit .tick { flex: none; width: 30px; height: 30px; border-radius: 9px; background: rgba(125,159,38,.14); color: var(--green-600); display: grid; place-items: center; }
.benefit .tick svg { width: 17px; height: 17px; }
.benefit h3 { font-size: 1.06rem; }
.benefit p { color: var(--muted); margin-top: .2rem; font-size: .96rem; }

/* ---- 10. Steps (Hoe het werkt) -------------------------------------- */
.steps { display: grid; gap: 1.1rem; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, minmax(0, 250px)); justify-content: center; } }
.step { position: relative; padding: 1.4rem 1.2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.step .num {
  counter-increment: step; width: 38px; height: 38px; border-radius: 11px;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; margin-bottom: .9rem;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.04rem; }
.step p { color: var(--muted); font-size: .92rem; margin-top: .4rem; }
.step.is-partner .num { background: var(--green-600); }

/* ---- 11. Split (Voor wie) ------------------------------------------- */
.split { display: grid; gap: var(--gap); }
@media (min-width: 860px) { .split { grid-template-columns: repeat(2,1fr); } }
.panel { border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--line); background: var(--card); }
.panel--accent { background: linear-gradient(165deg, var(--ink), var(--ink-2)); color: var(--on-dark); border-color: transparent; }
.panel--accent h3, .panel--accent h2 { color: #fff; }
.panel .tagline { color: var(--muted); }
.panel--accent .tagline { color: var(--on-dark-mut); }
.panel h3 { font-size: 1.45rem; margin-bottom: .4rem; }
.panel ul.checks { margin-top: 1.3rem; display: grid; gap: .8rem; }
.panel ul.checks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; }
.panel ul.checks li svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: .15rem; }
.panel--accent ul.checks li svg { color: var(--green); }
.panel .btn { margin-top: 1.6rem; }

/* ---- 12. Why / stats ------------------------------------------------- */
.stat-grid { display: grid; gap: 1rem; }
@media (min-width:680px){ .stat-grid{ grid-template-columns: repeat(3,1fr);} }
.stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 1.6rem; }
.stat .big { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem,5vw,2.8rem); color: var(--green); line-height: 1; }
.stat p { color: var(--on-dark-mut); margin-top: .6rem; font-size: .96rem; }

/* ---- 13. Cases -------------------------------------------------------- */
.case { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.case .visual {
  border-radius: 12px; margin-bottom: 1.1rem; position: relative; overflow: hidden;
  background: #EEF4F1;
}
.case .visual svg { width: 100%; height: auto; display: block; }
.case .visual .badge { position: absolute; top: 12px; left: 12px; font-size: .74rem; font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase; color: var(--green); background: rgba(125,159,38,.14); border: 1px solid rgba(125,159,38,.3); padding: .25rem .6rem; border-radius: 999px; }
.case .visual .glyph { display: flex; gap: .65rem; align-items: center; color: rgba(255,255,255,.92); }
.case .visual .glyph svg { width: 22px; height: 22px; }
.case h3 { font-size: 1.15rem; }
.case { position: relative; cursor: pointer; }
.case .btn { margin-top: auto; align-self: center; }
.case .btn::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.case .btn:hover { transform: none; }
.case p { margin-bottom: 1.1rem; }
.case p { color: var(--muted); font-size: .96rem; margin-top: .5rem; }
.case .result { margin-top: auto; padding-top: 1rem; display: flex; gap: .5rem; align-items: center; color: var(--green-700); font-weight: 600; font-family: var(--font-head); font-size: .95rem; }
.case .result svg { width: 18px; height: 18px; }

/* ---- 14. FAQ ---------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; padding: 1.3rem .2rem; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--ink);
}
.faq-q .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; transition: transform .25s, background .2s; }
.faq-q .chev svg { width: 15px; height: 15px; color: var(--green-600); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); background: rgba(125,159,38,.14); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); padding: 0 .2rem 1.3rem; font-size: .98rem; }

/* ---- 15. CTA band ----------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--ink), var(--ink-2)); color: var(--on-dark); padding: clamp(2.2rem, 5vw, 3.6rem); text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% -20%, rgba(125,159,38,.25), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-band p { color: var(--on-dark-mut); margin-top: .8rem; max-width: 52ch; margin-inline: auto; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }

/* ---- 16. Forms -------------------------------------------------------- */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .45rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: var(--ring); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 620px){ .field-row { grid-template-columns: 1fr 1fr; } }
.radio-cards { display: grid; gap: .7rem; }
@media (min-width: 620px){ .radio-cards { grid-template-columns: repeat(3,1fr);} }
.radio-cards label {
  position: relative; display: flex; justify-content: center; align-items: center; gap: .5rem;
  padding: .95rem .8rem; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s, color .15s;
  font-weight: 600; font-size: .96rem; color: var(--muted); text-align: center; background: #fff;
}
.radio-cards input { position: absolute; opacity: 0; pointer-events: none; }
.radio-cards label:hover { border-color: var(--green); color: var(--ink); }
.radio-cards label:has(input:checked) { border-color: var(--green); background: rgba(125,159,38,.1); box-shadow: 0 0 0 1px var(--green); color: var(--green-700); }
.radio-cards label:has(input:checked)::before { content: "✓"; font-weight: 800; color: var(--green-600); }
.form-note { font-size: .85rem; color: var(--muted-2); margin-top: .4rem; }
.form-lead-note { background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: 8px; padding: .7rem .9rem; font-size: .92rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.3rem; }
.form-success { display: none; background: rgba(125,159,38,.1); border: 1px solid rgba(125,159,38,.4); color: var(--green-700); padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-weight: 500; }
.form-success.is-visible { display: block; }
.form-error { display: none; background: rgba(214,12,45,.08); border: 1px solid rgba(214,12,45,.35); color: #B0182C; padding: .8rem 1.1rem; border-radius: var(--radius-sm); font-size: .92rem; margin-bottom: .6rem; }
.form-error.is-visible { display: block; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

.contact-info { display: grid; gap: 1.2rem; align-content: start; }
.contact-info .row { display: flex; gap: .9rem; align-items: flex-start; }
.contact-info .row .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); color: var(--green-600); display: grid; place-items: center; }
.contact-info .row .ic svg { width: 20px; height: 20px; }
.contact-info .row b { font-family: var(--font-head); }
.contact-info .row p, .contact-info .row a { color: var(--muted); font-size: .96rem; }
.contact-info .row a:hover { color: var(--green-600); }

/* ---- 17. Page hero (inner pages) ------------------------------------ */
.page-hero { background: var(--ink); color: var(--on-dark); padding-block: clamp(1.7rem, 3.2vw, 2.6rem); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 320px at 85% -20%, rgba(125,159,38,.18), transparent 60%); }
.page-hero .container { position: relative; }
.test-stamp {
  display: inline-block; align-self: flex-start; margin-bottom: .9rem;
  transform: rotate(-3deg); transform-origin: left center;
  font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  font-size: clamp(.78rem, 1.5vw, 1.05rem); line-height: 1;
  color: #E5533D;
  border: 2.5px solid #E5533D; border-radius: 9px;
  padding: .42rem .8rem;
  background: rgba(229,83,61,.08);
  box-shadow: inset 0 0 0 2px rgba(229,83,61,.22);
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
  pointer-events: none; user-select: none; opacity: .92;
}
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); max-width: 18ch; }
.page-hero p { color: var(--on-dark-mut); margin-top: .7rem; max-width: 56ch; font-size: 1.04rem; }
.crumbs { display: flex; gap: .5rem; align-items: center; color: var(--on-dark-mut); font-size: .85rem; margin-bottom: .8rem; }
.crumbs a:hover { color: var(--green); }

/* ---- 18. Portfolio / dashboard mock --------------------------------- */
.dash {
  background: #0A1117; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: clamp(1rem,2.5vw,1.6rem); box-shadow: var(--shadow-lg); color: var(--on-dark);
}
.dash-tabs { display: flex; gap: .3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.4rem; overflow-x: auto; }
.dash-tabs button { background: none; border: 0; color: var(--on-dark-mut); padding: .8rem 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .08em; border-bottom: 2px solid transparent; white-space: nowrap; }
.dash-tabs button.is-active { color: #fff; border-color: var(--green); }
.dash-grid { display: grid; gap: .9rem; }
@media (min-width: 760px){ .dash-grid--flow { grid-template-columns: repeat(4, 1fr); align-items: center; } }
@media (min-width: 760px){ .dash-grid--charts { grid-template-columns: repeat(3, 1fr); } }
.dnode { background: #11202B; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 1.1rem; text-align: center; }
.dnode .top { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: .6rem; }
.dnode .big { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: #fff; }
.dnode .sub { font-size: .78rem; color: var(--on-dark-mut); margin-top: .25rem; }
.dnode.soc .big { color: var(--green); }
.dnode.prod .big { color: var(--amber); }
.dnode .bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,.1); margin-top: .8rem; overflow: hidden; }
.dnode .bar i { display: block; height: 100%; background: var(--green); border-radius: 4px; }
.dchart { background: #11202B; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 1.1rem; }
.dchart h4 { color: var(--on-dark); font-size: .92rem; font-weight: 600; margin-bottom: .9rem; }
.dchart svg { width: 100%; height: 90px; }
.dbalance { margin-top: .9rem; background: rgba(125,159,38,.14); border: 1px solid rgba(125,159,38,.3); color: var(--green); border-radius: 12px; text-align: center; padding: .8rem; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.dlist { margin-top: .9rem; background: #11202B; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: .4rem 1.1rem; }
.dlist .l { display: flex; justify-content: space-between; padding: .7rem 0; border-top: 1px solid rgba(255,255,255,.06); font-size: .92rem; }
.dlist .l:first-child { border-top: 0; }
.dlist .l span:first-child { color: var(--on-dark-mut); }
.dlist .l b { font-family: var(--font-head); color: #fff; }
.dlist .l b.g { color: var(--green); }

.feature-list { display: grid; gap: 1.4rem; }
.feature-list .benefit p { font-size: .95rem; }

/* portfolio meta */
.proj-meta { display: grid; gap: 1.5rem; }
@media (min-width: 820px){ .proj-meta { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.meta-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.meta-box h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .8rem; }
.meta-box ul { display: grid; gap: .6rem; }
.meta-box li { display: flex; gap: .6rem; font-size: .96rem; }
.meta-box li svg { width: 18px; height: 18px; color: var(--green-600); flex: none; margin-top: .2rem; }
.cta-box { background: linear-gradient(160deg, rgba(125,159,38,.12), rgba(26,166,183,.07)); border: 1px solid rgba(125,159,38,.35); border-radius: var(--radius); padding: 1.6rem; }
.cta-box h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--ink); }
.cta-box p { color: var(--muted); font-size: .96rem; line-height: 1.55; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { font-size: .82rem; font-family: var(--font-head); font-weight: 500; padding: .35rem .75rem; border-radius: 999px; background: var(--bg-soft-2); color: var(--ink); border: 1px solid var(--line); }

/* ---- 18b. Hero qualification + panel/list variants ------------------ */
.hero-qual { display: flex; align-items: center; gap: .5rem; margin-top: 1.1rem; font-size: .9rem; color: var(--on-dark-mut); max-width: 52ch; }
.hero-qual-arrow { width: 16px; height: 16px; color: var(--green); flex: none; }

.panel--muted { background: var(--bg-soft); }
.checks--neutral li svg { color: var(--muted-2) !important; }
.checks--dark { display: grid; gap: .8rem; }
.checks--dark li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: var(--on-dark); }
.checks--dark li svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: .15rem; }

/* ---- 18b2. Problem / solution (CRO) ---------------------------------- */
.pain { display: flex; gap: 1.15rem; align-items: flex-start; height: 100%;
  background: linear-gradient(180deg, #FFFDFA, #FCF5EE);
  border: 1px solid #F1E6DA; border-radius: 18px; padding: 1.7rem 1.6rem;
  box-shadow: 0 4px 16px rgba(125,90,55,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pain:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(125,90,55,.13); border-color: #ECDFD0; }
.pain .x { flex: none; width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(150deg, #F3B7A2, #E07A5F); color: #fff; display: grid; place-items: center;
  box-shadow: 0 5px 12px rgba(214,85,59,.28); }
.pain .x svg { width: 21px; height: 21px; }
.pain h3 { font-size: 1.12rem; }
.pain p { color: var(--muted); font-size: .97rem; margin-top: .4rem; line-height: 1.55; }

.pillars { display: grid; gap: 1rem; }
@media (min-width: 600px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 1.7rem 1.5rem; position: relative; }
.pillar .pnum { font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .08em; color: var(--green); display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.pillar .pnum::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }
.pillar h3 { color: #fff; font-size: 1.25rem; }
.pillar p { color: var(--on-dark-mut); margin-top: .55rem; font-size: .97rem; }
.solution-bridge { text-align: center; margin-top: 2.4rem; }

/* ---- 18c. Pricing ---------------------------------------------------- */
.price-grid { display: grid; gap: var(--gap); }
@media (min-width: 920px) { .price-grid { grid-template-columns: 1fr 1.05fr; align-items: start; } }
.price-grid--solo { max-width: 540px; margin-inline: auto; }
@media (min-width: 920px) { .price-grid--solo { grid-template-columns: 1fr; } }
.pkg-banner { max-width: 720px; margin: 1.8rem auto 0; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.pkg-banner p { color: var(--muted); margin-bottom: .9rem; }
.pkg-banner .btns { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.pkg-cta-col { display: grid; gap: .6rem; margin-top: 1.2rem; }
.page-hero--split .container { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.ph-shot { margin: 0; }
.ph-shot img { display: block; width: 100%; height: auto; max-height: 300px; object-fit: cover; object-position: center; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.ph-shot--zoom { position: relative; }
.ph-shot--zoom img { cursor: zoom-in; }
.ph-shot--zoom::after { content: ""; position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(8,16,20,.55) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3'/></svg>") center / 19px no-repeat; pointer-events: none; transition: background-color .15s; }
.ph-shot--zoom:hover::after { background-color: rgba(8,16,20,.8); }
@media (min-width: 900px) {
  .page-hero--split .container { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .page-hero--split .ph-shot { position: relative; height: clamp(260px, 27vw, 350px); }
  .page-hero--split .ph-shot img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; }
}
.pkg-compat { font-size: .9rem; color: var(--muted); margin-top: 1.1rem; line-height: 1.5; }
.pkg-reassure { font-size: .9rem; color: var(--green-700); font-weight: 600; margin-top: .5rem; }
#procedure, section[id] { scroll-margin-top: 84px; }

/* Procedure als verticale tijdlijn */
.timeline { counter-reset: tl; list-style: none; max-width: 720px; margin: 0 auto; padding: 0; }
.tl-item { position: relative; padding: 0 0 1.8rem 64px; }
.tl-item::before { counter-increment: tl; content: counter(tl); position: absolute; left: 0; top: -2px; width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #04210F; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; }
.tl-item::after { content: ""; position: absolute; left: 19px; top: 44px; bottom: -2px; width: 2px; background: var(--line-2); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child::after { display: none; }
.tl-item h3 { font-size: 1.06rem; margin: .45rem 0 .25rem; }
.tl-item p { color: var(--muted); font-size: .95rem; line-height: 1.55; }
.proc-slogan { max-width: 720px; margin: 2.4rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line-2); text-align: center; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.15rem, 2.4vw, 1.6rem); line-height: 1.3; color: var(--ink); }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.price-card--featured { border-color: var(--green); box-shadow: 0 18px 44px rgba(125,159,38,.18); position: relative; }
.price-badge { display: inline-block; align-self: flex-start; font-family: var(--font-head); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); background: rgba(125,159,38,.14); border: 1px solid rgba(125,159,38,.3); padding: .2rem .55rem; border-radius: 999px; margin-bottom: .8rem; }
.price-card h3 { font-size: 1.2rem; }
.pkg-label { font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 .1rem; }
.price { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--ink); margin: .5rem 0 .2rem; line-height: 1; }
.price span { display: inline-block; font-size: .8rem; font-weight: 500; color: var(--muted-2); margin-left: .4rem; }
.price-old { font-size: .62em; font-weight: 600; color: var(--muted-2); text-decoration: line-through; margin-right: .15rem; }
.price--sm { font-size: 1.5rem; }
.price-sub { color: var(--muted); font-size: .95rem; margin-bottom: .2rem; }
.price-pos { color: var(--green-700); font-weight: 700; font-size: .9rem; margin: .55rem 0 .1rem; }
.price-note { font-size: .85rem; color: var(--muted); margin: -.6rem 0 1.1rem; }
.price-note b { color: var(--ink); }
.price-list { display: grid; gap: .65rem; margin: 1.1rem 0 1.5rem; }
.price-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; }
.price-list li svg { flex: none; width: 19px; height: 19px; color: var(--green-600); margin-top: .15rem; }
.price-list--bold li { font-weight: 700; color: var(--ink); }

/* ---- "Het verschil": verschuivingen ------------------------------- */
.shift-grid { display: grid; gap: 1.1rem; }
@media (min-width: 760px) { .shift-grid { grid-template-columns: repeat(3, 1fr); } }
.shift { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.shift:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.shift-head { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin-bottom: .7rem; }
.shift-from { color: var(--muted-2); text-decoration: line-through; text-decoration-color: #E07A5F; text-decoration-thickness: 2px; }
.shift-arrow { width: 20px; height: 20px; color: var(--muted-2); flex: none; }
.shift-to { color: var(--green-700); }
.shift p { color: var(--muted); font-size: .96rem; line-height: 1.6; }

/* ---- Screenshot-galerij + lightbox --------------------------------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery-item { position: relative; display: block; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--ink); box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.gallery-cap { position: absolute; left: .7rem; bottom: .7rem; background: rgba(12,26,34,.8); color: #fff; font-size: .82rem; font-weight: 600; padding: .25rem .65rem; border-radius: 8px; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(8,16,20,.93); padding: clamp(1rem, 4vw, 3rem); }
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.lb-figure img { max-width: 100%; max-height: 82vh; border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.lb-figure figcaption { color: #C9D7D2; font-size: .9rem; text-align: center; }
.lb-btn { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); color: #fff; cursor: pointer; border-radius: 50%; width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.7rem; line-height: 1; transition: background .15s; }
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-close { top: 1.1rem; right: 1.1rem; font-size: 2rem; }
.lb-prev { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.1rem; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); color: #9DB2AC; font-size: .85rem; }
@media (max-width: 540px) { .lb-prev { left: .4rem; } .lb-next { right: .4rem; } .lb-btn { width: 42px; height: 42px; font-size: 1.5rem; } }
.price-side { display: grid; gap: var(--gap); }
.pkg-next { display: none; }
@media (min-width: 920px) {
  .pkg-next { display: block; text-align: center; margin-top: 1rem; color: var(--green-700); }
  .pkg-next-label { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
  .pkg-next-arrow { display: block; width: 116px; height: auto; margin: .2rem auto 0; color: var(--green-700); }
}
.price-row { display: grid; gap: var(--gap); }
@media (min-width: 560px) { .price-row { grid-template-columns: 1fr 1fr; } }
.price-card--mini { padding: 1.3rem; }
.price-card--mini h3 { font-size: 1.05rem; }

/* ---- 18d. Energiescan wizard ----------------------------------------- */
.wizard { max-width: 760px; margin-inline: auto; }
.wizard-progress { display: flex; align-items: center; gap: .5rem; margin-bottom: 2rem; }
.wizard-progress .wp-step { flex: 1; height: 6px; border-radius: 4px; background: var(--line-2); transition: background .3s; }
.wizard-progress .wp-step.is-done { background: var(--green); }
.wizard-progress .wp-label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--muted); white-space: nowrap; }

.wstep { display: none; }
.wstep.is-active { display: block; animation: wfade .35s ease; }
@keyframes wfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.wstep h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .5rem; }
.wstep > p { color: var(--muted); margin-bottom: 1.6rem; }

.opt-grid { display: grid; gap: .7rem; }
@media (min-width: 560px) { .opt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px) { .opt-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.opt-grid label {
  display: flex; gap: .7rem; align-items: center; padding: .95rem 1rem; border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); cursor: pointer; background: #fff;
  transition: border-color .15s, background .15s, box-shadow .15s; font-weight: 500; font-size: .95rem;
}
.opt-grid label:hover { border-color: var(--green); }
.opt-grid input { accent-color: var(--green); width: 18px; height: 18px; flex: none; }
.opt-grid label:has(input:checked) { border-color: var(--green); background: rgba(125,159,38,.07); box-shadow: 0 0 0 1px var(--green); }
.opt-grid .emoji { font-size: 1.2rem; flex: none; }

.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.wizard-nav .btn--back { background: transparent; border: 1px solid var(--line-2); color: var(--muted); }
.wizard-nav .btn--back:hover { border-color: var(--ink); color: var(--ink); }
.wizard-error { display: none; color: #C0392B; background: rgba(214,69,52,.08); border: 1px solid rgba(214,69,52,.25); border-radius: var(--radius-sm); padding: .7rem 1rem; font-size: .92rem; margin-top: 1rem; }
.wizard-error.is-visible { display: block; }

/* result */
.result-stats { display: grid; gap: 1rem; margin: 1.6rem 0; }
@media (min-width: 680px) { .result-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 680px) { .result-stats--2 { grid-template-columns: 1fr 1fr; max-width: 620px; margin-inline: auto; } }
.rstat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: center; }
.rstat .big { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3.6vw, 2rem); color: var(--green-700); line-height: 1.1; }
.rstat .lbl { font-size: .85rem; color: var(--muted); margin-top: .4rem; }
.result-note { font-size: .85rem; color: var(--muted-2); }
/* Use cases */
.uc-comp { list-style: none; padding: 0; margin: .7rem 0 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.uc-comp li { font-size: .78rem; font-weight: 600; color: var(--ink); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .2rem .6rem; }
.uc-figure { font-family: var(--font-head); font-weight: 800; color: var(--green-700); font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1; }
.uc-figure small { display: block; font-size: .9rem; font-weight: 600; color: var(--muted); margin-top: .5rem; }
.uc-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); font-weight: 600; font-size: .9rem; }
.container.narrow { max-width: 820px; }
.assumptions { max-width: 820px; margin: 0 auto 1.6rem; padding: 1.1rem 1.3rem; background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: 12px; }
.assumptions h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--green-700); margin: 0 0 .55rem; }
.assumptions ul { margin: 0; padding-left: 1.1rem; display: grid; gap: .35rem; }
.assumptions li { font-size: .92rem; color: var(--muted); line-height: 1.5; }
.rstat .big.range { font-size: clamp(1.3rem, 3vw, 1.8rem); }
.scenario-list { display: grid; gap: .6rem; margin: 1.2rem 0; }
.scenario-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .97rem; }
.scenario-list li svg { flex: none; width: 19px; height: 19px; color: var(--green-600); margin-top: .15rem; }

/* Scan: "Hoe berekenen we dit?" uitklap */
.calc-detail { margin-top: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); padding: 0 1.1rem; }
.calc-detail summary { cursor: pointer; font-weight: 600; color: var(--ink); padding: .85rem 0; list-style: none; }
.calc-detail summary::-webkit-details-marker { display: none; }
.calc-detail summary::before { content: "+ "; color: var(--green-600); font-weight: 700; }
.calc-detail[open] summary::before { content: "– "; }
.calc-detail p { font-size: .94rem; color: var(--muted); margin: .2rem 0 .6rem; line-height: 1.55; }
.calc-steps { margin: .2rem 0 .8rem; padding-left: 1.4rem; display: grid; gap: .5rem; }
.calc-steps li { font-size: .96rem; color: var(--text); line-height: 1.45; }
.calc-detail .calc-lead { font-weight: 700; color: var(--ink); margin: .7rem 0 .2rem; font-size: .92rem; }
.calc-detail .calc-lead:first-of-type { margin-top: .2rem; }
.calc-note { font-size: .84rem; color: var(--muted-2); }

.share-box { background: linear-gradient(150deg, rgba(125,159,38,.1), rgba(26,166,183,.08)); border: 1px solid rgba(125,159,38,.35); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.6rem; }
.share-box h3 { font-size: 1.1rem; }
.share-box p { color: var(--muted); font-size: .94rem; margin-top: .4rem; }
.share-btns { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.btn--fb { background: #1877F2; color: #fff; }
.btn--fb:hover { background: #145FCC; transform: translateY(-2px); }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1EB855; transform: translateY(-2px); }

/* ---- 19. Footer ------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-mut); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 2fr 1.2fr 1fr 1fr 1.4fr; } }
.site-footer .brand { color: #fff; margin-bottom: .9rem; }
.site-footer p { font-size: .94rem; max-width: 34ch; }
.site-footer p.footer-company { font-size: calc(.94rem - 2px); }
.footer-col h4 { color: #fff; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .85rem; }
.footer-col a { display: block; padding: .28rem 0; color: var(--on-dark-mut); font-size: .87rem; }
.footer-col p { font-size: .87rem; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .85rem; }
.footer-legal a { color: var(--on-dark-mut); }
.footer-legal a:hover { color: var(--green); }

/* ---- Legal / long-form pages --------------------------------------- */
.legal { max-width: 768px; }
.legal h2 { font-size: clamp(1.25rem, 2.6vw, 1.55rem); margin: 2.2rem 0 .6rem; color: var(--ink); }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; color: var(--ink); }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal p { margin: 0 0 1rem; }
.legal ul { margin: 0 0 1.1rem; padding-left: 1.2rem; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--green-600); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--ink); }
.legal .legal-meta { font-size: .9rem; color: var(--muted-2); margin: 0 0 1.6rem; }
.legal .legal-note { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; font-size: .92rem; margin: 0 0 1.6rem; }
.legal table { border-collapse: collapse; width: 100%; margin: 0 0 1.3rem; font-size: .94rem; }
.legal th, .legal td { text-align: left; padding: .55rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { color: var(--ink); font-weight: 600; }
.legal .legal-toc { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; margin: 0 0 1.8rem; }
.legal .legal-toc ul { margin: .4rem 0 0; }

/* ---- 20. Reveal animation -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- 21. Utilities ---------------------------------------------------- */
.center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.text-muted { color: var(--muted); }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 1rem; top: 1rem; box-shadow: var(--shadow); }

/* ---- 22. De meerwaarde-pagina ---------------------------------------- */
.page-hero .eyebrow { color: var(--green); margin-top: .2rem; }
.page-hero .hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.section-foot { color: var(--muted); font-size: 1.06rem; max-width: 760px; margin-top: 1.4rem; line-height: 1.6; }
.section-foot--top { margin-top: 0; margin-bottom: 1.6rem; }
.section-foot a { color: var(--green-600); font-weight: 600; }
.section-foot a:hover { color: var(--ink); }
.section--ink .section-foot { color: var(--on-dark-mut); }

/* Emphasis statement inside an accent panel */
.panel.statement { text-align: center; }
.panel.statement p { margin: 0; font-family: var(--font-head); font-weight: 800; line-height: 1.3; font-size: clamp(1.15rem, 2.6vw, 1.7rem); color: #fff; }
.section .panel.statement, .section .panel--accent.statement { margin-top: 1.8rem; }

/* Comparison cards (Minder/Wel geschikt) — equal height, tagline at bottom */
.cmp { align-items: stretch; }
.cmp .panel { height: 100%; display: flex; flex-direction: column; }
.cmp .panel h3 { font-size: 1.35rem; margin-bottom: 1.1rem; }
.cmp .panel .tagline { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.cmp .panel--accent .tagline { border-top-color: rgba(255,255,255,.14); }

/* Coordinator question list (dark section) */
.coord-list { gap: .8rem 1.8rem; }
@media (min-width: 720px) { .coord-list { grid-template-columns: repeat(2, 1fr); } }

.statement-line { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: clamp(1.15rem, 2.4vw, 1.55rem); line-height: 1.3; margin-top: 1.8rem; max-width: 34ch; }

.cta-band .cta-fineprint { color: var(--on-dark-mut); font-size: .9rem; max-width: 56ch; margin: 1.4rem auto 0; }

/* ---- 23. Pakketpagina: twee gelijke prijskaarten naast elkaar ---- */
.price-grid--duo { align-items: start; }
@media (min-width: 920px) { .price-grid--duo { grid-template-columns: 1fr 1fr; } }
.price-grid--duo .price-card { display: flex; flex-direction: column; }
.price-grid--duo .price-card .btn { margin-top: auto; }

/* Gestapelde checks-lijst: titel op een eigen regel, beschrijving eronder */
.checks--stacked li .ct { display: block; color: #fff; }
.checks--stacked li .cd { display: block; color: var(--on-dark-mut); font-size: .93em; margin-top: .15rem; line-height: 1.45; }

/* Keuzehulp onder de prijskaarten */
.price-choice { max-width: 760px; margin: var(--gap) auto 0; text-align: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.5rem; }
.price-choice strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1.05rem; margin-bottom: .35rem; }
.price-choice p { color: var(--muted); font-size: .96rem; line-height: 1.55; }

/* ---- Blog / artikel-detail (CMS) -------------------------------------- */
/* Blog-hero-foto: exact 16:9 — identiek aan het bijsnijkader in MCP (WYSIWYG). */
.page-hero--split .ph-shot.ph-shot--blog { height: auto !important; aspect-ratio: 16 / 9; position: relative; }
.page-hero--split .ph-shot.ph-shot--blog img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: cover; }
/* Hero-banner met foto */
.blog-hero { position: relative; overflow: hidden; }
.blog-hero--img { padding-block: clamp(4rem, 9vw, 7rem); }
.blog-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.blog-hero--img::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,26,34,.55), rgba(12,26,34,.86)); }
.blog-hero__content { position: relative; z-index: 2; }
.blog-hero h1 { max-width: 24ch; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.1rem; margin-top: 1rem; color: var(--on-dark-mut); font-size: .92rem; }
.article-meta__chip { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: .18rem .75rem; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; }

/* Twee kolommen: inhoudstafel + share links, artikel rechts */
.blog-layout { display: block; }
@media (min-width: 1024px) {
  .blog-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(2rem, 4vw, 3.4rem); align-items: start; }
}
.blog-side { min-width: 0; }
.blog-toc { display: none; }
@media (min-width: 1024px) {
  .blog-toc { display: block; position: sticky; top: 96px; border-left: 2px solid var(--line); padding-left: 1.1rem; }
}
.blog-toc__head { display: block; font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.blog-toc a { display: block; padding: .32rem 0; color: var(--muted); font-size: .92rem; line-height: 1.4; }
.blog-toc a:hover { color: var(--green-700); }
.blog-toc a.is-active { color: var(--green-700); font-weight: 600; }
.blog-toc-mobile { border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem 1.1rem; margin-bottom: 1.4rem; background: var(--bg-soft); }
.blog-toc-mobile summary { font-family: var(--font-head); font-weight: 700; cursor: pointer; color: var(--ink); }
.blog-toc-mobile nav { margin-top: .7rem; }
.blog-toc-mobile a { display: block; padding: .3rem 0; color: var(--muted); font-size: .95rem; }
@media (min-width: 1024px) { .blog-toc-mobile { display: none; } }

/* Share-knoppen (pure links, geen tracking) */
.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; margin-top: 1.4rem; }
@media (min-width: 1024px) { .share-row { padding-left: 1.1rem; } .share-row .blog-toc__head { width: 100%; margin-bottom: .2rem; } }
.share-row a, .share-row button { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--muted); cursor: pointer; transition: .18s; }
.share-row a:hover, .share-row button:hover { color: var(--green-700); border-color: var(--green-600); transform: translateY(-2px); }
.share-row svg { width: 18px; height: 18px; }
.share-copy.is-copied { color: #fff; background: var(--green-600); border-color: var(--green-600); }

/* Leestypografie van het artikel zelf */
.blog-prose { max-width: 760px; min-width: 0; }
.blog-prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-top: 2.4rem; margin-bottom: .8rem; scroll-margin-top: 100px; }
.blog-prose h3 { font-size: 1.15rem; margin-top: 1.8rem; margin-bottom: .6rem; scroll-margin-top: 100px; }
.blog-prose > p:first-child { font-size: 1.08rem; color: var(--ink); }
.blog-prose p { margin-bottom: 1rem; line-height: 1.7; }
.blog-prose a { color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; }
.blog-prose ul, .blog-prose ol { margin: 0 0 1.1rem 1.3rem; line-height: 1.65; }
.blog-prose li { margin-bottom: .4rem; }
.blog-prose img { max-width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.4rem 0; }
.blog-prose figure { margin: 1.4rem 0; }
.blog-prose figure img { margin: 0; }
.blog-prose figcaption { color: var(--muted); font-size: .88rem; margin-top: .5rem; text-align: center; }
.blog-prose blockquote { border-left: 3px solid var(--green-600); background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.3rem; margin: 1.4rem 0; color: var(--ink); font-style: italic; }
.blog-prose blockquote p:last-child { margin-bottom: 0; }

/* Artikel-kaarten (hub + gerelateerd) met hero-thumb of merk-gradient-fallback */
.article-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.article-card__link { display: block; }
.article-card__img, .article-card__ph { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.article-card__ph { display: grid; place-items: center; background: linear-gradient(135deg, #7D9F26, #1AA6B7); }
.article-card__ph svg { width: 46px; height: 46px; }
.article-card__body { padding: 1.3rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; }
.article-card__body h3 { font-size: 1.05rem; line-height: 1.35; }
.article-card__body h3 a { color: var(--ink); }
.article-card__body h3 a:hover { color: var(--green-700); }
.article-card__body p { color: var(--muted); font-size: .93rem; line-height: 1.55; }
.article-card__meta { font-size: .82rem !important; opacity: .75; margin-top: auto; }

/* Zoek + filter-chips op de artikelen-hub */
.art-filter { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem; margin-bottom: 1.6rem; }
.art-search { flex: 1 1 260px; max-width: 380px; border: 1px solid var(--line); border-radius: 12px; padding: .7rem 1rem; font: inherit; font-size: .95rem; background: #fff; color: var(--ink); }
.art-search:focus { outline: 2px solid var(--green-600); outline-offset: 1px; border-color: var(--green-600); }
.art-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.art-chip { border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); font: inherit; font-size: .85rem; font-weight: 600; padding: .42rem 1rem; cursor: pointer; transition: .16s; }
.art-chip:hover { border-color: var(--green-600); color: var(--green-700); }
.art-chip.is-on { background: var(--green-600); border-color: var(--green-600); color: #fff; }
.art-empty { color: var(--muted); text-align: center; padding: 2rem 0; }

/* ---- 24. Stroomkosten-calculator (in modal) --------------------------- */
.sk-modal { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: 1rem; }
.sk-modal[hidden] { display: none; }
.sk-modal__backdrop { position: absolute; inset: 0; background: rgba(12,26,34,.6); backdrop-filter: blur(2px); }
.sk-modal__panel { position: relative; width: min(880px, 100%); max-height: calc(100vh - 2rem); overflow: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(1.2rem, 2.4vw, 1.8rem); }
.sk-modal__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.sk-modal__head h2 { font-size: 1.3rem; }
.sk-modal__close { flex: none; border: 0; background: var(--bg-soft); width: 36px; height: 36px; border-radius: 50%; font-size: 1.25rem; line-height: 1; cursor: pointer; color: var(--muted); transition: .16s; }
.sk-modal__close:hover { background: var(--line); color: var(--ink); }
.sk-grid { display: grid; gap: 1.6rem; }
@media (min-width: 900px) { .sk-grid { grid-template-columns: 1.05fr 1fr; gap: 2.2rem; align-items: start; } }
.sk-calc .field { margin-bottom: .8rem; }
.sk-calc .field label { font-size: .86rem; margin-bottom: .3rem; }
.sk-calc .field input[type="text"] { padding: .55rem .75rem; font-size: .95rem; max-width: 100%; }
.sk-calc .field-row { gap: .8rem; grid-template-columns: 1fr 1fr; }
.sk-calc .form-note { font-size: .78rem; margin-top: .25rem; }
.sk-seg { display: inline-flex; gap: .25rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .22rem; margin-bottom: .9rem; }
.sk-seg button { border: 0; background: transparent; font: inherit; font-size: .84rem; font-weight: 600; color: var(--muted); padding: .34rem .85rem; border-radius: 999px; cursor: pointer; transition: .16s; }
.sk-seg button:hover { color: var(--ink); }
.sk-seg button.is-on { background: var(--green-600); color: #fff; }
.sk-tarief { margin-top: .6rem; padding-top: 1.2rem; border-top: 1px dashed var(--line); }
.sk-calc input[type="range"] { width: 100%; accent-color: var(--green-600); }
.sk-chosen { background: rgba(125,159,38,.1); border: 1px solid rgba(125,159,38,.35); border-radius: var(--radius-sm); padding: .55rem .9rem; font-size: .9rem; color: var(--green-700); margin-bottom: 1rem; }
.sk-chosen__naam, .sk-chosen__sub { display: block; }
.sk-chosen__sub { font-size: .82rem; margin-top: .2rem; opacity: .9; }
.sk-chosen button { border: 0; background: transparent; font: inherit; font-size: .82rem; font-weight: 700; color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; margin-left: .3rem; }
.sk-context { font-size: .8rem; color: var(--muted); margin-top: .1rem; }
.sk-besparing { background: rgba(125,159,38,.1); border: 1px solid rgba(125,159,38,.3); border-radius: var(--radius-sm); padding: .6rem .8rem; font-size: .85rem; color: var(--ink); line-height: 1.5; margin-bottom: .7rem; }
.sk-cta { display: flex; justify-content: flex-end; margin-top: 1rem; }
.sk-cta .btn { font-size: .9rem; padding: .6rem 1.1rem; }
.sk-share { margin-top: 1.6rem; }
.sk-share .share-row { margin-top: 0; }
@media (min-width: 1024px) { .sk-share .share-row { padding-left: 0; } }
.sk-result { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.sk-kwh-line { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: .2rem; }
.sk-stats { margin: .8rem 0; gap: .7rem; }
.sk-stats .rstat { background: #fff; padding: .9rem .5rem; }
.sk-stats .rstat .big { font-size: clamp(1.1rem, 2vw, 1.45rem); white-space: nowrap; }
.sk-stats .rstat .lbl { font-size: .78rem; margin-top: .25rem; }
.sk-stats.result-stats { grid-template-columns: repeat(3, 1fr); }
.sk-result .result-note { font-size: .78rem; }
.sk-apps .sk-app { text-align: left; font: inherit; cursor: pointer; display: flex; flex-direction: column; gap: .3rem; }
.sk-app__top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .3rem; }
.sk-app__emoji { font-size: 1.5rem; line-height: 1; }
.sk-badge { font-family: var(--font-head); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); background: rgba(125,159,38,.14); border: 1px solid rgba(125,159,38,.3); padding: .2rem .55rem; border-radius: 999px; }
.sk-app__naam { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.sk-app__info { color: var(--muted); font-size: .88rem; line-height: 1.45; }
.sk-app__meta { color: var(--muted-2); font-size: .78rem; }
.sk-app__foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: .5rem; }
.sk-app__prijs { font-family: var(--font-head); font-weight: 800; color: var(--green-700); font-size: 1.15rem; }
.sk-app__add { border: 1px solid var(--line-2); background: #fff; border-radius: 999px; font: inherit; font-size: .74rem; font-weight: 700; color: var(--muted); padding: .3rem .7rem; cursor: pointer; white-space: nowrap; transition: .16s; }
.sk-app__add:hover { border-color: var(--green-600); color: var(--green-700); }
.sk-app.is-gekozen { border-color: var(--green-600); box-shadow: 0 0 0 1px var(--green-600); }
.sk-app.is-gekozen .sk-app__add { background: var(--green-600); border-color: var(--green-600); color: #fff; }
.sk-scen { display: block; }
.sk-scen + .sk-scen { margin-top: .35rem; }
.sk-teller { color: var(--green-700); font-variant-numeric: tabular-nums; margin: -.2rem 0 .6rem; }
.sk-deel { display: flex; align-items: center; gap: .55rem; margin-bottom: .7rem; font-size: .82rem; color: var(--muted); }
.sk-deel a, .sk-deel button { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--muted); cursor: pointer; transition: .16s; }
.sk-deel a:hover, .sk-deel button:hover { color: var(--green-700); border-color: var(--green-600); transform: translateY(-1px); }
.sk-deel svg { width: 17px; height: 17px; }
.sk-deel .is-copied { color: #fff; background: var(--green-600); border-color: var(--green-600); }
.sk-mandje { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--ink); color: var(--on-dark); box-shadow: 0 -8px 24px rgba(12,26,34,.25); padding: .8rem 0; }
.sk-mandje[hidden] { display: none; }
.sk-mandje__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1.2rem; }
.sk-mandje__inner p { margin: 0; font-size: .95rem; }
.sk-mandje__inner strong { color: var(--green); }
.sk-mandje__inner .btn { font-size: .88rem; padding: .55rem 1rem; }
#sk-mandje-clear { border: 0; background: transparent; font: inherit; font-size: .82rem; color: var(--on-dark-mut); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; margin-left: .5rem; }
#sk-mandje-clear:hover { color: #fff; }
/* Installateurs-menu (header-variant) */
.nav-links .nav-login { color: var(--green-600); font-weight: 700; }
.nav-links .nav-login:hover { color: var(--green-700); }
.mobile-menu .nav-switch { color: var(--muted); font-size: .9rem; border-top: 1px solid var(--line); padding-top: .8rem; margin-top: .4rem; }

.sk-help { position: relative; display: inline-flex; margin-left: .35rem; vertical-align: middle; }
.sk-help button { width: 18px; height: 18px; border: 1px solid var(--line-2); border-radius: 50%; background: var(--bg-soft); color: var(--muted); font: inherit; font-size: .7rem; font-weight: 800; line-height: 1; display: grid; place-items: center; cursor: help; padding: 0; }
.sk-help button:hover, .sk-help button:focus { border-color: var(--green-600); color: var(--green-700); outline: none; }
.sk-help__tip { display: none; position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); width: min(300px, 76vw); background: var(--ink); color: var(--on-dark); font-size: .82rem; font-weight: 400; line-height: 1.5; padding: .75rem .9rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); z-index: 30; }
.sk-help__tip::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--ink); }
.sk-help:hover .sk-help__tip, .sk-help:focus-within .sk-help__tip { display: block; }
@media (max-width: 520px) { .sk-help__tip { left: auto; right: -10px; transform: none; } .sk-help__tip::after { left: auto; right: 14px; transform: none; } }

/* ==== Energiedossier.net-specifiek: lange NL-samenstellingen in hero-koppen
   ("energiegegevens") mogen afbreken en zijn iets kleiner op smalle schermen. ==== */
.hero h1, .page-hero h1 { overflow-wrap: break-word; hyphens: auto; }
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.5rem; }
}
/* Grid-kolommen mogen krimpen onder hun min-content (flowcard met lange regels). */
.hero-grid > * { min-width: 0; }
.flowcard { max-width: 100%; }
.flow-stats .line { flex-wrap: wrap; }
/* Flowcard-nodes met langere labels (Zonnepanelen/Thuisbatterij) op smal scherm. */
@media (max-width: 480px) {
  .flow-row { flex-wrap: wrap; }
  .flow-node { flex: 1 1 30%; min-width: 0; }
  .flow-node .lbl { font-size: .7rem; }
}
