/* ============================================
   DE ISOLATIE GARANT — V2 PRO
   Design: Premium Verduurzaming Partner
   ============================================ */

:root {
  --green-50: #F0FDF4;
  --green-100: #DCFCE7;
  --green-200: #BBF7D0;
  --green-300: #86EFAC;
  --green-400: #4ADE80;
  --green-500: #22C55E;
  --green-600: #16A34A;
  --green-700: #15803D;
  --green-800: #166534;
  --green-900: #14532D;
  --green-950: #052E16;
  
  --amber-50: #FFFBEB;
  --amber-100: #FEF3C7;
  --amber-400: #FBBF24;
  --amber-500: #F59E0B;
  
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  --slate-950: #020617;
  
  --white: #FFFFFF;
  --warm-bg: #FAFAF8;
  
  --primary: var(--green-600);
  --primary-hover: var(--green-700);
  --primary-light: var(--green-50);
  --accent: var(--amber-500);
  --text: var(--slate-800);
  --text-muted: var(--slate-500);
  --border: #E8EAE6;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --section-py: clamp(5rem, 10vw, 8rem);
  --container: min(1220px, 92vw);
  
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;
  
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.07);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.09);
  --shadow-green: 0 8px 32px rgba(22,163,74,0.18);
  --shadow-card: 0 0 0 1px var(--border), 0 2px 8px rgba(0,0,0,0.03);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Global SVG fix — prevent unsized SVGs from filling containers */
