/* ── TOKENS ────────────────────────────────────── */
:root {
  --cream:       #fffaf0;
  --cream-tint:  #fff5e4;
  --peach-hd:    #f8ddb4;
  --peach:       #fad7a0;
  --pink:        #f7ded4;
  --pink-deep:   #f2c9bb;
  --slate:       #4f5f7d;
  --slate-badge: #4b5a77;
  --orange:      #f39819;
  --orange-dk:   #c97a10;
  --ink:         #383e42;
  --near-black:  #1a1a1a;
  --text:        #2c3237;
  --text-soft:   #6a6e73;
  --line:        #ede0c8;
  --maxw:        1180px;
  --r-card:      20px;
  --sh-soft:     0 2px 12px rgba(56,62,66,.06);
  --sh-card:     0 4px 20px rgba(56,62,66,.08);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; font-family: "Poppins", sans-serif; color: var(--text); background: var(--cream); line-height: 1.68; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: "Solway", serif; color: var(--near-black); line-height: 1.18; margin: 0; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--orange); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-weight: 700; font-size: 18px; color: var(--orange); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 8px; font-family: "Solway"; }
.eyebrow svg { display: none; }
.section { padding: clamp(60px,7.5vw,96px) 0; }
.section-head { max-width: 880px; margin: 0 auto clamp(36px,4.5vw,52px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 700; }
.section-head .lead { margin-top: 16px; color: var(--text); font-size: 17.5px; line-height: 1.65; }

/* ── BUTTONS ────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 15.5px; padding: 14px 30px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: background .22s, transform .2s, color .22s, border-color .22s, box-shadow .2s; min-height: 52px; text-align: center; }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #14171a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(56,62,66,.22); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-peach { background: var(--peach); color: var(--ink); }
.btn-peach:hover { background: #f5c97a; transform: translateY(-2px); }

/* ── HEADER ─────────────────────────────────────── */
header { position: sticky; top: 0; z-index: 50; background: var(--peach-hd); border-bottom: 1px solid rgba(200,160,80,.18); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo img { height: 42px; width: auto; }
.logo .mob { display: none; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--ink); padding: 4px 0; position: relative; }
.nav-links > a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--orange); transition: width .25s; }
.nav-links > a:hover::after { width: 100%; }
/* Dropdown */
.nav-drop { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; font-weight: 500; font-size: 15px; color: var(--ink); cursor: pointer; }
.nav-drop-trigger svg { width: 13px; height: 13px; transition: transform .22s; }
.nav-drop:hover .nav-drop-trigger svg, .nav-drop:focus-within .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px); min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 14px 36px rgba(56,62,66,.16); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 60; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: block; padding: 11px 15px; border-radius: 9px; font-size: 14px; font-weight: 500; color: var(--ink); }
.nav-drop-menu a:hover { background: var(--cream-tint); color: var(--orange-dk); }
.mm-sub { padding-left: 20px !important; font-size: 14px !important; color: var(--text-soft) !important; }
.nav-cta .btn { padding: 10px 20px; font-size: 14px; min-height: 42px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger svg { width: 26px; height: 26px; color: var(--ink); }
.mobile-menu { display: none; flex-direction: column; padding: 4px 24px 20px; background: var(--peach-hd); border-bottom: 1px solid rgba(200,160,80,.18); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 0; font-weight: 500; font-size: 15px; border-bottom: 1px solid rgba(170,130,70,.16); }
.mobile-menu .btn { margin-top: 16px; }

/* ── BAND HELPERS ───────────────────────────────── */
.band-cream { background: var(--cream); }
.band-tint  { background: var(--cream-tint); }
.band-pink  { background: var(--pink); }
.band-peach { background: var(--peach); }
.band-slate { background: var(--slate); }

/* ════════════════════════════════════════
   HERO, 2 kolommen (B2C-stijl)
════════════════════════════════════════ */
.hero { background: var(--peach-hd); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,5.5vw,72px); align-items: center; padding: clamp(52px,7vw,84px) 24px clamp(48px,6vw,72px); }
.hero h1 { font-size: clamp(36px,4.9vw,58px); font-weight: 800; letter-spacing: -.6px; color: var(--near-black); line-height: 1.08; }
.hero .sub { font-size: clamp(16px,1.75vw,18px); color: #3a3f43; margin-top: 22px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-rating { display: flex; align-items: center; gap: 11px; margin-top: 24px; }
.hero-rating .glogo { width: 26px; height: 26px; flex-shrink: 0; }
.hero-rating b { font-family: "Solway"; font-size: 16px; color: var(--near-black); }
.hero-rating .stars { display: flex; gap: 1px; color: #f5a623; }
.hero-rating .stars svg { width: 15px; height: 15px; }
.hero-rating a { font-size: 13.5px; color: #7a6540; text-decoration: underline; text-underline-offset: 2px; }
.hero-visual img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 22px; box-shadow: 0 24px 56px rgba(56,62,66,.2); }
/* Oranje feature-balk */
.trust-bar { background: var(--orange); }
.trust-bar .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; padding-top: 15px; padding-bottom: 15px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14.5px; font-weight: 500; }
.trust-item svg { width: 21px; height: 21px; flex-shrink: 0; stroke: #fff; }

/* ════════════════════════════════════════
   KORT UITGELEGD
════════════════════════════════════════ */
.whatis-head { text-align: center; max-width: 880px; margin: 0 auto clamp(36px,5vw,52px); }
.whatis-head h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 700; }
.whatis-head .intro { margin-top: 18px; color: var(--text); font-size: 16.5px; line-height: 1.72; }
.whatis-head .intro + .intro { margin-top: 14px; }
.prod-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prod-card { background: #fff; border-radius: var(--r-card); border: 1px solid var(--line); padding: 30px 30px 26px; display: flex; flex-direction: column; }
.prod-ico { width: 54px; height: 54px; border-radius: 15px; background: var(--cream-tint); display: grid; place-items: center; margin-bottom: 18px; }
.prod-ico svg { width: 30px; height: 30px; stroke: var(--orange-dk); }
.prod-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.prod-card p { font-size: 14.5px; color: var(--text); line-height: 1.68; }
.prod-card p + p { margin-top: 12px; }
.prod-bullets { display: grid; gap: 9px; margin-top: 20px; }
.prod-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; }
.prod-bullets li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; stroke: var(--orange); }
.prod-bullets { margin-bottom: 22px; }
.prod-slot { margin-top: auto; border-radius: 16px; padding: 16px 22px; font-family: "Solway"; font-size: 15px; color: var(--ink); line-height: 1.5; text-align: left; }
.prod-slot { background: var(--pink); }
.combo-bar { margin-top: 26px; background: var(--pink); border-radius: 20px; padding: 28px 34px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.combo-text strong { font-family: "Solway"; font-size: 21px; font-weight: 700; display: block; margin-bottom: 6px; color: var(--near-black); }
.combo-text p { font-size: 15px; color: var(--text); line-height: 1.6; max-width: 640px; }
.combo-bar .btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 720px) {
  .combo-bar { grid-template-columns: 1fr; text-align: center; }
  .combo-text p { max-width: none; }
  .combo-bar .btn { justify-self: center; }
}

