/* ============================================
   FYSIOTHERAPIE NAGTZAAM — DPS Media Build
   Leefstijlpraktijk: Herstellen. Opbouwen. Presteren.
   ============================================ */

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Theme Tokens ===== */
:root {
  /* Brand colors */
  --teal: #0F4C5C;
  --teal-dark: #0A3540;
  --teal-light: #1A6B7E;
  --lime: #C5E63B;
  --lime-dark: #A8C931;
  --cream: #FAF8F3;
  --cream-dark: #F0EDE4;
  --charcoal: #1A2A2E;
  --gray: #5A6B70;
  --gray-light: #B8C0C2;
  --white: #FFFFFF;
  --border: rgba(15, 76, 92, 0.12);

  /* Typography */
  --font-display: 'Manrope', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container: 1280px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 24px;

  /* Motion */
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --duration: 1400ms;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--teal);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 1.6vw, 1.375rem); }
p { margin: 0 0 1rem 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  padding: 6px 14px;
  background: rgba(197, 230, 59, 0.15);
  border-radius: 100px;
  border: 1px solid rgba(15, 76, 92, 0.1);
  margin-bottom: var(--space-3);
}

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
section { padding: var(--space-7) 0; position: relative; }
.section-header { max-width: 720px; margin: 0 0 var(--space-6) 0; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { font-size: 1.125rem; color: var(--gray); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
  min-height: 48px;
  cursor: pointer;
}
.btn-primary {
  background: var(--lime);
  color: var(--teal);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: var(--teal);
  color: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(15, 76, 92, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-dark {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-dark:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(15, 76, 92, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn svg { width: 18px; height: 18px; }

/* ============================================
   NAVIGATION (Sticky)
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(250, 248, 243, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px -8px rgba(15, 76, 92, 0.12);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img, .nav-logo svg {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 100px;
  transition: all 0.2s ease;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--teal);
  background: rgba(15, 76, 92, 0.06);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.7; }
.nav-phone svg { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================
   HERO (Rotating Slider)
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 80px;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: none;
}
.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 53, 64, 0.45) 0%, rgba(10, 53, 64, 0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  color: var(--white);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 16px;
  background: rgba(197, 230, 59, 0.15);
  border: 1px solid rgba(197, 230, 59, 0.4);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  backdrop-filter: blur(10px);
  margin-bottom: var(--space-3);
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: var(--space-3);
}
.hero-title em {
  font-style: normal;
  color: var(--lime);
}
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: var(--space-5);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-meta {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 100px;
  transition: background 0.3s;
}
.hero-dot.active { background: var(--lime); }
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--lime);
  animation: scroll-down 2s infinite;
}
@keyframes scroll-down {
  to { top: 40px; }
}

/* Hero text reveal animation */
.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-cta {
  animation: heroSlideIn 1.4s var(--ease-out) backwards;
}
.hero-slide.active .hero-eyebrow { animation-delay: 0.2s; }
.hero-slide.active .hero-title { animation-delay: 0.35s; }
.hero-slide.active .hero-subtitle { animation-delay: 0.55s; }
.hero-slide.active .hero-cta { animation-delay: 0.75s; }
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hero secondary banner (subpages) */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  margin-top: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurnsSlow 16s ease-out infinite alternate;
  clip-path: inset(0 0 0 0);
}
@keyframes kenBurnsSlow {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,53,64,0.5) 0%, rgba(10,53,64,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-5);
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
  color: var(--white);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-2);
}
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs span { color: rgba(255,255,255,0.4); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 900px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 640px;
  margin-top: var(--space-2);
}

/* ============================================
   INTRO (Section 3)
   ============================================ */
.intro {
  background: var(--cream);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-image-badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: var(--lime);
  color: var(--teal);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px -8px rgba(15, 76, 92, 0.3);
}
.intro-image-badge strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}
.intro-content h2 { margin-bottom: var(--space-3); }
.intro-content h2 em {
  font-style: normal;
  color: var(--teal-light);
  background: linear-gradient(180deg, transparent 65%, rgba(197, 230, 59, 0.4) 65%);
}
.intro-content > p {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: var(--space-4);
}
.usp-checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: var(--space-4);
}
.usp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--charcoal);
}
.usp-checklist li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--teal);
  background: var(--lime);
  border-radius: 50%;
  padding: 4px;
  margin-top: 2px;
}
.usp-checklist li strong {
  display: block;
  font-family: var(--font-display);
  color: var(--teal);
  margin-bottom: 2px;
}

