/* PAKT marketing site — vintage travel-scrapbook design
   Dark navy hero + torn paper transition + cream parchment sections
*/

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Big+Shoulders+Stencil+Display:wght@700;800&family=Lora:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600;700&family=Caveat:wght@500;700&display=swap');

:root {
  /* Paper tones (cream parchment) */
  --paper-highlight:  #EFE6D4;
  --paper-base:       #E5DAC4;
  --paper-shadow:     #C9BCA2;
  --paper-deep:       #A89878;
  --polaroid-white:   #F4ECDC;

  /* Navy / indigo */
  --navy-deep:        #0B1622;
  --navy:             #142235;
  --indigo:           #1E2A3D;
  --indigo-warm:      #26334A;
  --indigo-deep:      #141C2A;

  /* Accents */
  --gold:             #D99228;
  --gold-soft:        #E6A748;
  --gold-deep:        #B07A3A;
  --terracotta:       #C24D45;
  --rust:             #9F4538;
  --moss:             #3D7A5A;
  --sea:              #5A8DA8;
  --brass:            #9F7A4F;
  --rope:             #A88358;

  /* Ink / type */
  --ink:              #0B1622;
  --ink-soft:         #1F2A3C;
  --caption-muted:    #6B5C42;
  --cream-on-dark:    #F4EBC8;

  /* Shadow recipes */
  --shadow-warm-contact: 0 1px 2px rgba(60, 38, 18, 0.14);
  --shadow-warm-soft:    0 8px 18px rgba(60, 38, 18, 0.18);
  --shadow-warm-ambient: 0 24px 40px -8px rgba(40, 25, 12, 0.22);
  --shadow-warm-lifted:
    0 2px 4px rgba(60, 38, 18, 0.16),
    0 16px 28px rgba(60, 38, 18, 0.22),
    0 40px 60px -12px rgba(30, 18, 8, 0.28);
  --shadow-scrap:
    0 4px 8px rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.28);
  --shadow-deep-card:
    0 2px 6px rgba(0, 0, 0, 0.25),
    0 16px 36px rgba(0, 0, 0, 0.35);

  /* Type families */
  --font-stencil:   'Big Shoulders Stencil Display', 'Bricolage Grotesque', serif;
  --font-display:   'Big Shoulders Display', 'Big Shoulders Stencil Display', sans-serif;
  --font-hand:      'Caveat', 'Brush Script MT', cursive;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:     'Lora', 'Georgia', serif;

  /* Backwards-compat aliases */
  --paper:          var(--paper-base);
  --paper-light:    var(--paper-highlight);
  --paper-soft:     var(--paper-shadow);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background-color: var(--paper-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

a { color: var(--gold); text-decoration: none; transition: opacity 150ms ease, color 150ms ease; }
a:hover { color: var(--gold-soft); opacity: 1; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
}

/* ── Paper-grain utility (cream sections) ─────────────────── */

.paper-grain { position: relative; isolation: isolate; }
.paper-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.32  0 0 0 0 0.22  0 0 0 0 0.12  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  mix-blend-mode: multiply;
  opacity: 0.12;
}
.paper-grain > * { position: relative; z-index: 1; }

/* Dark-grain utility (navy sections) */
.dark-grain { position: relative; isolation: isolate; }
.dark-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.78  0 0 0 0 0.55  0 0 0 0.30 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 280px 280px;
  mix-blend-mode: overlay;
  opacity: 0.20;
}
.dark-grain > * { position: relative; z-index: 1; }

/* ── Site header ──────────────────────────────────────────── */

.site-header {
  position: relative;
  z-index: 50;
  background: var(--navy-deep);
  padding: 18px 32px;
}

.site-header-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Desktop: nav absoluut gecentreerd (logo links, geen CTA rechts) */
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-header .brand { display: inline-flex; align-items: center; }
.site-header .brand-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: 14px;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.main-nav a {
  color: var(--cream-on-dark);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  opacity: 0.85;
}