/* ════════════════════════════════════════
   FOTO STRIP, sleepbaar + lightbox
════════════════════════════════════════ */
/* Gallery, masonry-kolommen met labels */
.gallery-head { text-align: center; max-width: 760px; margin: 0 auto clamp(28px,3.5vw,40px); }
.gallery-head .rule { display: none; }
.gallery-head-text .eyebrow { margin-bottom: 10px; }
.gallery-head h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 700; }
.gallery-grid { columns: 3; column-gap: 16px; }
.g-tile { position: relative; display: block; break-inside: avoid; margin-bottom: 16px; border-radius: 14px; overflow: hidden; cursor: pointer; box-shadow: var(--sh-soft); }
.g-tile img { width: 100%; display: block; transition: transform .4s ease; }
.g-tile:hover img { transform: scale(1.05); }
.g-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,20,.72) 0%, rgba(20,20,20,.15) 34%, rgba(20,20,20,0) 60%); pointer-events: none; }
.g-label { position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff; font-family: "Solway"; font-size: 15.5px; font-weight: 500; text-shadow: 0 1px 6px rgba(0,0,0,.5); pointer-events: none; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }
/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,20,20,.86); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.14); border: none; cursor: pointer; display: grid; place-items: center; }
.lb-close svg { width: 24px; height: 24px; stroke: #fff; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); border: none; cursor: pointer; display: grid; place-items: center; }
.lb-nav:hover { background: rgba(255,255,255,.26); }
.lb-nav svg { width: 26px; height: 26px; stroke: #fff; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }

/* ════════════════════════════════════════
   VRAGEN CAROUSEL
════════════════════════════════════════ */
.q-section { overflow: hidden; padding: clamp(52px,6vw,80px) 0; }
.q-section .section-head { margin-bottom: clamp(28px,3.5vw,40px); }
.q-section .section-head h2 { color: #fff; font-weight: 500; }
.q-section .section-head .eyebrow { color: rgba(255,255,255,.65); font-weight: 400; }
.q-section .section-head .eyebrow svg { stroke: rgba(255,255,255,.65); }
.q-section .section-head .lead { color: rgba(255,255,255,.82); font-size: 16.5px; }
.q-track-outer { overflow: hidden; }
.q-track { display: flex; gap: 14px; padding-left: 24px; animation: qscroll 34s linear infinite; will-change: transform; }
.q-track:hover { animation-play-state: paused; }
.q-card { flex-shrink: 0; width: 270px; background: var(--cream); border: 1px solid var(--cream-tint); border-radius: 14px; padding: 20px 22px; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.q-card p { font-family: "Solway"; font-size: 16px; font-weight: 400; color: var(--text); line-height: 1.55; }
@keyframes qscroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════════════════════════════════════
   VOOR WIE
════════════════════════════════════════ */
.seg-grid { display: grid; grid-template-columns: repeat(3,1fr); column-gap: 22px; row-gap: 0; grid-template-rows: repeat(7, auto); }
.seg-card { background: #fff; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-soft); transition: transform .25s, box-shadow .25s; display: grid; grid-template-rows: subgrid; grid-row: span 7; }
.seg-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(56,62,66,.11); }
.seg-photo { position: relative; aspect-ratio: 16/10; overflow: hidden; grid-row: 1; }
.seg-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.seg-card:hover .seg-photo img { transform: scale(1.04); }
.seg-badge { position: absolute; top: 12px; left: 12px; background: var(--slate-badge); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 7px; }
.seg-body { grid-row: 2 / span 6; display: grid; grid-template-rows: subgrid; padding: 24px 24px 26px; }
.seg-body h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 9px; line-height: 1.25; }
.seg-body .desc { color: var(--text); font-size: 13.5px; line-height: 1.65; margin-bottom: 16px; }
.seg-subhead { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-soft); margin-bottom: 10px; }
.seg-bullets { display: grid; gap: 8px; margin-bottom: 18px; }
.seg-bullets li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text); line-height: 1.45; }
.seg-bullets li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; stroke: var(--orange); }
/* DOEL-achtige box (zoals screenshot leiderschap) */
.seg-goal { background: var(--cream-tint); border-radius: 13px; padding: 15px 17px; margin: 4px 0 18px; align-self: start; }
.seg-goal .lbl { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange-dk); margin-bottom: 6px; }
.seg-goal p { font-family: "Solway"; font-style: italic; font-size: 13.5px; color: var(--near-black); line-height: 1.5; }
.seg-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13.5px; color: var(--ink); transition: gap .2s, color .2s; }
.seg-link:hover { gap: 12px; color: var(--orange); }
.seg-link svg { width: 16px; height: 16px; }
/* Tekstwolkje onder de cards */
.seg-bubble-wrap { display: flex; justify-content: center; margin-top: 34px; }
.seg-bubble { position: relative; background: var(--peach); border-radius: 18px; padding: 22px 30px; max-width: 720px; text-align: center; }
.seg-bubble::after { content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 12px solid var(--peach); }
.seg-bubble p { font-size: 14.5px; color: var(--ink); line-height: 1.6; }
.seg-bubble a { color: var(--orange-dk); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ════════════════════════════════════════
   FAMILY SHOWCASE
════════════════════════════════════════ */
#product .wrap { max-width: 1360px; }
.family-showcase { text-align: center; }
.family-showcase h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 700; color: var(--near-black); margin-bottom: 8px; }
.family-showcase .tagline { font-family: "Solway"; font-size: 17px; color: var(--orange); font-weight: 700; margin-bottom: clamp(28px,3.5vw,44px); }
.showcase-img { width: 100%; border-radius: 18px; overflow: hidden; }
.showcase-img img { width: 100%; height: auto; display: block; }
.band-warmcream { background: #fff3e2; }
.showcase-duo { display: grid; grid-template-columns: 52fr 48fr; align-items: center; max-width: 1500px; margin: 0 auto; }
.showcase-duo img { width: 100%; height: auto; display: block; }
.duo-right { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 0 clamp(16px,2.5vw,40px); }
@media (max-width: 720px) { .showcase-duo { grid-template-columns: 1fr; gap: 28px; } }
.family-showcase .cta-wrap { margin-top: 32px; }

/* ════════════════════════════════════════
   ONDERBOUWING, editorial met omlijnde tekstkaders
════════════════════════════════════════ */
.editorial-rows { display: grid; gap: clamp(28px,3.5vw,40px); }
.editorial-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); align-items: stretch; }
.editorial-row.reverse { direction: rtl; }
.editorial-row.reverse > * { direction: ltr; }
.editorial-text { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(26px,3vw,38px); display: flex; flex-direction: column; justify-content: center; }
.editorial-text h3 { font-size: clamp(19px,2.3vw,25px); font-weight: 700; margin-bottom: 14px; line-height: 1.22; }
.editorial-text p { font-size: 15.5px; color: var(--text); line-height: 1.72; }
.editorial-text p + p { margin-top: 13px; }
.editorial-text .src { margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-soft); font-style: italic; line-height: 1.5; }
.editorial-img { min-height: 0; }
.editorial-img img, .editorial-img video { width: 100%; height: 100%; min-height: 300px; border-radius: var(--r-card); object-fit: cover; display: block; box-shadow: 0 8px 32px rgba(56,62,66,.12); background: var(--ink); }
.onderbouwing-close { margin-top: clamp(30px,4vw,46px); background: var(--pink); border-radius: 18px; padding: 26px 32px; text-align: center; }
.onderbouwing-close p { font-family: "Solway"; font-style: italic; font-size: 15px; font-weight: 400; color: var(--ink); max-width: 780px; margin: 0 auto; line-height: 1.55; }
/* Editorial nummer-chip */
.ed-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--peach); color: var(--orange-dk); font-family: "Solway"; font-weight: 700; font-size: 15px; margin-bottom: 14px; }