/* ============================================
   WAAROM ONS (Section 4) — 6 USP Grid
   ============================================ */
.waarom {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.usp-card {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--lime);
  transition: height 0.4s var(--ease-out);
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -16px rgba(15, 76, 92, 0.18);
  border-color: transparent;
}
.usp-card:hover::before { height: 100%; }
.usp-icon {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--lime);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  transition: all 0.3s var(--ease-out);
}
.usp-card:hover .usp-icon {
  background: var(--lime);
  color: var(--teal);
  transform: rotate(-4deg) scale(1.05);
}
.usp-icon svg { width: 28px; height: 28px; }
.usp-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--teal);
}
.usp-card p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}

/* ============================================
   EXPERTISE TICKER (Section 5)
   ============================================ */
.ticker {
  background: var(--teal);
  color: var(--white);
  padding: var(--space-4) 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  width: fit-content;
  animation: tickerScroll 40s linear infinite;
  gap: var(--space-5);
  padding-right: var(--space-5);
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-item svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
  flex-shrink: 0;
}
.ticker-item.dot { color: var(--lime); }
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* ============================================
   DIENSTEN (Section 6)
   ============================================ */
.diensten { background: var(--cream); }
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.dienst-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--border);
}
.dienst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px -20px rgba(15, 76, 92, 0.25);
  border-color: transparent;
}
.dienst-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dienst-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dienst-card:hover .dienst-card-image img {
  transform: scale(1.06);
}
.dienst-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: var(--cream);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}
.dienst-card-tag.tag-herstellen { background: var(--cream); color: #C0392B; }
.dienst-card-tag.tag-opbouwen { background: var(--cream); color: #B8860B; }
.dienst-card-tag.tag-presteren { background: var(--cream); color: var(--teal); }
.dienst-card-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dienst-card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
  color: var(--teal);
}
.dienst-card-body p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--space-3);
}
.dienst-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  align-self: flex-start;
  padding: 8px 0;
  border-bottom: 1.5px solid var(--lime);
  transition: gap 0.3s var(--ease-out);
}
.dienst-card-link:hover { gap: 14px; color: var(--teal-dark); }

/* ============================================
   WERKWIJZE (Section 7) — 5 numbered steps
   ============================================ */
.werkwijze {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.werkwijze::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 230, 59, 0.12), transparent 70%);
  border-radius: 50%;
}
.werkwijze h2 { color: var(--white); }
.werkwijze .section-header p { color: rgba(255,255,255,0.7); }
.werkwijze .eyebrow {
  background: rgba(197, 230, 59, 0.15);
  color: var(--lime);
  border-color: rgba(197, 230, 59, 0.3);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(197,230,59,0.4) 0, rgba(197,230,59,0.4) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 72px;
  height: 72px;
  background: var(--lime);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto var(--space-3);
  box-shadow: 0 0 0 8px rgba(197, 230, 59, 0.15);
  transition: all 0.3s ease;
}
.step:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(197, 230, 59, 0.2);
}
.step h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   PROJECTEN (Section 8)
   ============================================ */
.projecten { background: var(--cream); }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.proj-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}
.proj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(15, 76, 92, 0.2);
}
.proj-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.proj-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.proj-card:hover .proj-image img { transform: scale(1.05); }
.proj-body {
  padding: var(--space-3);
}
.proj-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.proj-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime-dark);
}
.proj-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.proj-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}
.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  transition: gap 0.3s var(--ease-out);
}
.proj-link:hover { gap: 14px; }

/* ============================================
   TIPS (Section 9)
   ============================================ */
.tips {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(15, 76, 92, 0.18);
}
.tip-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.tip-card:hover .tip-image img { transform: scale(1.06); }
.tip-body {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tip-cat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
}
.tip-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  flex: 1;
}
.tip-body h3 a { transition: color 0.2s; }
.tip-body h3 a:hover { color: var(--teal-light); }
.tip-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}
.tip-meta svg { width: 14px; height: 14px; }