svg {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
svg[viewBox] { overflow: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }

/* ---- Container ---- */
.container { width: var(--container); margin: 0 auto; padding: 0 1.25rem; max-width: 100%; box-sizing: border-box; }

/* ---- Section Labels ---- */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--green-400);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--slate-900);
  letter-spacing: -0.025em;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 1.25rem;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.75rem;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(22,163,74,0.25);
}
.btn-secondary {
  background: var(--white);
  color: var(--slate-700);
  padding: 0.75rem 1.75rem;
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--green-300);
  color: var(--primary);
  background: var(--green-50);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.95rem 2.25rem; font-size: 0.95rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--green-50);
  color: var(--primary);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--green-800);
  padding: 0.95rem 2.25rem;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
}
.btn-ghost {
  color: white;
  padding: 0.95rem 2.25rem;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.btn:hover svg { transform: translateX(3px); }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   HEADER
   ============================================ */
/* ---- Topbar ---- */
.top-strip {
  background: #0A1F0D;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1001;
}
.top-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.top-strip-left, .top-strip-right { display: flex; align-items: center; gap: 0.75rem; }
.ts-item { white-space: nowrap; font-weight: 500; }
.ts-item strong { color: #fff; }
.ts-sep { color: rgba(255,255,255,0.2); font-size: 0.6rem; }
.ts-phone { color: #fb923c; text-decoration: none; font-weight: 700; white-space: nowrap; }
.ts-phone:hover { color: #fff; }
.ts-phone strong { color: inherit; }
.ts-email { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.78rem; }
.ts-email:hover { color: #fff; }
@media (max-width: 640px) {
  .top-strip-left .ts-item:nth-child(n+4),
  .top-strip-left .ts-sep:nth-child(n+4) { display: none; }
  .top-strip-right .ts-email,
  .top-strip-right .ts-sep:last-of-type { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.15rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.header-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.header-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.header-logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}
.header-logo-mark svg {
  width: 20px;
  height: 20px;
  fill: white;
  position: relative;
  z-index: 1;
}
.header-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate-900);
}
.header-logo-name span { color: var(--primary); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-full);
  transition: all 0.25s;
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--primary);
  background: var(--green-50);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--slate-700);
  padding: 0.4rem 0;
  white-space: nowrap;
}
.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-toggle svg { width: 22px; height: 22px; }

/* ---- Dropdown Menu ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform .25s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 480px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 1000;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .85rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: .85rem !important;
  color: var(--slate-600) !important;
  transition: all .2s;
}
.nav-dropdown-menu a:hover {
  background: var(--green-50) !important;
  color: var(--primary) !important;
}
.nav-dropdown-menu a svg {
  width: 18px;
  height: 18px;
  stroke: var(--slate-400);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.nav-dropdown-menu a:hover svg {
  stroke: var(--primary);
}
.nav-dropdown-sep {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border-light);
  margin: .35rem 0;
}
.nav-dropdown-menu .nav-dropdown-all {
  grid-column: 1 / -1;
}

/* ---- Mega Menu ---- */
.nav-dropdown--mega .nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(780px, calc(100vw - 3rem));
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 10px rgba(0,0,0,0.07);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr;
  gap: 0 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 9000;
}
/* Invisible bridge — sluit de gap tussen trigger en menu */
.nav-dropdown--mega .nav-mega-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown--mega:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.nav-mega-col-title {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-400);
  padding: .35rem .85rem .55rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.nav-mega-badge {
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .15rem .45rem;
  border-radius: 9999px;
}
.nav-mega-badge--eigen {
  background: var(--green-100);
  color: var(--green-700);
}
.nav-mega-badge--nieuw {
  background: #FEF9C3;
  color: #92400E;
}
.nav-mega-col a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: .84rem !important;
  color: var(--slate-600) !important;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.nav-mega-col a:hover {
  background: var(--green-50) !important;
  color: var(--primary) !important;
}
.nav-mega-col a svg {
  width: 16px;
  height: 16px;
  stroke: var(--slate-400);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
  transition: stroke .2s;
}
.nav-mega-col a:hover svg {
  stroke: var(--primary);
}
.nav-mega-col .nav-dropdown-sep {
  grid-column: unset;
  margin: .2rem .85rem;
}
.nav-dropdown--mega {
  position: static;
}
.nav-mega-col .nav-dropdown-all {
  grid-column: unset;
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.nav-mega-partner-note {
  font-size: .72rem;
  color: var(--slate-400);
  padding: .35rem .85rem;
  margin-top: .2rem;
}
/* Featured sidebar */
.nav-mega-featured {
  border-left: 1px solid var(--border-light);
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  justify-content: center;
}
.nav-mega-featured-card {
  background: linear-gradient(135deg, var(--green-50), #F0FDF4);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.nav-mega-featured-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: .3rem;
}
.nav-mega-featured-card p {
  font-size: .76rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin-bottom: .7rem;
}
.nav-mega-featured-btn {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green-700) !important;
  padding: 0 !important;
  background: none !important;
}
.nav-mega-featured-btn:hover {
  background: none !important;
  color: var(--primary) !important;
}
.nav-mega-stat {
  text-align: center;
  padding: .75rem;
  background: var(--green-800);
  border-radius: var(--radius-md);
}
.nav-mega-stat-nr {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: #6EE7B7;
}
.nav-mega-stat-label {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-top: .2rem;
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--slate-500);
  cursor: pointer;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.mobile-menu-close:hover { background: var(--slate-50); }
.mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex: 1;
}
.mobile-menu-nav > li > a {
  display: block;
  padding: .85rem .75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.mobile-menu-nav > li > a:hover { background: var(--slate-50); }
.mobile-menu-sub {
  list-style: none;
  padding-left: 1rem;
  margin-bottom: .5rem;
}
.mobile-menu-sub a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  font-size: .88rem;
  color: var(--slate-500);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.mobile-menu-sub a:hover {
  color: var(--primary);
  background: var(--green-50);
}
.mobile-menu-sub a svg {
  width: 16px;
  height: 16px;
  stroke: var(--slate-400);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.mobile-menu-cta {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* ---- Header Responsive ---- */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .mobile-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* Phone number no-wrap */
.header-phone { white-space: nowrap; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 5rem;
  overflow: hidden;
}

/* Sophisticated gradient mesh background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(220,252,231,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(187,247,208,0.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(254,243,199,0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--warm-bg) 0%, #F5F7F2 100%);
  pointer-events: none;
}
/* Subtle grid pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 30%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem 0.4rem 0.6rem;
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease-out both;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--slate-950);
  animation: fadeUp 0.6s ease-out 0.1s both;
}
.hero-highlight {
  position: relative;
  color: var(--primary);
  display: inline;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 8px;
  background: var(--green-200);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}

.hero-text {
  font-size: 1.12rem;
  color: var(--slate-500);
  margin: 1.75rem 0 2.25rem;
  max-width: 460px;
  line-height: 1.8;
  animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.hero-metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s ease-out 0.4s both;
}
.hero-metric-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.hero-metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease-out 0.3s both;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-200) 100%);
  box-shadow: 
    0 24px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.03);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Subtle corner accent */
.hero-image-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 0.85rem 1.1rem;
  z-index: 2;
}
.float-card-savings {
  bottom: -16px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: float 5s ease-in-out infinite;
}
.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-icon-green { background: var(--green-50); }
.float-icon-green svg { width: 20px; height: 20px; color: var(--primary); }
.float-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
}
.float-card-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: -1px;
}
.float-card-rating {
  top: 24px;
  right: -24px;
  animation: float 5s ease-in-out 1.5s infinite;
}
.float-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.float-stars { display: flex; gap: 1px; }
.float-stars svg { width: 14px; height: 14px; fill: var(--amber-400); }
.float-rating-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-800);
}
.float-rating-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.01em;
}
.trust-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--slate-50);
}
.trust-icon-wrap svg {
  width: 16px;
  height: 16px;
  color: var(--slate-400);
}
.trust-icon-wrap.green { background: var(--green-50); }
.trust-icon-wrap.green svg { color: var(--primary); }