/* ════════════════════════════════════════
   VIDEO
════════════════════════════════════════ */
.vid-section { text-align: center; }
.vid-section h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 700; max-width: 22ch; margin: 0 auto; }
.vid-section .lead { font-size: 16.5px; color: var(--text); margin: 16px auto 0; max-width: 640px; line-height: 1.7; }
.vid-section .lead + .lead { margin-top: 13px; }
.vid-wrap { position: relative; margin: clamp(28px,4vw,44px) auto 0; max-width: 860px; border-radius: 22px; overflow: hidden; box-shadow: 0 20px 52px rgba(56,62,66,.2); background: var(--ink); aspect-ratio: 16/9; }
.vid-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-unmute { position: absolute; top: 14px; right: 14px; background: rgba(255,250,240,.9); border: none; border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 600; font-family: "Poppins"; cursor: pointer; display: flex; align-items: center; gap: 6px; color: var(--ink); transition: background .2s; z-index: 2; }
.vid-unmute:hover { background: #fffaf0; }
.vid-unmute svg { width: 15px; height: 15px; }
.vid-section .btn { margin-top: 28px; }

/* ════════════════════════════════════════
   ERVARINGEN
════════════════════════════════════════ */
.story-carousel { position: relative; padding: 0 60px; }
.story-track-outer { overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch; -ms-overflow-style: none; }
.story-track-outer::-webkit-scrollbar { display: none; }
.story-track { display: flex; gap: 16px; padding: 4px 2px; }
.story-slide { flex: 0 0 auto; height: 430px; aspect-ratio: 9/16; scroll-snap-align: center; position: relative; border-radius: 18px; overflow: hidden; background: #1a1a1a; box-shadow: 0 6px 24px rgba(56,62,66,.16); }
.story-slide video { width: 100%; height: 100%; object-fit: cover; display: block; background: #1a1a1a; }
.story-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,26,26,.18); transition: background .25s, opacity .25s; cursor: pointer; }
.story-play:hover { background: rgba(26,26,26,.08); }
.story-play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,250,240,.94); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,0,0,.3); transition: transform .2s; }
.story-play:hover .story-play-btn { transform: scale(1.1); }
.story-play-btn svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.sc-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 48px; height: 48px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--line); box-shadow: 0 4px 16px rgba(0,0,0,.16); cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.sc-btn:hover { background: var(--peach); transform: translateY(-50%) scale(1.08); }
.sc-btn svg { width: 20px; height: 20px; stroke: var(--ink); }
.story-prev { left: 2px; }
.story-next { right: 2px; }
.google-trust { text-align: center; margin-top: 32px; }
.google-trust .row { display: inline-flex; align-items: center; gap: 10px; }
.google-trust .glogo { width: 22px; height: 22px; }
.google-trust .stars { display: flex; gap: 2px; color: #f5a623; }
.google-trust .stars svg { width: 18px; height: 18px; }
.google-trust p { font-size: 14.5px; color: var(--text-soft); margin-top: 4px; }
.google-trust a { color: var(--orange-dk); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: transparent; border: none; border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 6px; font-family: "Solway"; font-size: 18px; font-weight: 500; color: var(--near-black); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.faq-q .chev { flex-shrink: 0; width: 20px; height: 20px; color: var(--ink); display: grid; place-items: center; transition: transform .3s; }
.faq-q .chev svg { width: 20px; height: 20px; stroke-width: 2; }
.faq-item.open .faq-q { color: var(--orange-dk); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .36s ease; }
.faq-a p { padding: 0 6px 24px; color: var(--text); font-size: 15px; line-height: 1.7; }
.faq-a p + p { padding-top: 12px; }

/* ════════════════════════════════════════
   EIND CTA (screenshot-stijl kaart)
════════════════════════════════════════ */
.cta-section { padding: clamp(48px,6vw,80px) 0; }
.cta-card { background: var(--pink); border-radius: 28px; padding: clamp(36px,5vw,60px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,56px); align-items: center; }
.cta-card h2 { color: var(--near-black); font-size: clamp(30px,4vw,50px); font-weight: 800; line-height: 1.05; letter-spacing: -.5px; }
.cta-right p { color: var(--text); font-size: 17px; line-height: 1.65; margin-bottom: 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-actions .btn-peach { background: var(--ink); color: #fff; }
.cta-actions .btn-peach:hover { background: #14171a; }
.cta-actions .btn-ghost { color: var(--ink); border-color: var(--ink); }
.cta-actions .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: var(--slate); color: #dfe4ec; padding: clamp(48px,6vw,68px) 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 32px; }
.foot-brand img { height: 42px; width: auto; margin-bottom: 14px; }
.foot-brand p { font-size: 14px; color: #9fa4a8; max-width: 30ch; line-height: 1.65; }
.foot-social { display: flex; gap: 10px; margin-top: 16px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.foot-social a:hover { background: var(--orange); transform: translateY(-2px); }
.foot-social svg { width: 17px; height: 17px; stroke: #fff; }
footer h4 { font-family: "Solway"; color: #fff; font-size: 14.5px; margin: 0 0 14px; font-weight: 600; }
.foot-col a { display: block; font-size: 14px; color: #b2b8bc; padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--peach); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #8a9094; }

/* ── MOBIEL STICKY CTA ─────────────────── */
.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,250,240,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mobile-cta .btn { width: 100%; }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .logo .desk { display: none; }
  .logo .mob { display: block; height: 38px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .prod-2col { grid-template-columns: 1fr; }
  .seg-grid { display: block; max-width: 420px; margin: 0 auto; }
  .seg-grid { grid-template-rows: none; }
  .seg-card { display: flex; flex-direction: column; grid-row: auto; margin-bottom: 22px; }
  .seg-card { grid-template-rows: none; }
  .seg-body { display: flex; flex-direction: column; grid-row: auto; }
  .seg-photo { grid-row: auto; }
  .seg-goal { margin-top: auto; }
  .editorial-row { grid-template-columns: 1fr; gap: 22px; }
  .editorial-row.reverse { direction: ltr; }
  .editorial-img { order: -1; }
  .story-carousel { max-width: 100%; }
  .story-slide { height: auto; width: min(320px, 76vw); }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .nav-cta .btn { font-size: 13px; padding: 8px 13px; min-height: 36px; }
  .photo-item { width: 240px; height: 180px; }
  .q-card { width: 250px; }
  .q-card p { font-size: 17px; }
  .q-track { animation-duration: 20s; }
  .story-slide { width: min(265px, 68vw); scroll-snap-align: start; }
  .story-carousel { padding: 0; }
  .sc-btn { display: none; }
  .story-track { padding: 4px 24px; }
  .story-track-outer { scroll-padding-left: 24px; }
  .vid-wrap { border-radius: 14px; }
  .trust-bar .wrap { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-col:last-child { grid-column: 1 / -1; }
  .foot-brand img { height: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════════════════
   PRODUCTPAGINA COMPONENTEN (template voor doelgroeppagina's)
═══════════════════════════════════════════════════════ */

/* Breadcrumb */
.crumbs { font-size: 13.5px; color: var(--text-soft); padding-top: 22px; }
.crumbs a { color: var(--orange-dk); font-weight: 600; }
.crumbs span { margin: 0 7px; opacity: .6; }

/* Hero USP-badges */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.usp-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 500; color: var(--ink); box-shadow: var(--sh-soft); }
.usp-badge svg { width: 16px; height: 16px; stroke: var(--orange); flex-shrink: 0; }

/* Herkenningsblok (rustige narratieve sectie) */
.recog { text-align: center; max-width: 820px; margin: 0 auto; }
.recog h2 { font-size: clamp(28px,3.6vw,42px); font-weight: 700; margin-bottom: 20px; }
.recog p { font-size: 17px; color: var(--text); line-height: 1.75; }
.recog p + p { margin-top: 16px; }

/* Probleemblok (checklist-kaart) */
.problem-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-card); padding: clamp(30px,4vw,44px); max-width: 860px; margin: 0 auto; }
.problem-list { display: grid; gap: 15px; }
.problem-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 16px; color: var(--text); line-height: 1.55; }
.problem-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; color: var(--orange-dk); }
.problem-bridge { max-width: 760px; margin: 28px auto 0; text-align: center; font-family: "Solway"; font-style: italic; font-size: 17px; color: var(--near-black); line-height: 1.6; }

/* Onderbouwing-tekst (zorg) */
.evidence { max-width: 860px; margin: 0 auto; }
.evidence p { font-size: 15.5px; color: var(--text); line-height: 1.78; }
.evidence p + p { margin-top: 16px; }
.evidence .src-note { font-size: 12.5px; color: var(--text-soft); }
.evidence-key { margin-top: 30px; background: var(--peach); border-radius: 18px; padding: 22px 28px; text-align: center; font-family: "Solway"; font-style: italic; font-size: 17px; color: var(--ink); line-height: 1.55; max-width: 820px; margin-left: auto; margin-right: auto; }

/* Resultaat 3-koloms */
.result-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.result-col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-soft); padding: 28px 26px; }
.result-col h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--peach); }
.result-col ul { display: grid; gap: 10px; }
.result-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; }
.result-col li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; stroke: var(--orange); }

/* Praktisch (kaart met beeld links, tekst rechts) */
.practical-card { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--pink); border-radius: 28px; overflow: hidden; }
.practical-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.practical-card-text { padding: clamp(28px,4vw,48px); }
.practical-card-text h2 { font-size: clamp(24px,3vw,34px); font-weight: 700; margin-bottom: 16px; }
.practical-card-text p { font-size: 15.5px; color: var(--text); line-height: 1.72; margin-bottom: 14px; }
.practical-card-text ul { display: grid; gap: 10px; margin-top: 18px; }
.practical-card-text li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--text); line-height: 1.5; }
.practical-card-text li svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; stroke: var(--orange); }