/* ============================================
   REVIEWS (Section 10)
   ============================================ */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.review {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-quote {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--lime);
  opacity: 0.4;
  font-weight: 800;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-3);
}
.review-stars svg {
  width: 18px;
  height: 18px;
  color: #F5B731;
  fill: currentColor;
}
.review p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong {
  font-family: var(--font-display);
  display: block;
  color: var(--teal);
  font-size: 0.95rem;
}
.review-author span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   OFFERTE / INTAKE FORM (Section 11)
   ============================================ */
.offerte {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.offerte-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-6);
  align-items: start;
}
.offerte-content h2 em {
  font-style: normal;
  color: var(--teal-light);
}
.offerte-content > p {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: var(--space-4);
}
.offerte-features {
  list-style: none;
  display: grid;
  gap: var(--space-2);
}
.offerte-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.3s ease;
}
.offerte-features li:hover {
  transform: translateX(6px);
  border-color: var(--lime);
}
.offerte-features svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  background: var(--lime);
  padding: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}
.offerte-form {
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -16px rgba(15, 76, 92, 0.15);
  border: 1px solid var(--border);
}
.offerte-form h3 {
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-2);
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: all 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  margin-top: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--lime);
  color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(15, 76, 92, 0.4);
}
.form-disclaimer {
  text-align: center;
  font-size: 0.825rem;
  color: var(--gray);
  margin-top: var(--space-2);
}

/* ============================================
   FAQ (Section 12)
   ============================================ */
.faq { background: var(--cream-dark); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.open {
  border-color: var(--teal);
  box-shadow: 0 8px 24px -8px rgba(15, 76, 92, 0.15);
}
.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--teal);
  text-align: left;
  transition: all 0.2s;
}
.faq-question:hover { color: var(--teal-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================
   FOOTER (Section 13)
   ============================================ */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-7) 0 var(--space-3);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-3);
}
.footer-logo svg, .footer-logo img { height: 50px; width: auto; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-text span {
  display: block;
  font-size: 0.625rem;
  color: var(--lime);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--lime);
  color: var(--teal-dark);
  border-color: var(--lime);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--lime);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a:hover { color: var(--lime); }
.footer-bottom {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.825rem;
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-3);
  list-style: none;
}
.footer-bottom-links a:hover { color: var(--lime); }

/* ============================================
   CTA BAND (Subpages)
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 230, 59, 0.1), transparent 60%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 10px;
  max-width: 600px;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin: 0;
  max-width: 600px;
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease;
}
.whatsapp-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-widget:hover {
  transform: scale(1.08);
}
.whatsapp-widget svg { width: 28px; height: 28px; }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--teal);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 24px -6px rgba(15, 76, 92, 0.2);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.lang-toggle:hover {
  background: var(--teal);
  color: var(--white);
}
.lang-toggle svg { width: 16px; height: 16px; }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px -8px rgba(15, 76, 92, 0.25);
  border: 1px solid var(--border);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: all 0.15s ease;
}
.lang-option:hover {
  background: var(--cream);
  color: var(--teal);
}
.lang-option.active {
  background: var(--lime);
  color: var(--teal);
  font-weight: 700;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
/* ============================================
   SCROLL REVEAL — text from left, images from right, cards fade-up
   Robust system: classes are STATIC in HTML, JS only adds .fx-in on scroll.
   Mobile-aware: smaller offsets to prevent horizontal-scroll feel.
   ============================================ */

:root {
  --fx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fx-dur-text: 0.85s;
  --fx-dur-image: 1s;
  --fx-dur-card: 0.7s;
  --fx-text-offset: 70px;
  --fx-image-offset: 70px;
  --fx-card-offset: 50px;
}

/* Smaller offsets on mobile so animations feel snappy not janky */
@media (max-width: 768px) {
  :root {
    --fx-text-offset: 40px;
    --fx-image-offset: 40px;
    --fx-card-offset: 30px;
    --fx-dur-text: 0.7s;
    --fx-dur-image: 0.8s;
    --fx-dur-card: 0.6s;
  }
}

