/* ================================================================
   Duurkracht Kozijnen — Site CSS
   Gedeelde stylesheet voor alle pagina's
================================================================ */

:root{
  /* Brand kleuren — uit live site CSS (huisstijl behouden) */
  --green:       #0B5A2B;
  --green-deep:  #074120;
  --green-mid:   #1a7a42;
  --green-tint:  #e8f0eb;
  --orange:      #ED6B06;
  --orange-deep: #c4570a;
  --orange-tint: #fde9d6;
  --lime:        #D3CF29;
  --lime-soft:   #e8e57c;

  /* Aliassen voor backwards compatibility met componenten die var(--accent) gebruiken */
  --accent:      #ED6B06;
  --accent-deep: #c4570a;
  --surface:     #FAFAFA;

  --ink:         #0E0E0E;
  --ink-soft:    #2a2a2a;
  --gray-50:     #FAFAFA;
  --gray-100:    #F4F4F2;
  --gray-200:    #EAEAE6;
  --gray-300:    #D5D5CF;
  --gray-500:    #696960;
  --gray-700:    #4a4a44;

  --max:         1320px;
  --radius-sm:   4px;
  --radius:      12px;
  --radius-lg:   24px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background: white;
  color: var(--ink);
  font-family: "Manrope", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }

.skip{ position:absolute; left:-9999px; }
.skip:focus{ position:absolute; left:16px; top:16px; background:var(--ink); color:white; padding:10px 14px; z-index:9999; border-radius:4px; }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* TYPOGRAPHY */
h1,h2,h3,h4{ font-family:"Manrope", sans-serif; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin: 0; }
h1{ font-size: clamp(2.4rem, 4.5vw, 4rem); }
h2{ font-size: clamp(2rem, 3.6vw, 3rem); }
h3{ font-size: clamp(1.25rem, 1.8vw, 1.6rem); }
.em-italic{
  font-family: "Fraunces", serif;
  font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.eyebrow{
  display:inline-flex; gap: 10px; align-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 22px;
}
.eyebrow::before{ content: ""; width: 24px; height: 1px; background: currentColor; }

/* BUTTONS */
.btn{
  display:inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: 14px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  cursor: pointer; line-height: 1;
}
.btn-primary{ background: var(--orange); color: white; }
.btn-primary:hover{ background: var(--orange-deep); transform: translateY(-1px); }
.btn-green{ background: var(--green); color: white; }
.btn-green:hover{ background: var(--green-deep); }
.btn-ghost{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: white; }
.btn-ghost-white{ background: transparent; border-color: rgba(255,255,255,.4); color: white; }
.btn-ghost-white:hover{ background: white; color: var(--green); border-color: white; }
.btn .arrow{ transition: transform .25s ease; }
.btn:hover .arrow{ transform: translateX(3px); }

/* TOPBAR */
.topbar{
  background: var(--ink); color: #cabf9d;
  font-size: 12.5px; padding: 10px 0;
}
.topbar .container{ display:flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar .live{ display:inline-flex; align-items: center; gap: 8px; }
.topbar .live::before{
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 0 4px rgba(211,207,41,.18);
}
.topbar .live.gesloten::before{
  background: #e05252; box-shadow: 0 0 0 4px rgba(224,82,82,.18);
}
.topbar a:hover{ color: white; }

/* NAV */
.nav{
  background: white;
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
}
.nav .container{ display:flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 24px; }
.nav-logo img{ height: 44px; width: auto; }
.nav ul{ list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; font-size: 14px; font-weight: 500; }
.nav ul a{ position: relative; padding: 4px 0; }
.nav ul a:hover{ color: var(--green); }
.nav ul a.active{ color: var(--green); font-weight: 600; }
.nav ul a.active::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--orange); border-radius: 1px;
}
.nav-cta{ display: flex; align-items: center; gap: 16px; }
.nav-cta .phone{
  display:flex; gap: 8px; align-items: center;
  font-weight: 600; font-size: 14.5px;
}
.nav-cta .phone svg{ width: 18px; height: 18px; }
.nav-mobile-toggle{ display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle img{ width: 26px; height: 26px; }

/* BREADCRUMB */
.breadcrumb{ background: var(--gray-50); padding: 14px 0; font-size: 13px; color: var(--gray-700); border-bottom: 1px solid var(--gray-200); }
.breadcrumb ol{ list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li::after{ content: "›"; margin-left: 8px; color: var(--gray-500); }
.breadcrumb li:last-child::after{ display: none; }
.breadcrumb a{ color: var(--green); text-decoration: none; }
.breadcrumb a:hover{ text-decoration: underline; }
.breadcrumb li:last-child{ color: var(--ink); font-weight: 500; }

/* HERO BASIC */
.hero{
  background: var(--green); color: white;
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute; right: -120px; top: -150px;
  width: 600px; height: 600px;
  background-image: url("/design-assets/watermark-waarom-transparant.svg");
  background-size: contain; background-repeat: no-repeat;
  opacity: .07; pointer-events: none;
}
.hero-grid{
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero .eyebrow{ color: var(--lime); }
.hero h1{ color: white; margin-bottom: 26px; }
.hero h1 .em-italic{ color: var(--lime); }
.hero p.lead{ font-size: 18px; color: #d6e3da; max-width: 500px; margin: 0 0 32px; }
.hero p.lead strong{ color: white; }
.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust{ margin-top: 36px; display:flex; gap: 24px; align-items: center; color: #c5d6ca; font-size: 13.5px; flex-wrap: wrap; }
.hero-trust .stars{ color: var(--lime); letter-spacing: 2px; font-size: 16px; }
.hero-trust strong{ color: white; }
.hero-trust .sep{ opacity: .4; }
.hero-visual{
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
}
.hero-visual img{ width: 100%; height: 100%; object-fit: cover; }
.hero-visual .review-badge{
  position: absolute; left: 20px; bottom: 20px;
  background: white; padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex; gap: 14px; align-items: center;
  max-width: 280px;
}
.hero-visual .review-badge img{ width: 32px; height: 32px; flex-shrink: 0; }
.hero-visual .review-badge .rb-text{ font-size: 12.5px; line-height: 1.3; color: var(--ink); }
.hero-visual .review-badge .rb-text strong{ font-size: 14px; display: block; margin-bottom: 2px; }
.hero-visual .review-badge .rb-text .gold{ color: #f4b400; letter-spacing: 1.5px; }

/* TRUST BADGES — certificeringen prominent bovenaan */
.trust-badges{ background: #fff; padding: 44px 0 36px; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.trust-eyebrow{ font-family: "Fraunces", serif; font-style: italic; font-variation-settings: "opsz" 144; font-weight: 400; font-size: clamp(15px, 1.4vw, 18px); color: var(--green-deep); text-align: center; margin: 0 0 32px; letter-spacing: 0; }
.trust-row{ list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.trust-badge{ display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px 16px 20px; border-radius: 16px; background: var(--gray-50); border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; cursor: default; }
.trust-badge:hover{ transform: translateY(-3px); background: #fff; border-color: var(--green-mid); box-shadow: 0 8px 24px -8px rgba(11,90,43,.15); }

/* Echte merklogo's — afgeronde rechthoek als merkkader */
.badge-logo-box{
  width: 88px; height: 68px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px; flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.09);
}
.badge-logo-box img{ max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; object-fit: contain; }

/* KOMO: eigen dark-blue logokleur, witte achtergrond */
.badge-logo-box--komo{ background: #fff; border: 1px solid #e2e8f0; }
/* SKG: donkerblauwe paden (SVG omgezet) → lichtblauwe achtergrond */
.badge-logo-box--skg{ background: #fff; border: 1px solid #d0d8ea; }
/* Schüco: donkergrijze wordmark → witte achtergrond */
.badge-logo-box--schuco{ background: #fff; border: 1px solid #e2e8f0; }
/* Keralit: groen icoon → heel licht groen */
.badge-logo-box--keralit{ background: #f0faf5; border: 1px solid #c8eada; }

/* Google reviews — behoudt de ster-icoon stijl */
.badge-shape{
  width: 76px; height: 76px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px -2px rgba(0,0,0,.10);
}
.badge-shape--google{
  background: linear-gradient(145deg, #f5b400 0%, #d4920a 100%);
  color: #fff;
}
.badge-shape svg{ display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,.18)); }

.badge-label{ text-align: center; display: flex; flex-direction: column; gap: 3px; line-height: 1.3; }
.badge-label strong{ font-size: 15px; color: var(--ink); font-weight: 700; letter-spacing: -0.01em; }
.badge-label span{ font-size: 12.5px; color: var(--ink-soft); }
.trust-foot{ text-align: center; margin: 26px 0 0; font-size: 13.5px; color: var(--ink-soft); }
.trust-foot a{ color: var(--green); font-weight: 600; }
.trust-foot a:hover{ color: var(--accent); }
/* Compacte variant voor sub-pagina's */
.trust-badges--compact{ padding: 22px 0 18px; }
.trust-badges--compact .trust-badge{ padding: 12px 8px; gap: 8px; }
.trust-badges--compact .badge-logo-box{ width: 70px; height: 52px; padding: 8px; }
.trust-badges--compact .badge-shape{ width: 52px; height: 52px; }
.trust-badges--compact .badge-shape svg{ width: 28px; height: 28px; }
.trust-badges--compact .badge-label strong{ font-size: 13.5px; }
.trust-badges--compact .badge-label span{ font-size: 11.5px; }

/* USP STRIP */
.usp-strip{ background: var(--lime); padding: 18px 0; overflow: hidden; }
.usp-row{
  display: flex; gap: 50px; white-space: nowrap; align-items: center;
  animation: scroll-usp 38s linear infinite;
  font-family: "Fraunces", serif; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: 20px; color: var(--green-deep);
  width: max-content;
}
.usp-row .sep{ display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
@keyframes scroll-usp { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* STATS */
.stats{ background: var(--gray-50); padding: 70px 0; border-bottom: 1px solid var(--gray-200); }
.stats .container{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .num{ font-family: "Fraunces", serif; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 30; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--green); letter-spacing: -0.03em; }
.stat .num .sup{ font-size: .4em; vertical-align: super; color: var(--orange); margin-left: 2px; }
.stat .lbl{ font-size: 13.5px; color: var(--gray-700); margin-top: 14px; line-height: 1.45; max-width: 220px; }

/* SECTION HEAD */
.section{ padding: 110px 0; }
.section-head{ display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 60px; align-items: end; }
.section-head h2 .em-italic{ color: var(--green); }
.section-head p{ color: var(--gray-700); font-size: 16.5px; max-width: 500px; line-height: 1.6; }
.section-head .eyebrow{ color: var(--orange); }

/* TWO-COL FEATURE */
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col .img-stack{ position: relative; }
.two-col .img-stack img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.two-col h2{ margin-bottom: 24px; }
.two-col h2 .em-italic{ color: var(--orange); }
.two-col p{ color: var(--gray-700); font-size: 16.5px; line-height: 1.65; max-width: 520px; }
.two-col p + p{ margin-top: 16px; }
.two-col .reverse{ direction: rtl; }
.two-col .reverse > *{ direction: ltr; }

/* CHECKLIST */
.checklist{ list-style: none; margin: 30px 0 0; padding: 0; }
.checklist li{
  display: flex; gap: 14px; padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 15px; color: var(--ink-soft);
}
.checklist li:first-child{ border-top: none; }
.checklist li::before{
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green-tint);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B5A2B' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}
.checklist li strong{ color: var(--ink); }

/* SPECS TABLE */
.specs-table{ width: 100%; border-collapse: collapse; margin: 30px 0; }
.specs-table th, .specs-table td{ text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--gray-200); font-size: 14.5px; }
.specs-table th{ font-weight: 600; color: var(--gray-700); width: 40%; background: var(--gray-50); font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; }
.specs-table td{ color: var(--ink); }
.specs-table td strong{ color: var(--green); }

/* GALLERY */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery .ph{
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-200);
}
.gallery .ph img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery .ph:hover img{ transform: scale(1.05); }
.gallery .ph.wide{ grid-column: span 2; aspect-ratio: 2/1; }
.gallery .ph.tall{ grid-row: span 2; aspect-ratio: 1/2; }

/* VOORDELEN GRID */
.benefits{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.benefit{
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all .25s ease;
}
.benefit:hover{ transform: translateY(-2px); border-color: var(--green-mid); }
.benefit .ic{
  width: 44px; height: 44px;
  background: var(--green-tint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit .ic img{ width: 22px; height: 22px; }
.benefit h3{ font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.benefit p{ font-size: 14px; color: var(--gray-700); margin: 0; line-height: 1.5; }

/* WERKWIJZE STEPS */
.werkwijze{ background: var(--gray-100); position: relative; overflow: hidden; }
.werkwijze::before{
  content: ""; position: absolute; left: -200px; bottom: -200px;
  width: 600px; height: 600px;
  background-image: url("/design-assets/watermark-werkwijze-transparant.svg");
  background-size: contain; background-repeat: no-repeat;
  opacity: .08; pointer-events: none;
}
.werkwijze .container{ position: relative; z-index: 2; }
.werkwijze-head{ text-align: center; max-width: 700px; margin: 0 auto 60px; }
.werkwijze-head .eyebrow{ justify-content: center; color: var(--orange); }
.werkwijze-head .eyebrow::after{ content: ""; width: 24px; height: 1px; background: currentColor; }
.steps{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step{
  background: white; padding: 0 0 24px; text-align: left;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 45px -34px rgba(14,14,14,.45);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover{ transform: translateY(-4px); border-color: rgba(11,90,43,.28); box-shadow: 0 24px 55px -34px rgba(11,90,43,.45); }
.step:first-child,
.step:last-child{ border-radius: var(--radius); }
.step-visual{
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--green-tint);
}
.step-visual img.step-photo{ width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.04); transition: transform .45s ease; }
.step:hover .step-visual img.step-photo{ transform: scale(1.045); }
.step-visual::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,65,32,.05) 10%, rgba(7,65,32,.55) 100%);
  pointer-events: none;
}
.step .num-lbl{
  position: absolute; left: 16px; top: 16px; z-index: 2;
  font-size: 11px; color: white; letter-spacing: .15em; font-weight: 700;
  background: var(--orange);
  border-radius: 999px;
  padding: 7px 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}
.step .ic-circle{
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 48px; height: 48px; background: rgba(11,90,43,.92); border-radius: 50%;
  display:flex; align-items: center; justify-content: center; margin: 0;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 10px 26px rgba(0,0,0,.2);
}
.step .ic-circle img{ width: 30px; height: 30px; }
.step-content{ padding: 22px 22px 0; }
.step h3{ font-weight: 700; font-size: 16px; margin: 0 0 8px; letter-spacing: -0.01em; }
.step p{ font-size: 13px; color: var(--gray-700); margin: 0; line-height: 1.55; }

/* REVIEWS BLOCK */
.reviews{ background: var(--gray-50); }
.reviews .eyebrow{ color: var(--orange); }
.reviews-head h2 .em-italic{ color: var(--orange); }
.review-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review{
  background: white; padding: 30px;
  border-radius: var(--radius); border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
}
.review .stars{ color: #f4b400; letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.review .when{ font-size: 11.5px; color: var(--gray-500); margin-bottom: 16px; letter-spacing: .04em; }
.review blockquote{
  font-family: "Fraunces", serif;
  font-variation-settings:"opsz" 24, "SOFT" 30;
  font-size: 17px; line-height: 1.45; margin: 0 0 22px; color: var(--ink);
  flex: 1;
}
.review .author{ display:flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.review .avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: white;
  display:flex; align-items:center; justify-content:center;
  font-weight: 600; font-size: 15px; flex-shrink: 0;
}
.review .author-meta strong{ display: block; font-weight: 600; font-size: 14px; }
.review .author-meta span{ color: var(--gray-500); font-size: 12px; display:flex; align-items: center; gap: 6px; }
.review .author-meta span img{ width: 12px; height: 12px; }

/* ============================================================
   TOOLS-SECTION — gecombineerd subsidie + postcode widget
   Visueel sterke sectie met groen+oranje gradient en grafische
   decoratie. Container max ~820px, gecentreerd op de pagina.
   ============================================================ */
.tools-section{
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(237, 107, 6, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(211, 207, 41, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #0a4a23 0%, var(--green) 50%, #0e6432 100%);
  color: #fff;
  overflow: hidden;
}
.tools-deco{ position: absolute; inset: 0; pointer-events: none; }
.deco-blob{
  position: absolute; width: 460px; height: 460px;
  opacity: 0.06; fill: #fff;
  filter: blur(2px);
}
.deco-blob--1{ top: -120px; right: -130px; transform: rotate(20deg); }
.deco-blob--2{ bottom: -160px; left: -140px; fill: var(--accent); opacity: 0.10; }
.deco-dots{
  position: absolute; right: 6%; top: 28%;
  width: 120px; height: 80px;
  color: var(--lime); opacity: 0.35;
}

.tools-head{ position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto 36px; }
.tools-head .eyebrow{ justify-content: center; }
.tools-head .eyebrow--lime{ color: var(--lime); }
.tools-head .eyebrow--lime::before{ background: var(--lime); }
.tools-head h2{ color: #fff; }
.tools-head h2 .em-italic{ color: var(--lime); }
.tools-head h2 .em-italic--orange{ color: var(--accent); }
.tools-intro{ margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.6; }

/* WIDGET CARD */
.tools-widget{
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}

/* TABS — gebruik hogere specificiteit zodat eventuele globale button-styles uit een inline <style>-block niet winnen */
.tools-tabs{ display: flex; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.tools-widget button.tools-tab{
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 16px;
  background: transparent;
  border: none; border-bottom: 3px solid transparent;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: inherit; font-size: 15px; font-weight: 600;
  letter-spacing: -0.005em;
  transition: all .2s ease;
  position: relative;
  text-transform: none;
  box-shadow: none;
}
.tools-widget button.tools-tab svg{ color: currentColor; flex-shrink: 0; stroke: currentColor; }
.tools-widget button.tools-tab span{ color: inherit; }
.tools-widget button.tools-tab:hover{ color: var(--green); background: rgba(11, 90, 43, 0.03); }
.tools-widget button.tools-tab:hover span{ color: inherit; }
.tools-widget button.tools-tab.is-active,
.tools-widget button.tools-tab.is-active:hover{
  color: var(--accent);
  background: #fff;
  border-bottom-color: var(--accent);
}
.tools-widget button.tools-tab.is-active span,
.tools-widget button.tools-tab.is-active svg{ color: var(--accent); }
.tools-tab.is-active::after{
  content: ""; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px #fff;
}
.tools-tab:focus-visible{ outline: 2px solid var(--green); outline-offset: -2px; }

/* PANELS */
.tools-panel{ padding: 32px clamp(20px, 4vw, 40px); display: none; }
.tools-panel.is-active{ display: block; }

/* SUBSIDIE-PANEL ROWS */
.calc-form{ display: flex; flex-direction: column; gap: 22px; margin-bottom: 24px; }
.calc-row{ display: grid; gap: 10px; }
.calc-row-label{ display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--ink); }
.calc-num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700;
}
.calc-mini-hint{ margin: 4px 0 0; font-size: 11.5px; color: var(--gray-500); }
.calc-slider-wrap{ display: flex; align-items: center; gap: 16px; }
.calc-slider-wrap input[type="range"]{
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; background: var(--gray-200); border-radius: 3px;
  outline: none; cursor: pointer;
}
.calc-slider-wrap input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(237, 107, 6, 0.45);
  transition: transform .15s ease;
}
.calc-slider-wrap input[type="range"]::-webkit-slider-thumb:hover{ transform: scale(1.15); }
.calc-slider-wrap input[type="range"]::-moz-range-thumb{
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(237, 107, 6, 0.45);
}
.calc-slider-wrap output{
  font-family: "Fraunces", serif;
  font-size: 18px; color: var(--green);
  min-width: 70px; text-align: right;
  font-variation-settings: "opsz" 144;
}
.calc-slider-wrap output strong{ font-weight: 600; font-size: 26px; }

/* PILLS (compact radio) */
.calc-pill-row{ display: flex; gap: 8px; flex-wrap: wrap; }
.calc-pill{ position: relative; cursor: pointer; }
.calc-pill input{ position: absolute; opacity: 0; pointer-events: none; }
.calc-pill > span{
  display: inline-block;
  padding: 10px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-soft);
  transition: all .15s ease;
}
.calc-pill:hover > span{ border-color: var(--green); color: var(--green); }
.calc-pill input:checked + span{
  border-color: var(--green); background: var(--green); color: #fff;
  box-shadow: 0 4px 12px rgba(11, 90, 43, 0.20);
}
.calc-pill input:focus-visible + span{ outline: 2px solid var(--accent); outline-offset: 2px; }

/* RESULT BAR (compact, inline) */
.calc-result-bar{
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--green) 0%, #0e6432 100%);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 90, 43, 0.22);
}
.calc-result-text{ flex: 1; min-width: 0; }
.calc-result-label{
  display: block; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 4px;
}
.calc-result-value{
  display: block;
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px); line-height: 1.1;
  color: #fff; font-variation-settings: "opsz" 144;
}
.calc-result-cta{
  flex-shrink: 0;
  background: var(--accent);
  padding: 12px 18px;
  font-size: 14px;
}
.calc-result-cta:hover{ background: #d05c00; }
.calc-disclaimer{
  margin: 14px 0 0;
  font-size: 11.5px; color: var(--gray-500);
  line-height: 1.5;
}
.calc-disclaimer a{ color: var(--green); font-weight: 600; }

/* KOSTEN-CALCULATOR — extra elementen */
.calc-unit-price{
  display: inline-block; margin-left: 8px;
  padding: 2px 10px; border-radius: 999px;
  background: rgba(237, 107, 6, 0.10);
  color: var(--accent);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.01em;
}
.calc-row--stepper{
  display: flex; align-items: center; gap: 10px;
}
.calc-row--stepper .calc-row-label{ flex: 1; min-width: 0; }
.calc-item-count{
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #deded8;
  color: #777;
  font-family: "Fraunces", serif;
  font-size: 22px; font-weight: 600;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  font-variation-settings: "opsz" 144;
}
.calc-item-count.is-active{
  background: #ED6B06;
  color: #fff;
  box-shadow: 0 4px 14px rgba(237, 107, 6, 0.40);
}
.calc-stepper{
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gray-50);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}
.step-btn{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--green);
  font-size: 20px; font-weight: 600; line-height: 1;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all .15s ease;
  font-family: inherit;
}
.step-btn:hover:not(:disabled){
  background: var(--accent); color: #fff;
  transform: scale(1.05);
}
.step-btn:disabled{
  opacity: 0.35; cursor: not-allowed;
}
.step-btn:focus-visible{
  outline: 2px solid var(--accent); outline-offset: 2px;
}
.step-val{
  min-width: 36px; padding: 0 6px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-size: 20px; font-weight: 500;
  color: var(--green);
  font-variation-settings: "opsz" 144;
}

/* BREAKDOWN-LIJST */
.calc-breakdown-toggle{
  margin-top: 14px;
  font-size: 13px;
}
.calc-breakdown-toggle summary{
  cursor: pointer;
  color: var(--green); font-weight: 600;
  list-style: none;
  display: inline-flex; align-items: center; gap: 6px;
  user-select: none;
}
.calc-breakdown-toggle summary::-webkit-details-marker{ display: none; }
.calc-breakdown-toggle summary::before{
  content: "▸"; transition: transform .2s ease; display: inline-block;
}
.calc-breakdown-toggle[open] summary::before{ transform: rotate(90deg); }
.calc-breakdown-list{
  list-style: none; padding: 16px 0 0; margin: 0;
}
.calc-breakdown-list li{
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13.5px;
}
.calc-breakdown-list li:last-child{ border-bottom: 0; }
.calc-breakdown-list li.bd-total{
  background: rgba(11, 90, 43, 0.05);
  border-radius: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--green);
  font-size: 14.5px;
  border-bottom: 0;
}
.calc-breakdown-list li.bd-empty{
  color: var(--gray-500);
  font-style: italic;
  text-align: center;
  border-bottom: 0;
}

/* POSTCODE-PANEL */
.pc-form-v2{ margin: 0; }
.pc-label-v2{
  display: block;
  font-size: 14px; font-weight: 600; color: var(--ink);
  margin-bottom: 14px; line-height: 1.5;
}
.pc-input-row{ display: flex; gap: 10px; align-items: stretch; }
.pc-input-row input{
  flex: 1; min-width: 0;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 16px; font-family: inherit;
  outline: none; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.pc-input-row input:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(237, 107, 6, 0.14);
}
.pc-input-row .btn{
  flex-shrink: 0;
  padding: 14px 22px;
  background: var(--accent);
}
.pc-input-row .btn:hover{ background: #d05c00; }
.pc-help-v2{ margin: 10px 0 0; font-size: 11.5px; color: var(--gray-500); }

.pc-result{ margin-top: 22px; }
.pc-error{
  padding: 14px 16px;
  background: #fff5f0; border: 1px solid #f4d4c0;
  border-radius: 12px;
  color: #8a4400; font-size: 13.5px; line-height: 1.5;
}
.pc-error a{ color: var(--accent); font-weight: 600; }
.pc-success{
  padding: 22px;
  background: linear-gradient(135deg, rgba(11, 90, 43, 0.06) 0%, rgba(237, 107, 6, 0.05) 100%);
  border: 1px solid rgba(11, 90, 43, 0.18);
  border-radius: 14px;
  position: relative;
}
.pc-success::before{
  content: "";
  position: absolute; top: 16px; right: 18px;
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
}
.pc-headline{
  display: block;
  font-family: "Fraunces", serif; font-size: 22px; font-weight: 500;
  color: var(--green); margin-bottom: 6px;
  line-height: 1.25;
  font-variation-settings: "opsz" 144;
}
.pc-sub{ margin: 0 0 16px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.pc-nearest{
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  font-size: 13.5px; color: var(--ink);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(11, 90, 43, 0.06);
}
.pc-nearest a{ color: var(--green); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.pc-km{ display: inline-block; margin-left: 6px; color: var(--gray-500); font-size: 12.5px; }
.pc-more{ margin-top: 14px; font-size: 13px; }
.pc-more summary{ cursor: pointer; color: var(--gray-500); font-weight: 500; user-select: none; }
.pc-more summary:hover{ color: var(--green); }
.pc-more ol{ margin: 10px 0 0 18px; padding: 0; }
.pc-more li{ padding: 4px 0; }
.pc-more li a{ color: var(--green); font-weight: 500; }
.pc-more li span{ color: var(--gray-500); font-size: 12px; margin-left: 4px; }
.pc-cta-row{ display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.pc-cta-row .btn{ flex: 1; min-width: 0; justify-content: center; }
.pc-cta-row .btn-primary{ background: var(--accent); }
.pc-cta-row .btn-primary:hover{ background: #d05c00; }

/* FAQ */
.faq{ background: white; }
.faq .eyebrow{ color: var(--orange); }
.faq h2 .em-italic{ color: var(--green); }
.faq-list{ border-top: 1px solid var(--ink); max-width: 920px; margin: 0 auto; }
.faq-item{ border-bottom: 1px solid var(--gray-200); }
.faq-item summary{
  list-style: none; cursor: pointer;
  display:flex; justify-content: space-between; align-items: flex-start; gap: 30px;
  padding: 28px 0;
  font-family:"Manrope"; font-weight: 600; font-size: clamp(17px, 2vw, 22px);
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: "+"; font-family:"Fraunces", serif; font-size: 28px; font-weight: 300;
  transition: transform .4s ease; color: var(--orange); line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item[open] summary{ color: var(--green); }
.faq-item .answer{
  padding: 0 70px 28px 0; max-width: 760px;
  color: var(--gray-700); font-size: 16px; line-height: 1.65;
}
.faq-item .answer strong{ color: var(--ink); }
.faq-item .answer a{ color: var(--green); text-decoration: underline; }

/* CTA BANNER */
.cta-banner{
  background: var(--orange); color: white;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before{
  content: "Duurkracht.";
  position: absolute; right: -40px; bottom: -100px;
  font-family: "Fraunces", serif; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: 18rem; color: rgba(255,255,255,.1);
  line-height: .8; pointer-events: none; font-weight: 400;
}
.cta-banner .container{ display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.cta-banner .eyebrow{ color: rgba(255,255,255,0.85); }
.cta-banner h2{ color: white; margin-bottom: 18px; }
.cta-banner h2 .em-italic{ color: var(--lime); }
.cta-banner p{ color: rgba(255,255,255,0.92); max-width: 480px; }
.cta-banner-actions{ display:flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-banner .btn-primary{ background: white; color: var(--orange); }
.cta-banner .btn-primary:hover{ background: var(--ink); color: white; }
.cta-banner .meta-line{ font-size: 13.5px; color: rgba(255,255,255,0.85); margin-top: 6px; }
.cta-banner .meta-line strong{ color: white; }

/* FOOTER */
footer{
  background: var(--ink); color: #aaa;
  padding: 80px 0 24px; font-size: 14px;
}
.ftr-grid{ display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid #2a2a2a; }
.ftr-grid .ftr-nav-title{ font-size: 11px; letter-spacing: .18em; color: #999; margin: 0 0 18px; font-weight: 600; text-transform: uppercase; }
.ftr-grid ul{ list-style: none; margin: 0; padding: 0; }
.ftr-grid ul li{ margin-bottom: 10px; }
.ftr-grid a{ color: #ccc; }
.ftr-grid a:hover{ color: var(--lime); }
.ftr-brand img{ height: 52px; margin-bottom: 18px; }
.ftr-brand p{ color: #aaa; max-width: 320px; margin: 0 0 14px; }
.ftr-bot{ padding-top: 24px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12.5px; color: #999; }
.ftr-bot .socials{ display:flex; gap: 14px; align-items: center; }
.ftr-bot .socials a{ width: 32px; height: 32px; border-radius: 50%; background: #2a2a2a; display:flex; align-items: center; justify-content: center; transition: background .25s; }
.ftr-bot .socials a:hover{ background: var(--orange); }
.ftr-bot .socials img{ width: 16px; height: 16px; filter: invert(1) brightness(.9); }

/* MOBILE STICKY CTA */
.mobile-cta{
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: white; padding: 12px 16px;
  border-top: 1px solid var(--gray-200);
  z-index: 90; gap: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.mobile-cta a{
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
}
.mobile-cta .m-call{ background: var(--orange); color: white; }
.mobile-cta .m-wa{ background: #25D366; color: white; }
.mobile-cta a img{ width: 18px; height: 18px; filter: brightness(0) invert(1); }

/* FORM */
form .row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
form label{ display:block; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; font-weight: 600; }
form input, form textarea, form select{
  width: 100%; background: transparent; border: none;
  border-bottom: 1.5px solid var(--gray-300);
  padding: 10px 0 14px;
  font-family: inherit; font-size: 16px; color: var(--ink);
  transition: border-color .3s ease;
}
form input:focus, form textarea:focus, form select:focus{ outline: none; border-bottom-color: var(--orange); }
form textarea{ resize: vertical; min-height: 110px; }
form .full{ grid-column: span 2; }
form .submit{ margin-top: 20px; display:flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
form .privacy{ font-size: 12.5px; color: var(--gray-500); max-width: 360px; line-height: 1.5; }
form .privacy a{ color: var(--green); text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 980px){
  .nav ul, .nav-cta .phone, .nav-cta .btn { display: none; }
  .nav-mobile-toggle{ display: block; }
  .topbar{ font-size: 11.5px; }
  .topbar .container > :nth-child(2){ display: none; }
  .hero-grid, .reviews-head, .cta-banner .container, .two-col, .section-head{
    grid-template-columns: 1fr; gap: 40px;
  }
  .hero{ padding: 60px 0 80px; }
  .stats .container{ grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .trust-row{ grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .trust-badge:nth-child(4){ grid-column: 1 / span 2; flex-direction: row; justify-content: center; }
  .trust-badge:nth-child(5){ grid-column: 3 / span 1; }
  .trust-badge:nth-child(4) .badge-label{ text-align: left; }
  .tools-tab span{ font-size: 13.5px; }
  .calc-result-bar{ flex-direction: column; align-items: stretch; text-align: center; gap: 12px; padding: 16px 18px; }
  .calc-result-cta{ width: 100%; justify-content: center; }
  .pc-input-row{ flex-direction: column; gap: 8px; }
  .pc-input-row .btn{ width: 100%; justify-content: center; }
  .deco-blob{ width: 280px; height: 280px; }
  .deco-dots{ display: none; }
  .steps{ grid-template-columns: 1fr; gap: 16px; }
  .step{ border: 1px solid var(--gray-200) !important; border-radius: var(--radius) !important; }
  .step:first-child,
  .step:last-child{ border-radius: var(--radius) !important; }
  .step-visual{ aspect-ratio: 16 / 9; }
  .review-grid{ grid-template-columns: 1fr; }
  .ftr-grid{ grid-template-columns: 1fr 1fr; }
  .mobile-cta{ display: flex; }
  body{ padding-bottom: 76px; }
  .section{ padding: 80px 0; }
  form .row{ grid-template-columns: 1fr; }
  form .full{ grid-column: span 1; }
  .cta-banner::before{ font-size: 12rem; }
  .benefits{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .gallery .ph.wide, .gallery .ph.tall{ grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
}
@media (max-width: 520px){
  .ftr-grid{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr 1fr; }
  .trust-badge:nth-child(4),
  .trust-badge:nth-child(5){ grid-column: span 1; flex-direction: column; }
  .trust-badge:nth-child(5){ grid-column: 1 / span 2; flex-direction: row; justify-content: center; }
  .trust-badge:nth-child(5) .badge-label{ text-align: left; }
  .trust-badge:nth-child(4) .badge-label{ text-align: center; }
  .badge-shape{ width: 52px; height: 52px; }
  .badge-shape svg{ width: 36px; height: 36px; }
}

.wa-float{
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.wa-float:hover{
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
@media (max-width: 899px){ .wa-float{ display: none; } }

::selection{ background: var(--orange); color: white; }