/* Scenario's (genummerd) */
.scenarios { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.scenario { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 28px 26px; display: flex; gap: 18px; }
.scenario-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--peach); color: var(--orange-dk); display: grid; place-items: center; font-family: "Solway"; font-weight: 700; font-size: 18px; }
.scenario h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
.scenario p { font-size: 14.5px; color: var(--text); line-height: 1.6; }
.scenario-use { margin-top: 10px; font-size: 13.5px; color: var(--text-soft); font-style: italic; }

/* Product showcase met annotaties (screenshot 1) */
.showcase-annot { max-width: 1100px; margin: 0 auto; }
.showcase-annot img { width: 100%; border-radius: var(--r-card); display: block; box-shadow: 0 18px 50px rgba(56,62,66,.16); }
.annot-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 30px; }
.annot { text-align: center; }
.annot .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--cream-tint); display: grid; place-items: center; margin: 0 auto 12px; }
.annot .ic svg { width: 24px; height: 24px; stroke: var(--orange-dk); }
.annot strong { display: block; font-family: "Solway"; font-size: 14.5px; font-weight: 700; color: var(--near-black); margin-bottom: 4px; }
.annot p { font-size: 13px; color: var(--text-soft); line-height: 1.45; }

/* Scan & bekijk (screenshot 2) */
.scan { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: center; }
.scan-text h2 { font-size: clamp(26px,3.4vw,40px); font-weight: 700; margin-bottom: 16px; }
.scan-text p { font-size: 16.5px; color: var(--text); line-height: 1.72; margin-bottom: 14px; }
.scan-text .btn { margin-top: 12px; }
.scan-img img { width: 100%; border-radius: var(--r-card); object-fit: cover; box-shadow: 0 16px 44px rgba(56,62,66,.18); }