/* ============================================
   DIENSTEN / SERVICES
   ============================================ */
.services { padding: var(--section-py) 0; }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.services-header-right {
  display: flex;
  align-items: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover {
  border-color: var(--green-200);
  box-shadow: 0 12px 40px rgba(22,163,74,0.08);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  transition: all 0.35s;
}
.service-card:hover .service-icon-box {
  background: var(--primary);
}
.service-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s;
}
.service-card:hover .service-icon-box svg { stroke: white; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.service-subsidy {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--green-50);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
}
.service-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}
.service-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--slate-400);
  fill: none;
  stroke-width: 2;
  transition: all 0.35s;
}
.service-card:hover .service-link {
  background: var(--primary);
}
.service-card:hover .service-link svg {
  stroke: white;
  transform: translateX(2px);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--green-200), var(--green-400), var(--green-200));
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--warm-bg);
  border: 2px solid var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.process-number-inner {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  transition: color 0.3s;
}
.process-step:hover .process-number {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: var(--shadow-green);
}
.process-step:hover .process-number-inner { color: white; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================
   BESPAARWIJZER TEASER
   ============================================ */
.calculator-teaser {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.calculator-box {
  background: linear-gradient(135deg, var(--green-50) 0%, #E8F9EF 100%);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.calculator-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.06), transparent);
}
.calc-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.calc-content p {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin: 1rem 0 2rem;
  line-height: 1.7;
}
.calc-input-group {
  display: flex;
  gap: 0.5rem;
}
.calc-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--green-300);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-800);
  background: var(--white);
  outline: none;
  transition: all 0.3s;
}
.calc-input::placeholder { color: var(--slate-400); }
.calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.1);
}