.main-nav a:hover { opacity: 1; color: var(--gold); }

.main-nav a.active {
  color: var(--cream-on-dark);
  opacity: 1;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: -8px; right: -8px; bottom: -12px;
  height: 14px;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='14' viewBox='0 0 80 14' preserveAspectRatio='none'><path d='M3,9 Q22,3 42,8 Q58,11 68,7' stroke='%23D99228' stroke-width='3.5' fill='none' stroke-linecap='round'/><path d='M5,8 Q22,5 42,7 Q55,9 65,8' stroke='%23B07A3A' stroke-width='1.4' fill='none' stroke-linecap='round' opacity='0.65'/><circle cx='73' cy='8' r='1.4' fill='%23D99228'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  border-radius: 0;
  box-shadow: none;
}

.header-cta {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 12px 22px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(217, 146, 40, 0.30);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.header-cta:hover {
  color: var(--navy-deep);
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 146, 40, 0.40);
  opacity: 1;
}

/* Hamburger-knop (alleen mobiel zichtbaar) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--cream-on-dark);
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ── Hero: dark navy scrapbook ────────────────────────────── */

.hero {
  position: relative;
  z-index: 1;
  background: var(--navy-deep);
  color: var(--cream-on-dark);
  overflow: visible;
  padding: 12px 32px 8px;
  isolation: isolate;
}

/* Subtle right-side fall-off (donker hoek), geen warm spot meer linksboven */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 90% 80%,
    rgba(30, 20, 10, 0.35), transparent 60%);
  z-index: 0;
}

/* Dark-grain noise overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.78  0 0 0 0 0.55  0 0 0 0.30 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 320px 320px;
  mix-blend-mode: overlay;
  opacity: 0.18;
}

.hero-inner {
  position: relative;
  z-index: 11;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-areas:
    "text art"
    "cta  art";
  grid-template-rows: min-content min-content;
  column-gap: 40px;
  row-gap: 16px;
  align-items: center;
  align-content: center;
  padding-top: 8px;
}
.hero-left  { grid-area: text; align-self: end; }
.hero-cta   { grid-area: cta;  align-self: start; margin-top: -22px; }
.hero-right { grid-area: art; align-self: center; }

/* Left column */
.hero-left { color: var(--cream-on-dark); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow svg { color: var(--gold); }

/* Launch-badge bovenin de hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(217, 146, 40, 0.12);
  border: 1px solid rgba(217, 146, 40, 0.45);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 146, 40, 0.25);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--cream-on-dark);
  margin-bottom: 4px;
}

.hero-underline {
  display: block;
  width: 280px;
  max-width: 60%;
  height: 18px;
  margin-bottom: 26px;
}

.hero-lede {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 235, 200, 0.86);
  max-width: 440px;
  margin-bottom: 32px;
}

/* Store badges */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 22, 34, 0.55);
  border: 1.5px solid rgba(217, 146, 40, 0.35);
  color: var(--cream-on-dark);
  padding: 10px 20px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: border-color 150ms, transform 150ms;
}
.store-badge:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  color: var(--cream-on-dark);
  opacity: 1;
}
.store-badge svg { color: var(--gold); flex-shrink: 0; }

.store-text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.store-text .sub {
  font-size: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}
.store-text .main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* Right column: scrapbook composition (fixed aspect-ratio voor stabiele
   positionering — items met % ipv px zodat ze niet shiften bij resize) */
.hero-right {
  position: relative;
  width: 100%;
}

.scrapbook {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1 / 0.86;
}

.scrap {
  position: absolute;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35))
          drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
}

/* Vintage photo top-right — GEEN witte border meer, direct paper-look */
.scrap.photo1 {
  top: 26%;
  right: -8%;
  width: 52%;
  transform: rotate(3deg);
  z-index: 4;
  border-radius: 2px;
}

