/* ==========================================================
   Urban Basic — Stylesheet v3
   Updated: 2026-04-30
   Visuele upgrades, micro-animaties, mobile finetuning,
   article-styling, trust-badges, scroll-effects.
   ========================================================== */

:root {
  --orange: #F4761C;
  --orange-deep: #d96208;
  --orange-bright: #ff8a2e;
  --orange-light: #FFF4E8;
  --orange-glow: rgba(244, 118, 28, .35);
  --black: #0c0c0c;
  --dark: #1F2A38;
  --dark-2: #182230;
  --grey-900: #2a2a2a;
  --grey-700: #555555;
  --grey-500: #8a8a8a;
  --grey-300: #d8d8d8;
  --grey-200: #e8e8e8;
  --grey-100: #f4f4f4;
  --grey-50: #fafafa;
  --white: #ffffff;

  --max: 1200px;
  --max-narrow: 820px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --shadow-orange: 0 8px 24px rgba(244, 118, 28, .25);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s var(--ease); }
a:hover { text-decoration: underline; color: var(--orange-deep); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
ul, ol { padding-left: 1.25rem; }
hr { border: 0; border-top: 1px solid var(--grey-300); margin: 2rem 0; }
::selection { background: var(--orange); color: var(--white); }

/* skip-link voor a11y */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: var(--white);
  padding: .8rem 1.2rem; z-index: 100;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ----- typography ----- */
h1, h2, h3, h4 {
  font-family: 'Anton', 'Bebas Neue', 'Archivo Black', "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 .6em;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -.005em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.1rem; letter-spacing: .04em; }
p  { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--grey-700); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* ----- layout ----- */
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead { color: rgba(255,255,255,.85); }
.section-light { background: var(--orange-light); }
.section-grey { background: var(--grey-100); }

/* Participatiepad: piramide-vorm met klikbare tabs (Frontliner basis → Gamechanger top) */
.participatie-pad.pyramid-tabs {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  max-width: 480px; margin: 0 auto 1rem;
  position: relative;
}
.pp-step {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: .8rem 1rem;
  cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  font-family: inherit;
  position: relative;
  z-index: 5;
  text-align: center;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(244,118,28,.3);
  user-select: none;
  min-height: 0;
}
.pp-step * { pointer-events: none; }
/* Piramide-tieren: top (Gamechanger) klein, basis (Frontliner) breed */
.pp-tier-1 { width: 38%; padding: .55rem .65rem; font-size: .85rem; }
.pp-tier-2 { width: 58%; padding: .65rem .85rem; }
.pp-tier-3 { width: 78%; padding: .75rem 1rem; }
.pp-tier-4 { width: 100%; padding: .95rem 1.15rem; font-size: 1.05rem; }
.pp-step:hover { background: rgba(244,118,28,.22); border-color: rgba(244,118,28,.5); transform: translateY(-1px); }
.pp-step:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.pp-step.active {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 8px 22px rgba(244,118,28,.4);
  transform: translateY(-1px);
}
.pp-step .pp-num {
  font-family: 'Anton', sans-serif; font-size: .85rem;
  color: var(--orange); letter-spacing: 1px;
  background: rgba(0,0,0,.3); padding: .2rem .55rem; border-radius: 4px;
  flex-shrink: 0;
}
.pp-step.active .pp-num { color: var(--orange); background: #fff; }
.pp-step .pp-name {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  letter-spacing: .8px; font-size: 1rem; line-height: 1;
}
.pp-detail {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 1.25rem 1.4rem; min-height: 180px;
  margin-top: .5rem;
}
.pp-panel { display: none; animation: ppFade .35s ease both; }
.pp-panel.active { display: block; }
.pp-panel h4 {
  color: var(--orange); font-family: 'Anton', sans-serif;
  text-transform: uppercase; letter-spacing: 1px;
  margin: 0 0 .5rem; font-size: 1.1rem;
}
.pp-panel p { color: rgba(255,255,255,.92); margin: 0 0 .65rem; line-height: 1.55; }
.pp-panel ul { color: rgba(255,255,255,.85); margin: 0; padding-left: 1.2rem; font-size: .92rem; line-height: 1.7; }
@keyframes ppFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 880px) {
  .participatie-pad.pyramid-tabs { max-width: 360px; gap: .3rem; }
  .pp-step { gap: .5rem; }
  .pp-step .pp-name { font-size: .88rem; }
  .pp-step .pp-num { font-size: .68rem; padding: .1rem .35rem; }
  .pp-tier-1 { width: 42%; padding: .5rem .5rem; font-size: .78rem; }
  .pp-tier-2 { width: 62%; padding: .55rem .65rem; }
  .pp-tier-3 { width: 80%; padding: .65rem .85rem; }
  .pp-tier-4 { width: 100%; padding: .8rem 1rem; font-size: .95rem; }
  .pp-detail { padding: 1rem 1.1rem; }
}

/* Quickscan-frame voor Opinionstage embed */
.quickscan-frame { background: #fff; border-radius: 12px; padding: 1.25rem; box-shadow: 0 8px 28px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04); border: 1px solid var(--grey-200); min-height: 460px; }
.quickscan-frame .os-widget { width: 100%; }
.quickscan-frame iframe { width: 100% !important; min-height: 460px; border: 0; display: block; }
@media (max-width: 880px) {
  .quickscan-frame { padding: .75rem; border-radius: 8px; min-height: 520px; }
  .quickscan-frame iframe { min-height: 520px; }
}

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .01em;
  text-transform: none;
  padding: .85rem 1.6rem;
  min-height: 48px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-deep); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-secondary { background: var(--black); color: var(--white); }
.btn-secondary:hover { background: var(--grey-900); color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-arrow::after { content: "→"; font-family: sans-serif; font-size: 1.1em; transition: transform .18s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1.05rem; min-height: 56px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ----- header / nav ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--grey-300);
  box-shadow: var(--shadow-sm);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--black);
  text-decoration: none !important;
  line-height: 1;
}
.brand:hover { color: var(--black); }
.brand-mark { height: 40px; width: auto; max-width: 110px; flex: 0 0 auto; transition: transform .25s var(--ease); object-fit: contain; }
.brand:hover .brand-mark { transform: rotate(-3deg) scale(1.05); }
.brand-name { display: inline-flex; flex-direction: column; line-height: .9; }
.brand-name .basic { color: var(--orange); }

.nav-main {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.nav-main a {
  color: var(--black);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: .25rem 0;
}
.nav-main a.nav-cta {
  /* CTA-button moet ook centered staan met de rest */
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-main a:hover, .nav-main a.active { color: var(--orange); }

/* ===== Voor wie dropdown ===== */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-trigger {
  background: none; border: 0; padding: .25rem 0;
  font-family: inherit; font-size: .95rem; font-weight: 600;
  color: var(--black); cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  min-height: 44px;
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger[aria-expanded="true"] { color: var(--orange); }
.nav-dropdown-trigger .nav-chev { transition: transform .2s var(--ease); }
.nav-dropdown-trigger[aria-expanded="true"] .nav-chev { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + .8rem); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,.12);
  padding: .5rem; min-width: 220px;
  display: none; z-index: 100;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: .65rem 1rem;
  color: var(--black); text-decoration: none; font-weight: 500; font-size: .95rem;
  border-radius: 8px; min-height: auto;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus { background: #fff8ef; color: var(--orange); }
.nav-dropdown-menu a::after { display: none !important; }

.nav-main a.active::after {
  content: "";
  position: absolute;
  bottom: -.4rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-cta { margin-left: .5rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: .5rem;
  min-width: 48px;
  min-height: 48px;
  position: relative;
  z-index: 200;
  color: var(--black);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.menu-toggle svg { width: 26px; height: 26px; }

/* old nav mobile block removed — see mobile-first overhaul */

/* ----- announcement / urgency strip ----- */
.urgency-strip {
  background: linear-gradient(90deg, #000 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
  font-size: .9rem;
  padding: .55rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.urgency-strip strong { color: var(--orange); }
.urgency-strip a {
  color: var(--white);
  border-bottom: 1px dotted rgba(255,255,255,.5);
  margin-left: .25rem;
}
.urgency-strip a:hover { color: var(--orange); border-color: var(--orange); }

/* ----- breadcrumbs ----- */
.breadcrumbs {
  background: var(--grey-100);
  font-size: .88rem;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-200);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
  margin: 0;
  padding: .8rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.breadcrumbs li::after { content: "›"; color: var(--grey-500); margin-left: .5rem; }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--grey-700); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs li:last-child { color: var(--black); font-weight: 600; }

/* ----- hero ----- */
.hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(12,12,12,.78) 45%, rgba(12,12,12,.45) 70%, rgba(244,118,28,.15) 100%),
    url("assets/hero-illustration.svg") center/cover no-repeat,
    var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 4px solid var(--orange);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 10px, transparent 10px 20px);
  z-index: -1;
  pointer-events: none;
}
.hero .container { padding-top: clamp(4rem, 10vw, 7rem); padding-bottom: clamp(4rem, 10vw, 7rem); position: relative; }
.hero h1 { color: var(--white); max-width: 22ch; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero h1 .accent {
  color: var(--orange);
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-bright) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { font-size: 1.2rem; max-width: 60ch; color: rgba(255,255,255,.92); text-shadow: 0 1px 6px rgba(0,0,0,.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero-insight {
  display: inline-block;
  background: rgba(244,118,28,.18);
  border-left: 3px solid var(--orange);
  padding: .75rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: .98rem;
  max-width: 65ch;
  border-radius: 0 4px 4px 0;
  backdrop-filter: blur(4px);
}
.hero-insight strong { color: var(--orange); }

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stat-row > div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 1rem .9rem;
  border-left: 3px solid var(--orange);
  transition: background .2s, transform .2s;
}
.hero-stat-row > div:hover {
  background: rgba(244,118,28,.12);
  transform: translateY(-2px);
}
.hero-stat-row strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--orange);
  line-height: 1;
  letter-spacing: .5px;
}
.hero-stat-row span {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  display: block;
  margin-top: .35rem;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .hero-stat-row { grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 2rem; padding-top: 1.25rem; }
  .hero-stat-row > div { padding: .8rem .75rem; }
  .hero-stat-row strong { font-size: 1.5rem; }
  .hero-stat-row span { font-size: .72rem; margin-top: .3rem; }
}

/* ----- "Ik zoek" tegels ----- */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr; } }
.tile {
  display: block;
  background: var(--white);
  padding: 1.5rem;
  border: 2px solid var(--grey-300);
  text-decoration: none !important;
  color: var(--black);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  position: relative;
  min-height: 170px;
  border-radius: var(--radius);
}
.tile:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile .tile-eyebrow { font-size: .8rem; color: var(--grey-500); text-transform: uppercase; letter-spacing: .1em; }
.tile h3 { margin: .8rem 0 .3rem; font-size: 1.4rem; }
.tile .tile-arrow {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  font-family: sans-serif; color: var(--orange); font-weight: 700;
  transition: transform .2s var(--ease);
}
.tile:hover .tile-arrow { transform: translateX(6px); }

/* ----- pijler-card ----- */
.pillar-card {
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.18); }
.pillar-card .pillar-icon { width: 48px; height: 48px; color: var(--orange); margin-bottom: 1rem; }
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 6px; width: 60px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.pillar-card:hover::before { width: 120px; }
.pillar-card h3 { color: var(--white); }
.pillar-card .pillar-belofte { font-size: 1.05rem; margin: .5rem 0 1rem; }
.pillar-card .pillar-voor { font-size: .85rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }

/* ----- impact stats ----- */
.stat-card {
  text-align: left;
  padding: 1.5rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease);
}
.stat-card:hover { transform: scale(1.03); }
.stat-card::after {
  content: "";
  position: absolute;
  top: -20%; right: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  pointer-events: none;
}
.stat-card .num { font-family: 'Anton', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1; }
.stat-card .label { display: block; font-size: .9rem; margin-top: .5rem; }

