/* ========================================
   BOOMVERZORGING SENNE — STYLES v2
   ======================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --green-950: #030d07;
  --green-900: #071e0f;
  --green-800: #0d3819;
  --green-700: #105a2a;
  --green-600: #148f3e;
  --green-500: #1aab4a;
  --green-400: #37e36a;
  --green-300: #7ff0a0;
  --green-200: #bbf7cc;
  --green-100: #e3f6e7;
  --green-50:  #f2faf4;

  --dark:           #0c1a12;
  --text:           #1d2b22;
  --text-secondary: #475b50;
  --text-muted:     #6b7f72;
  --bg:             #f5f7f3;
  --bg-warm:        #f7f8f4;
  --white:          #ffffff;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(13,56,25,.06);
  --shadow-md: 0 8px 24px rgba(13,56,25,.08);
  --shadow-lg: 0 16px 48px rgba(13,56,25,.12);
  --shadow-xl: 0 24px 64px rgba(13,56,25,.18);

  --nav-height: 88px;
  --section-pad: 120px 8%;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.25,.46,.45,.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Remove blue tap flash on iOS for all interactive elements */
a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

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

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 96px;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green-800);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

/* ---------- SECTION HEADING ---------- */
.section-heading {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-label {
  display: inline-block;
  padding: 7px 18px;
  background: var(--green-100);
  border-radius: 50px;
  color: var(--green-700);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 16px;
  color: var(--dark);
}

.section-heading p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-heading.light h2,
.section-heading .text-white { color: var(--white); }
.section-heading .text-white-70 { color: rgba(255,255,255,.72); }
.light-label {
  background: rgba(255,255,255,.15);
  color: var(--green-300);
}

h2 { font-size: clamp(34px, 5vw, 54px); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: min(92%, 1240px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 26px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  z-index: 1000;
  transition: top .35s var(--ease-spring), padding .35s var(--ease-spring), background .35s var(--ease-spring), border-color .35s var(--ease-spring), box-shadow .35s var(--ease-spring);
}

.navbar-scrolled {
  top: 10px;
  padding: 10px 22px;
  background: rgba(255,255,255,.96);
  border-color: rgba(13,56,25,.07);
  box-shadow: 0 4px 20px rgba(13,56,25,.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color .3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.logo-box img { width: 48px; height: 48px; object-fit: contain; }

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

.nav-link {
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color .25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-400);
  border-radius: 2px;
  transition: width .3s var(--ease-spring);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.navbar-scrolled .logo,
.navbar-scrolled .nav-link { color: var(--dark); }
.navbar-scrolled .nav-link:hover { color: var(--green-700); }
.navbar-scrolled .nav-link::after { background: var(--green-600); }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-500);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(26,171,74,.28);
  transition: all .25s ease;
  cursor: pointer;
}

.call-btn:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,171,74,.35);
}

.call-btn-mobile { display: none; }

/* Hamburger — refined pill button */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.hamburger:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.26);
}
.hamburger:active { transform: scale(.95); }
.hamburger:focus-visible {
  outline: 2px solid var(--green-400);
  outline-offset: 2px;
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  transition:
    top .3s var(--ease-spring),
    transform .3s var(--ease-spring),
    opacity .25s ease,
    background .25s ease,
    width .25s ease;
  display: block;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; width: 12px; }
.hamburger span:nth-child(3) { top: 27px; }

.hamburger:hover span:nth-child(2) { width: 18px; }

.navbar-scrolled .hamburger {
  background: rgba(13,56,25,.05);
  border-color: rgba(13,56,25,.12);
}
.navbar-scrolled .hamburger:hover {
  background: rgba(13,56,25,.1);
  border-color: rgba(13,56,25,.2);
}
.navbar-scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.hamburger.active span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu surfaces — hidden on desktop, shown in mobile media query */
.nav-mobile-head,
.nav-mobile-foot,
.nav-close { display: none; }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 13, 7, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 8500;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/IMG_2851.jpeg") center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 12s ease;
  will-change: transform;
}

.hero.loaded .hero-bg { transform: scale(1); }

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,30,15,.92) 0%,
    rgba(7,30,15,.62) 45%,
    rgba(7,30,15,.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 8%;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 30px;
  color: var(--green-300);
}

.hero h1 {
  font-size: clamp(44px, 7.5vw, 88px);
  margin-bottom: 22px;
  color: var(--white);
  line-height: 1.02;
}

.hero-accent {
  color: var(--green-400);
  position: relative;
}

.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background: var(--green-400);
  border-radius: 2px;
  opacity: .4;
}

.hero p {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  margin-bottom: 44px;
  color: rgba(255,255,255,.78);
  max-width: 520px;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--green-500);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 22px rgba(26,171,74,.32);
  transition: all .28s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26,171,74,.38);
}

