/* ============================================================
   Teacher Tapp NL — Website
   Brand-aligned, modern refresh of nl.teachertapp.com
   ============================================================ */

/* ---- Blog & Winacties tijdelijk verborgen ----
   nl.teachertapp.com wijst nu naar Netlify, dus de oude blog-iframes werken niet meer.
   Deze regel verbergt alle blog/winacties-links + het homepage-blogblok tot
   nl-blog.teachertapp.com de Nederlandse blog toont. Terugzetten = dit blok verwijderen. */
a[href="blog.html"], a[href="/blog.html"], a[href="blog"], a[href="/blog"], a[href="blog/"], a[href="/blog/"],
a[href="winacties.html"], a[href="/winacties.html"], a[href="winacties"], a[href="/winacties"], a[href="winacties/"], a[href="/winacties/"],
#blog { display: none !important; }

/* ---- Fonts ---- */
@font-face { font-family: 'Red Hat Display'; src: url('assets/fonts/RedHatDisplay-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Red Hat Display'; src: url('assets/fonts/RedHatDisplay-Medium.ttf')  format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Red Hat Display'; src: url('assets/fonts/RedHatDisplay-Bold.ttf')    format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Red Hat Display'; src: url('assets/fonts/RedHatDisplay-Black.ttf')   format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Tapp Hand'; src: url('assets/fonts/TappHand.otf')      format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Tapp Hand'; src: url('assets/fonts/TappHand-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ---- Tokens ---- */
:root {
  --mint:        #10BC90;
  --deep-mint:   #0E9976;
  --pale-mint:   #BCEFE0;
  --wash-mint:   #EAF9F3;
  --violet:      #7D6EEB;
  --pale-violet: #A6BAFA;
  --salmon:      #FC736E;
  --soft-salmon: #FCD5D2;
  --soft-black:  #2B2B2B;
  --storm-grey:  #595959;
  --mist-grey:   #D9D9D9;
  --line:        #ECECEC;
  --bg:          #FFFFFF;

  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 80px);
  --shadow-hard: 0 6px 0 rgba(0,0,0,0.07);
  --shadow-soft: 0 18px 50px -20px rgba(43,43,43,0.28);
  --radius:  24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Red Hat Display', -apple-system, system-ui, sans-serif;
  color: var(--soft-black);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 8vw, 120px); }
.eyebrow {
  font-family: 'Tapp Hand'; font-weight: 700;
  color: var(--mint); font-size: clamp(28px, 4vw, 40px);
  line-height: 1; margin: 0 0 10px;
  transform: rotate(-2deg); transform-origin: left;
}
/* Keep the handwritten eyebrow style inside prose blocks (e.g. "Ontstaan") */
.prose .eyebrow { font-size: clamp(28px, 4vw, 40px); color: var(--mint); line-height: 1; margin: 0 0 10px; }
.section-title {
  font-size: clamp(30px, 4.4vw, 50px); font-weight: 700;
  letter-spacing: -0.02em; margin: 0 0 18px; line-height: 1.1;
  text-wrap: balance;
}
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--storm-grey); max-width: 60ch; text-wrap: pretty; }
.center { text-align: center; }
.center .eyebrow { transform: rotate(-2deg); display: inline-block; }
.center .lead { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 999px; border: 2px solid var(--soft-black);
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: var(--shadow-hard); background: #fff; color: var(--soft-black);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 9px 0 rgba(0,0,0,0.08); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 rgba(0,0,0,0.08); }
.btn--primary { background: var(--mint); border-color: var(--mint); color: #fff; }
.btn--primary:hover { background: var(--deep-mint); border-color: var(--deep-mint); }
.btn--dark { background: var(--soft-black); border-color: var(--soft-black); color: #fff; }
.btn--ghost { background: #fff; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn .store-ico { width: 20px; height: 20px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 76px; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
}
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: 12px; flex: 1; }
.nav__links a { font-weight: 500; font-size: 15.5px; color: var(--storm-grey); position: relative; padding: 6px 0; }
.nav__links a:hover { color: var(--soft-black); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--mint); border-radius: 2px; transition: width .18s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2.5px; background: var(--soft-black); border-radius: 2px; margin: 5px 0; transition: .2s; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% -10%, var(--wash-mint) 0%, transparent 55%);
  z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px);
  align-items: center; padding-block: clamp(40px, 6vw, 80px);
}
.hero__bubble-row { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.speech {
  position: relative; background: #fff; border: 3px solid var(--soft-black);
  border-radius: 32px; padding: 22px 30px; box-shadow: var(--shadow-hard);
  font-family: 'Tapp Hand'; font-weight: 700; color: var(--soft-black);
  font-size: 48px; line-height: 1; transform: rotate(-3deg);
}
.speech::after {
  content: ''; position: absolute; left: 34px; bottom: -22px;
  width: 46px; height: 28px; background: #fff;
  border-left: 3px solid var(--soft-black); border-bottom: 3px solid var(--soft-black);
  border-bottom-left-radius: 8px;
  transform: skewX(-20deg);
}
.speech--mint { color: var(--mint); }
.hero h1 {
  font-size: clamp(34px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.025em;
  margin: 0 0 14px; font-weight: 700; text-wrap: balance;
}
.hero h1 .mint { color: var(--mint); }
.hero__sub { font-size: clamp(18px, 1.8vw, 22px); color: var(--storm-grey); max-width: 44ch; margin: 0 0 30px; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__cta .btn { flex: 1 1 0; justify-content: center; min-width: 150px; }
.hero__trust { margin-top: 26px; display: flex; align-items: center; gap: 12px; color: var(--storm-grey); font-size: 15px; }
.hero__trust b { color: var(--soft-black); }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid #fff;
  margin-left: -10px; background: var(--pale-mint);
}
.avatars span:nth-child(2){ background: var(--pale-violet); }
.avatars span:nth-child(3){ background: var(--soft-salmon); }
.avatars span:nth-child(4){ background: var(--mint); }

/* phone */
.hero__art { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(320px, 78%); aspect-ratio: 320 / 650;
  background: var(--soft-black); border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-soft); z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--wash-mint); position: relative;
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: var(--soft-black); border-radius: 0 0 14px 14px; z-index: 3;
}
.phone image-slot { width: 100%; height: 100%; }
.hero__blob {
  position: absolute; width: 360px; height: 360px; border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%;
  background: var(--pale-mint); opacity: .5; z-index: 1;
  right: -60px; top: 20px; filter: blur(2px);
}
.sticker {
  position: absolute; z-index: 4; background: var(--violet); color: #fff;
  font-family: 'Tapp Hand'; font-weight: 700; font-size: 21px; line-height: 1.0; text-align: center;
  width: 128px; height: 128px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-hard); transform: rotate(8deg); padding: 12px;
}
.sticker b { font-size: 30px; display: block; margin-top: 2px; }
.sticker--hero { right: -6px; bottom: 30px; }