/* ----- logos ----- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.logo-grid .logo-item {
  background: var(--white);
  border: 1px solid var(--grey-300);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  border-radius: var(--radius);
}
.logo-grid .logo-item:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.logo-grid .logo-item img { max-height: 80px; max-width: 100%; height: auto; width: auto; object-fit: contain; }

/* ----- ecosysteem visual ----- */
.eco-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .eco-visual { grid-template-columns: 1fr 1.1fr; }
}
.eco-svg-wrap { background: rgba(255,255,255,.03); padding: 1.5rem 1rem; border-radius: var(--radius); border: 1px solid rgba(244,118,28,.2); }
.eco-svg-wrap svg { width: 100%; height: auto; }
.eco-image-wrap { background: rgba(255,255,255,.04); padding: 1.25rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); }
.eco-image-wrap img { width: 100%; height: auto; display: block; border-radius: calc(var(--radius) - 4px); }

/* compacte pijler-cards (homepage) */
.pillars-compact .pillar-card { padding: 1.25rem 1.25rem 1.5rem; }
.pillars-compact .pillar-card .pillar-icon { width: 36px; height: 36px; margin-bottom: .65rem; }
.pillars-compact .pillar-card h3 { font-size: 1.15rem; margin: 0 0 .35rem; }
.pillars-compact .pillar-card .pillar-belofte { font-size: .98rem; margin: 0; }