/* Boarding pass — volledig in beeld, loopt onderaan over in de cream sectie */
.scrap.boarding {
  top: auto;
  bottom: -11%;
  right: 3%;
  width: 44%;
  transform: rotate(19deg);
  z-index: 4;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35))
          drop-shadow(0 20px 32px rgba(0, 0, 0, 0.28));
}

/* Boek met reisstempels — backdrop achter de iPhone */
.scrap.book2 {
  top: 0%;
  left: 22%;
  width: 50%;
  transform: rotate(-3deg);
  z-index: 1;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.40))
          drop-shadow(0 20px 30px rgba(0, 0, 0, 0.28));
}

/* PAKT-boekje — links, vóór het label (label zakt er half onder), achter de phone */
.scrap.book {
  top: 20%;
  left: -2%;
  width: 32%;
  transform: rotate(-8deg);
  z-index: 4;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45))
          drop-shadow(0 20px 30px rgba(0, 0, 0, 0.30));
}

/* Bagage label — duidelijk zichtbaar tussen boekje en phone,
   touwtje boven aan boekje vastgeknoopt, label naar onder hangend.
   Label is VOOR de phone (z-index hoger) zodat het niet verdwijnt. */
.scrap.label {
  top: 4%;
  left: -4%;
  width: 44%;
  transform: rotate(-6deg);
  z-index: 3;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.45))
          drop-shadow(0 16px 22px rgba(0, 0, 0, 0.30));
}

/* Phone centerpiece */
.scrap.phone {
  top: 4%;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 56%;
  z-index: 5;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.50))
          drop-shadow(0 30px 50px rgba(0, 0, 0, 0.40));
}

/* Crew-stamp — op de losse foto, donkere contour zodat goud leesbaar blijft */
.scrap.stamp-mini {
  top: 44%;
  right: 2%;
  width: 18%;
  transform: rotate(-8deg);
  z-index: 7;
  filter: drop-shadow(0 0 1.5px rgba(0, 0, 0, 0.65))
          drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55))
          drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

/* ── Torn paper transition (single layer, geen double-band) ──── */

.torn-edge {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 64px;
  z-index: 10;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1440' height='64' preserveAspectRatio='none' viewBox='0 0 1440 64'><path d='M0,0 L0,22 C18,20 36,34 58,28 C82,22 102,42 128,34 C152,26 176,46 202,38 C228,30 254,50 280,40 C308,32 332,52 360,42 C388,34 414,54 440,44 C468,34 494,52 520,42 C548,32 574,54 600,44 C628,34 654,56 680,46 C708,36 734,54 760,44 C786,36 814,56 840,46 C868,36 894,54 920,44 C948,34 974,56 1000,46 C1028,36 1054,58 1080,46 C1108,34 1134,56 1160,46 C1188,36 1214,56 1240,46 C1268,36 1294,58 1320,46 C1348,34 1374,56 1400,46 C1424,38 1440,44 1440,44 L1440,0 Z' fill='%230B1622'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ── Feature strip (6 cols, cream parchment) ─────────────── */

.feature-strip {
  background: var(--paper-base);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%,
      rgba(239, 230, 212, 0.7), transparent 70%);
  padding: 56px 32px 48px;
  border-bottom: 1px solid rgba(159, 122, 79, 0.18);
}

.feature-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 28px;
  align-items: flex-start;
  position: relative;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px 14px 0;
  border-right: 1px dashed rgba(159, 122, 79, 0.30);
  min-height: 130px;
  /* button-reset */
  background: transparent;
  border-top: none;
  border-bottom: none;
  border-left: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 200ms, transform 200ms;
}

.feature-item:hover {
  background-color: rgba(217, 146, 40, 0.06);
  transform: translateY(-2px);
}

.feature-item[aria-expanded="true"] {
  background-color: rgba(217, 146, 40, 0.10);
}

/* Highlight-kaart breder: bloedt in de tussenruimte zodat tekst/rand
   niet op de scheidingslijn valt (inhoud verschuift niet mee). */