/* Initial hidden state — only when fx-* class is present AND not yet revealed */
.fx-text:not(.fx-in) {
  opacity: 0;
  transform: translate3d(calc(-1 * var(--fx-text-offset)), 0, 0);
}
.fx-image:not(.fx-in) {
  opacity: 0;
  transform: translate3d(var(--fx-image-offset), 0, 0);
}
.fx-card:not(.fx-in) {
  opacity: 0;
  transform: translate3d(0, var(--fx-card-offset), 0);
}

/* Transitions — translate3d for GPU acceleration, smooth on all devices */
.fx-text,
.fx-image,
.fx-card {
  transition-property: opacity, transform;
  transition-timing-function: var(--fx-ease);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.fx-text { transition-duration: var(--fx-dur-text); }
.fx-image { transition-duration: var(--fx-dur-image); }
.fx-card { transition-duration: var(--fx-dur-card); }

/* Stagger delays for cards within a grid */
.fx-card[data-fx-i="1"] { transition-delay: 0ms; }
.fx-card[data-fx-i="2"] { transition-delay: 90ms; }
.fx-card[data-fx-i="3"] { transition-delay: 180ms; }
.fx-card[data-fx-i="4"] { transition-delay: 270ms; }
.fx-card[data-fx-i="5"] { transition-delay: 360ms; }
.fx-card[data-fx-i="6"] { transition-delay: 450ms; }

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .fx-text, .fx-image, .fx-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Backward compat with legacy classes */
.reveal, .reveal-up { opacity: 1; transform: none; }

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  z-index: 1100;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  padding: var(--space-3);
  visibility: hidden;
  pointer-events: none;
  box-shadow: -20px 0 60px -12px rgba(0,0,0,0.25);
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
/* Dark backdrop behind drawer when open */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 53, 64, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
}
.mobile-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-5);
}
.mobile-drawer a {
  display: block;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mobile-drawer a:hover {
  background: var(--white);
  border-color: var(--border);
}
.mobile-drawer .btn { width: 100%; justify-content: center; }
.mobile-drawer-footer {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--gray);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .intro-grid, .offerte-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .usp-grid, .diensten-grid, .proj-grid, .tips-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .nav-phone span { display: none; }
}

@media (max-width: 768px) {
  :root { --space-7: 4rem; --space-6: 3rem; }
  body { font-size: 16px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .nav { padding: 12px 0; }
  .nav-logo img, .nav-logo svg { height: 32px; }
  .nav-logo-text { font-size: 0.95rem; }
  .nav-logo-text span { font-size: 0.5rem; }
  .nav-cta .btn { display: none; }
  .hero { height: auto; min-height: 0; padding: var(--space-5) 0 var(--space-6); }
  .hero-content { padding: var(--space-5) var(--space-3); justify-content: flex-end; }
  .hero-meta { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .usp-grid, .diensten-grid, .proj-grid, .tips-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .ticker-item { font-size: 1.125rem; }
  .ticker-item svg { width: 22px; height: 22px; }
  .offerte-form { padding: var(--space-3); }
  .lang-switcher, .whatsapp-widget { bottom: 16px; }
  .lang-switcher { left: 16px; }
  .whatsapp-widget { right: 16px; width: 52px; height: 52px; }
}

/* ============================================
   SUBPAGE CONTENT SECTIONS
   ============================================ */

/* Rich content section */
.content-section { padding: var(--space-7) 0; }
.content-section.alt { background: var(--cream); }
.content-section.dark { background: var(--teal); color: var(--white); }
.content-section.dark h2, .content-section.dark h3 { color: var(--white); }
.content-section.dark p { color: rgba(255,255,255,0.85); }

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.content-grid-2.flip > div:first-child { order: 2; }

.content-text h2 { margin-bottom: var(--space-2); }
.content-text .eyebrow { margin-bottom: var(--space-1); }
.content-text p { margin-bottom: var(--space-2); font-size: 1.0625rem; line-height: 1.75; color: var(--gray); }
.content-text p:last-child { margin-bottom: 0; }

.content-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(15,76,92,0.18);
}
.content-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.content-image-badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: var(--lime);
  color: var(--charcoal);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.18);
}

/* Benefits list (no prices, just outcomes) */
.benefits-list {
  list-style: none;
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.benefits-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--charcoal);
}
.benefits-list li::before {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--lime);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A2A2E' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.content-section.dark .benefits-list li { color: var(--white); }

