/* ============================================================
   ANKERGROND COACHING – REDESIGN MOCKUP
   Huisstijl: Donker Groen #1B3C36 + Aardebruin #A67C52 + Zacht Blauw #3D9BE9
   Lettertypes: Montserrat (titels) · Raleway (subtitels) · Open Sans (body)
   ============================================================ */

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

:root {
  /* === OFFICIËLE HUISSTIJL KLEUREN === */
  --green-dark:   #1B3C36;   /* Primair: stabiliteit, natuur, vertrouwen */
  --green-mid:    #2A5248;   /* Iets lichter groen voor hover/accenten */
  --green-light:  #E6EDEC;   /* Lichte groene tint voor achtergronden */
  --green-pale:   #F0F5F4;   /* Zeer lichte groene tint */
  --terra:        #A67C52;   /* Secundair: aardebruin, warmte, verbinding */
  --terra-dark:   #8A6340;   /* Donkerder aardebruin voor hover */
  --terra-light:  #F5EDE3;   /* Lichte aardebruine tint */
  --blue-accent:  #3D9BE9;   /* Accent: zacht blauw, spaarzaam gebruiken */
  --taupe:        #C0B5AB;   /* Officiële taupe voor sectie-achtergronden */
  --taupe-light:  #F5F0EB;   /* Lichte taupe als hoofdachtergrond */
  --taupe-mid:    #E8E0D8;   /* Middel taupe voor kaarten/borders */
  --charcoal:     #1A2E2B;   /* Donkere tekst, groenig-zwart */
  --gray-mid:     #5C6B68;   /* Subtekst, meta-informatie */
  --gray-light:   #DDD8D3;   /* Borders, scheidingslijnen */
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 3px rgba(27,60,54,0.08), 0 1px 2px rgba(27,60,54,0.06);
  --shadow-md:    0 4px 16px rgba(27,60,54,0.10);
  --shadow-lg:    0 10px 40px rgba(27,60,54,0.12);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--taupe-light);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: var(--green-dark);
  font-weight: 700;
}

/* Subtitels en quotes gebruiken Raleway */
.section-tag,
blockquote,
.quote-text,
.hero-eyebrow,
.stap-badge,
.werkwijze-subtitle {
  font-family: 'Raleway', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terra);
  color: white;
  border-color: var(--terra);
}
.btn-primary:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166,124,82,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-ghost:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--green-dark);
  border-color: white;
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION HELPERS ---- */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* ---- SCROLL ANIMATIONS ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(245, 240, 235, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

.logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* Logo combo: symbool + tekst naast elkaar */
.logo-combo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-symbol {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-symbol--footer {
  height: 72px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}

.logo-name-main {
  font-family: 'Open Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1a3d08;
  line-height: 1;
}

.logo-name-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #4a6a3a;
  line-height: 1;
  text-transform: uppercase;
}

/* Scrolled header: iets kleiner */
.site-header.scrolled .logo-symbol {
  height: 52px;
}
.site-header.scrolled .logo-name-main {
  font-size: 17px;
}
.site-header.scrolled .logo-name-sub {
  font-size: 10.5px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav ul li a {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}

.main-nav ul li a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.main-nav ul li a.nav-cta {
  background: var(--terra);
  color: white;
  padding: 10px 20px;
  font-weight: 600;
}

.main-nav ul li a.nav-cta:hover {
  background: #8A6340;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,98,45,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
  padding-top: 80px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45,80,22,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(196,98,45,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative organic shape */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,80,22,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--green-dark);
}

.hero-desc {
  font-size: 18px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-mid);
}

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

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--sand) 100%);
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-mid);
  font-size: 14px;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.badge-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  color: var(--gray-mid);
  white-space: nowrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  transition: opacity 0.4s ease;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: white;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 24px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.trust-badge-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten {
  padding: 100px 0;
  background: var(--cream);
}

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

.dienst-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.dienst-card--featured {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: white;
  border-color: transparent;
}

