/* ===========================
   KlimaatCentraal — Stylesheet
   =========================== */

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

:root {
  --green-dark: #2D6A4F;
  --green: #40916C;
  --green-light: #52B788;
  --blue-light: #ADE8F4;
  --blue-soft: #E0F7FA;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --gray-900: #212529;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green);
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn--primary:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* --- Section Utilities --- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.text-accent {
  color: var(--green);
}

/* =======================
   HEADER
   ======================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-size: 1.25rem;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo strong {
  color: var(--green-dark);
}

.logo-img {
  height: 68px;
  width: auto;
  flex-shrink: 0;
  display: block;
  clip-path: inset(0 0 8px 0);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-text__green {
  color: var(--green-dark);
}

.logo-text__black {
  color: #111;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
}

.header__link:hover {
  color: var(--green-dark);
}

.header__cta-btn {
  margin-left: 8px;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =======================
   HERO — Video Background
   ======================= */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: -12px; /* compensate for blur bleed */
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(6px);
}

/* Slide 1 — installatie */
.hero__slide:nth-child(1) {
  animation: kenBurns 32s ease-in-out infinite alternate, slide1Fade 32s ease-in-out infinite;
}

/* Slide 2 — inspectie */
.hero__slide:nth-child(2) {
  animation: kenBurns 32s ease-in-out 8s infinite alternate, slide2Fade 32s ease-in-out infinite;
}

/* Slide 3 — raam */
.hero__slide:nth-child(3) {
  animation: kenBurns 32s ease-in-out 16s infinite alternate, slide3Fade 32s ease-in-out infinite;
}

/* Slide 4 — klant */
.hero__slide:nth-child(4) {
  animation: kenBurns 32s ease-in-out 24s infinite alternate, slide4Fade 32s ease-in-out infinite;
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, 0.5%); }
  100% { transform: scale(1.1)  translate(0.5%, -0.5%); }
}

/* 4 slides, 32s cycle — elk 8s zichtbaar, 2s overlap */
/* Slide 1: zichtbaar 0-8s, fade-out 8-10s, verborgen 10-30s, fade-in 30-32s */
@keyframes slide1Fade {
  0%,  25%  { opacity: 1; }
  31%,  94% { opacity: 0; }
  100%      { opacity: 1; }
}

/* Slide 2: verborgen 0-8s, fade-in 8-10s, zichtbaar 10-18s, fade-out 18-20s, verborgen 20-32s */
@keyframes slide2Fade {
  0%,  25%  { opacity: 0; }
  31%,  56% { opacity: 1; }
  63%, 100% { opacity: 0; }
}

/* Slide 3: verborgen 0-18s, fade-in 18-20s, zichtbaar 20-26s, fade-out 26-28s, verborgen 28-32s */
@keyframes slide3Fade {
  0%,  56%  { opacity: 0; }
  63%,  81% { opacity: 1; }
  88%, 100% { opacity: 0; }
}

/* Slide 4: verborgen 0-26s, fade-in 26-28s, zichtbaar 28-32s */
@keyframes slide4Fade {
  0%,  81%  { opacity: 0; }
  88%, 100% { opacity: 1; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 100px;
}

.hero__content {
  max-width: 780px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.3s; }
.hero__title-line:nth-child(2) { animation-delay: 0.5s; }
.hero__title-line:nth-child(3) { animation-delay: 0.7s; }

.hero__title .text-accent {
  color: var(--green-light);
  text-shadow: 0 0 30px rgba(82, 183, 136, 0.4);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.9s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.1s forwards;
}

/* --- Dynamic Hero Buttons --- */
.hero-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

/* Glow effect on primary button */
.hero-btn--glow {
  box-shadow: 0 0 0 rgba(45, 106, 79, 0);
}

.hero-btn--glow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 25px rgba(45, 106, 79, 0.4),
    0 0 40px rgba(82, 183, 136, 0.3);
}

.hero-btn--glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: none;
}

.hero-btn--glow:hover::after {
  animation: btnShine 0.6s ease forwards;
}

@keyframes btnShine {
  to {
    transform: translateX(100%);
  }
}

/* Accent button (subsidie check) */
.btn--accent {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: var(--white);
  border-color: transparent;
  font-weight: 700;
}