.feature-item:hover,
.feature-item[aria-expanded="true"] {
  margin-inline: -14px;
  padding-left: 14px;
  padding-right: 30px;
  border-right-color: transparent;
}

.feature-item[aria-expanded="true"]::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid var(--polaroid-white);
}

.feature-item { position: relative; }

.feature-item:nth-of-type(5),
.feature-item:last-of-type { border-right: none; }

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0;
}

.feature-item p {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--caption-muted);
  margin: 0;
}

/* Per-icon colors */
.icon-paklijst    { color: #B07A3A; }
.icon-kosten      { color: var(--rust); }
.icon-activiteit  { color: var(--sea); }
.icon-prive       { color: var(--moss); }
.icon-overal      { color: var(--brass); }

/* ── Feature detail panel (click-to-expand) ──────────────── */

.feature-detail {
  max-width: 1280px;
  margin: 36px auto 0;
  background: var(--polaroid-white);
  border-radius: 10px;
  padding: 36px 40px;
  position: relative;
  box-shadow:
    0 2px 4px rgba(60, 38, 18, 0.18),
    0 16px 32px rgba(60, 38, 18, 0.20);
  border: 1px solid rgba(159, 122, 79, 0.22);
  animation: panelFadeIn 250ms ease;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-detail[hidden] { display: none; }

/* Open paneel: sectie viewport-hoog, iconen bovenaan, paneel vult de rest,
   inhoud gecentreerd → templates blijven onder de vouw. */
.feature-strip.detail-open {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.feature-strip.detail-open .feature-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-detail-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(159, 122, 79, 0.10);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
}
.feature-detail-close:hover { background: rgba(159, 122, 79, 0.22); }

.feature-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.feature-panel[hidden] { display: none; }

.feature-panel-text { padding-right: 16px; }

.feature-panel-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 8px;
}

.feature-panel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.feature-panel p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-bullets li {
  position: relative;
  padding-left: 22px;
  padding-bottom: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.feature-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 800;
}

.feature-panel-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Korte functietitel boven het iPhone-frame */
.carousel-caption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin: 0;
  min-height: 1.2em;
}

.device-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

/* CSS-iPhone frame */
.device-frame {
  position: relative;
  flex: 0 1 auto;
  height: min(420px, 58vh);
  aspect-ratio: 9 / 18.5;
  background: #0B1622;
  border-radius: 34px;
  padding: 8px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.25),
    0 18px 36px rgba(0, 0, 0, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

/* notch */
.device-frame::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 14px;
  background: #0B1622;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #E6D2A8 0%, #D9C49F 100%);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide > img,
.carousel-slide > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-placeholder {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--caption-muted);
  text-transform: uppercase;
  text-align: center;
}

.carousel-arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(159, 122, 79, 0.35);
  background: var(--polaroid-white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(60, 38, 18, 0.15);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.06);
}

.carousel-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.carousel-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(159, 122, 79, 0.35);
  transition: background 0.15s ease;
}

.carousel-dots .dot.is-active {
  background: var(--gold);
}

/* Handwritten accent */
.feature-handwritten {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
  padding-top: 4px;
  color: var(--ink-soft);
  text-align: center;
}
.hw-text {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--ink-soft);
  transform: rotate(-3deg);
}
.hw-arrow {
  width: 78px;
  height: 48px;
  color: var(--gold);
  transform: rotate(-5deg);
}

/* ── Templates section ───────────────────────────────────── */

.templates {
  background: var(--paper-base);
  padding: 72px 32px 96px;
}

.templates-header {
  max-width: 1280px;
  margin: 0 auto 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.templates-title-wrap { flex: 1 1 auto; min-width: 280px; }

.templates-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.templates-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--caption-muted);
}

.templates-all {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}