.calc-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.calc-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}
.calc-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calc-stat-icon.gas { background: #FEF3C7; }
.calc-stat-icon.gas svg { color: #D97706; }
.calc-stat-icon.energy { background: #DBEAFE; }
.calc-stat-icon.energy svg { color: #2563EB; }
.calc-stat-icon.subsidy { background: var(--green-50); }
.calc-stat-icon.subsidy svg { color: var(--primary); }
.calc-stat-icon svg { width: 20px; height: 20px; }
.calc-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate-800);
}
.calc-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header .section-eyebrow { justify-content: center; }
.testimonials-header .section-eyebrow::before { display: none; }
.testimonials-header .section-desc { margin: 1rem auto 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--amber-400); }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--slate-600);
  flex: 1;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--green-700);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--slate-800);
}
.testimonial-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Google review badge */
.review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.review-badge-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}
.review-badge-stars { display: flex; flex-direction: column; gap: 2px; }
.review-badge-stars-row { display: flex; gap: 2px; }
.review-badge-stars-row svg { width: 18px; height: 18px; fill: var(--amber-400); }
.review-badge-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.review-badge-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-500);
}
.review-badge-platform svg { width: 20px; height: 20px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 0 0 var(--section-py); }
.cta-card {
  background: var(--green-950);
  border-radius: var(--radius-2xl);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Gradient orbs */
.cta-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.25), transparent 65%);
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.08), transparent 65%);
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.cta-card p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 1.25rem auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--slate-950);
  padding: 4.5rem 0 0;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-brand-text {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark svg { width: 16px; height: 16px; fill: white; }
.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
}
.footer-logo-name span { color: #4ade80; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.footer-col a:hover { color: var(--green-400); transform: translateX(3px); }

.footer-certifications {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-cert {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   MOCKUP INDICATOR
   ============================================ */
.mockup-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate-900);
  color: rgba(255,255,255,0.7);
  padding: 0.65rem 1rem;
  text-align: center;
  z-index: 9999;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  backdrop-filter: blur(8px);
}
.mockup-bar-tag {
  background: var(--accent);
  color: var(--slate-900);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-text { margin: 1.5rem auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-badge { margin: 0 auto 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .calculator-box { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-phone { display: none; }
}
@media (max-width: 640px) {
  .services-grid,
  .testimonials-grid,
  .process-grid { grid-template-columns: 1fr; }
  .hero-metrics { flex-direction: column; align-items: center; gap: 1.5rem; }
  .hero h1 { font-size: 2.4rem; }
  .trust-bar .container { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .cta-actions { flex-direction: column; }
  .float-card { display: none; }
  .review-badge { flex-direction: column; gap: 1rem; }
  .calc-input-group { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
/* ============================================
   PAGE COMPONENTS — Diensten, Contact, Subsidie
   ============================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--slate-600); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb svg { color: var(--slate-300); flex-shrink: 0; }
.breadcrumb span:last-child { color: var(--primary); font-weight: 600; }

/* Detail Header */
.detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.detail-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

/* Detail Blocks */
.detail-block { margin-bottom: 3rem; }
.detail-block-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1.25rem;
}

/* Check List */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .6rem 0;
  font-size: .92rem;
  color: var(--slate-600);
  line-height: 1.6;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Detail Steps */
.detail-steps { display: flex; flex-direction: column; gap: .25rem; }
.detail-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: background .2s;
}
.detail-step:hover { background: var(--slate-50); }
.detail-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.detail-step h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: .3rem;
}
.detail-step p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Material Grid */
.material-grid { display: flex; flex-direction: column; gap: .75rem; }
.material-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: border-color .2s;
}
.material-card:hover { border-color: var(--green-200); }
.material-name { font-weight: 700; font-size: .92rem; color: var(--slate-800); }
.material-rd { font-size: .78rem; color: var(--primary); font-weight: 600; margin: .2rem 0 .4rem; }
.material-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--green-200); }
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--slate-700);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--slate-400);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; color: var(--primary); }
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
  padding: 0 1.25rem 1.25rem;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Sidebar Cards */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1rem;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-800);
  margin-bottom: 1rem;
}
.sidebar-subsidie {
  background: linear-gradient(135deg, var(--green-50), #E8F9EF);
  border-color: var(--green-200);
  text-align: center;
}
.sidebar-subsidie-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}
.sidebar-subsidie-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate-900);
}
.sidebar-subsidie-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.sidebar-subsidie-double {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--green-200);
  font-size: .85rem;
  color: var(--slate-600);
}
.sidebar-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
}
.sidebar-info-row span { color: var(--text-muted); }
.sidebar-info-row strong { color: var(--slate-800); }
.sidebar-disclaimer {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .75rem;
}
.sidebar-cta { background: var(--slate-50); border-color: transparent; }
.sidebar-cta p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ============================================
   CONTACT / OFFERTE PAGE
   ============================================ */