.btn-primary svg { transition: transform .28s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: all .28s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.3); }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--green-900);
  padding: 0 8%;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  padding: 48px 0;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s var(--ease-out);
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-suffix {
  font-size: .6em;
  color: var(--green-400);
  font-weight: 800;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-align: center;
  letter-spacing: .01em;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  align-self: stretch;
  min-height: 60px;
}

/* ---------- DIENSTEN ---------- */
.diensten {
  padding: var(--section-pad);
  background: var(--bg-warm);
}

.diensten-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dienst-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .6s ease,
    transform .6s var(--ease-spring),
    box-shadow .3s ease;
  box-shadow: var(--shadow-sm);
}

.dienst-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.dienst-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dienst-img-wrap {
  overflow: hidden;
  height: 230px;
  position: relative;
}

.dienst-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-spring);
}

.dienst-card:hover img { transform: scale(1.07); }

.dienst-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,30,15,.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}

.dienst-card:hover .dienst-img-overlay { opacity: 1; }

.dienst-content { padding: 26px; }

.dienst-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  transition: background .3s ease, color .3s ease;
}

.dienst-card:hover .dienst-icon-wrap {
  background: var(--green-500);
  color: var(--white);
}

.dienst-num {
  display: none;
}

.dienst-card h3 {
  font-size: 21px;
  margin-bottom: 9px;
  color: var(--dark);
  transition: color .25s ease;
}

.dienst-card:hover h3 { color: var(--green-700); }

.dienst-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- WERKWIJZE ---------- */
.werkwijze {
  padding: var(--section-pad);
  background: var(--white);
}

.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-xl);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s var(--ease-out), box-shadow .3s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--green-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: background .3s ease, border-color .3s ease;
}

.process-step:hover .process-icon {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

.process-num {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--green-600);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.process-step p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.process-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--green-300);
  margin-top: 64px;
  flex-shrink: 0;
}

/* ---------- GALLERIJ ---------- */
.gallerij {
  padding: var(--section-pad);
  background: var(--bg-warm);
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .5s var(--ease-spring);
}

.gallery-item.gallery-tall img { height: 440px; object-fit: cover; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,30,15,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--section-pad);
  background: var(--green-800);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,171,74,.12) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,171,74,.1) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s var(--ease-out), background .3s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  background: rgba(255,255,255,.09);
}

.stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}

.testimonial-card blockquote p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
}

.author-location {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ---------- OVER ONS ---------- */
.over {
  padding: var(--section-pad);
  background: var(--white);
  overflow: hidden;
}

.over-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.over-collage {
  position: relative;
  min-height: 560px;
}

.over-main-image {
  position: absolute;
  left: 8%;
  top: 8%;
  width: 74%;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.over-main-image img,
.over-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-small-image {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.over-small-left  { left: 0;  bottom: 80px; width: 200px; height: 170px; }
.over-small-right { right: 4%; top: 80px;   width: 190px; height: 160px; }

.over-cert-badge {
  position: absolute;
  right: 6%;
  bottom: 60px;
  z-index: 3;
  background: var(--green-500);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 20px rgba(26,171,74,.35);
  white-space: nowrap;
}

.over-accent-ring {
  position: absolute;
  right: -16px;
  bottom: 48px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--green-100);
  border-radius: 50%;
  opacity: .5;
}

.over-content .section-label {
  background: transparent;
  color: var(--green-600);
  padding: 0;
  letter-spacing: .12em;
  font-size: 13px;
}

.over-content h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin: 16px 0 22px;
}

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

.over-content > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 520px;
}

.over-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.value-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.value-item p  { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }

.why-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 20px;
  padding: 26px;
}

.why-card h3 { font-size: 17px; margin-bottom: 16px; color: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-800);
}

.why-item svg { color: var(--green-500); flex-shrink: 0; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  padding: 72px 8%;
}

.cta-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-800);
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .25s ease;
}

.cta-btn-phone:hover {
  background: var(--green-100);
  transform: translateY(-2px);
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .25s ease;
}

.cta-btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-left, .reveal-right {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity .85s ease,
    transform .85s var(--ease-out),
    filter .85s ease;
}

.reveal-left  { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .6s ease,
    transform .6s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-bg { transform: none !important; }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: var(--section-pad);
  background: var(--green-50);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 28px;
  color: var(--dark);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .2s ease;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.contact-item.no-link { cursor: default; }
a.contact-item:hover { color: var(--green-700); }
a.contact-item:hover .contact-item-icon { background: var(--green-500); color: var(--white); }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}