/* ============================================================
   Logos / press strip
   ============================================================ */
.marquee { border-block: 1px solid var(--line); background: #fff; }
.marquee__inner { display: flex; align-items: center; gap: 18px; padding-block: 22px; flex-wrap: wrap; justify-content: center; }
.marquee span { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--storm-grey); }
.marquee .dot { width: 5px; height: 5px; background: var(--mist-grey); border-radius: 50%; }

/* ============================================================
   Intro / value
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .15s ease, box-shadow .15s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.value-card .ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--wash-mint); margin-bottom: 18px;
}
.value-card .ico svg { width: 28px; height: 28px; stroke: var(--deep-mint); }
.value-card h3 { margin: 0 0 8px; font-size: 21px; font-weight: 700; }
.value-card p { margin: 0; color: var(--storm-grey); font-size: 16px; }

/* ============================================================
   How it works — steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); margin-top: 50px; }
.step__num {
  font-family: 'Tapp Hand'; font-weight: 700; color: var(--mint);
  font-size: clamp(56px, 8vw, 96px); line-height: 0.9; margin-bottom: 10px;
}
.step:nth-child(2) .step__num { color: var(--violet); }
.step:nth-child(3) .step__num { color: var(--salmon); }
.step__rule { width: 56px; height: 4px; background: currentColor; border-radius: 2px; margin-bottom: 18px; opacity: .25; }
.step h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; }
.step p { margin: 0; color: var(--storm-grey); font-size: 16.5px; }

/* ============================================================
   Stats band
   ============================================================ */