.dienst-card--featured h3,
.dienst-card--featured p {
  color: white;
}

.dienst-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(45,80,22,0.3);
}

.dienst-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dienst-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.dienst-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
  flex: 1;
}

.dienst-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--terra);
  transition: var(--transition);
}

.dienst-link:hover { color: #8A6340; }
.dienst-link--light { color: rgba(255,255,255,0.8); }
.dienst-link--light:hover { color: white; }

/* ============================================================
   OVER MARIT
   ============================================================ */
.over-marit {
  padding: 100px 0;
  background: var(--green-pale);
}

.over-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.over-image-wrapper {
  position: relative;
}

.over-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--green-light);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--gray-mid);
  font-size: 14px;
}

.over-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.over-quote-bubble {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--terra);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 260px;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
}

.over-text {
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.over-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 32px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

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

.stappen-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

/* Pijl tussen stappen */
.stap-pijl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  font-size: 22px;
  color: var(--terra);
  font-weight: 700;
  margin-top: 0;
  padding-top: 32px;
}

/* Kaart per stap */
.stap-kaart {
  flex: 1;
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--taupe-mid);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
}

.stap-kaart:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--terra);
}

/* Nummer badge */
.stap-nummer-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: white;
  background: var(--green-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Label onder de titel */
.stap-label {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  background: var(--terra-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.stap-kaart-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.stap-kaart-content p {
  font-size: 14.5px;
  color: var(--gray-mid);
  line-height: 1.75;
  text-align: left;
}

/* Oud stap-number (niet meer gebruikt maar bewaren voor compat) */
.stap-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
}

.stap-number::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--terra);
  margin: 12px auto 0;
  border-radius: 2px;
}

.stap-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.stap-content p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
}

.stap-connector {
  display: none;
}

/* ============================================================
   METHODEN
   ============================================================ */
.methoden {
  padding: 100px 0;
  background: var(--charcoal);
}

.methoden .section-tag { color: var(--terra); }
.methoden .section-title { color: white; }

.methoden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.methode-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
}

.methode-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.methode-card--accent {
  background: var(--green-dark);
  border-color: var(--green-mid);
}

.methode-header {
  margin-bottom: 20px;
}

.methode-afkorting {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--terra);
  background: rgba(196,98,45,0.15);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.methode-card h3 {
  font-size: 20px;
  color: white;
}

.methode-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.methode-result {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.methode-result strong {
  color: var(--terra);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--sand);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card--featured {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-color: transparent;
  grid-row: span 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  flex: 1;
}

.testimonial-card--featured blockquote {
  color: rgba(255,255,255,0.9);
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.author-info span {
  font-size: 13px;
  color: var(--gray-mid);
}

.testimonial-card--featured .author-info strong { color: white; }
.testimonial-card--featured .author-info span { color: rgba(255,255,255,0.6); }

.testimonial-quote-icon {
  opacity: 0.3;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-header .section-desc { max-width: 100%; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition);
}

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

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--terra);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
}

/* ============================================================
   CTA SECTIE
   ============================================================ */
.cta-sectie {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a0a 100%);
  position: relative;
  overflow: hidden;
}

.cta-sectie::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }

.contact-info > p {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.5;
}