.btn--accent:hover {
  color: var(--white);
}

/* Pulse effect on subsidie button */
.hero-btn--pulse {
  animation: heroPulse 2.5s ease-in-out infinite 2s;
}

.hero-btn--pulse:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 30px rgba(249, 115, 22, 0.5),
    0 0 50px rgba(245, 158, 11, 0.3);
  animation: none;
}

@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
  }
}

/* Ripple effect on click */
.hero-btn .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Floating particles behind hero */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* =======================
   USP BAR
   ======================= */
@keyframes uspFlyUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.usp-bar {
  background: linear-gradient(270deg, #1B4332, #2D6A4F, #40916C, #2D6A4F, #1B4332);
  background-size: 300% 100%;
  color: var(--white);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
  animation: bar-gradient-shift 12s ease infinite;
}

/* Periodic shimmer sweep */
.usp-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.09) 50%,
    transparent 100%);
  transform: translateX(-200%);
  animation: bar-shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

/* Drifting dot grid */
.usp-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: bar-dots-drift 18s linear infinite;
  pointer-events: none;
}

@keyframes bar-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bar-shimmer {
  0%          { transform: translateX(-200%); }
  35%, 100%   { transform: translateX(300%); }
}

@keyframes bar-dots-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 56px 28px; }
}

.usp-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: uspFlyUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.usp-bar__item:nth-child(1) { animation-delay: 0.05s; }
.usp-bar__item:nth-child(2) { animation-delay: 0.15s; }
.usp-bar__item:nth-child(3) { animation-delay: 0.25s; }
.usp-bar__item:nth-child(4) { animation-delay: 0.35s; }

.usp-bar__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--white);
}

/* =======================
   DIENSTEN
   ======================= */
.diensten {
  padding: 100px 0;
}

.diensten__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dienst-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.dienst-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.dienst-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.dienst-card__icon svg {
  width: 100%;
  height: 100%;
}

.dienst-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.dienst-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

.dienst-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-dark);
}

.dienst-card__link:hover {
  color: var(--green);
}

.dienst-card__details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.3s ease, margin-top 0.3s ease;
}

.dienst-card__details p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}

.dienst-card__cta {
  width: 100%;
}

.dienst-card.is-expanded {
  border-color: var(--green-light);
  box-shadow: 0 16px 34px rgba(45, 106, 79, 0.2);
  transform: translateY(-6px) scale(1.015);
}

.dienst-card.is-expanded .dienst-card__details {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

.dienst-card.is-expanded .dienst-card__link {
  color: var(--green);
}

/* =======================
   SUBSIDIE
   ======================= */
.subsidie {
  padding: 100px 0;
  background: var(--gray-50);
}

.subsidie__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.subsidie__content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.subsidie__content p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.subsidie__list {
  margin-bottom: 32px;
}

.subsidie__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--gray-800);
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.subsidie__visual {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}

.subsidie__card {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #52c48a 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 48px 40px 40px;
  text-align: center;
  box-shadow: 0 12px 50px rgba(45, 106, 79, 0.45);
  max-width: 360px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: default;
}

/* Shimmer sweep */
.subsidie__card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  animation: card-shine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes card-shine {
  0%   { transform: translateX(-160%); }
  45%  { transform: translateX(160%); }
  100% { transform: translateX(160%); }
}

.subsidie__card-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 2;
}

.subsidie__card-amount {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
  animation: amount-glow 3s ease-in-out infinite;
  letter-spacing: -0.01em;
}

@keyframes amount-glow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(255,255,255,0)); }
  50%       { filter: drop-shadow(0 0 16px rgba(255,255,255,0.55)); }
}