.stats { background: var(--mint); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 30px; text-align: center; align-items: start; }
.stats__grid > div { display: flex; flex-direction: column; align-items: center; }
.stat__num { font-size: clamp(32px, 4vw, 50px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; white-space: nowrap; }
.stat__label { margin-top: 10px; font-size: 16px; opacity: .92; font-weight: 500; max-width: 18ch; }
.stat__sep { width: 1px; background: rgba(255,255,255,0.25); }

/* ============================================================
   Insight preview (ties to the post builder)
   ============================================================ */
.insight { background: var(--wash-mint); }
.insight__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.chart-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  padding: 34px 34px 28px; box-shadow: var(--shadow-soft);
}
.chart-card .q { font-size: 20px; font-weight: 700; margin: 0 0 22px; line-height: 1.3; }
.bar-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; margin-bottom: 16px; }
.bar-row .lbl { font-size: 15px; font-weight: 500; }
.bar-track { grid-column: 1 / -1; height: 14px; background: #F0F2F4; border-radius: 8px; overflow: hidden; margin-top: 2px; }
.bar-fill { height: 100%; background: var(--mint); border-radius: 8px; width: 0; transition: width 1s cubic-bezier(.2,.7,.2,1); }
.bar-row .val { font-weight: 700; font-variant-numeric: tabular-nums; }
.chart-card .src { font-size: 13px; font-style: italic; color: var(--storm-grey); margin-top: 12px; }
.bar-row:nth-child(4) .bar-fill { background: var(--deep-mint); }

/* ============================================================
   Reasons grid
   ============================================================ */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 36px; margin-top: 50px; }
.reason { display: flex; gap: 16px; align-items: flex-start; }
.reason__n {
  font-family: 'Tapp Hand'; font-weight: 700; color: var(--mint); font-size: 40px; line-height: 0.8; flex: none; width: 38px;
}
.reason h4 { margin: 2px 0 4px; font-size: 18px; font-weight: 700; }
.reason p { margin: 0; color: var(--storm-grey); font-size: 15.5px; }
.reason b { color: var(--soft-black); }

/* ============================================================
   Blog feed
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.post__img { aspect-ratio: 16 / 10; background: var(--pale-mint); }
.post__img image-slot { width: 100%; height: 100%; }
.post__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post__date { font-size: 13px; color: var(--mint); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.post h3 { margin: 8px 0 10px; font-size: 20px; font-weight: 700; line-height: 1.25; }
.post p { margin: 0 0 18px; color: var(--storm-grey); font-size: 15px; flex: 1; }
.post__more { font-weight: 700; color: var(--deep-mint); font-size: 15px; display: inline-flex; gap: 6px; align-items: center; }
.post:hover .post__more { gap: 10px; }

/* ============================================================
   Testimonials
   ============================================================ */
.quotes { background: #fff; }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.qcard {
  position: relative; background: var(--wash-mint); border-radius: var(--radius);
  padding: 30px 28px 26px; border: 1px solid var(--pale-mint);
}
.qcard .mark { font-family: 'Red Hat Display'; font-weight: 900; font-size: 60px; color: var(--mint); line-height: 0.5; height: 26px; }
.qcard p { font-size: 17px; line-height: 1.45; margin: 6px 0 0; font-style: italic; }
.qcard .who { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--storm-grey); }

/* ============================================================
   Download CTA
   ============================================================ */