/* ----- case-card ----- */
.case-card {
  background: var(--white);
  border: 2px solid var(--grey-300);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.case-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-card .case-tag {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: .25rem .55rem; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1rem; align-self: flex-start;
  border-radius: 2px;
}
.case-card h3 { margin-bottom: .4rem; }
.case-card .case-quote { font-style: italic; color: var(--grey-700); font-size: .98rem; }
.case-card .case-link { margin-top: auto; padding-top: 1rem; font-weight: 700; color: var(--orange); }
.case-card .case-link::after { content: " →"; transition: transform .2s var(--ease); display: inline-block; }
.case-card:hover .case-link::after { transform: translateX(4px); }

/* ----- FAQ ----- */
.faq-item {
  border-bottom: 1px solid var(--grey-300);
  padding: 1rem 0;
}
.faq-item summary {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .02em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .25rem 0;
  text-transform: uppercase;
  color: var(--black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-body { padding: .75rem 0 .25rem; color: var(--grey-700); line-height: 1.7; }
  color: var(--black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--orange); font-size: 1.4rem; flex: 0 0 auto; transition: transform .2s var(--ease); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: .75rem 0 .25rem; color: var(--grey-700); line-height: 1.7; }
.faq-item .faq-body p { margin: 0 0 .5rem; }
.faq-list .faq-item { padding: 1rem 0; }

/* ===== Component-styling die ontbrak ===== */

/* utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.divider.center { margin-inline: auto; }

/* trust-row & badges (oude stijl: oranje icon-block + transparant op dark) */
.trust-row {
  display: flex; flex-wrap: wrap;
  gap: .85rem 1.5rem;
  margin-top: 1.5rem;
  align-items: center;
}
.trust-badge {
  display: inline-flex; align-items: center;
  gap: .65rem;
  font-size: .92rem;
  color: rgba(255,255,255,.92);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1.4;
}
.trust-badge svg {
  width: 16px; height: 16px;
  flex: 0 0 28px;
  color: var(--orange);
  background: rgba(244,118,28,.12);
  border: 1px solid rgba(244,118,28,.4);
  padding: 5px;
  border-radius: 6px;
  box-sizing: content-box;
}
.trust-badge strong { color: #fff; font-weight: 700; }
@media (max-width: 700px) {
  .trust-row { gap: .65rem; margin-top: 1.25rem; flex-direction: column; align-items: flex-start; }
  .trust-badge { font-size: .85rem; }
}

/* hero-stat-row duplicate verwijderd */
.hero-quote { margin-top: 2rem; max-width: 60ch; }
.hero-quote blockquote { font-style: italic; color: rgba(255,255,255,.92); margin: 0; padding-left: 1rem; border-left: 3px solid var(--orange); font-size: 1.05rem; }
.quote-meta { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .5rem; padding-left: 1rem; }
.hero-insight { background: rgba(255,255,255,.08); padding: .75rem 1rem; border-left: 3px solid var(--orange); margin: 1rem 0; font-size: .98rem; color: rgba(255,255,255,.92); border-radius: 4px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* goal-card + goal-grid */
.goal-card { background: #fff; border: 1px solid var(--grey-300); border-radius: 8px; padding: 1.5rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease); border-top: 3px solid var(--orange); display: flex; flex-direction: column; }
.goal-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.goal-card h4 { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 .5rem; color: var(--black); }
.goal-card p { color: var(--grey-700); line-height: 1.6; font-size: .98rem; }
.goal-icon { width: 32px; height: 32px; color: var(--orange); margin-bottom: .75rem; flex: 0 0 auto; }
.goal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }

/* callout */
.callout { background: #fff8ef; border: 1px solid #ffd9b5; border-left: 4px solid var(--orange); border-radius: 6px; padding: 1.25rem 1.5rem; color: var(--grey-700); line-height: 1.6; }
.callout strong { display: block; color: var(--orange); font-family: 'Anton', sans-serif; letter-spacing: .5px; margin-bottom: .5rem; }

/* Lead-magnet forms (kennisbank): naam + email + button stack */
.leadmagnet-form { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.leadmagnet-form input[type=text],
.leadmagnet-form input[type=email] {
  width: 100%; padding: .7rem .9rem; font-size: 16px;
  border: 1px solid var(--grey-300); border-radius: 4px;
  font-family: inherit; min-height: 44px; box-sizing: border-box;
  background: #fff;
}
.leadmagnet-form input:focus { outline: 2px solid var(--orange); outline-offset: -1px; border-color: var(--orange); }
.leadmagnet-form button { width: 100%; min-height: 44px; padding: .7rem 1rem; }
.leadmagnet-form .form-msg { font-size: .85rem; color: #b13030; margin-top: .15rem; min-height: 1rem; }
.leadmagnet-form .form-msg.success { color: #1a7d3e; }
.leadmagnet-form .form-msg:empty { display: none; }
.leadmagnet-form button:disabled { opacity: .65; cursor: not-allowed; }
.callout ul { margin: .5rem 0 0; padding-left: 1.2rem; }
.callout li { margin-bottom: .25rem; }

/* quote-card */
.quote-card { background: #fff; border-radius: 8px; padding: 1.5rem; border: 1px solid var(--grey-300); border-top: 3px solid var(--orange); }
.quote-card blockquote { margin: 0 0 .75rem; font-style: italic; color: var(--grey-700); line-height: 1.5; }
.quote-card .quote-meta { padding: 0; color: var(--grey-500); font-size: .85rem; }

/* pyramid */
.pyramid { display: flex; flex-direction: column; align-items: center; gap: .5rem; max-width: 360px; margin-inline: auto; }
.pyramid .step { background: var(--orange); color: #fff; padding: .65rem 1.5rem; font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; text-align: center; border: 2px solid var(--orange); width: 100%; }
.pyramid .step:nth-child(2) { width: 85%; background: #fff; color: var(--black); }
.pyramid .step:nth-child(3) { width: 70%; }
.pyramid .step:nth-child(4) { width: 55%; }

/* step-list (genummerde stappen) */
.step-list { list-style: none; counter-reset: step; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; max-width: 720px; margin-inline: auto; }
.step-list li { counter-increment: step; display: flex; gap: 1.25rem; padding: 1rem; background: #fff; border-radius: 8px; border-left: 4px solid var(--orange); }
.step-list li::before { content: counter(step); font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--orange); line-height: 1; flex: 0 0 auto; min-width: 2rem; }
.step-list li h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.step-list li p { color: var(--grey-700); line-height: 1.55; margin: 0; font-size: .95rem; }

/* eyebrow + accent + divider */
/* (eyebrow override removed — using cleaner Inter version above) */
.divider { width: 60px; height: 3px; background: var(--orange); margin: 1rem 0; }
.divider.center { margin-inline: auto; }

/* sticky-cta */
.sticky-cta { position: fixed; bottom: 1.25rem; right: 1.25rem; background: var(--orange); color: #fff; padding: .8rem 1.25rem; border-radius: 50px; box-shadow: 0 8px 24px rgba(0,0,0,.25); font-weight: 500; text-decoration: none; z-index: 90; font-size: .92rem; transition: transform .2s var(--ease); }
.sticky-cta:hover { transform: translateY(-2px); color: #fff; }
@media (max-width: 720px) { .sticky-cta { left: 1rem; right: 1rem; text-align: center; } }

/* cta-floater */
.cta-floater { position: fixed; bottom: 1.25rem; left: 1.25rem; background: #fff; color: var(--black); padding: 1rem 1.25rem; max-width: 280px; border-radius: 8px; box-shadow: 0 12px 32px rgba(0,0,0,.18); z-index: 95; border-left: 4px solid var(--orange); font-size: .9rem; }
.cta-floater .close { position: absolute; top: .25rem; right: .5rem; background: none; border: 0; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--grey-500); }
.cta-floater strong { font-family: 'Anton', sans-serif; letter-spacing: .5px; display: block; margin-bottom: .25rem; }
@media (max-width: 720px) { .cta-floater { display: none; } }

/* footer */
.site-footer { background: var(--black); color: rgba(255,255,255,.78); padding: 3rem 0 1.5rem; margin-top: 4rem; font-size: .92rem; }
.site-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; }
.site-footer h4 { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin: 0 0 .75rem; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .35rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: rgba(255,255,255,.55); }
.subbrands { display: flex; flex-wrap: wrap; gap: 1rem; }
.subbrands a { color: rgba(255,255,255,.78); }
.footer-bottom a { color: rgba(255,255,255,.78); }

/* form */
.form-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.form-row input[type="email"] { flex: 1 1 200px; padding: .75rem 1rem; border: 1px solid var(--grey-300); border-radius: 4px; font-family: inherit; font-size: 1rem; }
.form-row button { flex: 0 0 auto; }
.form-msg { margin-top: .5rem; font-size: .9rem; color: var(--grey-700); }
.form-msg.success { color: #1a7d3e; }

/* article-styling (blog/case pages) */
.article { padding: 0; }
.article-header { color: #fff; }
.article-body { font-size: 1.05rem; line-height: 1.7; color: var(--grey-700); }
.article-body h2 { font-size: 1.6rem; margin: 2rem 0 .75rem; color: var(--black); }
.article-body h3 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; color: var(--black); }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin: .75rem 0 1.25rem; }
.article-body li { margin-bottom: .35rem; }
.article-body p { margin: 0 0 1rem; }
.article-body strong { color: var(--black); }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: .9rem; color: rgba(255,255,255,.85); }
.meta-item { background: rgba(255,255,255,.1); padding: .35rem .75rem; border-radius: 4px; }
.article-cta { margin-top: 2.5rem; }

/* svg-veiligheid voor onderschrift svgs zonder explicit size */
.hero svg:not(.brand-mark) { max-width: 100%; height: auto; }


/* article-main wrapper voor blog/case pagina's */
.article-main { padding: 0; background: var(--white); }

/* quote-band (homepage statement-blok) */
.quote-band { position: relative; }

/* FIX 4 (v3.45 + v3.49): Quote-band mobile — minder padding, kleinere typografie */
@media (max-width: 880px) {
  .quote-band {
    padding: 3rem 1rem !important;
  }
  /* Hoofdquote (heeft Anton-font) — duidelijk kleiner */
  .quote-band p[style*="Anton"] {
    font-size: clamp(1.15rem, 5vw, 1.55rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }
  /* Subtekst onder de divider */
  .quote-band p[style*="58ch"] {
    font-size: .92rem !important;
    line-height: 1.55 !important;
  }
  /* "— David Clemens, mede-oprichter" attribution mini */
  .quote-band p[style*="letter-spacing"] {
    font-size: .68rem !important;
    letter-spacing: .5px !important;
    margin-top: .5rem !important;
  }
  /* Grote opening quote-glyph kleiner */
  .quote-band div[aria-hidden="true"][style*="5rem"] {
    font-size: 3rem !important;
    margin-bottom: .25rem !important;
  }
  /* Divider iets compacter */
  .quote-band div[style*="60px"][style*="3px"] {
    margin: 0 auto 1rem !important;
  }
}

/* v3.49: Newsletter input centreren op mobiel (STRAATKENNIS-blok) */
@media (max-width: 880px) {
  .section-dark .form-row input[type=email] {
    text-align: center;
  }
  .section-dark .form-row input[type=email]::placeholder {
    text-align: center;
  }
}

/* v3.49: Hero-quotes carousel (voor-onderwijs) — 1 quote zichtbaar, fade rotate */
.hero-quotes-carousel { position: relative; }
.hero-quotes-carousel .hq-slide {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease;
  pointer-events: none;
}
.hero-quotes-carousel .hq-slide.active {
  position: relative;
  opacity: 1; visibility: visible;
  pointer-events: auto;
}
.hero-quotes-carousel .hq-dots { position: relative; z-index: 2; }
.hero-quotes-carousel .hq-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  display: inline-block;
  transition: background .25s ease, transform .25s ease;
}
.hero-quotes-carousel .hq-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}
@media (max-width: 880px) {
  .hero-quotes-carousel { min-height: 170px; }
}


/* ============================================================ */
/* MOBILE-FIRST OVERHAUL (mei 2026)                            */
/* Best practices: WCAG 2.5.5 (44×44px touch), thumb zone,      */
/* mobile-first min-width queries, performance.                 */
/* ============================================================ */

/* === Base mobile improvements (geldt voor alle schermen) === */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }

/* Tap-target minimum 44×44px voor alle interactieve elementen */
.btn, button, a.tile, a.tile-arrow, .menu-toggle, .nav-main a, .pbtn, .case-link, .pcta, .shop-side a, .shop-filter a {
  min-height: 44px;
}

/* Container padding ruimer op mobile */
.container, .container-narrow { padding-left: 1.25rem; padding-right: 1.25rem; }

/* Headers en typografie clamp (overal: schaalt netjes mee) */
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

/* Card-styling base (touch-friendly link area's blijven overal) */
.case-card .case-link, .product-card .pcta, .prod .pcta {
  padding: .75rem 0; min-height: 44px; display: inline-flex; align-items: center;
}

/* === Mobile-only overrides (v3.45 — visual polish) === */
@media (max-width: 880px) {
  /* FIX 2: Hero ademruimte — was 2rem (te krap), nu fluid 3.5-5rem */
  .hero .container { padding-top: clamp(3.5rem, 12vw, 5rem); padding-bottom: clamp(3rem, 10vw, 4.5rem); }
  /* FIX 3: H1 clean clamp + line-height */
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 1.1; letter-spacing: -.01em; }
  .hero .lead { font-size: 1.02rem; line-height: 1.55; margin-top: 1rem; }
  .hero-insight { font-size: .96rem; padding: 1rem 1.1rem; line-height: 1.5; }

  /* Hero-quote — was zonder mobile-styling, nu compacter */
  .hero-quote blockquote { font-size: .95rem; line-height: 1.5; }
  .hero-quote .quote-meta { font-size: .82rem; }

  /* Hero-actions: verticaal stacken, full-width */
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; margin-top: 1.5rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; padding: .85rem 1rem; font-size: 1rem; }

  /* FIX 6: Sections meer spacing — was 2rem, nu 2.5rem voor visuele rust */
  .section { padding: 2.5rem 0; }

  /* Grid 2/3/4 → 1 column op mobile */
  .grid.grid-2, .grid.grid-3, .grid.grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Card-padding compacter, maar niet te krap */
  .goal-card, .case-card, .pillar-card, .quote-card, .product-card, .prod {
    padding: 1.5rem 1.25rem;
  }

  /* Eyebrow-chips mooier op mobile */
  .eyebrow { font-size: .72rem; padding: .35rem .8rem; }
}

/* Forms touch-friendly + compacte newsletter op mobile */
@media (max-width: 880px) {
  .form-row { flex-direction: column; gap: .5rem; }
  .form-row input[type=email] {
    flex: 0 0 auto; height: 48px; min-height: 48px; max-height: 48px;
    width: 100%; padding: 0 1rem; font-size: 16px; box-sizing: border-box;
  }
  .form-row button {
    flex: 0 0 auto; min-height: 48px; height: 48px; width: 100%;
    padding: 0 1rem; box-sizing: border-box;
  }
  /* Newsletter-sectie compacter */
  .section-dark { padding: 2rem 0; }
  .section-dark h2 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); margin-bottom: .5rem; }
  .section-dark .lead { font-size: .95rem; margin-bottom: 1rem; }
  .section-dark .eyebrow { font-size: .75rem; padding: .35rem .75rem; }
  .section-dark form.form-row { margin-top: 1rem !important; }
}

/* === Mobile nav: hamburger menu als bottom-sheet === */
@media (max-width: 880px) {
  .site-header .inner { padding-left: 1rem; padding-right: 1rem; min-height: 60px; }
  .menu-toggle { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; color: var(--black); cursor: pointer; }
  .menu-toggle svg { width: 28px; height: 28px; }
  .nav-main {
    position: fixed; top: 60px; left: 0;
    width: 100vw; max-width: 100vw;
    height: calc(100vh - 60px);
    background: #fff; z-index: 100;
    display: flex !important;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 1.25rem 5.5rem;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .25s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main a {
    padding: .65rem .25rem; border-bottom: 1px solid var(--grey-300);
    font-size: 1rem; font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600; letter-spacing: .015em;
    text-transform: none;
    min-height: 44px; display: flex; align-items: center;
    color: var(--black); text-decoration: none;
  }
  .nav-main a.nav-cta {
    background: var(--orange); color: #fff;
    margin-top: 1rem; padding: .9rem 1.25rem;
    border-radius: 6px; border: 0; text-align: center; justify-content: center;
    font-size: 1rem;
  }
  body.menu-open { overflow: hidden; }
}

/* === Bottom tab-bar voor mobile (thumb-zone navigatie) === */
.bottom-tabs {
  position: fixed; bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff; border-top: 1px solid var(--grey-300);
  display: flex;
  z-index: 90;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 20px rgba(0,0,0,.10);
  box-sizing: border-box;
  /* Hardware acceleration — voorkomt dat fixed positioning meeschuift bij scroll op iOS Safari */
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 881px) {
  .bottom-tabs { display: none; }
}
.bottom-tabs a {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: .45rem .1rem;
  min-height: 56px;
  text-decoration: none; color: var(--grey-700);
  font-size: .62rem; line-height: 1.1;
  gap: .15rem;
  text-align: center;
  min-width: 0;
  letter-spacing: 0;
}
.bottom-tabs a svg { width: 19px; height: 19px; flex-shrink: 0; }
.bottom-tabs a span { white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 380px) {
  .bottom-tabs a { font-size: .56rem; padding: .4rem .05rem; }
  .bottom-tabs a svg { width: 17px; height: 17px; }
}
.bottom-tabs a.active { color: var(--orange); }
.bottom-tabs a.active svg { color: var(--orange); }
.bottom-tabs a:hover { color: var(--orange); }

@media (max-width: 880px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .sticky-cta { display: none; }
  .cta-floater { display: none; }
}

/* === Mobile shop layout: alleen .shop-filter chips tonen, side-bar verbergen === */
@media (max-width: 880px) {
  .shop-layout { grid-template-columns: 1fr; gap: 1rem; padding: 1rem 0; }
  .shop-side { display: none; }
  .shop-filter { position: sticky; top: 0; background: #f8f8f8; z-index: 10; padding: .65rem .25rem; margin: 0 -.25rem 1rem; box-shadow: 0 2px 8px rgba(0,0,0,.04); -webkit-overflow-scrolling: touch; flex-wrap: nowrap; overflow-x: auto; }
  .shop-filter::-webkit-scrollbar { display: none; }
  .shop-filter a { flex: 0 0 auto; min-height: 40px; display: flex; align-items: center; }
  .shop-filter-meta { display: none; }
}

/* === Performance === */
img { content-visibility: auto; }

/* === Lead-magnet form with dropdown === */
.leadmagnet-multi { background: #fff; border-radius: 10px; padding: 1.75rem; box-shadow: 0 4px 16px rgba(0,0,0,.06); border: 1px solid var(--grey-200); }
.lm-select-wrap { margin-bottom: 1.25rem; }
.lm-select-wrap label { display: block; font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .5px; color: var(--orange); font-size: .9rem; margin-bottom: .5rem; }
.lm-select-wrap select {
  width: 100%; padding: .75rem 2.5rem .75rem 1rem; min-height: 48px;
  border: 2px solid var(--grey-300); border-radius: 6px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4761C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 1rem center / 18px;
  font-family: inherit; font-size: 16px; color: var(--black);
  appearance: none; -webkit-appearance: none;
  cursor: pointer; box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.lm-select-wrap select:hover { border-color: var(--orange); }
.lm-select-wrap select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,118,28,.15); }
.lm-select-wrap select option { padding: .5rem; font-size: 15px; }
.lm-fields { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: 1rem; }
.lm-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--grey-700); margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .5px; }
.lm-field input { width: 100%; padding: .7rem .9rem; min-height: 44px; border: 1px solid var(--grey-300); border-radius: 4px; font-family: inherit; font-size: 16px; box-sizing: border-box; background: #fff; }
.lm-field input:focus { outline: 2px solid var(--orange); outline-offset: -1px; border-color: var(--orange); }
.leadmagnet-multi .lm-submit { width: 100%; }
.leadmagnet-multi .form-msg { margin-top: .85rem; font-size: .9rem; color: #b13030; min-height: 1rem; text-align: center; }
.leadmagnet-multi .form-msg.success { color: #1a7d3e; }
.leadmagnet-multi .form-msg:empty { display: none; }
@media (max-width: 880px) {
  .leadmagnet-multi { padding: 1.25rem; }
  .lm-fields { grid-template-columns: 1fr; }
}

/* === Article carousel === */
.carousel { position: relative; padding: 0 44px; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 1.5rem; transition: transform .4s cubic-bezier(.4,0,.2,1); will-change: transform; }
.carousel-track > * { flex: 0 0 calc((100% - 3rem) / 3); min-width: 0; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; background: #fff; border: 1px solid var(--grey-300); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.08); color: var(--orange); z-index: 2; transition: background .15s, transform .15s, box-shadow .15s; }
.carousel-btn:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.05); border-color: var(--orange); box-shadow: 0 6px 16px rgba(244,118,28,.3); }
.carousel-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.carousel-btn:disabled { opacity: .35; cursor: not-allowed; }
.carousel-btn:disabled:hover { background: #fff; color: var(--orange); transform: translateY(-50%); }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (max-width: 880px) {
  .carousel { padding: 0 0 .5rem; }
  .carousel-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .carousel-viewport::-webkit-scrollbar { display: none; }
  .carousel-track { transform: none !important; transition: none; }
  .carousel-track > * { flex: 0 0 85%; scroll-snap-align: start; }
  .carousel-btn { display: none; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .carousel-track > * { flex: 0 0 calc((100% - 1.5rem) / 2); }
}




/* section-light overrides verwijderd, overal hero-stijl */

/* === Cases tabs + photo carousel (LINES-style, Urban Basic kleuren) === */
.cases-tabs {
  display: flex; flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.cases-tab {
  background: #fff;
  border: 2px solid var(--grey-300);
  border-radius: 50px;
  padding: .55rem 1.5rem;
  font-family: 'Anton', sans-serif;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-700);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cases-tab:hover { border-color: var(--orange); color: var(--orange); }
.cases-tab.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.cases-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
}
.case-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  display: flex;
  align-items: stretch;
}
.case-photo.active { opacity: 1; pointer-events: auto; z-index: 2; }
.case-overlay-title {
  position: absolute;
  top: 28%; left: 5%;
  background: rgba(255,255,255,.96);
  padding: 1rem 1.75rem 1rem 1.4rem;
  border-left: 6px solid var(--orange);
  border-radius: 4px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 1px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
  white-space: nowrap;
  text-transform: uppercase;
}
.case-overlay-title .case-overlay-x {
  color: var(--orange);
  font-size: .85em;
  font-weight: 800;
  line-height: 1;
}
.case-overlay-title .case-overlay-brand {
  font-size: .85em;
  color: var(--black);
}
.case-info-card {
  position: absolute;
  right: 1.5rem; bottom: 1.5rem;
  background: rgba(255,255,255,.97);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  max-width: 360px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  border-top: 4px solid var(--orange);
}
.case-info-card p {
  color: var(--grey-700);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.case-info-card .btn {
  width: 100%;
}

@media (max-width: 880px) {
  .cases-stage { height: 420px; }
  .case-overlay-title { top: 18%; padding: .65rem 1rem .65rem .9rem; border-left-width: 5px; font-size: clamp(1.4rem, 6.5vw, 2rem); gap: .5rem; }
  .case-info-card { right: 1rem; left: 1rem; bottom: 1rem; max-width: none; padding: 1.1rem 1.15rem; }
  .case-info-card p { font-size: .88rem; line-height: 1.5; }
  .cases-tab { padding: .45rem 1rem; font-size: .75rem; }
}

/* ===== Benefits block (interactief tablist + photo, DAREcademy stijl) ===== */
.benefits-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}
@media (min-width: 880px) {
  .benefits-block { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.benefits-tablist {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-self: center;
}
.benefit-tab {
  background: transparent;
  border: 0;
  text-align: left;
  padding: .85rem 1rem .85rem 1.5rem;
  cursor: pointer;
  position: relative;
  color: rgba(255,255,255,.55);
  transition: color .25s ease, background .25s ease;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-family: inherit;
}
.benefit-tab::before {
  content: "";
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--orange);
  border-radius: 2px;
  transition: height .3s ease;
}
.benefit-tab.active::before { height: 80%; }
.benefit-tab .benefit-title {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  transition: color .25s ease;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
}
.benefit-tab.active .benefit-title { color: #fff; }
.benefit-tab .benefit-desc {
  display: none;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
}
.benefit-tab.active .benefit-desc { display: block; }
.benefit-tab:hover:not(.active) .benefit-title { color: rgba(255,255,255,.95); }
.benefits-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  aspect-ratio: 4/5;
  max-height: 540px;
}
.benefits-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
}
.benefits-photo img.active { opacity: 1; }

/* ===== Hero video background ===== */
.hero { position: relative; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: brightness(.75) saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(12,12,12,.55) 70%, rgba(12,12,12,.85) 100%);
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }
.hero h1, .hero .lead, .hero .eyebrow, .hero .hero-quote, .hero .hero-stat-row, .hero .trust-row {
  color: #fff;
}
.hero .lead { color: rgba(255,255,255,.9); }
.hero .hero-quote blockquote { color: #fff; }
.hero .hero-stat-row strong, .hero .hero-stat-row span, .hero .hero-stat-row em {
  color: #fff;
}
.hero .trust-badge { color: #fff; }

/* ===== Logo marquee (slideshow) ===== */
.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  min-width: 200%;
  -webkit-animation: marquee-scroll 35s linear infinite;
          animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}
.logo-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  width: 180px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--grey-200);
  transition: transform .2s var(--ease), box-shadow .2s ease;
}
.logo-slide img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter .25s ease, transform .2s ease;
}
.logo-marquee:hover .logo-slide img,
.logo-slide:hover img {
  filter: grayscale(0);
}
.logo-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,.06);
}

/* Vierkante / portret logo's: meer hoogte, minder breedte zodat ze niet in een klein doosje verdwijnen */
.logo-slide img[src*="team-sportservice-utrecht"],
.logo-slide img[src*="younity"],
.logo-slide img[src*="bredaactief"] {
  max-height: 80px;
  max-width: 90px;
}

/* Heel brede / platte logo's: gebruik volledige breedte, beperk hoogte voor visuele balans */
.logo-slide img[src*="gemeente-huizen"],
.logo-slide img[src*="kvlo"],
.logo-slide img[src*="cios-nederland"],
.logo-slide img[src*="kenniscentrum-sport"],
.logo-slide img[src*="ssnb"] {
  max-height: 44px;
  max-width: 100%;
}

@keyframes marquee-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* FIX 1 (v3.45): Logo-marquee compacter op mobile */
@media (max-width: 880px) {
  .logo-marquee-track { gap: 1.25rem; }
  .logo-slide {
    height: 72px;
    width: 140px;
    padding: 8px 12px;
  }
  .logo-slide img { max-height: 44px; }
  .logo-slide img[src*="team-sportservice-utrecht"],
  .logo-slide img[src*="younity"],
  .logo-slide img[src*="bredaactief"] { max-height: 56px; max-width: 70px; }
  .logo-slide img[src*="gemeente-huizen"],
  .logo-slide img[src*="kvlo"],
  .logo-slide img[src*="cios-nederland"],
  .logo-slide img[src*="kenniscentrum-sport"],
  .logo-slide img[src*="ssnb"] { max-height: 32px; }
}

@-webkit-keyframes marquee-scroll {
  0%   { -webkit-transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .logo-marquee-track { gap: 2rem; animation-duration: 28s; }
  .logo-slide { height: 72px; width: 140px; padding: 8px 12px; }
  .logo-slide img { max-height: 48px; }
  .logo-slide img[src*="team-sportservice-utrecht"],
  .logo-slide img[src*="younity"],
  .logo-slide img[src*="bredaactief"] { max-height: 60px; max-width: 70px; }
  .logo-slide img[src*="gemeente-huizen"],
  .logo-slide img[src*="kvlo"],
  .logo-slide img[src*="cios-nederland"],
  .logo-slide img[src*="kenniscentrum-sport"],
  .logo-slide img[src*="ssnb"] { max-height: 36px; }
}



/* Benefits-photo: kleinere max-height op desktop voor schaalbalans */
@media (min-width: 880px) {
  .benefits-photo { max-height: 460px; aspect-ratio: 4/4.5; }
}

/* ===== Level vergelijkings-tabel (opleidingen) ===== */
.level-table-wrap { overflow-x: auto; margin-top: 2rem; }
.level-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  min-width: 720px;
}
.level-table thead th {
  background: var(--orange); color: #fff; padding: 1rem; text-align: left;
  font-family: 'Anton', sans-serif; font-size: 1.05rem; letter-spacing: .5px;
  text-transform: none;
}
.level-table thead th:first-child { background: var(--dark); }
.level-table .lt-badge {
  display: inline-block; background: rgba(255,255,255,.2);
  padding: .15rem .55rem; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .25rem;
}
.level-table tbody tr:not(:last-child) td, .level-table tbody tr:not(:last-child) th { border-bottom: 1px solid var(--grey-200); }
.level-table tbody th {
  background: var(--grey-100); padding: 1rem;
  text-align: left; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .92rem; color: var(--grey-700); width: 140px;
  text-transform: none; letter-spacing: 0;
}
.level-table tbody td { padding: 1rem; vertical-align: top; font-size: .95rem; line-height: 1.5; color: var(--black); }

/* ===== Leader cards (voor-gemeenten, "laatste-nieuws"-stijl) ===== */
.leader-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .leader-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .leader-cards { grid-template-columns: 1fr; } }
.leader-card {
  display: flex; flex-direction: column;
  background: #000; border-radius: 12px; overflow: hidden;
  text-decoration: none !important; color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.leader-photo {
  aspect-ratio: 1/1;
  background-size: cover; background-position: center;
  border-bottom: 3px solid var(--orange);
}
.leader-meta {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  padding: 1rem 1.1rem .5rem; font-size: .82rem;
}
.leader-tag {
  background: rgba(244,118,28,.15); color: var(--orange);
  padding: .2rem .6rem; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.leader-age { color: rgba(255,255,255,.55); font-weight: 500; }
.leader-name {
  margin: 0 1.1rem .5rem; font-size: 1.6rem;
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .5px;
  color: #fff;
}
.leader-impact {
  margin: 0 1.1rem 1rem; color: rgba(255,255,255,.78);
  font-size: .92rem; line-height: 1.45;
}
.leader-cta {
  margin: auto 1.1rem 1.25rem 1.1rem;
  color: var(--orange); font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .25rem;
  transition: gap .2s var(--ease);
}
.leader-card:hover .leader-cta { gap: .5rem; }

/* ===== Route tiles (voor-onderwijs, compact, naast elkaar) ===== */
.route-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 980px) { .route-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .route-grid { grid-template-columns: 1fr; } }
.route-tile {
  display: flex; flex-direction: column; gap: .65rem;
  background: #fff; border: 1px solid var(--grey-200);
  border-radius: 12px; padding: 1.25rem;
  text-decoration: none !important; color: var(--black);
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.route-tile:hover {
  transform: translateY(-3px); border-color: var(--orange);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
.route-tile h4 { margin: 0; font-size: 1.05rem; line-height: 1.25; }
.route-tile p { margin: 0; color: var(--grey-700); font-size: .92rem; line-height: 1.45; flex: 1; }
.route-tile .route-arrow {
  font-weight: 600; color: var(--orange); font-size: .9rem;
}
.route-badge {
  display: inline-block; align-self: flex-start;
  background: rgba(244,118,28,.12); color: var(--orange);
  padding: .25rem .6rem; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .7rem;
  letter-spacing: .04em; text-transform: uppercase;
}

/* ===== Route detail-blokken ===== */
.route-detail {
  display: grid; grid-template-columns: 380px 1fr; gap: 2.25rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--grey-200);
  scroll-margin-top: 80px;
}
.route-detail:first-child { border-top: 0; }
@media (max-width: 880px) {
  .route-detail { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.75rem 0; }
}
.rd-image {
  background-size: cover; background-position: center;
  border-radius: 12px; aspect-ratio: 1/1;
  width: 100%;
}
.rd-content h3 {
  margin: .65rem 0 .65rem;
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .5px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.rd-content ul { padding-left: 1.2rem; line-height: 1.65; margin: 1rem 0 1.5rem; color: var(--grey-700); }
.rd-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ===== Form polish (light + dark) ===== */
.form-grid {
  display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem;
}
.form-grid label {
  display: flex; flex-direction: column; gap: .4rem;
  color: rgba(255,255,255,.95); font-weight: 500; font-size: .9rem;
  letter-spacing: .01em;
}
.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid select,
.form-grid textarea {
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(255,255,255,.4); }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: 0;
  border-color: var(--orange);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(244,118,28,.2);
}
.form-grid select option { background: var(--dark); color: #fff; }
.form-grid textarea { resize: vertical; min-height: 96px; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row-grid { grid-template-columns: 1fr; } }
.form-grid .btn { margin-top: .5rem; }

/* Benefits-photo aspect-ratio kleiner zodat tekst+foto in balans */
.benefits-block { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 880px) { .benefits-block { grid-template-columns: 1fr; } }
.benefits-photo { aspect-ratio: 1/1; max-height: 380px; }


/* ===== WhatsApp button + footer-socials ===== */
.whatsapp-btn {
  background: rgba(37,211,102,.08) !important;
  border-color: #25D366 !important;
  color: #25D366 !important;
}
.whatsapp-btn:hover { background: #25D366 !important; color: #fff !important; }
.footer-socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }


/* ===== Route picker tiles (homepage) — premium 3 stijlen ===== */
.route-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 880px) { .route-pick-grid { grid-template-columns: 1fr; } }

.route-pick {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2.25rem 1.75rem 1.75rem;
  border-radius: 18px;
  text-decoration: none !important;
  min-height: 240px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease;
  isolation: isolate;
}
.route-pick::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: inherit;
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
}
.route-pick:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
}

/* Eyebrow pill */
.route-pick .rp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem .9rem;
  border-radius: 50px;
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 1.25rem;
}

