/* CampingBuddy — commerciële site.
   Designtaal 1-op-1 uit de app (pwa/src/index.css): wit, oranje accent, groene
   sectiekoppen, Montserrat, 16px radii, pill-knoppen en de droge kwaststreek
   onder foto-hero's. Alleen de layout is responsive gemaakt; kleuren, radii,
   schaduwen en typografie zijn ongewijzigd overgenomen. */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('montserrat-latin.woff2') format('woff2');
}

:root {
  --orange: #e7590e;
  --orange-dark: #c94b09;
  --orange-soft: #fdeee4;
  --green: #558f77;
  --green-deep: #3f6f5c;
  --green-soft: #e8f2ee;
  --ink: #22292f;
  --ink-60: #6b7280;
  --ink-30: #d1d5db;
  --line: #f0eeea;
  --bg: #f7f6f4;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 2px 10px rgba(34, 41, 47, 0.08);
  --gutter: 56px;
  --section: 84px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--card);
  color: var(--ink);
  font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; line-height: 1.15; }
p { margin: 0; line-height: 1.55; }
img, svg { max-width: 100%; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.wrap {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--bg { background: var(--bg); }
.section--mint { background: var(--green-soft); }

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.h2 {
  font-size: clamp(1.65rem, 1.05rem + 1.9vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.lead { color: var(--ink-60); font-size: clamp(0.98rem, 0.92rem + 0.25vw, 1.05rem); }

.section__head { max-width: 700px; margin-bottom: 44px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .h2 + .lead { margin-top: 14px; }

/* ---------- knoppen (app: pill, uppercase, 0.08em letterspacing) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 15px 26px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--orange-dark); color: #fff; }
.btn--secondary { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn--secondary:hover { background: var(--orange-soft); color: var(--orange-dark); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--orange-soft); color: var(--ink); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn--small { min-height: 42px; padding: 12px 22px; font-size: 0.75rem; }
.btn--block { width: 100%; }

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

/* ---------- navigatie ---------- */

.nav { background: var(--card); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; gap: 32px; padding-block: 20px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo svg { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--ink); font-size: 0.9rem; font-weight: 600; }
.nav__links a:hover { color: var(--orange); }
.nav__links a[aria-current='page'] {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
}
.nav__end { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Schakelaar kampeerders <-> campings: altijd zichtbaar, ook op telefoon */
.nav__switch {
  display: inline-flex;
  background: var(--bg);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  margin-left: 8px;
}
.nav__switch a {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-60);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav__switch a:hover { color: var(--ink); }
.nav__switch a[aria-current='page'] { background: var(--orange); color: #fff; }
.nav__switch a[aria-current='page']:hover { background: var(--orange-dark); color: #fff; }

/* Taalkiezer — pure CSS, geen javascript (de CSP staat scripts niet toe) */
.lang { position: relative; }
.lang > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid var(--ink-30);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary::marker { content: ''; }
.lang > summary:hover { border-color: var(--orange); color: var(--orange); }
.lang[open] > summary { border-color: var(--orange); color: var(--orange); }
.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(34, 41, 47, 0.2);
  overflow: hidden;
  z-index: 60;
}
.lang__menu a {
  display: block;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.lang__menu a:last-child { border-bottom: none; }
.lang__menu a:hover { background: var(--orange-soft); color: var(--orange-dark); }
.lang__menu a[aria-current='true'] { color: var(--orange); background: var(--orange-soft); }

/* ---------- hero ---------- */

.hero { position: relative; color: #fff; }
.hero__inner { display: flex; align-items: flex-start; gap: 56px; padding-top: 92px; padding-bottom: 190px; }
.hero__copy { width: 620px; flex-shrink: 0; max-width: 100%; }
.hero__art { position: relative; z-index: 2; flex-shrink: 0; }

.hero--photo {
  background-image:
    linear-gradient(100deg, rgba(20, 30, 26, 0.62) 0%, rgba(20, 30, 26, 0.28) 45%, rgba(20, 30, 26, 0) 72%),
    url('hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero--green { background: var(--green-deep); }
.hero--green .hero__inner { padding-bottom: 175px; }

.hero--photo h1,
.hero--photo p,
.hero--photo .badge-pill { text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); }

.hero h1 {
  font-size: clamp(2.2rem, 1.15rem + 3.3vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.hero--green h1 { font-size: clamp(2rem, 1.1rem + 2.9vw, 3.2rem); line-height: 1.08; margin-bottom: 20px; }
.hero__tagline { font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.35rem); font-weight: 500; line-height: 1.45; max-width: 540px; margin-bottom: 14px; }
.hero__sub { font-size: 1rem; max-width: 520px; opacity: 0.94; margin-bottom: 34px; }
.hero__note { font-size: 0.85rem; opacity: 0.9; margin-top: 22px; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.hero__checks { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 24px; }
.hero__checks span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; opacity: 0.92; }

/* Droge kwaststreek — zelfde asset en verhouding als de app */
.brush {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  aspect-ratio: 2568 / 648;
  background: url('brush.png') bottom / 100% 100% no-repeat;
  pointer-events: none;
}

/* ---------- kaarten en grids ---------- */

.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid--tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.step { padding: 32px 28px 30px; }
.step__top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__icon--green { background: var(--green-soft); color: var(--green); }
.step__num { color: var(--ink-30); font-size: 2.4rem; font-weight: 700; line-height: 1; margin-left: auto; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--ink-60); font-size: 0.95rem; }

.tile { background: var(--bg); border-radius: var(--radius); padding: 28px 26px; }
.tile__icon { color: var(--orange); display: inline-flex; margin-bottom: 14px; }
.tile__icon--green { color: var(--green); }
.tile h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.tile p { color: var(--ink-60); font-size: 0.93rem; }

/* ---------- split: tekst naast telefoon ---------- */

.split { display: flex; align-items: center; gap: 64px; }
.split + .split { margin-top: 96px; }
.split--reverse { flex-direction: row-reverse; }
.split__text { flex: 1; min-width: 0; }
.split__text .h2 { font-size: clamp(1.55rem, 1.05rem + 1.6vw, 2.1rem); margin-bottom: 18px; }
.split__text .lead { margin-bottom: 26px; max-width: 520px; }
.split__art { flex-shrink: 0; }

.checklist { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.checklist p { font-size: 0.98rem; }

.chips { display: flex; gap: 14px; flex-wrap: wrap; }
.chips span {
  background: var(--card);
  border: 1px solid var(--ink-30);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- telefoonmockup (echte app-componenten) ---------- */

.phone {
  width: 390px;
  max-width: 100%;
  border: 11px solid var(--ink);
  border-radius: 42px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(34, 41, 47, 0.28);
}
.phone__screen { padding: 20px 16px 24px; background: var(--bg); }
.phone__screen--white { background: var(--card); padding: 18px 16px 22px; }
.phone__hero {
  position: relative;
  padding: 44px 20px 96px;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(20, 30, 26, 0.2), rgba(20, 30, 26, 0.05)), url('detail.jpg');
  background-size: cover;
  background-position: center;
}
.phone__hero h2 { font-size: 1.6rem; font-weight: 700; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45); margin-bottom: 14px; }
.phone__hero svg.logo { height: 30px; width: auto; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45)); margin-bottom: 14px; }

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  color: var(--ink-60);
  font-size: 1rem;
}
.search-bar svg { color: var(--orange); flex-shrink: 0; }

.section-title { color: var(--green); font-size: 1.05rem; margin: 4px 0 10px; }

.req-card { padding: 16px; margin-bottom: 10px; }
.req-card--active { border: 2px solid var(--orange); }
.req-card__top { display: flex; align-items: center; gap: 12px; }
.req-region { color: var(--orange); font-weight: 700; flex: 1; min-width: 0; }
.req-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 10px; color: var(--ink-60); font-size: 0.84rem; }
.req-meta span { display: inline-flex; align-items: center; gap: 6px; }
.req-meta svg { color: var(--orange); flex-shrink: 0; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge--open { background: var(--green-soft); color: var(--green); }
.badge--new { background: var(--orange-soft); color: var(--orange-dark); }

.offer-row {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  margin-bottom: 10px;
}
.offer-row__thumb { width: 76px; height: 76px; border-radius: 12px; background-size: cover; background-position: center; flex-shrink: 0; }
.offer-row__body { flex: 1; min-width: 0; }
.offer-row__name { color: var(--orange); font-weight: 600; }
.stars { color: var(--orange); font-size: 0.75rem; letter-spacing: 2px; }
.stars i { opacity: 0.3; font-style: normal; }
.offer-row__price { font-weight: 700; margin-top: 2px; }
.offer-row__price small { font-weight: 400; color: var(--ink-60); }
.offer-row__when { font-size: 0.72rem; color: var(--ink-60); white-space: nowrap; }
.chevron { color: var(--orange); font-size: 1.2rem; }

.chat { display: flex; flex-direction: column; gap: 8px; }
.bubble { max-width: 80%; padding: 10px 14px; border-radius: 16px; font-size: 0.95rem; line-height: 1.4; }
.bubble--mine { align-self: flex-end; background: var(--green); color: #fff; border-bottom-right-radius: 4px; }
.bubble--theirs { align-self: flex-start; background: #efece6; color: var(--ink); border-bottom-left-radius: 4px; }
.bubble__translated { margin-top: 6px; padding-top: 6px; border-top: 1px dashed rgba(0, 0, 0, 0.15); font-style: italic; opacity: 0.85; }
.bubble__link { display: block; margin-top: 4px; font-size: 0.75rem; opacity: 0.7; text-decoration: underline; }
.chat-time { text-align: center; font-size: 0.68rem; color: var(--ink-60); margin: 6px 0 8px; letter-spacing: 0.04em; }

.composer { display: flex; align-items: center; gap: 10px; margin-top: 18px; border: 1px solid var(--ink-30); border-radius: 999px; padding: 11px 16px; }
.composer span { color: var(--ink-60); font-size: 0.9rem; flex: 1; }
.composer svg { color: var(--orange); }

.bottom-nav { display: flex; height: 64px; background: var(--card); border-top: 1px solid #eee; }
.bottom-nav span {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-60);
}
.bottom-nav .is-active { color: var(--orange); }
.bottom-nav .ico { position: relative; display: inline-flex; }
.nav-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--orange);
  color: #fff;
  border-radius: 9px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  font-size: 0.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* pushbericht dat boven de telefoon zweeft */
.push {
  position: absolute;
  top: -26px;
  left: -78px;
  width: 400px;
  max-width: calc(100% + 40px);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  padding: 14px 16px;
  z-index: 3;
  color: var(--ink);
}
.push__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.push__app { width: 22px; height: 22px; border-radius: 6px; background: var(--orange-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--orange); }
.push__name { font-size: 0.72rem; font-weight: 700; color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.05em; }
.push__when { margin-left: auto; font-size: 0.72rem; color: var(--ink-60); }
.push__title { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.push__body { font-size: 0.88rem; color: var(--ink-60); }

/* ---------- cijfers en quotes ---------- */

.stat { text-align: center; }
.stat__value { font-size: clamp(1.9rem, 1.3rem + 1.6vw, 2.4rem); font-weight: 700; color: var(--green); line-height: 1.1; }
.stat__label { font-size: 0.9rem; font-weight: 600; margin-top: 6px; }

.quote { padding: 28px 30px; }
.quote .stars { font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 12px; display: block; }
.quote p { font-size: 1.02rem; line-height: 1.6; margin-bottom: 16px; }
.quote__by { display: flex; align-items: center; gap: 10px; }
.quote__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.quote__by span { color: var(--ink-60); font-size: 0.88rem; }

/* ---------- tijdlijn 4 uur ---------- */

.timeline { padding: 40px 44px 36px; }
.timeline__ruler { display: flex; margin-bottom: 8px; padding-left: 168px; }
.timeline__ruler span { flex: 1; border-left: 1px solid var(--ink-30); padding-left: 8px; font-size: 0.75rem; font-weight: 600; color: var(--ink-60); }
.lane { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.lane__label { width: 152px; flex-shrink: 0; text-align: right; }
.lane__label b { display: block; font-size: 0.95rem; }
.lane__label span { font-size: 0.78rem; color: var(--ink-60); }
.lane__bar { flex: 1; display: flex; align-items: stretch; min-height: 62px; border-radius: 12px; overflow: hidden; }
.lane--paid .lane__label b { color: var(--orange); }
.lane--paid .lane__bar { background: var(--orange-soft); }
.lane--free .lane__label b { color: var(--ink-60); }
.lane--free .lane__bar { background: var(--green-soft); }
.lane__tick { width: 3%; background: var(--orange); flex-shrink: 0; }
.lane__wait {
  width: 80%;
  flex-shrink: 0;
  background: repeating-linear-gradient(135deg, #eeece8 0 10px, #e6e3de 10px 20px);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--ink-60);
}
.lane__wait b { font-size: 0.92rem; }
.lane__event { flex: 1; display: flex; align-items: center; gap: 10px; padding: 10px 16px; min-width: 0; }
.lane__event svg { flex-shrink: 0; }
.lane__event b { display: block; font-size: 0.92rem; }
.lane__event small { font-size: 0.82rem; opacity: 0.88; }
.lane--paid .lane__event { color: var(--orange-dark); }
.lane--free .lane__event { color: var(--green); }

.lane__note { display: none; font-size: 0.9rem; color: var(--ink-60); margin-top: 8px; }
.lane__note b { color: var(--ink); }

.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--bg); border-radius: 12px; padding: 18px 20px; margin-top: 10px; }
.callout svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.callout p { font-size: 0.95rem; }

/* ---------- abonnementen ---------- */

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.plan { border: 1px solid #e5e1db; border-radius: var(--radius); padding: 36px 34px 34px; background: var(--card); }
.plan--featured { border: 2px solid var(--orange); box-shadow: 0 10px 34px rgba(231, 89, 14, 0.12); position: relative; }
.plan__flag {
  position: absolute;
  top: -14px;
  left: 34px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.plan__head h3 { font-size: 1.4rem; font-weight: 700; }
.plan__tag { background: #f3f4f6; color: var(--ink-60); border-radius: 999px; padding: 4px 12px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.plan__intro { color: var(--ink-60); font-size: 0.95rem; margin-bottom: 22px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan__price b { font-size: clamp(2.2rem, 1.6rem + 1.6vw, 3rem); font-weight: 700; line-height: 1; }
.plan--featured .plan__price b { color: var(--orange-dark); }
.plan__price span { color: var(--ink-60); font-size: 0.95rem; }
.plan__price em { font-style: normal; font-size: 1rem; color: var(--ink-60); font-weight: 600; }
.plan__rule { padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.plan__fineprint { color: var(--ink-60); font-size: 0.85rem; padding-top: 6px; }
.plan__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.plan__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.plan__list svg { flex-shrink: 0; margin-top: 2px; }
.plan__list .yes { color: var(--green); }
.plan--featured .plan__list .yes { color: var(--orange); }
.plan__list .no { color: var(--ink-30); }
.plan__list .no + span, .plan__list li.is-muted { color: var(--ink-60); }
.plan__list .plus { color: var(--green); }

/* ---------- vergelijkingstabel + staffel ---------- */

.compare { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 8px 10px 10px; }
.cmp { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 0.92rem; }
.cmp th {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid #eeeae4;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-60);
  font-weight: 700;
}
.cmp th.is-paid { color: var(--orange); }
.cmp td { padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp tr:last-child td { border-bottom: none; }
.cmp td:first-child { font-weight: 600; }
.cmp .muted { color: var(--ink-60); }
.cmp .accent { font-weight: 600; color: var(--orange-dark); }
.cmp .good { color: var(--green); font-weight: 600; }

.tiers { padding: 32px 30px 30px; }
.tiers h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.tiers > p { color: var(--ink-60); font-size: 0.92rem; margin-bottom: 22px; }
.tier { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.tier:last-of-type { border-bottom: none; }
.tier span { color: var(--ink-60); font-size: 0.93rem; }
.tier b { font-weight: 700; color: var(--orange-dark); white-space: nowrap; }
.tier b.green { color: var(--green); }
.tiers__note { background: var(--green-soft); border-radius: 12px; padding: 16px 18px; margin-top: 20px; font-size: 0.88rem; }

/* ---------- faq ---------- */

.faq { display: flex; gap: 64px; align-items: flex-start; }
.faq__intro { width: 340px; flex-shrink: 0; }
.faq__intro .h2 { font-size: clamp(1.55rem, 1.05rem + 1.6vw, 2.1rem); margin-bottom: 18px; }
.faq__intro p { color: var(--ink-60); font-size: 0.98rem; }
.faq__list { flex: 1; min-width: 0; }
.faq__item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.faq__list .faq__item:last-child { border-bottom: none; }
.section--bg .faq__item { border-bottom-color: #e5e1db; }
.faq__item h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.faq__item p { color: var(--ink-60); font-size: 0.97rem; }

/* ---------- cta, brug, footer ---------- */

.cta { padding-block: 76px; color: #fff; }
.cta--orange { background: var(--orange); }
.cta--green { background: var(--green-deep); }
.cta__inner { display: flex; align-items: center; gap: 56px; }
.cta__text { flex: 1; min-width: 0; }
.cta h2 { font-size: clamp(1.7rem, 1.1rem + 2vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 14px; text-wrap: pretty; }
.cta p { font-size: 1.1rem; opacity: 0.95; max-width: 600px; }
.cta .btn-row { flex-shrink: 0; }

.bridge { background: var(--bg); border-bottom: 1px solid var(--line); padding-block: 40px; }
.bridge__inner { display: flex; align-items: center; gap: 20px; }
.bridge__icon { color: var(--green); display: inline-flex; flex-shrink: 0; }
.bridge__icon--orange { color: var(--orange); }
.bridge__text { flex: 1; min-width: 0; }
.bridge h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.bridge p { color: var(--ink-60); font-size: 0.93rem; }

.footer { background: var(--ink); color: var(--ink-30); padding-block: 48px 40px; }
.footer__top { display: flex; gap: 64px; align-items: flex-start; margin-bottom: 36px; }
.footer__brand { width: 300px; flex-shrink: 0; }
.footer__brand svg { height: 40px; width: auto; margin-bottom: 14px; }
.footer__brand p { font-size: 0.9rem; opacity: 0.8; }
.footer__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; flex: 1; min-width: 0; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col b { color: #fff; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer__col a { color: var(--ink-30); font-size: 0.9rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 20px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer__bottom span { font-size: 0.82rem; opacity: 0.65; }
.footer__bottom span + span { margin-left: auto; }

/* =========================================================================
   Responsive — de layout schaalt mee; kleuren en typografie blijven gelijk
   ========================================================================= */

@media (max-width: 1200px) {
  :root { --gutter: 40px; }
  .hero__copy { width: 560px; }
  .split { gap: 44px; }
  .faq { gap: 44px; }
  .footer__top { gap: 44px; }
}

@media (max-width: 1024px) {
  :root { --section: 68px; }
  .grid--3, .grid--tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare { grid-template-columns: minmax(0, 1fr); }
  .timeline { padding: 32px 28px 28px; }
  .timeline__ruler { padding-left: 0; }
  .lane { display: block; }
  .lane__label { width: auto; text-align: left; margin-bottom: 8px; }
  .lane__label b { display: inline; }
  .lane__label span::before { content: ' — '; }
  .lane__label span { display: inline; }
  .cta__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer__brand { width: 240px; }
}

@media (max-width: 900px) {
  .nav__inner { flex-wrap: wrap; gap: 14px 16px; }
  .nav__switch { order: 3; width: 100%; margin-left: 0; }
  .nav__switch a { flex: 1; text-align: center; padding: 11px 12px; }

  .hero__inner { flex-direction: column; align-items: center; gap: 40px; padding-top: 64px; padding-bottom: 150px; }
  .hero--green .hero__inner { padding-bottom: 140px; }
  .hero__copy { width: 100%; }
  .hero__tagline, .hero__sub { max-width: none; }
  .hero--photo { background-image: linear-gradient(180deg, rgba(20, 30, 26, 0.65) 0%, rgba(20, 30, 26, 0.45) 60%, rgba(20, 30, 26, 0.25) 100%), url('hero.jpg'); }

  .split, .split--reverse { flex-direction: column; align-items: flex-start; gap: 36px; }
  .split + .split { margin-top: 64px; }
  .checklist, .split__text .lead { max-width: none; }

  /* telefoon mag krimpen zodra de kolommen onder elkaar staan */
  .hero__art, .split__art {
    flex-shrink: 1;
    width: 100%;
    max-width: 390px;
    align-self: center;
  }
  .phone { width: 100%; }

  .plans { grid-template-columns: minmax(0, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }

  .faq { flex-direction: column; gap: 24px; }
  .faq__intro { width: 100%; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__brand { width: 100%; }
  .footer__cols { width: 100%; gap: 28px; }
}

@media (max-width: 700px) {
  :root { --gutter: 20px; --section: 52px; }

  .section__head { margin-bottom: 32px; }
  .grid { gap: 16px; }
  .grid--3, .grid--tiles, .grid--2 { grid-template-columns: minmax(0, 1fr); }
  .step { padding: 26px 22px 24px; }
  .tile { padding: 24px 22px; }

  .hero__inner { padding-top: 48px; padding-bottom: 110px; }
  .hero--green .hero__inner { padding-bottom: 100px; }
  .hero__sub { margin-bottom: 26px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }

  .phone { border-width: 9px; border-radius: 34px; }
  .push { position: static; width: 100%; max-width: none; margin-bottom: 16px; box-shadow: var(--shadow); }

  .plan { padding: 28px 22px 26px; }
  .plan__flag { left: 22px; }
  /* smal scherm: de balk wordt een pure verhoudingsgrafiek, de tekst komt eronder */
  .timeline { padding: 24px 20px 22px; }
  .timeline__ruler span { font-size: 0.68rem; padding-left: 5px; }
  .lane { margin-bottom: 22px; }
  .lane__bar { min-height: 30px; }
  .lane__wait { padding: 0; }
  .lane__event { padding: 0; }
  .lane__wait b, .lane__event span, .lane__event svg { display: none; }
  .lane--paid .lane__event { background: var(--orange-soft); }
  .lane--free .lane__event { background: var(--green-soft); }
  .lane__note { display: block; }

  .quote { padding: 24px 22px; }
  .tiers { padding: 26px 22px 24px; }
  .table-scroll { padding: 4px; }

  .cta { padding-block: 56px; }
  .cta p { font-size: 1rem; }
  .bridge__inner { flex-wrap: wrap; }
  .bridge__text { flex-basis: calc(100% - 46px); }
  .bridge .btn { width: 100%; }

  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer__bottom span + span { margin-left: 0; }
}

@media (max-width: 700px) {
  .nav__logo img { height: 32px; width: auto; }
  .nav__login-btn { padding: 11px 16px; font-size: .7rem; width: auto; }
  .lang > summary { padding: 9px 12px; }
}

@media (max-width: 420px) {
  .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .footer__cols { grid-template-columns: minmax(0, 1fr); }
  .nav__switch a { font-size: 0.8rem; padding: 10px 8px; }
  .lang > summary span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