.contact-detail a {
  color: var(--green-dark);
  font-weight: 500;
  transition: var(--transition);
}
.contact-detail a:hover { color: var(--terra); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  background: white;
  box-shadow: 0 0 0 3px rgba(45,80,22,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-privacy {
  font-size: 12px;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   HERKENNING SECTIE
   ============================================================ */
.herkenning {
  padding: 100px 0;
  background: #FDFAF6;
}
.herkenning-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.herkenning-intro h2.section-title {
  font-size: clamp(28px, 4vw, 40px);
}
.herkenning-tekst p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3d4a35;
  margin-bottom: 16px;
}
.herkenning-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #1B3C36;
  border-left: 4px solid #A67C52;
  padding: 16px 24px;
  margin: 24px 0;
  background: #f0f5ec;
  border-radius: 0 8px 8px 0;
}
.herkenning-highlight {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #A67C52;
  font-weight: 600;
}
@media (max-width: 768px) {
  .herkenning-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   VOOR WIE SECTIE
   ============================================================ */
.voor-wie {
  padding: 100px 0;
  background: #1B3C36;
  color: white;
}
.voor-wie .section-tag { color: rgba(255,255,255,0.65); }
.voor-wie .section-title { color: white; }
.voor-wie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.voor-wie-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.voor-wie-check {
  width: 26px;
  height: 26px;
  background: #A67C52;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.voor-wie-item p {
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
  font-size: 0.97rem;
}
.voor-wie-extra {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.voor-wie-extra p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.voor-wie-conclusie { font-size: 1.2rem !important; color: white !important; }
.voor-wie-extra .btn-primary { margin-top: 28px; }

/* ============================================================
   AANBOD SECTIE
   ============================================================ */
.aanbod-sectie {
  padding: 100px 0;
  background: #FDFAF6;
}
.aanbod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.aanbod-kaart {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid #e8efe6;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.aanbod-kaart:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(45,80,22,0.12);
}
.aanbod-kaart--featured {
  background: #1B3C36;
  color: white;
  border-color: #1B3C36;
}
.aanbod-kaart--featured h3 { color: white; }
.aanbod-kaart--featured p { color: rgba(255,255,255,0.82); }
.aanbod-badge {
  display: inline-block;
  background: #e8efe6;
  color: #1B3C36;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
  font-family: 'Open Sans', sans-serif;
}
.aanbod-badge--light {
  background: rgba(255,255,255,0.18);
  color: white;
}
.aanbod-kaart h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: #1a2e0a;
  margin: 0;
}
.aanbod-duur {
  font-size: 0.85rem;
  color: #A67C52;
  font-weight: 500;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}
.aanbod-kaart--featured .aanbod-duur { color: rgba(255,255,255,0.65); }
.aanbod-kaart p { color: #4a5a3a; line-height: 1.7; margin: 0; }
.aanbod-kaart .btn-sm { margin-top: auto; align-self: flex-start; }
.btn-sm { padding: 10px 20px !important; font-size: 0.88rem !important; }
.aanbod-footer-note {
  text-align: center;
  margin-top: 36px;
  color: #6b7c5a;
  font-style: italic;
  font-size: 0.97rem;
}
@media (max-width: 900px) {
  .aanbod-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WERKWIJZE EXTRA STIJLEN
   ============================================================ */
.stap-badge {
  display: inline-block;
  background: #e8efe6;
  color: #1B3C36;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 8px;
  vertical-align: middle;
  font-family: 'Open Sans', sans-serif;
}
.werkwijze-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e8efe6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--terra);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-bottom a:hover { color: white; }

/* ============================================================
   CERTIFICERINGEN
   ============================================================ */
.certificeringen {
  padding: 80px 0;
  background: #fff;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.cert-card {
  background: var(--taupe-light);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.3s ease;
}

.cert-card:hover {
  box-shadow: 0 8px 32px rgba(27,60,54,0.10);
}

.cert-badge-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}

.cert-badge-placeholder img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: contain;
  border: none;
}

.cert-badge-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.cert-badge-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--terra);
  opacity: 0.85;
}

.cert-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0;
}