/* Progress bar */
.subsidie__card-bar-wrap {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.subsidie__card-bar {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.subsidie__card-bar.is-filled {
  width: 100%;
}

.subsidie__card-note {
  display: block;
  font-size: 0.9rem;
  opacity: 0.75;
  position: relative;
  z-index: 2;
}

/* Floating particles */
.subsidie__card-particle {
  position: absolute;
  bottom: -24px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  animation: particle-rise var(--dur, 3s) ease-in var(--delay, 0s) infinite;
  z-index: 0;
}

@keyframes particle-rise {
  0%   { transform: translateY(0)    scale(0.5) rotate(-10deg); opacity: 0;    }
  12%  { opacity: 0.6; }
  80%  { opacity: 0.2; }
  100% { transform: translateY(-240px) scale(1.1) rotate(15deg);  opacity: 0; }
}

/* =======================
   WAAROM WIJ — STAT TELLERS
   ======================= */
.waarom {
  padding: 100px 0;
  background: #f5faf7;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.waarom::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Animated floating orbs */
.waarom__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

.waarom__orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(82, 183, 136, 0.20);
  top: -100px;
  left: -100px;
  animation: orb-drift-1 22s ease-in-out infinite;
}
.waarom__orb--2 {
  width: 340px;
  height: 340px;
  background: rgba(64, 145, 108, 0.16);
  top: calc(50% - 170px);
  right: -80px;
  animation: orb-drift-2 28s ease-in-out infinite;
  animation-delay: -8s;
}
.waarom__orb--3 {
  width: 280px;
  height: 280px;
  background: rgba(45, 106, 79, 0.12);
  bottom: -80px;
  left: 35%;
  animation: orb-drift-3 19s ease-in-out infinite;
  animation-delay: -4s;
}
.waarom__orb--4 {
  width: 200px;
  height: 200px;
  background: rgba(110, 231, 183, 0.18);
  top: 15%;
  left: 55%;
  animation: orb-drift-4 24s ease-in-out infinite;
  animation-delay: -12s;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0px,   0px); }
  25%       { transform: translate(60px,  40px); }
  50%       { transform: translate(30px, -50px); }
  75%       { transform: translate(-40px, 25px); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0px,   0px); }
  33%       { transform: translate(-50px, -40px); }
  66%       { transform: translate(-20px,  45px); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0px,  0px); }
  40%       { transform: translate(-50px, -60px); }
  70%       { transform: translate(40px, -25px); }
}
@keyframes orb-drift-4 {
  0%, 100% { transform: translate(0px,  0px); }
  30%       { transform: translate(40px, -50px); }
  65%       { transform: translate(-30px, 30px); }
}

/* Content sits above orbs */
.waarom .container {
  position: relative;
  z-index: 1;
}

/* Stats panel — white block wrapping the grid */
.stats__panel {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

/* Stats grid */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Stat card base */
.stat-card {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 36px 20px 28px;
  text-align: center;
  overflow: hidden;
  cursor: default;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  box-shadow: none;
}

/* Top accent bar per variant */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}