/* H3 */
.route-pick h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-family: 'Anton', sans-serif;
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
  flex: 1;
}

/* Pijltje in oranje cirkel rechtsonder */
.route-pick .rp-arrow {
  align-self: flex-end;
  margin-top: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-family: sans-serif;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), background .25s ease;
}
.route-pick:hover .rp-arrow { transform: translateX(6px) scale(1.05); }

/* === Variant 1: oranje (gemeente — primair, sterk gradient) === */
.route-pick.route-pick-orange {
  background: linear-gradient(135deg, #F4761C 0%, #E16210 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(244,118,28,.25);
}
.route-pick.route-pick-orange::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  z-index: -1;
}
.route-pick.route-pick-orange .rp-eyebrow {
  color: var(--orange) !important;
  background: #fff !important;
}
.route-pick.route-pick-orange h3 { color: #fff; }
.route-pick.route-pick-orange .rp-arrow {
  background: rgba(0,0,0,.18);
  color: #fff;
}
.route-pick.route-pick-orange:hover .rp-arrow { background: var(--black); }
.route-pick.route-pick-orange:hover { box-shadow: 0 18px 36px rgba(244,118,28,.4); }

/* === Variant 2: dark (onderwijs — sterk gradient) === */
.route-pick.route-pick-dark {
  background: linear-gradient(135deg, #2A3548 0%, #16202E 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.route-pick.route-pick-dark::after {
  content: "";
  position: absolute; right: -50px; bottom: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(244,118,28,.08);
  z-index: -1;
}
.route-pick.route-pick-dark .rp-eyebrow {
  color: #fff !important;
  background: var(--orange) !important;
}
.route-pick.route-pick-dark h3 { color: #fff; }
.route-pick.route-pick-dark .rp-arrow {
  background: var(--orange);
  color: #fff;
}
.route-pick.route-pick-dark:hover .rp-arrow { background: #fff; color: var(--orange); }
.route-pick.route-pick-dark:hover { box-shadow: 0 18px 36px rgba(0,0,0,.32); }

/* === Variant 3: outline → wit met sterke accent-streep en hover-fill === */
.route-pick.route-pick-outline {
  background: #fff !important;
  color: var(--black) !important;
  border: 2px solid var(--black);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.route-pick.route-pick-outline::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--orange);
  z-index: -1;
}
.route-pick.route-pick-outline .rp-eyebrow {
  color: #fff !important;
  background: var(--black) !important;
}
.route-pick.route-pick-outline h3 { color: var(--black); }
.route-pick.route-pick-outline .rp-arrow {
  background: var(--black);
  color: #fff;
}
.route-pick.route-pick-outline:hover { background: var(--black) !important; color: #fff !important; box-shadow: 0 18px 36px rgba(0,0,0,.25); }
.route-pick.route-pick-outline:hover h3 { color: #fff; }
.route-pick.route-pick-outline:hover .rp-eyebrow { background: var(--orange) !important; color: #fff !important; }
.route-pick.route-pick-outline:hover .rp-arrow { background: var(--orange); color: #fff; }

/* Tile-achtergronden: 3 verschillende stijlen */
.route-pick.route-pick-orange {
  background: var(--orange) !important;
  color: #fff !important;
}
.route-pick.route-pick-dark {
  background: var(--dark) !important;
  color: #fff !important;
}
.route-pick.route-pick-outline {
  background: #fff !important;
  color: var(--black) !important;
  border: 2px solid var(--black);
}
.route-pick.route-pick-orange h3, .route-pick.route-pick-dark h3 { color: #fff; }
.route-pick.route-pick-outline:hover { background: var(--black) !important; color: #fff !important; }
.route-pick.route-pick-outline:hover h3 { color: #fff; }

.route-pick .rp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 4px;
  align-self: flex-start;
  display: inline-block;
}
.route-pick.route-pick-orange .rp-eyebrow {
  color: var(--black) !important;
  background: #fff !important;
}
.route-pick.route-pick-dark .rp-eyebrow {
  color: #fff !important;
  background: var(--orange) !important;
}
.route-pick.route-pick-outline .rp-eyebrow {
  color: #fff !important;
  background: var(--black) !important;
}
.route-pick.route-pick-outline:hover .rp-eyebrow {
  color: var(--black) !important;
  background: #fff !important;
}

.route-pick h3 {
  margin: 0; font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-family: 'Anton', sans-serif; line-height: 1.15; text-transform: uppercase;
}
.route-pick .rp-arrow {
  font-size: 1.6rem; line-height: 1; align-self: flex-end;
  transition: transform .2s var(--ease);
}
.route-pick:hover .rp-arrow { transform: translateX(4px); }



/* ===== KPI-grid: 6 beleidsdoelen extra accent (oranje top-rand) ===== */
.kpi-grid .goal-card {
  border-top: 4px solid var(--orange);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.kpi-grid .goal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
}
.kpi-grid .goal-card .goal-icon {
  color: var(--orange);
  width: 32px; height: 32px;
}
.kpi-grid .goal-card h4 {
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .5px;
  font-size: 1rem;
}

/* ===== Quick form (Frontliner / Urban Leaders aanvraag op gemeente-pagina) ===== */
.quick-form input[type="text"], .quick-form input[type="email"] {
  width: 100%; padding: .75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color .2s, background .2s;
}
.quick-form input::placeholder { color: rgba(255,255,255,.4); }
.quick-form input:focus {
  outline: 0; border-color: var(--orange); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(244,118,28,.2);
}

/* ===== WhatsApp prominent button (groene CTA) ===== */
.btn-whatsapp-prominent {
  background: #25D366 !important; color: #fff !important;
  border: 2px solid #25D366;
  font-weight: 700;
}
.btn-whatsapp-prominent:hover { background: #1da851 !important; border-color: #1da851; }


/* ===== Ik zoek-tiles (voor-onderwijs filter) ===== */
.iks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}
@media (max-width: 720px) { .iks-grid { grid-template-columns: 1fr; } }
.iks-tile {
  display: flex; flex-direction: column; gap: .35rem;
  background: #fff; padding: 1.5rem 1.25rem;
  border-radius: 10px; border: 2px solid var(--grey-300);
  text-decoration: none !important; color: var(--black);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-align: left;
}
.iks-tile:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,.08); }
.iks-tile strong {
  font-family: 'Anton', sans-serif; font-size: 1.5rem; letter-spacing: 1px;
  color: var(--orange);
}
.iks-tile span { color: var(--grey-700); font-size: .95rem; }


/* ===== Thema-banners (AANBOD/KENNIS/MATERIAAL) ===== */
.theme-banner {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  position: relative;
}
.theme-banner .theme-num {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem; line-height: 1;
  background: rgba(255,255,255,.18);
  padding: .5rem .9rem;
  border-radius: 8px;
}
.theme-banner .theme-label {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem; letter-spacing: 1px;
  text-transform: uppercase;
}
.theme-banner .theme-tag {
  margin-left: auto;
  font-size: .95rem;
  opacity: .9;
  font-weight: 500;
}
.theme-aanbod { background: var(--orange); }
.theme-kennis { background: var(--dark); }
.theme-materiaal { background: var(--black); }
@media (max-width: 700px) {
  .theme-banner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .theme-banner .theme-tag { margin-left: 0; font-size: .88rem; }
  .theme-banner .theme-num { font-size: 1.6rem; padding: .35rem .6rem; }
}

/* Thema-tag-inline (kleinere variant in eyebrows) */
.theme-tag-inline {
  background: var(--black) !important;
  color: #fff !important;
}

/* ===== Ik-zoek tiles upgrade ===== */
.iks-tile { position: relative; }
.iks-tile .iks-num {
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem; color: var(--grey-300);
  background: none; padding: 0;
}
.iks-tile strong {
  font-family: 'Anton', sans-serif; font-size: 1.5rem; letter-spacing: 1px;
  color: var(--orange);
}
.iks-tile .iks-sub {
  color: var(--grey-700); font-size: .92rem; line-height: 1.4;
}
.iks-tile .iks-arrow {
  margin-top: .35rem;
  color: var(--orange); font-weight: 600; font-size: 1rem;
}
.iks-tile:hover .iks-num { color: var(--orange); }


/* ===== Founder-block (over-ons oprichters layout) ===== */
.founder-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.founder-block:last-of-type { margin-bottom: 0; }
@media (max-width: 880px) {
  .founder-block { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
}
.founder-reverse {
  grid-template-columns: 1fr 380px;
}
.founder-reverse .founder-photo { order: 2; }
.founder-reverse .founder-text { order: 1; }
@media (max-width: 880px) {
  .founder-reverse { grid-template-columns: 1fr; }
  .founder-reverse .founder-photo { order: 1; }
  .founder-reverse .founder-text { order: 2; }
}
.founder-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--grey-200);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder-text h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 .25rem;
}
.founder-text .quote-meta {
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.founder-text p { color: var(--grey-700); line-height: 1.7; margin: 0 0 .75rem; }
.founder-text p:last-of-type { margin-bottom: 0; }

/* ============================================================
   Offerte-mandje (Urban Basic cart)
   ============================================================ */
.ub-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  padding: .45rem .85rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  position: relative;
  transition: background .15s, color .15s, transform .12s;
}
.ub-cart-btn:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.ub-cart-btn .ub-cart-label { letter-spacing: .02em; }
.ub-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  background: var(--orange);
  color: #fff;
  border-radius: 11px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  margin-left: .15rem;
  transition: background .15s, color .15s;
}
.ub-cart-btn:hover .ub-cart-badge { background: #fff; color: var(--orange); }
.ub-cart-badge.is-empty { background: var(--grey-300); color: var(--grey-700); }
.ub-cart-btn:hover .ub-cart-badge.is-empty { background: rgba(255,255,255,.2); color: #fff; }

/* Drawer overlay */
.ub-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(12,12,12,.55);
  z-index: 998;
  opacity: 0;
  transition: opacity .25s ease;
}
.ub-cart-overlay.is-open { opacity: 1; }

/* Drawer */
.ub-cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
  box-shadow: -16px 0 40px rgba(0,0,0,.18);
}
.ub-cart-drawer.is-open { transform: translateX(0); }

.ub-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--grey-300);
  background: #0c0c0c;
  color: #fff;
}
.ub-cart-head h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin: 0;
}
.ub-cart-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .25rem;
  transition: color .15s;
}
.ub-cart-close:hover { color: var(--orange); }

.ub-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}
.ub-cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--grey-700);
}
.ub-cart-empty p { margin: 0 0 .75rem; }
.ub-cart-empty a { color: var(--orange); font-weight: 600; }