/* Pillar tag */
.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--lime);
  color: var(--charcoal);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

/* Feature blocks (numbered) */
.feature-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.feature-block {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}
.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(15,76,92,0.12);
}
.feature-block-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.feature-block h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-block p { font-size: 0.95rem; line-height: 1.6; color: var(--gray); margin: 0; }

/* Team/people grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-4);
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -12px rgba(15,76,92,0.16);
}
.team-photo {
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-body { padding: var(--space-3); }
.team-body h3 { font-size: 1.5rem; margin-bottom: 4px; }
.team-role {
  font-family: var(--font-display);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.team-bio { font-size: 0.95rem; line-height: 1.65; color: var(--gray); }

/* Article (tip) layout */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-3);
}
.article-meta {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: var(--space-3);
}
.article-meta .tip-cat { margin: 0; }
.article-content h2 {
  font-size: 1.75rem;
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}
.article-content h3 {
  font-size: 1.25rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-1);
}
.article-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}
.article-content ul, .article-content ol {
  margin: var(--space-2) 0 var(--space-3) var(--space-3);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.article-content ul li, .article-content ol li { margin-bottom: 12px; }
.article-content blockquote {
  border-left: 4px solid var(--lime);
  background: var(--cream);
  padding: var(--space-3) var(--space-4);
  margin: var(--space-4) 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--teal);
}