@media (max-width: 900px) {
  .result-cols { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .scenarios { grid-template-columns: 1fr; }
  .practical-card { grid-template-columns: 1fr; }
  .practical-card-img { max-height: 340px; }
  .practical-card-img img { max-height: 340px; }
  .annot-grid { grid-template-columns: repeat(2,1fr); }
  .scan { grid-template-columns: 1fr; }
  .scan-img { order: -1; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .annot-grid { grid-template-columns: 1fr; }
}

/* Gif-tegels in de gallery (niet klikbaar) */
.g-tile video { width: 100%; display: block; }
.g-gif { cursor: default; }

/* ═══════════════════════════════════════════════════════
   SPLIT ROW (tekst links, quote/beeld rechts)
═══════════════════════════════════════════════════════ */
.split-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px,5vw,64px); align-items: start; }
.split-text h2 { font-size: clamp(26px,3.4vw,38px); font-weight: 700; margin-bottom: 18px; }
.split-text p { font-size: 16px; color: var(--text); line-height: 1.75; }
.split-text p + p { margin-top: 14px; }
.split-quote { position: sticky; top: 120px; }
.split-quote blockquote { background: var(--peach); border-radius: 18px; padding: 30px 32px; margin: 0; border-left: 4px solid var(--orange); }
.split-quote blockquote p { font-family: "Solway"; font-style: italic; font-size: 19px; color: var(--near-black); line-height: 1.45; font-weight: 500; }
.split-visual img { width: 100%; border-radius: 18px; }