.templates-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.tpl-card {
  background: var(--polaroid-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(60, 38, 18, 0.16),
    0 12px 24px rgba(60, 38, 18, 0.22);
  border: 1px solid rgba(159, 122, 79, 0.18);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.tpl-card:nth-child(odd)  { transform: rotate(-0.8deg); }
.tpl-card:nth-child(even) { transform: rotate(0.6deg); }
.tpl-card:nth-child(3)    { transform: rotate(-0.3deg); }

/* Gedempte hover: alleen rechtzetten, geen lift — de kaarten zijn een showcase,
   geen knoppen (pre-launch nog niet klikbaar). */
.tpl-card:hover {
  transform: rotate(0deg);
}

/* Niet-klikbare "binnenkort"-CTA i.p.v. een dode link */
.templates-all--soon {
  color: var(--caption-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  cursor: default;
}

.tpl-illust {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, #E6D2A8 0%, #D9C49F 100%);
}

.tpl-illust > svg:first-child,
.tpl-illust > .tpl-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tpl-stamp {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 70px;
  height: 70px;
  transform: rotate(-8deg);
  opacity: 0.95;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.25));
}

/* Lichte parchment-vulling onder de app-illustratie zodat de navy line-art
   leesbaar is op de foto (stempel-op-papier-look). */
.tpl-stamp circle[r="40"] {
  fill: #F5EEDF;
  fill-opacity: 0.92;
}

.tpl-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tpl-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0;
}

.tpl-body p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--caption-muted);
  margin: 0;
}

/* ── Stats / quote section (dark navy) ───────────────────── */

.stats-quote {
  position: relative;
  background: var(--navy-deep);
  color: var(--cream-on-dark);
  padding: 72px 32px;
  overflow: hidden;
  isolation: isolate;
}

.stats-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.78  0 0 0 0 0.55  0 0 0 0.30 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 280px 280px;
  mix-blend-mode: overlay;
  opacity: 0.16;
}

.stats-quote-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Quote side (left) */
.quote-side {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.polaroid {
  position: relative;
  width: 150px;
  flex-shrink: 0;
  background: var(--polaroid-white);
  padding: 8px 8px 28px;
  transform: rotate(-4deg);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.30),
    0 16px 28px rgba(0, 0, 0, 0.40);
}

.polaroid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.polaroid-stamp {
  position: absolute;
  bottom: -16px;
  left: -18px;
  width: 64px;
  height: 64px;
  transform: rotate(-14deg);
}
.polaroid-stamp svg { width: 100%; height: 100%; }

.quote {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(244, 235, 200, 0.92);
  border: none;
  padding-left: 32px;
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  font-style: normal;
}

.quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Metrics side (right) */
.metrics-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--cream-on-dark);
}

.metric-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 4px;
}

.metric-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.metric-veilig {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--gold-soft);
}

.metric-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(244, 235, 200, 0.78);
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-deep);
  color: var(--cream-on-dark);
  padding: 28px 0;
  border-top: 1px solid rgba(217, 146, 40, 0.15);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.footer-brand {
  font-family: var(--font-stencil);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 22px;
  color: var(--cream-on-dark);
}

.footer-nav {
  display: flex;
  gap: 22px;
}

.footer-nav a {
  color: var(--cream-on-dark);
  opacity: 0.75;
}
.footer-nav a:hover { opacity: 1; color: var(--gold); }

.footer-copy {
  color: rgba(244, 235, 200, 0.45);
  font-size: 12px;
}

/* ── Legal pages (privacy + terms) ────────────────────────── */

.legal-page {
  min-height: 100vh;
  padding: 48px 0 80px;
  background: var(--paper-base);
  position: relative;
}