.stat-card--green::before   { background: linear-gradient(90deg, #52B788, #2D6A4F); }
.stat-card--emerald::before { background: linear-gradient(90deg, #6EE7B7, #059669); }
.stat-card--gold::before    { background: linear-gradient(90deg, #FCD34D, #D97706); }
.stat-card--blue::before    { background: linear-gradient(90deg, #93C5FD, #2563EB); }

/* Soft tinted wash at top of card */
.stat-card__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  opacity: 0.08;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.stat-card--green   .stat-card__glow { background: linear-gradient(180deg, #52B788, transparent); }
.stat-card--emerald .stat-card__glow { background: linear-gradient(180deg, #6EE7B7, transparent); }
.stat-card--gold    .stat-card__glow { background: linear-gradient(180deg, #FCD34D, transparent); }
.stat-card--blue    .stat-card__glow { background: linear-gradient(180deg, #93C5FD, transparent); }

/* Hover state */
.stat-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.stat-card:hover .stat-card__glow {
  opacity: 0.16;
}

/* Ring + number header */
.stat-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* SVG arc ring */
.stat-ring {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  transform: rotate(-90deg);
  overflow: visible;
}

.stat-ring__track {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 3.5;
}

.stat-ring__arc {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  /* no CSS transition — ring is driven by JS requestAnimationFrame */
}

.stat-card--green   .stat-ring__arc { stroke: #40916C; }
.stat-card--emerald .stat-ring__arc { stroke: #10B981; }
.stat-card--gold    .stat-ring__arc { stroke: #D97706; }
.stat-card--blue    .stat-ring__arc { stroke: #3B82F6; }

@keyframes arc-breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.stat-ring__arc.is-animated {
  animation: arc-breathe 3s ease-in-out infinite;
  /* opacity-only animation is GPU-composited — no repaint cost */
}

/* Counter number */
.stat-card__number {
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Label */
.stat-card__label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.stat-card--green   .stat-card__label { color: #2D6A4F; }
.stat-card--emerald .stat-card__label { color: #059669; }
.stat-card--gold    .stat-card__label { color: #D97706; }
.stat-card--blue    .stat-card__label { color: #1D4ED8; }

/* Sub text */
.stat-card__sub {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}



/* =======================
   WERKWIJZE
   ======================= */
.werkwijze {
  padding: 100px 0;
  background: var(--gray-50);
}

.werkwijze__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.stap {
  text-align: center;
  flex: 1;
  max-width: 240px;
  padding: 0 16px;
}

.stap__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stap__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.stap__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.stap__connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
  flex-shrink: 0;
}

/* =======================
   FOTOGALERIJ / CARROUSEL
   ======================= */
.fotogalerij {
  padding: 80px 0 60px;
  background: #f8faf9;
}

.fotogalerij .section-header {
  margin-bottom: 40px;
}

.fotoslider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
}

.fotoslider__track {
  position: relative;
  aspect-ratio: 4/3;
  background: #111;
}

.fotoslider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.fotoslider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fotoslider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Pijlknoppen */
.fotoslider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
}

.fotoslider:hover .fotoslider__btn {
  opacity: 1;
}

.fotoslider__btn:hover {
  background: rgba(255,255,255,0.35);
}

.fotoslider__btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.fotoslider__btn--prev { left: 16px; }
.fotoslider__btn--next { right: 16px; }

/* Dots */
.fotoslider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 20px;
  background: #f8faf9;
}

.fotoslider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5d6ce;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.fotoslider__dot.is-active {
  background: #2D6A4F;
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .fotoslider {
    border-radius: 0;
    max-width: 100%;
  }
  .fotoslider__track {
    aspect-ratio: 3/4;
  }
  .fotoslider__btn {
    opacity: 1;
    width: 36px;
    height: 36px;
  }
}

/* =======================
   REVIEWS
   ======================= */
.reviews {
  padding: 100px 0;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.reviews__stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.reviews__score {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.125rem;
}

.reviews__count {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.reviews__marquee {
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 140s linear infinite;
}

.reviews__track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .reviews__track {
    animation-duration: 180s;
  }
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
  .reviews__track .review-card[aria-hidden="true"] {
    display: none;
  }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  width: 320px;
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f2937;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 4px 10px;
}

.review-card__source svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.review-card__time {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.review-card__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.review-card__author strong {
  color: var(--gray-900);
}

/* =======================
   CTA / CONTACT
   ======================= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-section .section-title {
  color: var(--white);
  text-align: left;
}

.cta-section__content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.cta-section__list li {
  padding: 4px 0;
  font-size: 1rem;
  opacity: 0.9;
}

.cta-contact-box {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 16px;
  max-width: 360px;
}

.cta-contact-box h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cta-contact-box p {
  margin: 0;
}

.cta-contact-box a {
  color: var(--white);
  font-weight: 600;
}

.cta-contact-box a:hover {
  color: #d8f3dc;
}

/* --- Honeypot: verborgen voor mensen, zichtbaar voor bots --- */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* --- Form --- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.form-success p {
  color: var(--gray-800);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.form-success.is-visible {
  display: block;
}

/* =======================
   FOOTER
   ======================= */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__logo strong {
  color: var(--green-light);
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer__partner {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer__partner-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__partner-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer__col ul li a:hover {
  color: var(--white);
}

.footer__contact li {
  font-size: 0.875rem;
}

.footer__map {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
}

/* =======================
   RESPONSIVE
   ======================= */

/* Tablet */
@media (max-width: 992px) {
  .hero__inner {
    padding: 140px 0 80px;
  }

  .usp-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subsidie__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subsidie__content .section-title {
    text-align: center;
  }

  .subsidie__content {
    text-align: center;
  }

  .subsidie__list li {
    justify-content: center;
  }

  .subsidie__content .btn {
    margin: 0 auto;
  }

  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-section .section-title {
    text-align: center;
  }

  .cta-section__content {
    text-align: center;
  }

  .cta-section__list {
    display: inline-block;
    text-align: left;
  }

  .cta-contact-box {
    margin-left: auto;
    margin-right: auto;
  }

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

  .werkwijze__steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stap__connector {
    display: none;
  }

  .stap {
    flex-basis: 45%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__hamburger {
    display: flex;
  }

  .header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__inner {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .usp-bar__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .dienst-card.is-expanded {
    transform: translateY(-2px);
  }

  .stats__panel {
    padding: 32px 20px;
  }

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

  .stat-card {
    padding: 28px 14px 22px;
  }

  .werkwijze__steps {
    flex-direction: column;
    align-items: center;
  }

  .stap {
    flex-basis: auto;
    max-width: 100%;
  }

  .reviews__marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

/* ===================================
   Subsidiecheck Modal Wizard
   =================================== */

.sc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 15, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.sc-overlay.is-open {
  display: flex;
  animation: scFadeIn 0.25s ease both;
}

@keyframes scFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sc-modal {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px 40px 32px;
  animation: scSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes scSlideUp {
  from { transform: translateY(32px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* Close button */
.sc-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.sc-close:hover { background: var(--gray-200); }

.sc-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-600);
}

/* Progress bar */
.sc-progress-wrap {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}

.sc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 3px;
  transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.sc-step-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 28px;
}

/* Steps */
.sc-step { display: none; }

.sc-step.is-active {
  display: block;
  animation: scStepIn 0.3s ease both;
}

@keyframes scStepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sc-emoji {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
}

.sc-q {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 6px;
}

.sc-hint {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

/* Options grid */
.sc-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.sc-opts--col   { grid-template-columns: 1fr; }
.sc-opts--multi { grid-template-columns: 1fr 1fr; }

.sc-opt {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  user-select: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
}

.sc-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.sc-opt span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.sc-opt span::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  transition: border-color var(--transition), background var(--transition);
  background: var(--white);
}

.sc-opts--multi .sc-opt span::before { border-radius: 4px; }

.sc-opt:hover {
  border-color: var(--green-light);
  background: #f0faf5;
}

.sc-opt.is-selected {
  border-color: var(--green);
  background: #eaf7f1;
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
}

.sc-opt.is-selected span::before {
  border-color: var(--green-dark);
  background-color: var(--green-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Shake animation for required validation */
@keyframes scShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

.sc-shake { animation: scShake 0.45s ease; }

/* Result / estimate card */
.sc-estimate {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  margin-bottom: 16px;
}

.sc-estimate-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.8;
  margin-bottom: 8px;
}

.sc-estimate-amount {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.sc-estimate-sub {
  font-size: 0.84rem;
  opacity: 0.75;
}

/* Answers summary */
.sc-summary {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  font-size: 0.87rem;
}

.sc-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray-100);
}

.sc-summary-row:last-child { border-bottom: none; }
.sc-summary-row span   { color: var(--gray-600); white-space: nowrap; }
.sc-summary-row strong { color: var(--gray-900); text-align: right; }

.sc-huurder-note {
  font-size: 0.83rem;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

/* Contact form */
.sc-form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.sc-form-sub {
  font-size: 0.84rem;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.sc-field { margin-bottom: 14px; }

.sc-field label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.sc-field input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-900);
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}

.sc-field input:focus { border-color: var(--green); }

.sc-submit { margin-top: 8px; margin-bottom: 10px; }

.sc-privacy {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.4;
}

.sc-form.is-hidden { display: none; }

/* Success state */
.sc-success {
  display: none;
  text-align: center;
  padding: 40px 16px;
}

.sc-success.is-visible {
  display: block;
  animation: scFadeIn 0.35s ease;
}

.sc-success-check {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: scPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.sc-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.sc-success p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* Navigation buttons */
.sc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

/* Prevent body scroll when modal is open */
body.modal-open { overflow: hidden; }

/* Responsive */
@media (max-width: 600px) {
  .sc-modal {
    padding: 24px 20px 20px;
    border-radius: 16px;
    max-height: 92vh;
  }

  .sc-opts,
  .sc-opts--multi { grid-template-columns: 1fr; }

  .sc-estimate-amount { font-size: 1.85rem; }
  .sc-q { font-size: 1.1rem; }
}