.download { background: var(--soft-black); color: #fff; border-radius: 36px; overflow: hidden; }
.download__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; padding: clamp(36px, 5vw, 64px); }
.download h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.06; margin: 0 0 14px; letter-spacing: -0.02em; }
.download h2 .mint { color: var(--mint); }
.download p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 46ch; margin: 0 0 28px; }
.download .hero__cta .btn--ghost { border-color: #fff; }
.download__qr { display: flex; align-items: center; gap: 18px; justify-content: flex-end; }
.qr-card { background: #fff; border-radius: 20px; padding: 14px; display: grid; place-items: center; }
.qr-card svg { width: 132px; height: 132px; display: block; }
.download__qr .cap { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 14ch; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #fff; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-block: clamp(44px, 6vw, 72px); }
.footer__logo img { height: 30px; margin-bottom: 16px; }
.footer__about { color: var(--storm-grey); font-size: 15px; max-width: 34ch; }
.footer col, .footer__col { }
.footer__col h5 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft-black); margin: 0 0 14px; }
.footer__col a { display: block; color: var(--storm-grey); font-size: 15px; padding: 5px 0; }
.footer__col a:hover { color: var(--mint); }
.footer__bar { border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__bar small { color: var(--storm-grey); font-size: 13.5px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--storm-grey); transition: .15s; }
.socials a:hover { background: var(--mint); border-color: var(--mint); color: #fff; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__cta .btn:not(.nav__burger) { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .value-grid, .steps, .reasons, .blog-grid, .quotes__grid { grid-template-columns: 1fr; }
  .insight__grid, .download__inner { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat__num { font-size: clamp(22px, 6vw, 40px); }
  .stat__sep { display: none; }
  .download__qr { justify-content: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .speech { font-size: 38px; }
  .reasons { gap: 22px; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; background: #fff; z-index: 49;
  border-bottom: 1px solid var(--line); padding: 18px var(--pad) 26px;
  display: none; flex-direction: column; gap: 4px; box-shadow: var(--shadow-soft);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ============================================================
   In de media — modest, honest strip
   ============================================================ */
.media-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.media-strip__inner { display: flex; align-items: center; justify-content: center; gap: 18px 40px; flex-wrap: wrap; padding-block: 30px; }
.media-strip .label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--storm-grey); font-weight: 700; }
.media-strip .outlet { font-size: clamp(17px, 2.2vw, 24px); font-weight: 700; color: var(--soft-black); opacity: 0.55; white-space: nowrap; }

/* ============================================================
   Voor organisaties — teaser band
   ============================================================ */
.orgs { background: var(--wash-violet); }
.orgs__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.orgs .eyebrow { color: var(--violet); }
.orgs__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { background: #fff; border: 1.5px solid var(--pale-violet); color: var(--deep-violet); border-radius: 999px; padding: 9px 16px; font-size: 14.5px; font-weight: 600; display: inline-flex; gap: 8px; align-items: center; }
.chip svg { width: 15px; height: 15px; stroke: var(--violet); }
.orgs__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn--violet { background: var(--violet); border-color: var(--violet); color: #fff; }
.btn--violet:hover { background: var(--deep-violet); border-color: var(--deep-violet); }
.orgs__card { background: #fff; border-radius: var(--radius); border: 1px solid var(--pale-violet); box-shadow: var(--shadow-soft); padding: 32px 30px; position: relative; }
.orgs__card h3 { margin: 0 0 4px; font-size: 19px; font-weight: 700; }
.orgs__card .sub { margin: 0 0 18px; color: var(--storm-grey); font-size: 14.5px; }
.orgs__list { display: flex; flex-direction: column; gap: 12px; }
.orgs__list .row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.orgs__list .row:last-child { border-bottom: 0; padding-bottom: 0; }
.orgs__list .name { font-weight: 700; font-size: 15.5px; }
.orgs__list .who { color: var(--storm-grey); font-size: 13px; }
.orgs__list .price { font-size: 13px; font-weight: 700; color: var(--violet); white-space: nowrap; }
.orgs__sticker { position: absolute; top: -18px; right: 22px; background: var(--violet); color: #fff; font-family: 'Tapp Hand'; font-weight: 700; font-size: 20px; padding: 10px 16px; border-radius: 14px; transform: rotate(3deg); box-shadow: var(--shadow-hard); }

:root { --deep-violet: #6052C7; --wash-violet: #F2EFFC; }

@media (max-width: 900px) {
  .orgs__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Shared subpage styles
   ============================================================ */
.page-hero { padding-block: clamp(48px, 7vw, 88px); }
.page-hero.mint { background: var(--wash-mint); }
.page-hero.violet { background: var(--wash-violet); }
.page-hero.violet .eyebrow { color: var(--violet); }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 14px; line-height: 1.08; text-wrap: balance; }
.page-hero .lead { font-size: clamp(17px, 1.8vw, 21px); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); margin: 40px 0 12px; }
.prose p { font-size: 17px; color: var(--storm-grey); line-height: 1.7; margin: 0 0 18px; }
.prose p b, .prose p strong { color: var(--soft-black); }

/* Product cards (Voor organisaties) */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; }
.prod-card.feat { border: 2px solid var(--violet); box-shadow: var(--shadow-soft); }
.prod-card .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet); }
.prod-card h3 { margin: 8px 0 6px; font-size: 22px; font-weight: 700; }
.prod-card .desc { color: var(--storm-grey); font-size: 15px; margin: 0 0 18px; }
.prod-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; }
.prod-card li { font-size: 14.5px; display: flex; gap: 9px; align-items: flex-start; }
.prod-card li svg { width: 16px; height: 16px; stroke: var(--mint); flex: none; margin-top: 3px; }
.prod-card .price { margin-top: auto; font-weight: 700; color: var(--soft-black); font-size: 17px; }
.prod-card .price small { color: var(--storm-grey); font-weight: 500; font-size: 13px; display: block; margin-top: 2px; }

/* Independence anchors */
.anchors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.anchor { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.anchor .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--wash-violet); display: grid; place-items: center; margin-bottom: 16px; }
.anchor .ico svg { width: 26px; height: 26px; stroke: var(--violet); }
.anchor h3 { margin: 0 0 6px; font-size: 19px; }
.anchor p { margin: 0; color: var(--storm-grey); font-size: 15px; }

/* Archive (Doorzoek vragen) */
.archive-controls { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; align-items: center; }
.search-box { flex: 1; min-width: 240px; position: relative; }
.search-box input { width: 100%; padding: 14px 18px 14px 46px; border: 2px solid var(--mist-grey); border-radius: 999px; font: inherit; font-size: 16px; }
.search-box input:focus { outline: none; border-color: var(--mint); }
.search-box svg { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--storm-grey); fill: none; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-row { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 22px; }
.filter-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--storm-grey); }
.filter-mode { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 22px; }
.filter-mode[hidden] { display: none; }
.mode-seg { display: inline-flex; background: #F1F3F4; border-radius: 999px; padding: 3px; gap: 2px; }
.mode-btn { border: none; background: transparent; padding: 8px 15px; border-radius: 999px; font: inherit; font-weight: 600; font-size: 13px; color: var(--storm-grey); cursor: pointer; transition: .12s; }
.mode-btn.active { background: #fff; color: var(--soft-black); box-shadow: 0 1px 3px rgba(0,0,0,.14); }
.filter-btn { padding: 12px 18px; border-radius: 999px; border: 2px solid var(--mist-grey); background: #fff; font: inherit; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--storm-grey); transition: .12s; }
.filter-btn:hover { border-color: var(--soft-black); }
.filter-btn.active { background: var(--soft-black); border-color: var(--soft-black); color: #fff; }
.q-count { color: var(--storm-grey); font-size: 14px; margin: 6px 0 10px; }
.q-month { font-family: 'Tapp Hand'; font-weight: 700; color: var(--mint); font-size: 34px; margin: 38px 0 16px; }
.q-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.q-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; display: flex; gap: 18px; align-items: flex-start; transition: .12s; }
.q-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.q-thumb { width: 78px; height: 78px; border-radius: 12px; background: var(--wash-mint); flex: none; overflow: hidden; }
.q-thumb image-slot { width: 100%; height: 100%; }
.q-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 7px; flex-wrap: wrap; }
.q-date { font-size: 13px; color: var(--storm-grey); font-weight: 600; }
.q-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 9px; border-radius: 999px; background: var(--pale-mint); color: var(--deep-mint); }
.q-tag.po { background: #E7E2FB; color: var(--deep-violet); }
.q-tag.vo { background: var(--pale-mint); color: var(--deep-mint); }
.q-tag.mbo { background: var(--soft-salmon); color: #C0392B; }
.q-tag.ho { background: #FCEFD6; color: #B7791F; }
.q-tag.rol { background: transparent; border: 1.5px solid var(--violet); color: var(--deep-violet); }
.q-tag.allesectoren { background: #ECEEF0; color: var(--storm-grey); }
.q-history { font: inherit; font-size: 12px; font-weight: 600; color: var(--soft-black); border: 1.5px solid var(--mist-grey); border-radius: 999px; padding: 4px 26px 4px 11px; -webkit-appearance: none; appearance: none; cursor: pointer; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2356606A' fill='none' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center; }
.q-history:focus { outline: none; border-color: var(--mint); }
.q-herhaald { font-size: 11px; font-weight: 700; color: var(--violet); }
.q-lightbox__history { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; max-width: min(420px, 92vw); }
.q-lightbox__history[hidden] { display: none; }
.lb-period { border: 1.5px solid rgba(255,255,255,.45); background: rgba(255,255,255,.12); color: #fff; font: inherit; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; cursor: pointer; transition: .12s; }
.lb-period:hover { background: rgba(255,255,255,.25); }
.lb-period.active { background: #fff; color: var(--soft-black); border-color: #fff; }
.q-card h3 { margin: 0; font-size: 16.5px; font-weight: 600; line-height: 1.35; }
.q-empty { text-align: center; padding: 60px 20px; color: var(--storm-grey); font-size: 17px; }

/* Vraagkaart met screenshot: klikbaar + vergroten */
.q-thumb { position: relative; }
.q-card--has-img { cursor: zoom-in; }
.q-card--has-img:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; }
.q-thumb__zoom { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(14,153,118,0); opacity: 0; transition: .15s; }
.q-thumb__zoom svg { width: 24px; height: 24px; }
.q-card--has-img:hover .q-thumb__zoom, .q-card--has-img:focus-visible .q-thumb__zoom { opacity: 1; background: rgba(14,153,118,.42); }

.q-lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(18,28,25,.84); }
.q-lightbox.open { display: flex; }
.q-lightbox__fig { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-height: 92vh; }
.q-lightbox__fig img { max-width: min(420px, 92vw); max-height: 80vh; border-radius: 20px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.45); }
.q-lightbox__fig figcaption { color: #fff; font-size: 16px; font-weight: 600; text-align: center; max-width: 44ch; line-height: 1.4; }
.q-lightbox__close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; transition: .15s; }
.q-lightbox__close:hover { background: rgba(255,255,255,.32); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-group { max-width: 820px; margin: 52px auto 6px; font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.01em; }
.faq-group:first-of-type { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; font: inherit; font-size: 19px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--soft-black); }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--wash-mint); display: grid; place-items: center; transition: .2s; }
.faq-q .pm svg { width: 14px; height: 14px; stroke: var(--deep-mint); }
.faq-item.open .pm { background: var(--mint); transform: rotate(45deg); }
.faq-item.open .pm svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 0 0 22px; color: var(--storm-grey); font-size: 16px; line-height: 1.65; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field textarea { padding: 13px 16px; border: 2px solid var(--mist-grey); border-radius: 12px; font: inherit; font-size: 15px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--mint); }
.contact-info .row { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--wash-mint); display: grid; place-items: center; flex: none; }
.contact-info .ico svg { width: 20px; height: 20px; stroke: var(--deep-mint); }
.contact-info h4 { margin: 0 0 2px; font-size: 16px; }
.contact-info p, .contact-info a { margin: 0; color: var(--storm-grey); font-size: 15px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.team-card { text-align: center; }
.team-card .avatar { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 16px; background: var(--pale-mint); overflow: hidden; }
.team-card .avatar image-slot { width: 100%; height: 100%; }
.team-card h3 { margin: 0 0 2px; font-size: 19px; }
.team-card .role { color: var(--violet); font-weight: 600; font-size: 14px; }

/* Team member (met bio) */
.member { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.member + .member { margin-top: 52px; }
.member__photo { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--pale-mint); }
.member__photo image-slot { width: 100%; height: 100%; }
.member h3 { font-size: 26px; margin: 0 0 2px; }
.member .role { color: var(--violet); font-weight: 600; margin-bottom: 16px; font-size: 15px; }
.member p { color: var(--storm-grey); font-size: 16px; line-height: 1.65; margin: 0 0 14px; }
.member p b { color: var(--soft-black); }
@media (max-width: 760px){ .member { grid-template-columns: 1fr; } .member__photo { max-width: 220px; } }

@media (max-width: 900px) {
  .prod-grid, .anchors, .q-grid, .contact-grid, .team-grid { grid-template-columns: 1fr; }
}
