/* ═══════════════════════════════════════════════════════
   FYSIOTHERAPIE ZUIDPLAS — Style Sheet
   Brand: Teal #1A7A8A / Amber #E8A84C / White / Grey
   Type: Inter (sans) + Fraunces (display serif for em/italics)
   ═══════════════════════════════════════════════════════ */

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

:root {
  --teal:        #1A7A8A;
  --teal-dark:   #14606E;
  --teal-deeper: #0E4852;
  --teal-light:  #E8F5F7;
  --teal-mid:    #C2E0E5;
  --amber:       #E8A84C;
  --amber-light: #FDF4E7;
  --amber-dark:  #C8881E;
  --white:       #FFFFFF;
  --off-white:   #F4F8F9;
  --grey-50:     #F9FAFB;
  --grey-100:    #F1F5F6;
  --grey-200:    #E5ECED;
  --grey-400:    #9CADB0;
  --grey-600:    #5A7478;
  --grey-800:    #2C3E40;
  --text:        #1E2E30;
  --text-muted:  #5A7478;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(26,122,138,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(26,122,138,.15), 0 4px 12px rgba(0,0,0,.06);

  --nav-h:       72px;
  --container:   1200px;
  --gap:         1.5rem;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

em, i {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

/* ── Buttons ── */
.btn-primary, .btn-ghost, .btn-nav, .btn-mobile-cta, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--grey-800);
  padding: .875rem 1.75rem;
  box-shadow: 0 2px 8px rgba(232,168,76,.35);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,168,76,.4); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
  padding: .875rem 1.75rem;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); }

.btn-nav {
  background: var(--amber);
  color: var(--grey-800);
  padding: .5rem 1.25rem;
  font-size: .875rem;
}
.btn-nav:hover { background: var(--amber-dark); }

.btn-mobile-cta {
  display: block;
  background: var(--amber);
  color: var(--grey-800);
  padding: .875rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  margin-top: .5rem;
}

.btn-submit {
  background: var(--teal);
  color: var(--white);
  padding: .9375rem 2rem;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(26,122,138,.3);
}
.btn-submit:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,122,138,.35); }