.ub-cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: .75rem;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid var(--grey-300);
}
.ub-cart-item:last-child { border-bottom: 0; }
.ub-cart-item-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  margin: 0 0 .15rem;
  color: var(--black);
  line-height: 1.3;
}
.ub-cart-price {
  font-size: .82rem;
  color: var(--grey-700);
  margin: 0;
}
.ub-cart-excl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--grey-500);
}
.ub-cart-min {
  display: inline-block;
  font-size: .72rem;
  color: var(--orange);
  margin-top: .15rem;
  font-weight: 600;
}
.ub-cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  overflow: hidden;
}
.ub-qty-btn {
  background: #fff;
  border: 0;
  width: 28px; height: 28px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--grey-700);
  transition: background .15s, color .15s;
}
.ub-qty-btn:hover { background: var(--orange); color: #fff; }
.ub-qty-input {
  width: 42px;
  border: 0;
  border-left: 1px solid var(--grey-300);
  border-right: 1px solid var(--grey-300);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  height: 28px;
  -moz-appearance: textfield;
}
.ub-qty-input::-webkit-outer-spin-button,
.ub-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.ub-cart-item-total {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: .02em;
  min-width: 70px;
  text-align: right;
}
.ub-cart-remove {
  background: transparent;
  border: 0;
  font-size: 1.3rem;
  color: var(--grey-500);
  cursor: pointer;
  padding: 0 .25rem;
  line-height: 1;
  transition: color .15s, transform .15s;
}
.ub-cart-remove:hover { color: #c5530b; transform: scale(1.15); }

.ub-cart-foot {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--grey-300);
  background: #fff8ef;
}
.ub-cart-totals { margin-bottom: .85rem; font-size: .9rem; }
.ub-cart-totals > div {
  display: flex; justify-content: space-between;
  padding: .25rem 0;
  color: var(--grey-700);
}
.ub-cart-btw {
  font-size: .82rem;
  color: var(--grey-500);
}
.ub-cart-grand {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem !important;
  color: var(--black) !important;
  border-top: 1px solid var(--grey-300);
  margin-top: .35rem;
  padding-top: .55rem !important;
  letter-spacing: .02em;
}
.ub-cart-disclaimer {
  font-size: .75rem;
  color: var(--grey-500);
  margin: .5rem 0 0;
  line-height: 1.4;
}
.ub-cart-checkout {
  display: flex !important;
  width: 100%;
  justify-content: center;
  margin: .75rem 0 .5rem;
}
.ub-cart-clear {
  background: transparent;
  border: 0;
  color: var(--grey-500);
  font-size: .82rem;
  text-decoration: underline;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: .4rem;
}
.ub-cart-clear:hover { color: #c5530b; }

body.ub-cart-open { overflow: hidden; }

/* Mobile drawer */
@media (max-width: 880px) {
  .ub-cart-drawer { width: 100%; }
  .ub-cart-btn .ub-cart-label { display: none; }
  .ub-cart-btn { padding: .4rem .55rem; }
  .ub-cart-item {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info remove"
      "qty total";
    gap: .5rem;
  }
  .ub-cart-item-info { grid-area: info; }
  .ub-cart-item-qty { grid-area: qty; }
  .ub-cart-item-total { grid-area: total; text-align: right; }
  .ub-cart-remove { grid-area: remove; align-self: start; }
}

/* Add-to-cart button on shop product cards */
.pbtn-cart {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange);
  color: #fff;
  border: 0;
  padding: .55rem 1rem;
  border-radius: 50px;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  margin-top: auto;
  align-self: flex-start;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .15s;
}
.pbtn-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(244,118,28,.3);
  background: #c5530b;
  color: #fff;
}
.pbtn-cart .arr { transition: transform .2s; }
.pbtn-cart:hover .arr { transform: translateX(3px); }
.pbtn-cart.added {
  background: #1f7a3a;
  pointer-events: none;
}