.page-header {
  padding: calc(var(--section-py) + 2rem) 0 3rem;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: var(--section-py);
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--slate-800);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--slate-600);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Contact Info Cards */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color .2s;
}
.contact-info-card:hover { border-color: var(--green-200); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--slate-800);
  margin-bottom: .25rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--primary); }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ============================================
   SUBSIDIE PAGE
   ============================================ */
.subsidie-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.subsidie-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .35s;
}
.subsidie-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
}
.subsidie-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-800);
  margin-bottom: .75rem;
}
.subsidie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.subsidie-table th {
  text-align: left;
  font-weight: 600;
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .75rem 0;
  border-bottom: 2px solid var(--border);
}
.subsidie-table td {
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
  color: var(--slate-600);
}
.subsidie-table td:last-child { font-weight: 600; color: var(--primary); }

/* Responsive for page components */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid aside { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .subsidie-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .detail-header { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .form-checkbox-group { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
}

/* ============================================
   OFFERTE FORM COMPONENTS
   ============================================ */
.offerte-progress { margin-bottom: 2.5rem; }
.offerte-progress-track {
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.offerte-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
  transition: width .4s ease;
  width: 0%;
}
.offerte-steps {
  display: flex;
  justify-content: space-between;
}
.offerte-step {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color .3s;
}
.offerte-step.active { color: var(--primary); font-weight: 600; }
.offerte-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: all .3s;
}
.offerte-step.active span {
  background: var(--primary);
  color: #fff;
}

/* Radio Cards */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.radio-cards-sm { grid-template-columns: repeat(3, 1fr); }
.radio-card {
  position: relative;
  cursor: pointer;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card span {
  display: block;
  text-align: center;
  padding: .75rem .5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: all .2s;
}
.radio-card input:checked + span {
  border-color: var(--primary);
  background: var(--green-50);
  color: var(--primary);
  font-weight: 600;
}
.radio-card:hover span { border-color: var(--green-200); }

/* Checkbox Cards */
.checkbox-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
.checkbox-card {
  position: relative;
  cursor: pointer;
}
.checkbox-card input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-card-inner {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: all .2s;
}
.checkbox-card input:checked + .checkbox-card-inner {
  border-color: var(--primary);
  background: var(--green-50);
  color: var(--primary);
}
.checkbox-card:hover .checkbox-card-inner { border-color: var(--green-200); }
.checkbox-card-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkbox-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--slate-400);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.checkbox-card input:checked + .checkbox-card-inner .checkbox-card-icon svg {
  stroke: var(--primary);
}

/* Subsidie Hint */
.subsidie-hint {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  font-size: .88rem;
  color: var(--green-700);
  margin-top: 1rem;
}

/* Calc Rows (rekenvoorbeelden) */
.calc-rows { display: flex; flex-direction: column; }
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  font-size: .88rem;
  color: var(--slate-600);
}
.calc-row strong { color: var(--slate-800); }
.calc-row.green { color: var(--green-600); }
.calc-row.green strong { color: var(--green-700); }
.calc-row.border-top { border-top: 1px solid var(--border); padding-top: .75rem; margin-top: .25rem; }
.calc-row.result {
  background: var(--green-50);
  margin: .75rem -.75rem 0;
  padding: .85rem .75rem;
  border-radius: var(--radius-sm);
}
.calc-row.result span { font-weight: 700; color: var(--green-800); }
.calc-row.result strong { font-size: 1.2rem; color: var(--green-700); }

/* Flash Messages */
.flash-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.flash-success { background: var(--green-50); border: 1px solid var(--green-200); color: var(--green-700); }
.flash-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }

/* Form Select */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Responsive Offerte */
@media (max-width: 640px) {
  .radio-cards { grid-template-columns: repeat(2, 1fr); }
  .checkbox-cards { grid-template-columns: 1fr; }
  .offerte-steps { font-size: .75rem; }
}
/* ============================================
   FORM STYLING — PATCH
   Voeg dit toe aan het EINDE van style.css
   ============================================ */

/* ── Form Group ── */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group:last-child {
  margin-bottom: 0;
}

/* ── Form Label ── */
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

/* ── Form Input ── */
.form-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--slate-800);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder {
  color: var(--slate-400);
}
.form-input:hover {
  border-color: var(--slate-300);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* ── Textarea inherits form-input ── */
.form-input.form-textarea,
textarea.form-input {
  height: auto;
  padding: 0.75rem 1rem;
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* ── Select override ── */
select.form-input,
.form-input.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ── Error state ── */
.form-input.is-error,
.form-input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #EF4444;
}
.form-input.is-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ── Disabled ── */
.form-input:disabled {
  background: var(--slate-50);
  color: var(--slate-400);
  cursor: not-allowed;
}
/* ============================================ */
/* BATCH 10 — Component Styles                 */
/* ============================================ */
/* =============================================
   BATCH 10: Content Verdieping — Components
   Voeg dit toe aan het EINDE van assets/css/style.css
   ============================================= */

/* --- Content with Sidebar Layout --- */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
}
.content-main { min-width: 0; }
.content-hero-image {
    width: 100%; height: auto; border-radius: 12px;
    margin-bottom: 1.5rem; object-fit: cover; max-height: 340px;
}

/* --- Kosten Tabel (10.1) --- */
.kosten-tabel-wrapper { margin: 1.5rem 0; overflow-x: auto; }
.kosten-tabel {
    width: 100%; border-collapse: collapse;
    font-size: 0.9rem; line-height: 1.5;
}
.kosten-tabel th {
    background: var(--green-900); color: #fff;
    padding: 0.75rem 1rem; text-align: left;
    font-weight: 600; font-size: 0.85rem;
    white-space: nowrap;
}
.kosten-tabel td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border);
}
.kosten-tabel tbody tr:hover { background: rgba(45, 106, 79, 0.04); }
.kosten-besparing {
    color: var(--green-700); font-weight: 600;
}
.kosten-tabel-disclaimer {
    font-size: 0.8rem; color: var(--text-muted);
    margin-top: 0.5rem; font-style: italic;
}

/* --- Subsidie Blok (10.2) --- */
.subsidie-blok {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.08), rgba(27, 67, 50, 0.06));
    border: 1px solid rgba(82, 183, 136, 0.2);
    border-left: 4px solid var(--green-700);
    border-radius: 8px;
    margin: 1.5rem 0;
}
.subsidie-blok-icon { color: var(--green-700); flex-shrink: 0; }
.subsidie-blok-content { flex: 1; font-size: 0.9rem; line-height: 1.5; }
.subsidie-blok-content strong { display: block; color: var(--green-900); margin-bottom: 0.15rem; }
.subsidie-blok-link {
    font-size: 0.85rem; font-weight: 600; color: var(--green-700);
    white-space: nowrap; text-decoration: none;
}
.subsidie-blok-link:hover { text-decoration: underline; }