.cert-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.cert-text a {
  color: var(--terra);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cert-card {
    text-align: left;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }
  .cert-badge-placeholder {
    width: 64px;
    height: 64px;
    min-width: 64px;
    flex-shrink: 0;
  }
  .cert-badge-placeholder img {
    width: 64px;
    height: 64px;
  }
  .cert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .cert-title {
    font-size: 1rem;
    margin: 0;
  }
  .cert-text {
    font-size: 0.9rem;
    margin: 0;
  }
  .cert-badge-label {
    font-size: 0.9rem;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .methoden-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 80px 32px 32px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 9998;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 8px; }
  .main-nav ul li a { padding: 12px 16px; display: block; }
  .main-nav ul li a.nav-cta { text-align: center; }
  .hamburger { display: flex; z-index: 10000; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { align-items: center; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 320px; }

  .over-inner { grid-template-columns: 1fr; gap: 48px; }
  .over-quote-bubble { position: static; margin-top: 16px; max-width: 100%; }

  .stappen-grid { flex-direction: column; gap: 32px; }
  .stap-connector { width: 3px; height: 32px; margin: 0 auto; }

  .diensten-grid { grid-template-columns: 1fr; }
  .methoden-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-logos { gap: 16px; }
  .trust-divider { display: none; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn:first-child { flex: 1; min-width: 0; }
  .hero-badge { right: 0; }
}

/* ============================================================
   TARIEVEN SECTIE
   ============================================================ */

.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

.tarief-kaart {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--taupe-mid);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
}

.tarief-kaart:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tarief-kaart--featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tarief-kaart--featured:hover {
  transform: translateY(-10px);
}

.tarief-fase-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}

.tarief-fase-label--light {
  color: var(--terra-light, #e8c9a8);
}

.tarief-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tarief-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
  flex: 1;
}

.tarief-kaart--featured .tarief-header h3 {
  color: white;
}

.tarief-prijs {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  white-space: nowrap;
  line-height: 1.2;
}

.tarief-prijs--light {
  color: white;
}

.tarief-duur {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: var(--gray-mid);
  margin-bottom: 14px;
  font-style: italic;
}

.tarief-duur--light {
  color: rgba(255,255,255,0.7);
}

.tarief-tekst {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 12px;
}

.tarief-tekst--light {
  color: rgba(255,255,255,0.9);
}

.tarief-btw {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: var(--gray-mid);
  font-style: italic;
  margin-top: auto;
}

.tarief-btw--light {
  color: rgba(255,255,255,0.6);
}

.tarieven-totaal {
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--cream);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tarieven-totaal p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.75;
}

.tarieven-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tarieven-cta-tekst {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
}

@media (max-width: 1024px) {
  .tarieven-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tarief-kaart--featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .tarieven-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   OVER MARIT — KNOPPEN
   ============================================================ */

.over-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.over-actions .btn {
  width: auto;
  min-width: 280px;
}

/* ============================================================
   MODAL - Privacy en Voorwaarden
============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.modal-overlay.active {
  display: flex;
}
@media (min-width: 768px) {
  .modal-overlay { align-items: center; }
  .modal-sheet {
    max-width: 680px;
    width: 90%;
    border-radius: 16px !important;
    max-height: 85vh;
    animation: fadeInModal 0.25s ease !important;
  }
}
.modal-sheet {
  background: #fff;
  width: 100%;
  max-height: 92vh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUpModal 0.3s ease;
}
@keyframes slideUpModal {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeInModal {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e8e2db;
  background: #fff;
  flex-shrink: 0;
}
.modal-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1B3C36;
  margin: 0;
}
.modal-close {
  background: #f0ebe4;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #1B3C36;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: #A67C52; color: #fff; }
.modal-body {
  overflow-y: auto;
  padding: 24px 24px 48px;
  -webkit-overflow-scrolling: touch;
}
.modal-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1B3C36;
  margin: 28px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #444;
  margin: 0 0 12px;
}
.modal-body ul {
  padding-left: 20px;
  margin: 0 0 12px;
  list-style: disc;
}
.modal-body ul li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 4px;
}
.modal-body a { color: #A67C52; text-decoration: underline; }

/* ============================================================
   BLOG PREVIEW (homepage)
   ============================================================ */
.blog-preview {
  padding: 100px 0;
  background: var(--cream);
}

/* Optie B: horizontale lijstkaarten */
.blog-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.blog-preview-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.2s ease;
  background: white;
}

.blog-preview-card:last-child {
  border-bottom: none;
}