.whatsapp-icon { background: rgba(37,211,102,.12); color: #25D366; }
a.contact-item:hover .whatsapp-icon { background: #25D366; color: var(--white); }

.contact-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 3px;
  font-weight: 700;
}

.contact-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.contact-arrow {
  margin-left: auto;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .25s ease, color .25s ease;
}

a.contact-item:hover .contact-arrow {
  transform: translateX(3px);
  color: var(--green-600);
}

.map-wrapper {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
}

.map-wrapper iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group label span { color: var(--green-600); }

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 13px 16px;
  border: 1.5px solid #dce5de;
  border-radius: var(--radius-sm);
  font-size: 16px; /* ≥16px voorkomt automatisch zoomen op iOS Safari */
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: all .22s ease;
  outline: none;
  -webkit-appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7f72' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(26,171,74,.12);
  background: var(--white);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}

.form-error {
  display: none;
  font-size: 12.5px;
  color: #e53e3e;
  font-weight: 500;
}

.form-group.has-error .form-error { display: block; }

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

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--green-500);
  border: none;
  padding: 15px;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .28s ease;
}

.submit-btn:hover:not(:disabled) {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,171,74,.28);
}

.submit-btn:disabled {
  opacity: .72;
  cursor: not-allowed;
}

.submit-btn.success { background: var(--green-800); }

.spinner { animation: spin .8s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}

.form-status.error   { color: #e53e3e; }
.form-status.success { color: var(--green-700); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-900);
  color: var(--white);
  padding: 72px 8% 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img { width: 40px; height: 40px; object-fit: contain; }

.footer-brand strong {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.25);
  color: #6ee7a0;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all .25s ease;
  cursor: pointer;
}

.footer-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
}

.footer-col h4 {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}

.footer-col nav,
.footer-col address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.footer-col nav a,
.footer-col address a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s ease;
}

.footer-col nav a:hover,
.footer-col address a:hover {
  color: var(--green-300);
}

.footer-col address span {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
  animation: fadeIn .2s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}

.lightbox-close:hover { background: rgba(255,255,255,.22); }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}

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

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}

.float-wa {
  background: #25D366;
  color: var(--white);
}

.float-email {
  background: var(--green-700);
  color: var(--white);
}

.float-phone {
  background: var(--green-500);
  color: var(--white);
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  z-index: 500;
  box-shadow: var(--shadow-md);
  transition: all .25s ease;
  opacity: 0;
}

.scroll-top.visible {
  opacity: 1;
}

.scroll-top:hover {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
  transform: translateY(-3px);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 760px);
  background: var(--green-900);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  z-index: 8000;
  padding: 20px 24px;
  animation: slideUp .35s var(--ease-out);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.cookie-text svg {
  color: var(--green-300);
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}

.cookie-text strong { color: var(--white); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all .22s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cookie-btn-decline {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,.14);
  color: var(--white);
}

.cookie-btn-accept {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,171,74,.3);
}

.cookie-btn-accept:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,171,74,.38);
}

