/* ============================================================
   Afvalperscontainer.nl — Redesign 2026
   Built on Milieu Service Nederland design system (Ubuntu + 5px radii)
   Brand accent: oranje (#ed6a1c) op anthraciet (#1a1a1a)
   ============================================================ */

/* design-system.css wordt nu als losse <link> geladen (geen render-blocking @import-keten) */

:root {
  /* Site palette — overrides the green-leaning brand for this product page */
  --ap-orange: #ed6a1c;
  --ap-orange-dark: #c4540f;
  --ap-orange-darker: #a8470b;
  --ap-orange-text: #b04a0c; /* WCAG >=4.5:1 op wit/paper/cream */
  --ap-orange-soft: #fef1e7;
  --ap-ink: #141518;
  --ap-ink-2: #22252a;
  --ap-ink-3: #3a3f47;
  --ap-line: #e5e3df;
  --ap-line-strong: #d1cdc6;
  --ap-paper: #fafaf7;
  --ap-paper-2: #f3f1ec;
  --ap-cream: #f8f5ee;
  --ap-text: #1a1a1a;
  --ap-text-2: #5a5d63;
  --ap-text-3: #6d7076; /* was #8a8d93, te licht (3.3:1) */
  --ap-yellow: #f5b417; /* the perscontainer yellow accent */

  --shell: 1240px;
  --shell-narrow: 920px;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ap-paper);
  color: var(--ap-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 150ms var(--ease); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout shell ---------- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.shell-narrow { max-width: var(--shell-narrow); margin: 0 auto; padding: 0 28px; }

/* ---------- Type utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ap-orange-text);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--ap-orange);
  display: inline-block;
}
.eyebrow.dark { color: var(--ap-ink); }
.eyebrow.dark::before { background: var(--ap-ink); }
.eyebrow.light { color: #fff; }
.eyebrow.light::before { background: rgba(255,255,255,0.6); }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.015em; margin: 0; color: var(--ap-text); }
h1 { font-size: clamp(40px, 5.5vw, 76px); font-weight: 700; line-height: 1.02; }
h2 { font-size: clamp(30px, 3.6vw, 52px); font-weight: 700; line-height: 1.08; }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 700; line-height: 1.2; }
h4 { font-size: 17px; font-weight: 700; line-height: 1.3; }

p { margin: 0; }
.lead { font-size: 19px; line-height: 1.55; color: var(--ap-text-2); max-width: 60ch; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--ap-ink);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.topbar-left { display: flex; gap: 28px; align-items: center; }
.topbar-left span { display: inline-flex; gap: 8px; align-items: center; color: #d8d4cc; }
.topbar-left .dot { color: var(--ap-orange); }
.topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar-right a { color: #fff; font-weight: 500; white-space: nowrap; }
.topbar-right a:hover { color: var(--ap-orange); }
.topbar-right .pill {
  background: var(--ap-orange);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.topbar-right .pill:hover { background: var(--ap-orange-dark); color: #fff; }
.topbar-phone { font-weight: 700; white-space: nowrap; }

/* ============================================================
   HEADER (sticky)
   ============================================================ */
.header {
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ap-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ap-ink);
}
.logo img { height: 56px; width: auto; display: block; }
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--ap-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo .light { color: var(--ap-ink-3); font-weight: 400; }
.logo .strong { color: var(--ap-orange); }

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ap-text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 150ms var(--ease);
}
.nav a:hover { background: var(--ap-paper-2); }
.nav a.active { color: var(--ap-orange-text); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ap-orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 0;
  letter-spacing: 0.01em;
  transition: all 150ms var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.header-cta:hover { background: var(--ap-orange-dark); color: #fff; transform: translateY(-1px); text-decoration: none; }
.header-cta svg { width: 16px; height: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ap-paper);
  padding: 64px 0 92px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(237,106,28,0.05), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(20,21,24,0.02) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 18px 0 22px;
  letter-spacing: -0.025em;
}
.hero h1 .accent { color: var(--ap-orange-dark); display: inline-block; position: relative; }
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: var(--ap-orange);
  opacity: 0.18;
  border-radius: 3px;
}
.hero-lead { font-size: 20px; line-height: 1.5; color: var(--ap-text-2); margin: 0 0 32px; max-width: 50ch; }