.legal-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(159, 122, 79, 0.20);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.legal-page .brand {
  font-family: var(--font-stencil);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.lang-switch a {
  color: var(--caption-muted);
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.lang-switch a.active {
  background-color: var(--navy-deep);
  color: var(--cream-on-dark);
}

.legal-page main {
  max-width: 760px;
  margin: 0 auto;
  background: var(--polaroid-white);
  padding: 48px 56px;
  border-radius: 6px;
  box-shadow:
    var(--shadow-warm-contact),
    var(--shadow-warm-soft);
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.legal-page .updated {
  font-size: 13px;
  color: var(--caption-muted);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.legal-page h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 22px;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.legal-page p {
  margin-bottom: 14px;
  line-height: 1.65;
  color: var(--ink);
}

.legal-page ul, .legal-page ol {
  margin: 14px 0 14px 24px;
  line-height: 1.65;
}

.legal-page li { margin-bottom: 6px; }

.legal-page .eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.legal-page footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(159, 122, 79, 0.20);
  font-size: 13px;
  color: var(--caption-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1180px) {
  .feature-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
  .feature-item { border-right: none; }
  .feature-handwritten {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .hw-arrow { transform: rotate(-100deg); width: 60px; height: 38px; }
  .templates-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-panel { grid-template-columns: 1fr; }
  .device-frame { height: min(360px, 56vh); }

  /* Geen geforceerde viewport-hoogte op kleinere schermen: natuurlijke flow */
  .feature-strip.detail-open { min-height: auto; display: block; }
  .feature-strip.detail-open .feature-detail { display: block; flex: none; }
}

@media (max-width: 980px) {
  /* Mobiele nav: hamburger-knop + dropdown-paneel */
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 0 18px;
    background: var(--navy-deep);
    border-top: 1px solid rgba(217, 146, 40, 0.18);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.38);
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a { padding: 12px 18px; font-size: 15px; }
  .main-nav a.active::after { display: none; }

  .site-header-inner { gap: 16px; }

  .hero { padding: 48px 24px 72px; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "art"
      "cta";
    row-gap: 32px;
  }
  .hero-left, .hero-cta, .hero-right { align-self: stretch; }
  .hero-cta { margin-top: 0; }
  .hero-right { min-height: 0; }

  .stats-quote-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .feature-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-handwritten { display: none; }

  /* Feature-paneel opent als full-screen pop-up, ongeacht scrollpositie.
     Strip boven de hero tillen (anders valt de fixed modal achter de hero-
     stacking-context). */
  .feature-strip.detail-open { position: relative; z-index: 300; }
  .feature-detail:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 200;
    margin: 0;
    border-radius: 0;
    max-width: none;
    padding: 58px 22px 32px;
    overflow-y: auto;
    animation: none;
  }
  .feature-detail-close { top: 14px; right: 14px; }

  .templates-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .metrics-side { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 540px) {
  .site-header { padding: 12px 18px; }
  .site-header .brand-logo { width: 76px; height: 76px; }

  .hero { padding: 36px 18px 64px; }
  .hero-headline { font-size: clamp(2.25rem, 9vw, 3.25rem); }

  .hero-cta { width: 100%; flex-direction: column; }
  .store-badge { width: 100%; justify-content: center; }

  .feature-strip { padding: 40px 16px; }
  /* Compacte 2-koloms tegelkaartjes i.p.v. één lange kolom met veel lucht.
     ~300px scroll i.p.v. ~950px, en de tegels ogen als tikbare kaartjes. */
  .feature-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    max-width: none;
    margin: 0;
  }
  .feature-item {
    min-height: 0;
    padding: 14px 12px;
    gap: 6px;
    border-right: none;
    border: 1px solid rgba(159, 122, 79, 0.28);
    background: var(--polaroid-white);
    border-radius: 12px;
  }
  .feature-item p { display: none; }
  .feature-icon { width: 32px; height: 32px; }
  /* desktop hover-bleed resetten op mobiel */
  .feature-item:hover,
  .feature-item[aria-expanded="true"] {
    margin-inline: 0;
    padding-left: 12px;
    padding-right: 12px;
    border-right: none;
  }
  /* lange titel "Overal te gebruiken" mag volle breedte; handgeschreven krabbel weg */
  .feature-item:last-of-type { grid-column: 1 / -1; }
  .feature-handwritten { display: none; }

  .templates { padding: 56px 18px 72px; }
  .templates-title { font-size: 1.6rem; }

  .stats-quote { padding: 52px 18px; }
  .quote-side { flex-direction: column; }
  .polaroid { width: 130px; align-self: center; }

  .legal-page main { padding: 32px 22px; }
  .legal-page .brand { font-size: 30px; }
}

/* ── Over ons-pagina ─────────────────────────────────────── */
.about-intro {
  background: var(--navy-deep);
  color: var(--cream-on-dark);
  padding: 100px 0 84px;
}
.about-intro-inner { max-width: 820px; }

.about-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream-on-dark);
  margin: 0 0 22px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: rgba(244, 235, 200, 0.86);
  max-width: 700px;
  margin: 0;
}
.about-lead strong { color: var(--gold); font-weight: 700; }
.about-closing { margin-top: 30px; font-style: italic; }

.about-why { padding: 88px 0; }

.about-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 18px;
}
.about-h2--light { color: var(--cream-on-dark); }