/* Subsidie tip box */
.subsidie-tip {
    background: rgba(82, 183, 136, 0.08);
    border: 1px solid rgba(82, 183, 136, 0.2);
    border-radius: 12px; padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.subsidie-tip strong { display: block; margin-bottom: 0.5rem; color: var(--green-900); }
.subsidie-tip p { margin: 0; font-size: 0.9rem; }

/* Subsidie bedragen cards */
.subsidie-bedragen-cards { display: flex; gap: 1rem; margin: 1.5rem 0; }
.subsidie-bedrag-card {
    flex: 1; padding: 1.5rem; text-align: center;
    border: 1px solid var(--border); border-radius: 12px;
    background: var(--bg-secondary);
}
.subsidie-bedrag-highlight {
    border-color: var(--green-700);
    background: rgba(82, 183, 136, 0.06);
}
.subsidie-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.subsidie-amount { display: block; font-size: 2rem; font-weight: 700; color: var(--green-800); }
.subsidie-unit { display: block; font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
@media (max-width: 600px) { .subsidie-bedragen-cards { flex-direction: column; } }

/* --- FAQ Accordion (10.3) --- */
.faq-sectie { margin: 2rem 0; }
.faq-sectie h2 { margin-bottom: 1rem; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px; margin-bottom: 0.5rem;
    overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.faq-vraag {
    width: 100%; display: flex; justify-content: space-between;
    align-items: center; padding: 1rem 1.25rem;
    background: none; border: none; cursor: pointer;
    font-size: 0.95rem; font-weight: 600; text-align: left;
    color: var(--text-primary); font-family: inherit;
    gap: 1rem;
}
.faq-chevron { transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-antwoord {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-antwoord {
    max-height: 500px; padding: 0 1.25rem 1rem;
}
.faq-antwoord p {
    font-size: 0.9rem; line-height: 1.7;
    color: var(--text-secondary); margin: 0;
}

/* --- Sidebar (10.4) --- */
.content-sidebar {
    position: sticky; top: 100px;
}
.sidebar-section { margin-bottom: 1.5rem; }
.sidebar-section h4 {
    font-size: 0.85rem; font-weight: 600;
    color: var(--green-900); text-transform: uppercase;
    letter-spacing: 0.03em;
    padding-bottom: 0.5rem; margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-700);
}
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { padding: 0.35rem 0; }
.sidebar-links a {
    font-size: 0.85rem; color: var(--text-secondary);
    text-decoration: none; transition: color 0.2s;
}
.sidebar-links a:hover { color: var(--green-700); }
.sidebar-cta {
    padding: 1.25rem; border-radius: 12px;
    background: var(--green-900); color: #fff;
    text-align: center;
}
.sidebar-cta strong { display: block; margin-bottom: 0.5rem; font-size: 1rem; }
.sidebar-cta p { font-size: 0.85rem; opacity: 0.85; margin: 0 0 1rem; }
.sidebar-cta .btn { display: inline-block; }

/* Lees ook */
.lees-ook { margin: 2rem 0; }
.lees-ook h3 { margin-bottom: 1rem; }
.lees-ook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 768px) { .lees-ook-grid { grid-template-columns: 1fr; } }
.lees-ook-card {
    display: block; padding: 1rem; border: 1px solid var(--border);
    border-radius: 10px; text-decoration: none; transition: all 0.2s;
}
.lees-ook-card:hover { border-color: var(--green-700); box-shadow: 0 4px 12px rgba(0,0,0,0.06); transform: translateY(-2px); }
.lees-ook-card strong { display: block; color: var(--green-900); margin-bottom: 0.35rem; font-size: 0.9rem; }
.lees-ook-card span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* --- Mid-CTA (10.7) --- */
.mid-cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--green-700);
    background: rgba(45, 106, 79, 0.04);
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
}
.mid-cta-content strong { display: block; color: var(--green-900); margin-bottom: 0.25rem; }
.mid-cta-content p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
.mid-cta .btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 768px) {
    .mid-cta { flex-direction: column; align-items: stretch; text-align: center; }
}