/* ═══════════════════════════════════════════════════════
   PLUS ROW (intro links, pluspunten rechts)
═══════════════════════════════════════════════════════ */
.plus-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px,5vw,64px); align-items: start; }
.plus-intro h2 { font-size: clamp(26px,3.4vw,38px); font-weight: 700; margin-bottom: 16px; }
.plus-intro p { font-size: 16px; color: var(--text); line-height: 1.72; }
.plus-list { display: grid; gap: 14px; }
.plus-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--text); line-height: 1.55; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; box-shadow: var(--sh-soft); }
.plus-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; stroke: var(--orange); }

/* ═══════════════════════════════════════════════════════
   PROD STACKED (product blokken onder elkaar)
═══════════════════════════════════════════════════════ */
.prod-stacked { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.prod-block { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px 30px 26px; }
.prod-block h3 { font-size: 21px; font-weight: 700; margin-bottom: 14px; }
.prod-block p { font-size: 15px; color: var(--text); line-height: 1.72; }
.prod-block p + p { margin-top: 12px; }
.prod-block .prod-bullets { margin-top: 18px; }

/* ═══════════════════════════════════════════════════════
   EVIDENCE SIDEBAR (onderbouwing rechts)
═══════════════════════════════════════════════════════ */
.split-evidence { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 24px; }
.evidence-badge { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 26px; box-shadow: var(--sh-soft); }
.evidence-badge .evidence-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-soft); margin-bottom: 14px; }
.evidence-badge ul { display: grid; gap: 10px; }
.evidence-badge li { font-size: 15px; color: var(--near-black); font-weight: 600; padding-left: 18px; position: relative; line-height: 1.4; }
.evidence-badge li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.evidence-quote { background: var(--peach); border-radius: 18px; padding: 26px 28px; margin: 0; border: none; }
.evidence-quote p { font-family: "Solway"; font-style: italic; font-size: 16px; color: var(--ink); line-height: 1.55; }