.blog-preview-card:hover {
  background: var(--terra-light);
}

.blog-preview-card-img {
  width: 130px;
  min-width: 130px;
  height: 110px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-preview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-preview-card:hover .blog-preview-card-img img {
  transform: scale(1.05);
}

.blog-preview-card-img-placeholder {
  width: 130px;
  min-width: 130px;
  height: 110px;
  background: linear-gradient(135deg, var(--terra-light) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-preview-card-img-placeholder svg {
  opacity: 0.3;
}

.blog-preview-card-body {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-preview-card-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}

.blog-preview-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  margin: 0;
}

.blog-preview-card-excerpt {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-preview-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.blog-preview-card:hover .blog-preview-card-link svg {
  transform: translateX(3px);
  transition: transform 0.2s ease;
}

.blog-preview-cta {
  text-align: center;
}

/* Skeleton voor blog preview */
.blog-preview-skeleton {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.skeleton-img-sm {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(90deg, #f0ebe4 25%, #e8e0d8 50%, #f0ebe4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-body-sm {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-line-sm {
  height: 10px;
  border-radius: 5px;
  width: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-line-sm--title { height: 16px; width: 85%; }
.skeleton-line-sm--short { width: 45%; }

@media (max-width: 600px) {
  .blog-preview-card-img,
  .blog-preview-card-img-placeholder {
    width: 90px;
    min-width: 90px;
    height: 90px;
  }
  .blog-preview-card-body { padding: 14px 16px; }
  .blog-preview-card-title { font-size: 15px; }
  .blog-preview-card-excerpt { display: none; }
}

/* ============================================================
   RESPONSIVE — UITGEBREID (tablet 768px + mobiel 480px)
   ============================================================ */

/* ---- TRUST BAR ---- */
@media (max-width: 768px) {
  .trust-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    text-align: center;
  }
  .trust-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .trust-badge-item {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
  }
  .trust-badge-img {
    width: 40px;
    height: 40px;
  }
}

/* ---- HERO ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 40px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-image-wrapper {
    max-width: 260px;
    margin: 0 auto;
  }
  .hero-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero-desc { font-size: 15px; margin: 0 auto 28px; }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { right: 0; bottom: -10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.65rem; }
  .hero-tag { font-size: 11px; }
}

/* ---- SECTION HEADERS ---- */
@media (max-width: 768px) {
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-desc { font-size: 15px; }
  .section-header { margin-bottom: 36px; }
}

/* ---- VOOR WIE ---- */
@media (max-width: 768px) {
  .voor-wie { padding: 64px 0; }
  .voor-wie-grid { grid-template-columns: 1fr; gap: 12px; margin: 28px 0; }
  .voor-wie-extra { padding-top: 32px; }
  .voor-wie-extra p { font-size: 0.95rem; }
  .voor-wie-conclusie { font-size: 1.05rem !important; }
}

/* ---- WERKWIJZE / STAPPEN ---- */
@media (max-width: 768px) {
  .werkwijze { padding: 64px 0; }
  .stappen-grid {
    flex-direction: column;
    gap: 24px;
  }
  .stap {
    padding: 24px 20px;
  }
  .stap-connector {
    width: 3px;
    height: 24px;
    margin: 0 auto;
  }
  .werkwijze-cta { margin-top: 36px; padding-top: 28px; }
}

/* ---- DIENSTEN ---- */
@media (max-width: 768px) {
  .diensten { padding: 64px 0; }
  .diensten-grid { grid-template-columns: 1fr; gap: 16px; }
  .dienst-card { padding: 24px 20px; }
}

/* ---- METHODEN ---- */
@media (max-width: 768px) {
  .methoden { padding: 64px 0; }
  .methoden-grid { grid-template-columns: 1fr; gap: 16px; }
  .methode-card { padding: 24px 20px; }
}

/* ---- OVER MARIT ---- */
@media (max-width: 768px) {
  .over { padding: 64px 0; }
  .over-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .over-image-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }
  .over-quote-bubble {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    font-size: 14px;
  }
  .over-actions .btn { min-width: 0; width: 100%; }
}

/* ---- CERTIFICERINGEN ---- */
@media (max-width: 768px) {
  .certificeringen { padding: 56px 0; }
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cert-card {
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: left;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 16px;
  }
  .cert-badge-placeholder,
  .cert-badge-placeholder img {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .cert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .cert-title {
    font-size: 0.95rem;
    margin: 0;
  }
  .cert-text {
    font-size: 0.88rem;
    margin: 0;
  }
}

/* ---- HERKENNING ---- */
@media (max-width: 768px) {
  .herkenning { padding: 64px 0; }
  .herkenning-inner { grid-template-columns: 1fr; gap: 32px; }
  .herkenning-highlight { font-size: 1.1rem; }
}

/* ---- AANBOD ---- */
@media (max-width: 768px) {
  .aanbod-sectie { padding: 64px 0; }
  .aanbod-grid { grid-template-columns: 1fr; gap: 16px; }
  .aanbod-kaart { padding: 28px 20px; }
}

/* ---- TARIEVEN ---- */
@media (max-width: 768px) {
  .tarieven-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tarief-kaart { padding: 20px 16px; }
  .tarief-kaart--featured { transform: none; }
}
@media (max-width: 480px) {
  .tarieven-grid { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS ---- */
@media (max-width: 768px) {
  .testimonials { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px 20px; }
}

/* ---- BLOG PREVIEW (homepage) ---- */
@media (max-width: 768px) {
  .blog-preview { padding: 64px 0; }
}

/* ---- FAQ ---- */
@media (max-width: 768px) {
  .faq { padding: 64px 0; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-question { font-size: 15px; padding: 16px 0; }
  .faq-answer p { font-size: 14px; }
}

/* ---- CONTACT ---- */
@media (max-width: 768px) {
  .contact { padding: 64px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-item { gap: 12px; }
}

/* ---- CTA SECTIE ---- */
@media (max-width: 768px) {
  .cta-sectie { padding: 64px 0; }
  .cta-inner { padding: 40px 24px; }
  .cta-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-actions .btn { justify-content: center; }
}

/* ---- FOOTER ---- */
@media (max-width: 768px) {
  .site-footer { padding: 48px 0 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .logo-symbol--footer { height: 56px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom p { font-size: 12px; }
}

/* ---- BLOG OVERVIEW (blog.html) ---- */
@media (max-width: 768px) {
  .blog-hero { padding: 110px 0 40px; }
  .blog-hero-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .blog-section { padding: 48px 0 64px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card-body { padding: 20px 20px 16px; }
  .blog-card-title { font-size: 16px; }
}

/* ---- BLOG POST DETAIL (blogpost.html) ---- */
@media (max-width: 768px) {
  .post-hero { padding-top: 100px; }
  .post-hero-inner { padding: 0 16px 32px; }
  .post-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .post-section { padding: 32px 0 64px; }
  .post-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  .post-sidebar { order: -1; }
  .post-content { padding: 24px 20px; }
  .post-content p { font-size: 15px; }
  .post-cta { padding: 28px 20px; }
  .post-cta h3 { font-size: 18px; }
}

/* ---- ALGEMEEN MOBIEL ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .section-tag { font-size: 11px; }
}

/* ============================================================
   FOOTER AFFIRMATIES
   ============================================================ */
.footer-affirmaties {
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.affirmaties-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.affirmatie-label {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.affirmatie-dot {
  color: rgba(166, 124, 82, 0.6);
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 600px) {
  .affirmaties-row {
    gap: 6px 12px;
  }
  .affirmatie-label {
    font-size: 12px;
  }
  .affirmatie-dot {
    display: none;
  }
  .affirmatie-label::after {
    content: ' ·';
    color: rgba(166, 124, 82, 0.6);
  }
  .affirmatie-label:last-child::after {
    content: '';
  }
}