.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 38px; }
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 0;
  transition: all 150ms var(--ease);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--ap-orange-dark); color: #fff; box-shadow: 0 6px 18px -6px rgba(237,106,28,0.55); }
.btn-primary:hover { background: var(--ap-orange-darker); transform: translateY(-1px); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-secondary { background: var(--ap-ink); color: #fff; }
.btn-secondary:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ap-text); padding: 14px 8px; }
.btn-ghost:hover { color: var(--ap-orange); }
.btn-large { padding: 18px 32px; font-size: 16px; }

/* trust strip in hero */
.hero-trust {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--ap-line);
}
.hero-trust .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ap-ink); line-height: 1; letter-spacing: -0.02em; }
.hero-trust .lab { font-size: 12px; color: var(--ap-text-2); letter-spacing: 0.03em; }
.hero-trust .sep { width: 1px; height: 36px; background: var(--ap-line); }
.hero-trust .stars { color: var(--ap-orange); font-size: 14px; letter-spacing: 1px; }

/* hero photo + offer card */
.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-photo {
  position: relative;
  aspect-ratio: 5/4;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(160deg, #2a2d33 0%, #15171a 60%, #0a0b0d 100%);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.hero-photo img.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}
.hero-photo svg.machine { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo .photo-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.hero-photo .photo-meta {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.hero-photo .photo-meta h4 { color: #fff; font-size: 22px; margin: 0 0 4px; }
.hero-photo .photo-meta .sub { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-photo .photo-meta .price {
  text-align: right;
  background: var(--ap-orange-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
}
.hero-photo .photo-meta .price .from { font-size: 10px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-photo .photo-meta .price .val { font-size: 18px; font-weight: 700; }

/* light studio variant (homepage hero) */
.hero-photo--light {
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0%, #eef0f3 55%, #dde1e6 100%);
}
.hero-photo--light img.product-photo {
  filter: drop-shadow(0 22px 30px rgba(20,21,24,0.22));
}
.hero-photo--light .photo-tag {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(20,21,24,0.12);
  color: #15171a;
  backdrop-filter: none;
}
.hero-photo--light .photo-meta { color: rgba(20,21,24,0.72); }
.hero-photo--light .photo-meta h4 { color: #15171a; }
.hero-photo--light .photo-meta .sub { color: rgba(20,21,24,0.55); }

/* docked specialist card onder de hero-foto */
.hero-offer {
  position: relative;
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 38px -22px rgba(20, 21, 24, 0.22);
  border: 1px solid var(--ap-line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.hero-offer .of-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--ap-orange-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.hero-offer h4 { font-size: 17px; margin-bottom: 5px; letter-spacing: -0.01em; }
.hero-offer .of-text p { font-size: 13px; color: var(--ap-text-2); line-height: 1.45; margin: 0; }
.hero-offer .of-visual { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.hero-offer .of-thumbs { display: flex; gap: 7px; }
.hero-offer .of-thumbs .ot {
  width: 56px;
  height: 56px;
  background: linear-gradient(160deg, #f5f3ee 0%, #e4e1d9 100%);
  border: 1px solid var(--ap-line);
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}
.hero-offer .of-thumbs img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 11%; }
.hero-offer .of-cap { font-size: 11px; color: var(--ap-text-3); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip {
  background: var(--ap-ink);
  color: #fff;
  padding: 28px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.usp-item { display: flex; gap: 14px; align-items: center; padding: 0 8px; }
.usp-item svg { width: 28px; height: 28px; color: var(--ap-orange); flex-shrink: 0; }
.usp-item .label { font-size: 14px; line-height: 1.3; font-weight: 500; color: #fff; }
.usp-item .label strong { display: block; font-size: 16px; font-weight: 700; }

/* ============================================================
   SECTION SHELLS
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-dark { background: var(--ap-ink); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,0.7); }
.section-cream { background: var(--ap-cream); }
.section-paper2 { background: var(--ap-paper-2); }

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section-head p { font-size: 17px; line-height: 1.55; color: var(--ap-text-2); max-width: 52ch; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ============================================================
   CONFIGURATOR — "Welke pers past bij u?"
   ============================================================ */
.config {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
  box-shadow: 0 20px 60px -30px rgba(20,21,24,0.15);
}
.config-left h3 { font-size: 28px; margin-bottom: 12px; letter-spacing: -0.02em; }
.config-left p { color: var(--ap-text-2); margin-bottom: 24px; font-size: 15px; line-height: 1.5; }
.config-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.config-step { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--ap-text-3); }
.config-step .n {
  width: 24px; height: 24px;
  background: var(--ap-paper-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ap-text-3);
}
.config-step.active { color: var(--ap-ink); font-weight: 600; }
.config-step.active .n { background: var(--ap-orange); color: #fff; }
.config-step.done .n { background: var(--ap-ink); color: #fff; }

.config-right { display: flex; flex-direction: column; }
.config-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--ap-ink);
  margin-bottom: 18px;
}
.config-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.config-opt {
  background: var(--ap-paper);
  border: 1.5px solid var(--ap-line);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 150ms var(--ease);
}
.config-opt:hover { border-color: var(--ap-orange); background: #fff; }
.config-opt.selected { border-color: var(--ap-orange); background: var(--ap-orange-soft); }
.config-opt .opt-title { font-size: 15px; font-weight: 700; color: var(--ap-ink); }
.config-opt .opt-sub { font-size: 12px; color: var(--ap-text-2); }

.config-result {
  background: var(--ap-ink);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: auto;
}
.config-result .res-eyebrow { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ap-orange); font-weight: 700; margin-bottom: 4px; }
.config-result h4 { color: #fff; font-size: 20px; margin-bottom: 2px; }
.config-result p { font-size: 13px; color: rgba(255,255,255,0.65); }
.config-result .btn-primary { padding: 12px 20px; font-size: 14px; }

.config-nav { display: flex; gap: 12px; margin-top: 8px; }
.btn-mini {
  background: transparent;
  border: 1.5px solid var(--ap-line-strong);
  color: var(--ap-text);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
}
.btn-mini:hover { border-color: var(--ap-ink); }
.btn-mini.dark { background: var(--ap-ink); color: #fff; border-color: var(--ap-ink); }

/* ============================================================
   PRODUCT RANGE
   ============================================================ */
.product-range {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 200ms var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(20,21,24,0.18); border-color: var(--ap-line-strong); }
.product-card.featured { grid-column: span 6; }
.product-card.featured .product-img-wrap { aspect-ratio: 16/10; }
.product-card.standard { grid-column: span 3; }
.product-card.standard .product-img-wrap { aspect-ratio: 4/3; }
.product-card .badge-best {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ap-orange-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.product-img-wrap {
  position: relative;
  background: linear-gradient(160deg, #f5f3ee 0%, #e4e1d9 100%);
  overflow: hidden;
}
/* Eén consistente lichte achtergrond voor alle productfoto's (donker- én wit-achtergrond-foto's ogen nu gelijk) */
.product-img-wrap.light,
.product-img-wrap.blue,
.product-img-wrap.yellow-acc { background: linear-gradient(160deg, #f5f3ee 0%, #e4e1d9 100%); }
.product-img-wrap svg.machine { position: absolute; inset: 0; width: 100%; height: 100%; }
.product-img-wrap img.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 7%;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.12));
}
.product-img-wrap .img-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20,21,24,0.06);
  border: 1px solid rgba(20,21,24,0.12);
  color: var(--ap-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.product-img-wrap.light .img-tag {
  background: rgba(20,21,24,0.06);
  border-color: rgba(20,21,24,0.12);
  color: var(--ap-ink);
}
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 22px; margin-bottom: 4px; }
.product-body .specs { font-size: 13px; color: var(--ap-text-2); margin-bottom: 14px; }
.product-body p { font-size: 14px; color: var(--ap-text-2); line-height: 1.5; margin-bottom: 18px; flex: 1; }
.product-body .product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-body .product-foot .from-price { font-size: 12px; color: var(--ap-text-3); }
.product-body .product-foot .from-price strong { color: var(--ap-ink); font-size: 15px; font-weight: 700; }
.product-body .product-foot a { color: var(--ap-orange-text); font-weight: 700; font-size: 13px; display: inline-flex; gap: 6px; align-items: center; }
.product-body .product-foot a:hover { gap: 10px; }

/* ============================================================
   HOE WERKT HET — process
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 5%;
  right: 5%;
  height: 1px;
  border-top: 1.5px dashed rgba(255,255,255,0.18);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-step .n {
  width: 52px;
  height: 52px;
  background: var(--ap-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  border: 6px solid var(--ap-ink);
  box-shadow: 0 0 0 1.5px var(--ap-orange);
}
.process-step h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.process-step.alt .n { background: var(--ap-ink-2); color: var(--ap-orange); box-shadow: 0 0 0 1.5px var(--ap-orange); }

/* ============================================================
   VOORDELEN
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ap-line);
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.benefit {
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefit .icon {
  width: 48px;
  height: 48px;
  background: var(--ap-orange-soft);
  color: var(--ap-orange-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit .icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 19px; margin-bottom: 4px; }
.benefit p { font-size: 14px; color: var(--ap-text-2); line-height: 1.5; }
.benefit .big-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ap-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.benefit .big-num .unit { font-size: 18px; color: var(--ap-text-2); margin-left: 4px; }

/* ============================================================
   BRANCHES
   ============================================================ */
.branches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.branche {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 150ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.branche svg { width: 32px; height: 32px; color: var(--ap-orange); }
.branche .name { font-size: 14px; font-weight: 700; color: var(--ap-ink); }
.branche .count { font-size: 11px; color: var(--ap-text-3); }

/* ============================================================
   TRUST PILLARS (replaces reviews)
   ============================================================ */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tp-card {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  transition: all 200ms var(--ease);
}
.tp-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(20,21,24,0.15); border-color: var(--ap-line-strong); }
.tp-card .tp-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ap-orange-text);
  margin-bottom: 16px;
}
.tp-card h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
.tp-card p { color: var(--ap-text-2); font-size: 14px; line-height: 1.55; }

@media (max-width: 1024px) {
  .trust-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .trust-pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG/KENNIS RECENTS (homepage)
   ============================================================ */
.recents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.recent-card {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 200ms var(--ease);
}
.recent-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(20,21,24,0.18); }
.recent-card .rc-img {
  aspect-ratio: 16/10;
  background: linear-gradient(160deg, #2a2d33, #15171a);
  position: relative;
  overflow: hidden;
}
.recent-card .rc-img.alt-1 { background: linear-gradient(160deg, #f3f1ec, #e1ded6); }
.recent-card .rc-img.alt-2 { background: linear-gradient(160deg, var(--ap-orange), var(--ap-orange-dark)); }
.recent-card .rc-img svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.recent-card .rc-cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ap-ink);
  border: 1px solid rgba(20,21,24,0.08);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
/* alt-1 override vervallen: chip is nu overal wit met inkt-tekst (leesbaar op elke illustratie) */
.recent-card .rc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.recent-card h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.recent-card p { font-size: 14px; color: var(--ap-text-2); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.recent-card .rc-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--ap-line);
  font-size: 12px; color: var(--ap-text-3);
}
.recent-card .rc-meta .read { color: var(--ap-orange-text); font-weight: 700; }

@media (max-width: 1024px) { .recents { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .recents { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.faq-side h2 { margin-bottom: 16px; }
.faq-side p { font-size: 16px; color: var(--ap-text-2); margin-bottom: 24px; }
.faq-side .faq-help {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.faq-side .faq-help h4 { font-size: 16px; margin-bottom: 6px; }
.faq-side .faq-help p { font-size: 14px; line-height: 1.5; margin-bottom: 16px; }
.faq-side .faq-help a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--ap-orange); font-size: 14px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--ap-line-strong);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--ap-line-strong); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--ap-ink);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--ap-orange); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ap-paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--ap-ink);
  transition: all 200ms var(--ease);
}
.faq-item.open .toggle { background: var(--ap-orange); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 24px; font-size: 15px; line-height: 1.6; color: var(--ap-text-2); max-width: 65ch; }

/* ============================================================
   COVERAGE / SERVICE AREA
   ============================================================ */
.coverage {
  background: var(--ap-cream);
  border-radius: var(--radius-md);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--ap-line);
}
.coverage h2 { font-size: clamp(28px, 2.6vw, 40px); margin-bottom: 16px; }
.coverage p { font-size: 16px; color: var(--ap-text-2); margin-bottom: 24px; line-height: 1.55; }
.coverage-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
  font-size: 14px;
  color: var(--ap-text);
  margin-bottom: 24px;
}
.coverage-regions span { display: flex; gap: 8px; align-items: center; }
.coverage-regions span::before { content: ""; width: 6px; height: 6px; background: var(--ap-orange); border-radius: 50%; flex-shrink: 0; }
.coverage-map {
  aspect-ratio: 4/5;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ap-line);
  padding: 20px;
  position: relative;
}
.coverage-map svg { width: 100%; height: 100%; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--ap-orange);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final-cta::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 { color: #fff; font-size: clamp(32px, 3.8vw, 56px); letter-spacing: -0.02em; margin-bottom: 14px; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 28px; max-width: 48ch; line-height: 1.5; }
.final-cta .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta .ctas .btn-primary { background: var(--ap-ink); color: #fff; box-shadow: 0 6px 18px -6px rgba(0,0,0,0.4); }
.final-cta .ctas .btn-primary:hover { background: #000; }
.final-cta .ctas .btn-secondary { background: rgba(255,255,255,0.16); color: #fff; backdrop-filter: blur(10px); }
.final-cta .ctas .btn-secondary:hover { background: rgba(255,255,255,0.24); }
.final-cta .phone-block { position: relative; z-index: 1; }
.final-cta .phone-block .pre { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 6px; }
.final-cta .phone-block .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.final-cta .phone-block .hours { font-size: 14px; opacity: 0.85; }
.final-cta .phone-block .hours strong { color: #fff; }

/* ============================================================
   LEAD FORM (sticky right)
   ============================================================ */
.lead-form {
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 16px 40px -20px rgba(20,21,24,0.18);
}
.lead-form .form-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ap-orange); margin-bottom: 8px; }
.lead-form h3 { font-size: 22px; margin-bottom: 6px; letter-spacing: -0.02em; }
.lead-form > p { font-size: 14px; color: var(--ap-text-2); margin-bottom: 20px; }
.lead-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lead-form label { font-size: 12px; font-weight: 600; color: var(--ap-ink); letter-spacing: 0.02em; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1.5px solid var(--ap-line-strong);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ap-text);
  background: #fff;
  transition: border-color 150ms var(--ease);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: 0;
  border-color: var(--ap-orange);
}
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form .btn-primary { width: 100%; justify-content: center; padding: 14px; margin-top: 6px; }
.lead-form .form-foot { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 12px; color: var(--ap-text-3); }
.lead-form .form-foot svg { width: 14px; height: 14px; color: var(--ap-orange); flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ap-ink); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-col a:hover { color: var(--ap-orange); }
.footer-col p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.footer-logo { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 38px; width: auto; background: #fff; padding: 8px 12px; border-radius: 8px; }
.footer-logo .strong { color: var(--ap-orange); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal { display: flex; gap: 24px; }

/* ============================================================
   STICKY MOBILE OFFER BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ap-ink);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 40;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  font-size: 14px;
  opacity: 0;
  transform: translate(-50%, 80px);
  transition: all 300ms var(--ease);
  pointer-events: none;
}
.sticky-bar.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.sticky-bar .label { font-weight: 600; white-space: nowrap; }
.sticky-bar .label strong { color: var(--ap-orange); }
.sticky-bar .btn-primary { padding: 10px 18px; font-size: 13px; white-space: nowrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .topbar-right a:not(.pill):not(.topbar-phone) { display: none; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 540px; margin: 0 auto; }
  .config { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .product-card.featured, .product-card.standard { grid-column: span 6; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .branches { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .coverage { grid-template-columns: 1fr; padding: 36px; }
  .final-cta { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .section { padding: 64px 0; }
  .hero-offer { grid-template-columns: 1fr; gap: 16px; }
  .hero-offer .of-visual { align-items: flex-start; }
  .topbar-left { display: none; }
  .product-card.featured, .product-card.standard { grid-column: span 12; }
  .benefits { grid-template-columns: 1fr; }
  .branches { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 18px; }
  .hero-trust .sep { display: none; }
}