/* Offerte-aanvraag-pagina styling */
.offerte-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
}
@media (max-width: 880px) {
  .offerte-layout { grid-template-columns: 1fr; gap: 1.75rem; }
}
.offerte-summary {
  background: #fff8ef;
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}
.offerte-summary h2 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: var(--black);
}
.offerte-summary-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.offerte-summary-list li {
  display: flex; justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px dashed var(--grey-300);
  font-size: .92rem;
}
.offerte-summary-list li:last-child { border-bottom: 0; }
.offerte-summary-list .item-name strong { display: block; color: var(--black); }
.offerte-summary-list .item-name span { font-size: .82rem; color: var(--grey-500); }
.offerte-summary-list .item-total {
  font-family: 'Anton', sans-serif;
  color: var(--orange);
  letter-spacing: .02em;
  white-space: nowrap;
}
.offerte-totals {
  border-top: 2px solid var(--orange);
  padding-top: .85rem;
  font-size: .9rem;
}
.offerte-totals > div {
  display: flex; justify-content: space-between;
  padding: .25rem 0;
  color: var(--grey-700);
}
.offerte-totals .grand {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  color: var(--black);
  margin-top: .35rem;
  padding-top: .55rem;
  border-top: 1px solid var(--grey-300);
}
.offerte-totals .note {
  font-size: .78rem;
  color: var(--grey-500);
  margin: .65rem 0 0;
  line-height: 1.4;
}
.offerte-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--grey-100);
  border-radius: 8px;
}
.offerte-form { display: flex; flex-direction: column; gap: 1rem; }
.offerte-form label {
  font-weight: 600;
  font-size: .92rem;
  color: var(--grey-700);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.offerte-form .req { color: var(--orange); }
.offerte-form input,
.offerte-form textarea,
.offerte-form select {
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  padding: .65rem .85rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  transition: border .15s, box-shadow .15s;
  background: #fff;
}
.offerte-form input:focus,
.offerte-form textarea:focus,
.offerte-form select:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,118,28,.18);
}
.offerte-form textarea { min-height: 110px; resize: vertical; }
.offerte-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 880px) { .offerte-form .row-2 { grid-template-columns: 1fr; } }
.offerte-form fieldset {
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.offerte-form legend {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 0 .5rem;
  color: var(--orange);
  font-size: .95rem;
}
.offerte-form .check {
  flex-direction: row;
  align-items: center;
  gap: .55rem;
  font-weight: 400;
  font-size: .88rem;
}
.offerte-form .submit-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.offerte-form .submit-row p {
  margin: 0;
  font-size: .82rem;
  color: var(--grey-500);
  line-height: 1.4;
}

/* Inline tekst-knop (gebruikt o.a. in offerte-summary "Open je mandje") */
.offerte-link-btn {
  display: inline;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--orange);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.offerte-link-btn:hover { color: #c5530b; }

/* Mandje-samenvatting op /offerte-bedankt — read-only paper-trail voor de klant */
.bedankt-summary {
  background: #fff;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 0 auto 0;
  max-width: 640px;
  text-align: left;
}
.bedankt-summary h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1rem;
  margin: 0 0 .85rem;
  color: var(--black);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--orange);
}
.bedankt-summary ul { list-style: none; padding: 0; margin: 0 0 .85rem; }
.bedankt-summary li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--grey-300);
  font-size: .92rem;
}
.bedankt-summary li:last-child { border-bottom: 0; }
.bedankt-summary .item-name strong { display: block; color: var(--black); }
.bedankt-summary .item-name span { font-size: .82rem; color: var(--grey-500); }
.bedankt-summary .item-total {
  font-family: 'Anton', sans-serif;
  color: var(--orange);
  letter-spacing: .02em;
  white-space: nowrap;
}
.bedankt-summary .totals {
  border-top: 2px solid var(--orange);
  padding-top: .65rem;
  font-size: .9rem;
}
.bedankt-summary .totals > div {
  display: flex; justify-content: space-between;
  padding: .2rem 0;
  color: var(--grey-700);
}
.bedankt-summary .totals .grand {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: var(--black);
  margin-top: .3rem;
  padding-top: .5rem;
  border-top: 1px solid var(--grey-300);
}
.bedankt-summary .totals .note {
  font-size: .78rem;
  color: var(--grey-500);
  margin: .55rem 0 0;
  line-height: 1.4;
}