/* --- Voorwaarden list (subsidie) --- */
.voorwaarden-list { margin: 1.5rem 0; }
.voorwaarde-item {
    display: flex; gap: 1rem; padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.voorwaarde-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.voorwaarde-item p { margin: 0.25rem 0 0; font-size: 0.9rem; color: var(--text-secondary); }
.voorwaarde-item strong { color: var(--text-primary); }

/* --- Stappen compact (subsidie) --- */
.stappen-compact { margin: 1.5rem 0; }
.stap-compact {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.stap-nr {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--green-700); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}

/* --- Materialen detail (10.8) --- */
.materiaal-detail {
    padding: 1.5rem 0; border-bottom: 1px solid var(--border);
    margin-bottom: 1rem; scroll-margin-top: 100px;
}
.materiaal-specs {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    margin: 1rem 0;
}
.materiaal-specs .spec {
    padding: 0.5rem 0.75rem; font-size: 0.85rem;
    background: var(--bg-secondary); border-radius: 6px;
    border: 1px solid var(--border);
}
.materiaal-plusmin {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 1rem;
}
@media (max-width: 768px) { .materiaal-plusmin { grid-template-columns: 1fr; } }
.materiaal-plusmin h4 { font-size: 0.85rem; margin-bottom: 0.5rem; }
.plusmin-item { font-size: 0.85rem; padding: 0.35rem 0; line-height: 1.5; }

/* --- Dienst content body styling --- */
.dienst-content-body h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.dienst-content-body h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.dienst-content-body p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }

/* --- Text helper --- */
.text-green { color: var(--green-700); }

/* --- Page hero compact --- */
.page-hero-compact { padding: 2rem 0 1.5rem; }
.page-hero-compact h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.page-hero-compact p { font-size: 1rem; opacity: 0.85; max-width: 640px; }

/* ============================================
   GLOBALE OVERFLOW BESCHERMING
   Voorkomt horizontale scroll op alle pagina's
   ============================================ */

/* Sectie-niveau: overflow afkappen */
section,
.site-footer,
.hero,
.trust-bar,
.services,
.process,
.calculator-teaser,
.testimonials,
.cta-section,
.cta-section-v2 {
  overflow-x: hidden;
  max-width: 100%;
}

/* site-header GEEN overflow hidden — anders worden dropdown-menu's afgeknipt */

/* Grid en flex kinderen: min-width 0 voorkomt "uitpuilen" */
.services-grid > *,
.process-grid > *,
.testimonials-grid > *,
.subsidie-cards > *,
.lees-ook-grid > *,
.footer-top > *,
.calculator-box > *,
.contact-grid > *,
.detail-grid > *,
.content-with-sidebar > *,
[class*="-grid"] > *,
[class*="-cards"] > * {
  min-width: 0;
}

/* Afbeeldingen en video's nooit breder dan parent */
img, video, iframe, embed, object, svg:not([width]) {
  max-width: 100%;
}

/* Tabellen scrollen intern, niet de hele pagina */
.kosten-tabel-wrapper,
.subsidie-tabel-wrapper,
[class*="tabel-wrapper"],
table {
  overflow-x: auto;
  max-width: 100%;
}

/* Tekst met nowrap niet breder dan viewport */
.ts-item, .btn, .nav-mega-col a, .nav-dropdown-menu a {
  max-width: 100%;
}

/* Mobile: hero visueel overflow clips */
@media (max-width: 1024px) {
  .hero-visual { overflow: hidden; }
}

/* ============================================
   BREDE GRID-COLLAPSE FIX
   Vangt alle niet-geregistreerde 3-koloms grids
   op mobiel en tablet
   ============================================ */

/* Alle grids met 3 of meer kolommen → 2 koloms op tablet */
@media (max-width: 768px) {
  [class*="usp-grid"],
  [class*="features-grid"],
  [class*="voordelen-grid"],
  [class*="waarom-grid"],
  [class*="cards-grid"],
  [class*="benefits-grid"],
  [class*="feature-grid"],
  [class*="icon-grid"],
  [class*="block-grid"],
  [class*="col-grid"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Op kleine mobiel → 1 kolom */
@media (max-width: 480px) {
  [class*="usp-grid"],
  [class*="features-grid"],
  [class*="voordelen-grid"],
  [class*="waarom-grid"],
  [class*="cards-grid"],
  [class*="benefits-grid"],
  [class*="feature-grid"],
  [class*="icon-grid"],
  [class*="block-grid"],
  [class*="col-grid"] {
    grid-template-columns: 1fr !important;
  }
}