@media (max-width: 540px) {
  .cookie-banner { bottom: 16px; padding: 16px; }
  .cookie-inner  { flex-direction: column; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

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

@media (max-width: 1100px) {
  :root { --section-pad: 96px 6%; }

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

  .over-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .over-collage {
    min-height: 480px;
    max-width: 560px;
    margin: 0 auto;
  }

  .over-content {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .process-grid { flex-direction: column; align-items: center; }
  .process-connector {
    transform: rotate(90deg);
    margin: -8px 0;
  }
  .process-step { max-width: 480px; width: 100%; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 5%; }

  /* Navbar mobile */
  .navbar {
    width: calc(100% - 20px);
    padding: 10px 14px;
    top: 8px;
  }

  .logo span { font-size: 15px; }
  .logo-box img { width: 40px; height: 40px; }

  .hamburger { display: flex; }
  .call-btn-desktop { display: none; }
  .nav-backdrop { display: none !important; }

  /* ---- Fullscreen takeover ---- */
  nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #061a0c;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding:
      calc(22px + env(safe-area-inset-top))
      26px
      calc(28px + env(safe-area-inset-bottom));
    opacity: 0;
    transform: scale(1.025);
    pointer-events: none;
    transition: opacity .3s ease, transform .35s var(--ease-out);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 8600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }

  /* Subtle ambient accent in top-right corner — adds depth without noise */
  nav::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(26,171,74,.14) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  /* ---- Menu header (brand + close) ---- */
  .nav-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    position: relative;
    z-index: 1;
  }

  .nav-mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -.005em;
  }
  .nav-mobile-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
  }
  .nav-close:hover,
  .nav-close:focus-visible {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    transform: scale(1.05);
    outline: none;
  }

  /* ---- Nav links ---- */
  .nav-link {
    color: var(--white) !important;
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.2;
    padding: 22px 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    min-height: 64px;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity .4s var(--ease-out),
      transform .4s var(--ease-out),
      color .25s ease,
      padding-left .25s ease;
  }

  nav.open .nav-link { opacity: 1; transform: translateY(0); }
  nav.open .nav-link:nth-child(2) { transition-delay: .10s; }
  nav.open .nav-link:nth-child(3) { transition-delay: .16s; }
  nav.open .nav-link:nth-child(4) { transition-delay: .22s; }
  nav.open .nav-link:nth-child(5) { transition-delay: .28s; }

  /* Numbered prefix */
  .nav-link::before {
    content: attr(data-num);
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--green-400);
    width: 30px;
    align-self: flex-start;
    padding-top: 10px;
  }

  /* Chevron arrow (overrides desktop underline ::after) */
  .nav-link::after {
    content: "";
    position: static;
    width: 10px;
    height: 10px;
    margin-left: auto;
    background: none;
    border-right: 2px solid rgba(255,255,255,.4);
    border-top: 2px solid rgba(255,255,255,.4);
    border-radius: 1px;
    transform: rotate(45deg);
    transition: border-color .25s ease, transform .25s ease;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    color: var(--green-200) !important;
    padding-left: 10px;
    outline: none;
  }
  .nav-link:hover::after,
  .nav-link:focus-visible::after {
    width: 10px;
    height: 10px;
    border-color: var(--green-400);
    transform: rotate(45deg) translate(3px, -3px);
  }

  /* ---- Menu footer ---- */
  .nav-mobile-foot {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.07);
    position: relative;
    z-index: 1;
  }

  .call-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    background: var(--green-500);
    color: var(--white) !important;
    box-shadow: 0 10px 28px rgba(26,171,74,.3);
    min-height: 58px;
    margin-top: 0;
    letter-spacing: .005em;
    transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
  }
  .call-btn-mobile:hover,
  .call-btn-mobile:focus-visible {
    background: var(--green-400);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(26,171,74,.4);
    outline: none;
  }

  .nav-mobile-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.78) !important;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    letter-spacing: .005em;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
  }
  .nav-mobile-mail:hover,
  .nav-mobile-mail:focus-visible {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
    color: var(--white) !important;
    outline: none;
  }
  .nav-mobile-mail svg { color: var(--green-400); flex-shrink: 0; }

  .nav-mobile-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    letter-spacing: .01em;
  }
  .nav-mobile-meta svg { color: var(--green-400); }

  /* Hero mobile */
  .hero-content {
    margin: 0 5%;
    padding-top: 96px;
  }

  .hero-badge { font-size: 12px; padding: 8px 14px; }
  .hero p { font-size: 16px; }

  .buttons { flex-direction: column; }

  .btn-primary,
  .btn-secondary {
    padding: 15px 22px;
    font-size: 15px;
    text-align: center;
    justify-content: center;
  }

  .hero-scroll-hint { display: none; }
  .hero-accent::after { display: none; }

  /* Stats */
  .stats-inner {
    flex-wrap: wrap;
    padding: 36px 0;
    gap: 0;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 20px;
  }

  .stat-divider {
    display: none;
  }

  /* Diensten mobile */
  .diensten-grid { grid-template-columns: 1fr; gap: 18px; }
  .dienst-img-wrap { height: 200px; }
  .dienst-content { padding: 22px; }
  .dienst-card h3 { font-size: 19px; }

  /* Section heading mobile */
  .section-heading { margin-bottom: 48px; }

  /* Over mobile — absolute positionering vervangen door gewone flow */
  .over-collage {
    min-height: unset;
    height: auto;
  }

  .over-main-image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 280px;
    border-radius: var(--radius-lg);
  }

  .over-small-image,
  .over-accent-ring,
  .over-cert-badge { display: none; }
  .over-values { grid-template-columns: 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 8px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 26px; }

  /* Gallery */
  .gallery-grid { columns: 1; }
  .gallery-item.gallery-tall img { height: auto; }

  /* CTA Banner */
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions { justify-content: center; }

  /* Contact mobile */
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-info,
  .contact-form { padding: 28px; }
  .contact-info h3 { font-size: 22px; margin-bottom: 20px; }

  /* Footer mobile */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Floating */
  .float-btn { width: 48px; height: 48px; }
  .scroll-top { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .logo span { font-size: 14px; }
  .logo-box img { width: 36px; height: 36px; }
  .contact-info,
  .contact-form { padding: 20px; }
  .stats-inner { padding: 28px 0; }
  .stat-item { padding: 16px; }
  .stat-number { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
}