/* ============================================================ */
/* TESTIMONIAL CAROUSEL (v3.47)                                  */
/* ============================================================ */
.testimonials-section {
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.testimonials-carousel { max-width: 920px; margin: 0 auto; position: relative; padding-top: 1.5rem; }
.tc-stage { position: relative; min-height: 340px; }
.tc-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: row; gap: 2.5rem; align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 12px 40px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  border: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.tc-slide.active {
  opacity: 1; pointer-events: auto; position: relative;
  transform: translateY(0);
}

.tc-photo {
  flex: 0 0 160px; width: 160px; height: 160px; border-radius: 50%; overflow: hidden;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(244, 118, 28, .25);
  position: relative;
}
.tc-photo::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid var(--orange); pointer-events: none;
}
.tc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.tc-photo.tc-photo-mark {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
}
.tc-photo.tc-photo-mark img {
  width: 70%; height: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  margin: auto;
  object-position: center;
}
.tc-body { flex: 1; min-width: 0; }
.tc-quote-mark {
  font-family: 'Anton', sans-serif;
  font-size: 4rem; line-height: .5;
  color: var(--orange);
  margin-bottom: .5rem;
  opacity: .9;
}
.tc-quote {
  font-size: 1.08rem; line-height: 1.6;
  color: #2c2c2c;
  margin: 0 0 1.25rem;
  font-weight: 400;
  font-style: normal;
}
.tc-meta { font-size: .92rem; color: var(--grey-700); display: flex; flex-wrap: wrap; gap: .35rem; align-items: baseline; }
.tc-name { font-weight: 700; color: var(--black); font-size: 1rem; }
.tc-role { color: var(--grey-700); }
.tc-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-top: 2rem;
}
.tc-arrow {
  width: 44px !important; height: 44px !important;
  min-height: 44px !important; min-width: 44px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #fff;
  border: 1px solid var(--grey-300);
  color: var(--orange);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  font-family: 'Anton', sans-serif;
}
.tc-arrow:hover { background: var(--orange); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(244,118,28,.25); }
.tc-dots { display: flex; gap: .5rem; align-items: center; }
.tc-dot {
  width: 10px !important; height: 10px !important;
  min-height: 10px !important; min-width: 10px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--grey-300);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
  display: inline-block;
}
.tc-dot.active {
  background: var(--orange);
  width: 28px !important;
  border-radius: 5px !important;
}
.tc-dot:hover:not(.active) { background: var(--grey-500); transform: scale(1.15); }