.about-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 48px;
}

.about-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.about-aud-item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.about-aud-item p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.about-solvt {
  background: var(--navy-deep);
  color: var(--cream-on-dark);
  padding: 88px 0;
}
.about-solvt-inner { max-width: 820px; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }

@media (max-width: 720px) {
  .about-intro { padding: 76px 0 60px; }
  .about-why, .about-solvt { padding: 60px 0; }
  .about-audience { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Niet-klikbare "binnenkort"-store-badges ─────────────── */
.store-badge--soon { cursor: default; }
.store-badge--soon:hover { transform: none; border-color: rgba(217, 146, 40, 0.35); }

/* ── Pijnpunt-sectie (herkenning vóór de functies) ───────── */
.painpoint {
  background: var(--paper-base);
  padding: 72px 24px 56px;
}
.painpoint-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.painpoint-eyebrow {
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.painpoint-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(1.8rem, 4.4vw, 2.6rem);
  color: var(--ink); margin: 10px 0 36px; line-height: 1.06;
}
.painpoint-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left;
}
.painpoint-card {
  background: var(--polaroid-white);
  border: 1px solid rgba(159, 122, 79, 0.22);
  border-radius: 12px;
  padding: 22px 22px 24px;
  box-shadow: 0 8px 20px rgba(60, 38, 18, 0.12);
}
.painpoint-card:nth-child(odd)  { transform: rotate(-0.7deg); }
.painpoint-card:nth-child(even) { transform: rotate(0.6deg); }
.pp-quote {
  font-family: var(--font-hand);
  font-size: 1.65rem; font-weight: 700; color: var(--gold-deep);
  margin: 0 0 8px; line-height: 1.1;
}
.pp-body {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink-soft);
  line-height: 1.5; margin: 0;
}
.painpoint-bridge {
  font-family: var(--font-serif); font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink); line-height: 1.55; max-width: 720px; margin: 36px auto 0;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--navy-deep); padding: 72px 24px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--cream-on-dark);
  text-align: center; margin: 0 0 28px;
}
.faq-item { border-bottom: 1px solid rgba(244, 235, 200, 0.18); }
.faq-item summary {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--cream-on-dark); cursor: pointer; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.6rem; line-height: 1; }
.faq-item[open] summary::after { content: '\2013'; }
.faq-item p {
  font-family: var(--font-body); color: #C9D3DE; line-height: 1.55;
  margin: 0 0 18px; font-size: 1rem;
}

@media (max-width: 720px) {
  .painpoint-cards { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .painpoint { padding: 48px 18px 40px; }
  .faq { padding: 52px 18px; }
}

/* ── Toegankelijkheid: zichtbare focus voor toetsenbordgebruik ─ */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.feature-item:focus-visible,
.carousel-arrow:focus-visible,
.nav-toggle:focus-visible,
.feature-detail-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Modal: scroll niet door laten lekken naar de achtergrond (mobiel fullscreen) */
.feature-detail { overscroll-behavior: contain; }
body.modal-open { overflow: hidden; }