/* ── Section Tags ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--teal-light);
  color: var(--teal-dark);
  padding: .35rem .8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag--amber { background: var(--amber-light); color: var(--amber-dark); }
.section-tag--white { background: rgba(255,255,255,.18); color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.section-tag--teal-light { background: var(--teal-light); color: var(--teal-dark); }

.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; line-height: 1.2; color: var(--grey-800); margin-bottom: .75rem; }
.section-header--light h2 { color: var(--white); }
.section-header--light .section-intro { color: rgba(255,255,255,.85); }
.section-intro { font-size: 1.0625rem; color: var(--text-muted); max-width: 56ch; line-height: 1.7; }

/* ═══ NAVIGATION ═══ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
  background: linear-gradient(to bottom, rgba(10,55,62,.55) 0%, transparent 100%);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .main-nav a { color: var(--grey-800); }
.site-header.scrolled .main-nav a:hover { color: var(--teal); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.logo-mark { width: 40px; height: 40px; }
.logo-mark--sm { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: .9375rem; font-weight: 700; color: var(--teal); }
.logo-sub  { font-size: .75rem; font-weight: 400; color: var(--grey-600); }

.site-header.scrolled .logo-main { color: var(--teal); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.main-nav a {
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  transition: color .2s;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.main-nav a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .2s;
}
.site-header.scrolled .hamburger span { background: var(--grey-800); }

.mobile-nav {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-800);
  padding: .6rem 0;
  border-bottom: 1px solid var(--grey-100);
}
.mobile-nav a:last-of-type { border: none; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,72,82,.88) 0%,
    rgba(26,122,138,.65) 50%,
    rgba(26,122,138,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.95);
  font-size: .8125rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 12ch;
  letter-spacing: -.02em;
}
.hero-title em {
  font-size: inherit;
  color: var(--amber);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.88);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1rem; font-weight: 700; color: var(--white); }
.trust-item span { font-size: .8rem; color: rgba(255,255,255,.7); }
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,.3); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }

/* ═══ PROOF STRIP ═══ */
.proof-strip {
  background: var(--teal);
  padding: 1.375rem 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.proof-stars { display: flex; gap: 2px; }
.proof-score { font-size: .875rem; color: var(--white); text-align: center; }
.proof-score strong { color: var(--white); font-size: 1rem; }
.proof-stat { font-size: .875rem; color: rgba(255,255,255,.9); text-align: center; }
.proof-stat strong { color: var(--white); display: block; font-size: 1rem; }
.proof-sep { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

/* ═══ BEHANDELINGEN (masonry grid) ═══ */
.behandelingen {
  padding: 6rem 0;
  background: var(--white);
}

.treatments-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Balanced 3-col grid positioning */
.treatment-card:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.treatment-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.treatment-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.treatment-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.treatment-card:nth-child(5) { grid-column: 1; grid-row: 3; }
.treatment-card:nth-child(6) { grid-column: 2; grid-row: 3; }
.treatment-card:nth-child(7) { grid-column: 3; grid-row: 2 / span 2; }

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
  transition: transform .25s ease, box-shadow .25s ease;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.treatment-img-wrap {
  width: 100%;
  overflow: hidden;
}
.treatment-card .treatment-img-wrap { height: 180px; }
.treatment-card:nth-child(1) .treatment-img-wrap,
.treatment-card:nth-child(7) .treatment-img-wrap { height: 220px; }

.treatment-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.treatment-card:hover .treatment-img-wrap img { transform: scale(1.04); }

.treatment-content {
  padding: 1.5rem;
}
.treatment-icon {
  width: 40px; height: 40px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
}
.treatment-content h3 { font-size: 1.1875rem; font-weight: 700; color: var(--grey-800); margin-bottom: .5rem; }
.treatment-content p { font-size: .9375rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.treatment-content p em { color: var(--teal); }

.treatment-bullets {
  margin: .75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.treatment-bullets li {
  font-size: .875rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.treatment-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.treatment-cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap .2s, color .2s;
}
.treatment-cta:hover { color: var(--teal-dark); gap: .6rem; }

/* ═══ WERKWIJZE ═══ */
.werkwijze {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 60%, var(--teal) 100%);
  padding: 6rem 0;
}
.werkwijze .section-header { margin-bottom: 3.5rem; }
.werkwijze h2 { color: var(--white); }
.werkwijze em { color: var(--amber); }

.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.step-item {
  flex: 1;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: background .25s;
}
.step-item:hover { background: rgba(255,255,255,.12); }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--amber);
  opacity: .6;
  line-height: 1;
  margin-bottom: .75rem;
}
.step-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--white); margin-bottom: .625rem; }
.step-body p { font-size: .9375rem; color: rgba(255,255,255,.78); line-height: 1.65; }
.step-body p em { color: var(--amber); }

.step-connector {
  flex-shrink: 0;
  width: 2rem;
  height: 2px;
  background: rgba(255,255,255,.2);
  align-self: center;
  margin: 0 -.25rem;
  position: relative;
}
.step-connector::after {
  content: "›";
  position: absolute;
  right: -8px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.35);
  font-size: 1.25rem;
  line-height: 1;
}

.werkwijze-cta { text-align: center; }
.werkwijze-note {
  margin-top: 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}

/* ═══ TESTIMONIALS ═══ */
.testimonials {
  padding: 6rem 0;
  background: var(--off-white);
}
.testimonials-title {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: 2.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}
.testi-card--featured { border-left: 4px solid var(--teal); }

.testi-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testi-quote {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
}
.testi-quote::before {
  content: '"';
  position: absolute;
  left: -2px; top: -.25rem;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--teal-mid);
  line-height: 1;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 36px; height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { font-size: .9375rem; color: var(--grey-800); display: block; }
.testi-author span { font-size: .8125rem; color: var(--text-muted); }

/* ═══ OVER ONS ═══ */
.over-ons {
  padding: 6rem 0;
  background: var(--white);
}
.over-ons-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.over-ons-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.over-ons-img img { width: 100%; height: 100%; object-fit: cover; }
.over-ons-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  color: var(--teal-dark);
  font-size: .8125rem;
  font-weight: 700;
  padding: .625rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .5rem;
}