@media (max-width: 720px) {
  .tc-stage { min-height: 460px; }
  .tc-slide {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    text-align: center;
    border-radius: 16px;
  }
  .tc-photo { width: 110px; height: 110px; flex: 0 0 110px; margin: 0 auto; }
  .tc-quote { font-size: 1rem; line-height: 1.55; }
  .tc-quote-mark { font-size: 3rem; text-align: center; }
  .tc-meta { justify-content: center; }
  .tc-nav { gap: 1rem; }
}

/* === Shop product cards (v3.59 — volledige shop layout fix) === */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.prod {
  background: #fff;
  border: 1px solid var(--grey-300, #e5e5e5);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  margin: 0;
}
.prod:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}
.prod .visual {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  min-height: 240px;
  overflow: hidden;
}
.prod .visual.has-img img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.prod .body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod .body h4 {
  margin: .35rem 0 .5rem;
  font-size: 1.1rem;
  line-height: 1.3;
}
.prod .body p {
  margin: 0 0 .5rem;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--grey-700, #444);
}
.prod .ptag {
  display: inline-block;
  background: var(--orange-light, #fff3e6);
  color: var(--orange, #F4761C);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: fit-content;
  margin-bottom: .25rem;
}
.prod .specs {
  font-size: .82rem;
  color: var(--grey-600, #666);
  margin: .35rem 0;
}
.prod .ppricing {
  margin-top: auto;
  padding-top: .85rem;
  font-size: .9rem;
  color: var(--grey-700, #444);
}
.prod .pprice {
  font-weight: 700;
  color: var(--text, #0a0a0a);
  font-size: 1.1rem;
}
.prod .pbtw,
.prod .plead {
  font-size: .82rem;
  color: var(--grey-600, #666);
}
.prod .pbtn-cart {
  margin-top: .85rem;
  width: 100%;
  justify-content: center;
}

/* Starter-pakket: 6-image collage binnen .visual */
.prod .visual.starter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: .5rem;
  padding: .75rem;
  background: #f6f6f6;
  min-height: 280px;
}
.starter-grid .sg-cell {
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .4rem;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.starter-grid .sg-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .products { grid-template-columns: 1fr; }
  .prod .visual { min-height: 220px; }
  .prod .visual.starter-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    min-height: 320px;
  }
}