/* Hero trust line */
.trust-line { margin-top: 18px; font-size: 14px; color: var(--text-soft); font-style: italic; line-height: 1.55; }

/* ── RESPONSIVE nieuw ────────────────────────── */
@media (max-width: 900px) {
  .split-row { grid-template-columns: 1fr; }
  .split-quote { position: static; }
  .split-evidence { position: static; }
  .plus-row { grid-template-columns: 1fr; }
  .prod-stacked { grid-template-columns: 1fr; }
}

/* ── GALLERY: MEER FOTO'S ─────────────── */
.g-extra { display: none; }
.gallery-grid.expanded .g-extra { display: block; animation: gfade .45s ease; }
@keyframes gfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.gallery-more { display: flex; justify-content: center; margin-top: 28px; }
.gallery-more svg { transition: transform .25s ease; }
.gallery-more .open svg, .gallery-more button.open svg { transform: rotate(180deg); }
.foot-addr { display: block; font-size: 14px; color: #b2b8bc; padding: 5px 0; line-height: 1.6; }
.cta-note { margin-top: 16px; font-size: 14.5px; color: var(--text); }
.cta-note a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── NAV DROPDOWN: klik-toggle ─────────── */
.nav-drop.open .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop.open .nav-drop-trigger svg { transform: rotate(180deg); }
.privacy-note { background: var(--cream); border-radius: 16px; padding: 18px 28px; margin: 22px auto 0; max-width: 640px; font-size: 15px; color: var(--text); line-height: 1.7; text-align: center; box-shadow: var(--sh-soft); }

/* ── MOBIEL: utilities + trust-marquee + compacte header-CTA ── */
.m-only { display: none; }
.trust-track { display: contents; }
.trust-item.trust-dup { display: none; }
@media (max-width: 720px) {
  .m-hide { display: none; }
  .m-only { display: revert; }
  .trust-bar .wrap { flex-wrap: nowrap; overflow: hidden; padding-left: 0; padding-right: 0; }
  .trust-track { display: flex; gap: 0; width: max-content; animation: trustscroll 16s linear infinite; will-change: transform; }
  .trust-track:hover { animation-play-state: paused; }
  .trust-item { white-space: nowrap; padding-right: 42px; }
  .trust-item.trust-dup { display: flex; }
}
@keyframes trustscroll { to { transform: translateX(-50%); } }

/* ── MOBIEL RONDE 2: links uitlijnen, nummers weg, competentiehuys-stijl CTA ── */
@media (max-width: 720px) {
  .section-head, .whatis-head, .family-showcase, .gallery-head { text-align: left; }
  .section-head .eyebrow, .whatis-head .eyebrow, .gallery-head .eyebrow { justify-content: flex-start; }
  .scenario { padding: 24px 22px; }
  .scenario-num { display: none; }
  .q-track { animation-duration: 13s; }
  .cta-card { text-align: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .cta-right p { font-size: 16px; }
}