.over-ons-text .section-tag { margin-bottom: 1rem; }
.over-ons-text h2 { font-size: clamp(1.75rem, 3vw, 2.375rem); font-weight: 600; color: var(--grey-800); margin-bottom: 1.25rem; line-height: 1.2; }
.over-ons-text em { color: var(--teal); }
.over-ons-text .lead { font-size: 1.0625rem; color: var(--text); font-weight: 500; margin-bottom: 1rem; line-height: 1.65; }
.over-ons-text p { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

.over-ons-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feat-item {
  display: flex; gap: .75rem; align-items: flex-start;
}
.feat-icon {
  width: 36px; height: 36px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.feat-item strong { font-size: .875rem; font-weight: 700; color: var(--grey-800); display: block; }
.feat-item span { font-size: .8125rem; color: var(--text-muted); }

/* ═══ AFSPRAAK CTA ═══ */
.afspraak-cta {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal) 100%);
  padding: 6rem 0;
}
.afspraak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.afspraak-text .section-tag { margin-bottom: 1.25rem; }
.afspraak-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.afspraak-text > p { font-size: 1.0625rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 2rem; }

.afspraak-contact-info { display: flex; flex-direction: column; gap: .875rem; }
.contact-info-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9375rem; color: rgba(255,255,255,.85);
}
.contact-info-item svg { flex-shrink: 0; color: var(--amber); }
.contact-info-item a { color: var(--white); font-weight: 700; font-size: 1.125rem; }
.contact-info-item a:hover { color: var(--amber); }

.afspraak-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.afspraak-form h3 { font-size: 1.25rem; font-weight: 700; color: var(--grey-800); margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--grey-800); }
.form-group label span { color: var(--teal); }
.form-group input, .form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9375rem;
  color: var(--text);
  background: var(--grey-50);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,138,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8125rem; color: var(--text-muted); margin-top: .875rem; text-align: center; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--grey-800);
  color: var(--grey-400);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-main { color: var(--teal-mid); }
.footer-brand .logo-sub { color: var(--grey-400); }
.footer-tagline { font-size: .875rem; color: var(--grey-400); line-height: 1.6; margin-top: 1rem; max-width: 30ch; }

.footer-col h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-h4-second { margin-top: 2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .875rem; color: var(--grey-400); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-hours { font-size: .875rem; color: var(--grey-400); line-height: 1.7; }

.footer-col--contact address p {
  display: flex; align-items: center; gap: .625rem;
  font-size: .875rem; color: var(--grey-400);
  margin-bottom: .75rem;
}
.footer-col--contact a { color: var(--teal-mid); }
.footer-col--contact a:hover { color: var(--white); }

.footer-insurance { margin-top: 1.5rem; }
.footer-insurance-label { font-size: .75rem; font-weight: 600; color: var(--grey-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .625rem; }
.insurance-logos { display: flex; flex-wrap: wrap; gap: .375rem; }
.insurance-logo-chip {
  font-size: .75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--grey-400);
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .8125rem; color: var(--grey-600); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: .8125rem; color: var(--grey-600); }
.footer-bottom-links a:hover { color: var(--grey-400); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testi-card--featured { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .treatments-masonry { grid-template-columns: 1fr 1fr; }
  .treatment-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .treatment-card:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 900px) {
  .steps-wrap { flex-direction: column; gap: 1rem; }
  .step-connector { width: 2px; height: 2rem; align-self: center; }
  .step-connector::after { content: "↓"; right: auto; top: auto; bottom: -10px; left: 50%; transform: translateX(-50%); }
  .over-ons-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .over-ons-img { max-height: 340px; }
  .afspraak-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .treatments-masonry { grid-template-columns: 1fr 1fr; }
  .treatment-card:nth-child(n) { grid-column: auto; grid-row: auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .main-nav, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card--featured { grid-column: span 1; }
  .over-ons-feats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .proof-inner { gap: 1rem; }
  .proof-sep { display: none; }
  .proof-inner { justify-content: space-around; }
  .proof-score, .proof-stat { font-size: 1rem; }
  .proof-score strong, .proof-stat strong { font-size: 1.125rem; }
}

@media (max-width: 540px) {
  .treatments-masonry { grid-template-columns: 1fr; }
  .treatment-card:nth-child(n) { grid-column: auto !important; grid-row: auto !important; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .trust-divider { display: none; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