/* Locations grid (over-ons / contact) */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.location-map {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.location-body { padding: var(--space-3); }
.location-body h3 { font-size: 1.375rem; margin-bottom: 8px; }
.location-body p { color: var(--gray); margin-bottom: var(--space-2); font-size: 0.95rem; line-height: 1.6; }
.location-body .location-detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.location-body .location-detail svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Project case study layout */
.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.case-study-content h2 { margin-bottom: var(--space-3); }
.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin: var(--space-3) 0;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.case-stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}
.case-blocks {
  display: grid;
  gap: var(--space-3);
}
.case-block h3 {
  font-size: 1.0625rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.case-block p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

/* Mobile responsive for new sections */
@media (max-width: 1024px) {
  .feature-blocks { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .content-grid-2,
  .content-grid-2.flip,
  .team-grid,
  .locations-grid,
  .case-study {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .content-grid-2.flip > div:first-child { order: 0; }
  .content-image-wrap img { min-height: 280px; }
  .case-study-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .case-stat-num { font-size: 1.5rem; }
  .article-content h2 { font-size: 1.4rem; }
  .article-content p, .article-content ul, .article-content ol { font-size: 1rem; }
}

/* ============================================
   COMPLETE MOBILE OPTIMIZATION
   Alleen actief onder 768px — desktop blijft ongewijzigd
   ============================================ */
@media (max-width: 768px) {
  
  /* === HERO FIX (critical: was collapsed) === */
  .hero {
    height: 100vh;
    height: 100svh;            /* modern browsers: excludes URL bar */
    min-height: 580px;
    max-height: none;
    margin-top: 64px;
    padding: 0;                /* override earlier mobile rule */
    overflow: hidden;
  }
  .hero-content {
    padding: 0 20px;
    justify-content: center;   /* center vertically instead of flex-end */
    height: 100%;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  .hero-meta {
    display: flex;
    bottom: 20px;
  }
  .hero-scroll { display: none; }
  .hero-dot { width: 8px; height: 8px; }
  
  /* === NAV — smaller mobile nav === */
  .nav {
    height: 64px;
  }
  .nav-inner {
    padding: 0 16px;
    height: 100%;
  }
  .nav-logo img {
    width: 32px;
    height: 32px;
  }
  .nav-logo-text {
    font-size: 0.85rem;
    line-height: 1.15;
  }
  .nav-logo-text span {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
  }
  .nav-phone {
    padding: 8px;
  }
  .nav-phone span { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-cta { gap: 6px; }
  .nav-toggle { padding: 6px; }
  
  /* === PAGE HERO (subpaginas) — was 50vh maar zonder min-height bug === */
  .page-hero {
    margin-top: 64px;
    height: auto;
    min-height: 280px;
    padding: 60px 0 32px;
  }
  .page-hero-content {
    padding: 24px 20px;
    justify-content: center;
  }
  .page-hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem) !important;
    line-height: 1.1;
    max-width: 100%;
  }
  .page-hero p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-top: 12px;
  }
  .breadcrumbs {
    font-size: 0.75rem;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  
  /* === SECTIONS — tighter spacing === */
  section {
    padding: 48px 0;
  }
  .container {
    padding: 0 20px;
  }
  .section-header {
    margin-bottom: 28px;
    max-width: 100%;
  }
  .section-header h2,
  .content-section h2,
  .content-text h2 {
    font-size: clamp(1.5rem, 6vw, 1.875rem) !important;
    line-height: 1.15;
  }
  .section-header p {
    font-size: 0.95rem !important;
    line-height: 1.55;
  }
  .eyebrow {
    font-size: 0.7rem !important;
  }
  
  /* === INTRO sectie === */
  .intro {
    padding: 48px 0;
  }
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .intro-image-wrap {
    order: 2;                   /* tekst eerst, foto onder */
  }
  .intro-content {
    order: 1;
  }
  .intro-image {
    min-height: 240px;
    max-height: 360px;
    object-fit: cover;
  }
  .intro-image-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
  }
  .intro-image-badge strong {
    font-size: 1.5rem;
  }
  .usp-checklist {
    gap: 14px;
  }
  .usp-checklist li {
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .usp-checklist li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  
  /* === CONTENT-GRID-2 (over-ons preview, dienst-pagina's) === */
  .content-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .content-grid-2.flip > div:first-child {
    order: 0;
  }
  .content-text h2 {
    font-size: 1.6rem !important;
  }
  .content-text p {
    font-size: 1rem;
    line-height: 1.65;
  }
  .content-image-wrap img {
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
  }
  .content-image-badge {
    bottom: 12px;
    left: 12px;
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  .benefits-list li {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  
  /* === DIENSTEN cards === */
  .diensten-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .dienst-card-image {
    height: 200px;
  }
  .dienst-card-body {
    padding: 20px;
  }
  .dienst-card-body h3 {
    font-size: 1.25rem;
  }
  .dienst-card-body p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .dienst-card-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  /* === WERKWIJZE === */
  .steps {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .steps::before { display: none; }
  .step {
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .step-num {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .step h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .step p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
  }
  .step > div {
    flex: 1;
  }
  
  /* === PROJECTEN === */
  .proj-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .proj-image {
    height: 200px;
  }
  .proj-body {
    padding: 20px;
  }
  .proj-body h3 {
    font-size: 1.15rem;
  }
  .proj-meta {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  
  /* === CASE STUDY (project detail) === */
  .case-study {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .case-study-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 0;
  }
  .case-stat-num { font-size: 1.4rem; }
  .case-stat-label { font-size: 0.7rem; }
  .case-block h3 { font-size: 0.95rem; }
  .case-block p { font-size: 0.95rem; line-height: 1.6; }
  
  /* === TIPS cards === */
  .tips-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .tip-image {
    height: 180px;
  }
  .tip-body {
    padding: 20px;
  }
  .tip-body h3 {
    font-size: 1.15rem;
  }
  .tip-meta {
    font-size: 0.85rem;
  }
  
  /* === REVIEWS === */
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .review {
    padding: 24px 20px;
  }
  .review-quote {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .review-author {
    gap: 12px;
  }
  
  /* === EXPERTISE TICKER === */
  .ticker {
    padding: 14px 0;
  }
  .ticker-item {
    font-size: 1rem !important;
    padding: 0 12px;
  }
  .ticker-item svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  /* === OFFERTE FORMULIER === */
  .offerte {
    padding: 48px 0;
  }
  .offerte-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .offerte-features h2 {
    font-size: 1.5rem;
  }
  .offerte-form {
    padding: 20px;
    border-radius: 12px;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .form-group label {
    font-size: 0.85rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;   /* prevents iOS auto-zoom */
    padding: 12px 14px;
    border-radius: 10px;
  }
  .form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
  }
  .form-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* === FAQ === */
  .faq {
    padding: 48px 0;
  }
  .faq-question {
    font-size: 1rem;
    padding: 18px 0;
    line-height: 1.4;
    gap: 16px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .faq-icon svg {
    width: 14px;
    height: 14px;
  }
  .faq-answer-inner {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 20px;
  }
  
  /* === CTA-BAND === */
  .cta-band {
    padding: 48px 0;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cta-band h2 {
    font-size: 1.5rem !important;
    line-height: 1.2;
  }
  .cta-band p {
    font-size: 0.95rem !important;
  }
  .cta-band .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* === FOOTER === */
  .footer {
    padding: 48px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  .footer-links li,
  .footer-contact-item {
    font-size: 0.9rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    font-size: 0.75rem;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  /* === TEAM (over-ons) === */
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .team-photo {
    height: 280px;
  }
  .team-body h3 {
    font-size: 1.3rem;
  }
  .team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* === LOCATIONS (over-ons + contact) === */
  .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .location-map {
    height: 220px;
  }
  .location-body {
    padding: 20px;
  }
  .location-body h3 {
    font-size: 1.2rem;
  }
  
  /* === FEATURE BLOCKS === */
  .feature-blocks {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .feature-block {
    padding: 24px;
  }
  .feature-block-num {
    font-size: 2rem;
  }
  .feature-block h3 {
    font-size: 1.15rem;
  }
  .feature-block p {
    font-size: 0.9rem;
  }
  
  /* === USP GRID (waarom ons fallback) === */
  .usp-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .usp-card {
    padding: 24px;
  }
  
  /* === ARTICLE WRAP (tip-pagina's) === */
  .article-wrap {
    padding: 40px 20px;
    max-width: 100%;
  }
  .article-meta {
    font-size: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .article-content h2 {
    font-size: 1.35rem !important;
    margin-top: 32px;
    line-height: 1.25;
  }
  .article-content h3 {
    font-size: 1.1rem !important;
    margin-top: 24px;
  }
  .article-content p,
  .article-content ul,
  .article-content ol {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  .article-content blockquote {
    padding: 16px 18px;
    margin: 24px 0;
    font-size: 1rem;
    border-left-width: 3px;
  }
  
  /* === LANG-SWITCHER === */
  .lang-switcher {
    bottom: 16px;
    left: 16px;
  }
  .lang-toggle {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .lang-toggle svg {
    width: 16px;
    height: 16px;
  }
  .lang-dropdown {
    width: 200px;
    bottom: 48px;
  }
  .lang-option {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  /* === WHATSAPP WIDGET === */
  .whatsapp-widget {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-widget svg {
    width: 28px;
    height: 28px;
  }
  
  /* === NO HORIZONTAL SCROLL — extra zekerheid === */
  html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
  }
  
  /* === MOBILE DRAWER fixes === */
  .mobile-drawer {
    width: 100%;
    max-width: 320px;
  }
  .mobile-drawer ul a {
    padding: 14px 0;
    font-size: 1.1rem;
  }
}

/* === EXTRA SMALL PHONES (≤380px) === */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.875rem !important;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .nav-logo-text span {
    display: none;
  }
  .container {
    padding: 0 16px;
  }
  .section-header h2,
  .content-section h2 {
    font-size: 1.5rem !important;
  }
  .case-study-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .case-stat-num {
    font-size: 1.5rem;
  }
}

/* ============================================
   MOBILE NAV / HAMBURGER — extra prominence
   ============================================ */
@media (max-width: 768px) {
  /* Hamburger button: large, teal, clearly tappable */
  .nav-toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal);
    color: var(--white);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 8px;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    stroke-width: 2.5;
  }
  .nav-toggle:active {
    transform: scale(0.94);
  }
  
  /* Phone icon on mobile: smaller, teal accent */
  .nav-phone {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(15, 76, 92, 0.08);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .nav-phone svg {
    width: 18px;
    height: 18px;
  }
  
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* Logo wraps tighter to leave room for nav-cta */
  .nav-logo {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .nav-logo-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* Mobile drawer header polish */
  .mobile-drawer-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-drawer ul {
    gap: 6px;
    margin-bottom: 24px;
  }
  .mobile-drawer ul a {
    padding: 14px 16px;
    font-size: 1.05rem;
  }
  .mobile-drawer .btn {
    margin-top: 8px;
    padding: 16px;
  }
}
