/* =============================================================
   HOUSE OF ADSPERIMENT — REDESIGN 2026
   Unified design system for: index, pdp-redesign, case studies.
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --teal: #008080;
  --teal-deep: #006666;
  --teal-darker: #004d4d;
  --teal-tint: #f0fdfa;
  --teal-bg: #00736e;
  --accent: #D4A574;
  --bg: #FFEDE5;
  --bg-soft: #fff6f1;
  --shadow-tan: #EEC8A6;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --ink-mute: #6b7280;
  --line: rgba(31,41,55,0.08);
  --white: #fff;
  --green: #16a34a;
  --rose: #d4675b;

  /* Type families */
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;
  --font-serif:   'Castoro', 'Castell', Georgia, serif;

  /* Type scale */
  --t-display: clamp(2.25rem, 4.6vw, 3.75rem);
  --t-h1:      clamp(1.75rem, 3.2vw, 2.5rem);
  --t-h2:      clamp(1.4rem, 2.2vw, 1.875rem);
  --t-h3:      1.125rem;
  --t-lead:    clamp(1.05rem, 1.4vw, 1.18rem);
  --t-body:    1rem;
  --t-small:   0.875rem;
  --t-caption: 0.78rem;
  --t-overline:0.72rem;

  /* Radius / shadow */
  --r-card: 16px;
  --r-pill: 999px;
  --r-chip: 10px;
  --shadow:    -6px 6px 0 var(--shadow-tan);
  --shadow-sm: -3px 3px 0 var(--shadow-tan);
  --shadow-lg: -10px 10px 0 var(--shadow-tan);

  /* Spacing */
  --sec-y: clamp(3.5rem, 7vw, 6rem);
  --sec-x: clamp(1rem, 4vw, 2rem);
  --content-max: 1080px;
  --content-narrow: 880px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
/* Geen lelijke gele/grijze tap-highlight op mobiel */
a, button, summary, [role="button"], input, label {
  -webkit-tap-highlight-color: transparent;
}
/* Footer-links netter on focus */
footer.fine a:focus { outline: none; }
footer.fine a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────────────────────────
   2. TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.display { font-size: var(--t-display); line-height: 1.05; letter-spacing: -0.025em; }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); text-transform: uppercase; letter-spacing: 0.02em; }
.lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  line-height: 1.55;
  text-wrap: pretty;
}
.overline {
  font-size: var(--t-overline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
}
.caption { font-size: var(--t-caption); color: var(--ink-mute); }
.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────────
   3. LAYOUT
   ───────────────────────────────────────────────────────────── */
.section { padding: var(--sec-y) var(--sec-x); }
.section.tight {
  padding-top: calc(var(--sec-y) * 0.5);
  padding-bottom: calc(var(--sec-y) * 0.5);
}
.container { max-width: var(--content-max); margin: 0 auto; }
.narrow    { max-width: var(--content-narrow); margin: 0 auto; }

.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section-head.left   { text-align: left; max-width: 56ch; }
.section-head .overline { display: inline-block; margin-bottom: .85rem; }
.section-head h2 { margin-top: .85rem; max-width: 24ch; }
.section-head.center h2 { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--ink-soft); max-width: 60ch; margin: .85rem 0 0; line-height: 1.65; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────────
   4. CARDS
   ───────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 1.75rem;
}
.card.flat   { box-shadow: none; }
.card.lg     { padding: 2.25rem; }
.card.tealfg { background: var(--teal); color: var(--white); border-color: transparent; }

/* ─────────────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--teal); color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  transform: translate(2px,-2px);
  box-shadow: -5px 5px 0 var(--shadow-tan);
  background: var(--teal-deep);
}
.btn:focus { outline: none; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: translate(1px, -1px); }
.btn .arr {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--white); color: var(--teal);
  align-items: center; justify-content: center;
  font-weight: 900; font-size: .8rem;
}
.btn.sm { padding: 0.55rem 1rem; font-size: 0.82rem; }
.btn.lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }
.btn.ghost {
  background: transparent; color: var(--teal);
  box-shadow: inset 0 0 0 2px var(--teal);
}
.btn.ghost:hover {
  background: var(--teal); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn.accent { background: var(--accent); color: var(--ink); }
.btn.accent .arr { background: var(--ink); color: var(--accent); }
.btn.accent:hover { background: #c69460; }

/* ─────────────────────────────────────────────────────────────
   6. TAGS / CHIPS
   ───────────────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .75rem;
  background: var(--white); border: 1px solid var(--line);
  color: var(--teal); border-radius: var(--r-pill);
  font-size: var(--t-overline); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

/* ─────────────────────────────────────────────────────────────
   7. TOPBAR + HEADER
   ───────────────────────────────────────────────────────────── */
.topbar {
  background: var(--teal); color: var(--white);
  text-align: center;
  padding: .65rem 1rem;
  font-size: .82rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.topbar strong { color: var(--accent); font-weight: 800; letter-spacing: 0.04em; }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--sec-x);
  max-width: 1280px;
  margin: 0 auto;
}
.site-header .logo { display: inline-flex; }
.site-header .logo img { height: 56px; width: auto; display: block; }
.site-header nav { display: flex; gap: 2rem; align-items: center; }
.site-header nav a {
  color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: .95rem;
}
.site-header nav a:hover { color: var(--teal); }
.site-header nav a.btn { color: var(--white); }
.site-header nav a.btn:hover { color: var(--white); }

/* Mobile header: links zichtbaar in compact formaat naast logo */
@media (max-width: 760px) {
  .site-header {
    padding: .75rem 1rem;
    gap: .65rem;
    flex-wrap: nowrap;
  }
  .site-header .logo img { height: 38px; }
  .site-header nav {
    display: flex;
    gap: .85rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-header nav a {
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .site-header nav a.btn.sm {
    padding: .4rem .7rem;
    font-size: .7rem;
    gap: .35rem;
  }
  .site-header nav a.btn.sm .arr { width: 16px; height: 16px; font-size: .65rem; }
}
@media (max-width: 420px) {
  .site-header nav { gap: .65rem; }
  .site-header nav a { font-size: .72rem; }
  .site-header nav a.btn.sm { padding: .35rem .6rem; font-size: .65rem; }
}

/* ─────────────────────────────────────────────────────────────
   8. LOGO CAROUSEL
   ───────────────────────────────────────────────────────────── */
.logos {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos::before, .logos::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.logos::before { left: 0; background: linear-gradient(to right, var(--bg-soft), transparent); }
.logos::after  { right: 0; background: linear-gradient(to left, var(--bg-soft), transparent); }
.logo-track {
  display: flex; gap: 1.5rem; align-items: center;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.logo-track .logo-cell {
  flex: 0 0 160px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-track .logo-cell img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: .2s;
  display: block;
}
.logo-track .logo-cell img:hover { opacity: 1; filter: none; }
/* Voor witte SVG-logos: invert om ze leesbaar te maken op lichte bg */
.logo-track .logo-cell img.invert { filter: grayscale(1) invert(1); }
.logo-track .logo-cell img.invert:hover { filter: invert(1); }
.logo-track .logo-cell .brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.45;
  white-space: nowrap;
  transition: opacity .2s;
}
.logo-track .logo-cell .brand-text:hover { opacity: 1; }
.logo-track .logo-cell .brand-text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ─────────────────────────────────────────────────────────────
   9. HOMEPAGE — HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--sec-y) * 0.4);
  padding-bottom: calc(var(--sec-y) * 0.6);
  text-align: center;
}
.hero .eyebrow { margin-bottom: 1.25rem; }
.hero h1 { max-width: 18ch; margin: 0 auto 1.1rem; }
.hero h1 .hi {
  background-image: linear-gradient(transparent 60%, rgba(212,165,116,0.65) 60%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  padding: 0 .15em;
  transition: background-size 1.1s cubic-bezier(.2,.7,.2,1) .35s;
}
.hero h1.in .hi { background-size: 100% 100%; }
.hero p.lead { max-width: 56ch; margin: 0 auto 2rem; }
.hero .ctaRow { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero .meta {
  margin-top: 2rem;
  display: flex; gap: 1rem;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
  color: var(--ink-mute); font-size: .85rem;
}
.hero .meta b { color: var(--ink); font-weight: 800; }
.hero .meta .meta-sep { color: var(--ink-mute); opacity: .55; }
.hero .tag.eyebrow { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* ─────────────────────────────────────────────────────────────
   10. HOMEPAGE — WORRY CHIPS
   ───────────────────────────────────────────────────────────── */
.worry-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: .85rem;
  margin-top: 1.5rem;
}
.worry {
  background: var(--white);
  border: 1px solid var(--line);
  padding: .85rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.worry::before { content: "—"; color: var(--teal); margin-right: .55rem; font-weight: 900; }

/* ─────────────────────────────────────────────────────────────
   11. HOMEPAGE — INVESTMENT BAND (teal)
   ───────────────────────────────────────────────────────────── */
.invest {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.invest h2 { color: var(--white); margin-bottom: 1rem; max-width: 30ch; }
.invest p { color: rgba(255,255,255,0.92); max-width: 60ch; margin: 0 0 .75rem; }
.invest .roi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin: 2rem 0 1.25rem;
}
@media (max-width: 700px) { .invest .roi-grid { grid-template-columns: 1fr; } }
.invest .roi {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  position: relative;
}
.invest .roi-label {
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  margin-bottom: .45rem;
}
.invest .roi-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900; color: var(--accent);
  line-height: 1;
}
.invest .roi-detail {
  font-size: .85rem;
  color: rgba(255,255,255,0.85);
  margin-top: .4rem; line-height: 1.4;
}
.invest .roi:not(:last-child)::after {
  content: '→'; position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  font-weight: 800; z-index: 1;
}
@media (max-width: 700px) {
  .invest .roi:not(:last-child)::after {
    content: '↓'; right: 50%; top: auto; bottom: -16px;
    transform: translateX(50%);
  }
}
.invest hr { border: none; height: 1px; background: rgba(255,255,255,0.18); margin: 1.5rem 0; }
.invest .guarantee-text {
  font-size: 1.05rem; color: rgba(255,255,255,0.92);
  line-height: 1.65; max-width: 62ch;
}
.invest .guarantee-text strong { color: var(--white); }

/* ─────────────────────────────────────────────────────────────
   12. HOMEPAGE — KENNISMAKING / PDP CARD
   ───────────────────────────────────────────────────────────── */
.kennismaking {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem; align-items: stretch;
}
@media (max-width: 800px) { .kennismaking { grid-template-columns: 1fr; } }
.kennismaking .stats {
  display: flex; flex-direction: column;
  gap: .65rem; align-self: center;
}
.kennismaking .stat {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 1rem 1.15rem;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: .9rem;
}
.kennismaking .stat .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kennismaking .stat-val {
  font-family: var(--font-display); font-weight: 800;
  color: var(--ink); font-size: 1.05rem;
  line-height: 1.15; letter-spacing: -0.01em;
}
.kennismaking .stat-lbl {
  font-size: .82rem; color: var(--ink-soft);
  margin-top: .1rem; line-height: 1.3;
}

/* ─────────────────────────────────────────────────────────────
   13. HOMEPAGE — 3-UP FEATURES
   ───────────────────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }
.feature { display: flex; flex-direction: column; gap: 1rem; }
.feature .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.feature h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.02em; }
.feature p { color: var(--ink-soft); font-size: .95rem; margin: 0; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────────
   14. HOMEPAGE — WERKWIJZE TABS
   ───────────────────────────────────────────────────────────── */
.ww-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card) var(--r-card) 0 0;
  overflow: hidden;
}
.ww-tab {
  padding: 1.25rem 1rem;
  background: transparent; border: none; cursor: pointer;
  text-align: center;
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  transition: background .15s;
}
.ww-tab:last-child { border-right: none; }
.ww-tab .pct {
  display: block;
  font-weight: 900; font-size: 1.5rem;
  color: var(--ink); line-height: 1;
}
.ww-tab .lbl {
  display: block; margin-top: .25rem;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.ww-tab.active { background: var(--teal); }
.ww-tab.active .pct { color: var(--accent); }
.ww-tab.active .lbl { color: var(--white); }
.ww-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--r-card) var(--r-card);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.ww-body h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .5rem; }
.ww-body .sub {
  color: var(--ink-mute); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .12em;
  font-weight: 700; margin-bottom: 1.25rem;
}
.ww-body p.desc { color: var(--ink-soft); margin: 0 0 1.5rem; max-width: 65ch; }
.ww-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.ww-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem 1rem;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 600; font-size: .95rem;
}
.ww-list li::before {
  content: ''; flex: 0 0 8px; height: 8px; margin-top: .55rem;
  background: var(--teal); border-radius: 50%;
}
.ww-impact {
  margin-top: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--shadow-tan);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.ww-impact .lab {
  font-size: .65rem; font-weight: 900;
  color: var(--teal); letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: .25rem;
}
.ww-impact .txt {
  font-style: italic; font-weight: 600;
  color: var(--ink); font-size: .92rem; line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   15. HOMEPAGE — A/B TESTS GALLERY
   ───────────────────────────────────────────────────────────── */
.abtests { background: var(--bg-soft); }
.abtest-head { text-align: center; margin-bottom: 2.5rem; }
.abtest-head .overline { margin-bottom: .85rem; display: inline-block; }
.abtest-head h2 { max-width: 22ch; margin: 0 auto .85rem; }
.abtest-head p { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }

.abtest { margin-bottom: 4rem; }
.abtest:last-child { margin-bottom: 0; }
.abtest-meta {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem; align-items: end;
  margin-bottom: 1.25rem;
}
@media (max-width: 760px) {
  .abtest-meta { grid-template-columns: 1fr; align-items: start; }
}
.abtest-meta .left .num,
.abtest-meta .left .client {
  font-family: var(--font-display); font-weight: 800;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .35rem;
}
.abtest-meta .left .num { color: var(--ink-mute); }
.abtest-meta .left .client { color: var(--teal); }
.abtest-meta .left h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  text-transform: none; letter-spacing: -0.02em;
  max-width: 26ch; line-height: 1.15;
}
.abtest-meta .left .hyp {
  color: var(--ink-soft); font-size: .98rem;
  margin-top: .65rem; max-width: 56ch; line-height: 1.55;
}

/* Result pill */
.result-pill {
  display: inline-flex; align-items: stretch; gap: 0;
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  flex-shrink: 0;
}
.result-pill .col { padding: .9rem 1.1rem; min-width: 110px; }
.result-pill .col + .col { border-left: 1px solid var(--line); }
.result-pill .lab {
  font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: .25rem;
}
.result-pill .val {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.5rem;
  color: var(--ink); line-height: 1;
}
.result-pill .col.win .val { color: var(--teal); }

/* A/B comparison stage */
.ab-stage {
  position: relative;
  background: linear-gradient(180deg, #f7f1ea 0%, #efe7dc 100%);
  border-radius: var(--r-card);
  padding: 2.5rem 1.5rem 2rem;
  border: 1px solid var(--shadow-tan);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ab-stage::before {
  content: ''; position: absolute; pointer-events: none;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,128,128,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,128,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.ab-pair {
  position: relative;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 1.5rem;
  max-width: 880px; margin: 0 auto;
}
.ab-side { display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.ab-side .lab {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .35rem .8rem;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: .5rem;
}
.ab-side .lab .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-mute);
}
.ab-side.win .lab {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.ab-side.win .lab .dot {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(252,176,60,0.3);
}

/* Phone bezel — used in homepage A/B gallery */
.ab-side .phone {
  width: clamp(260px, 34vw, 380px);
  aspect-ratio: 9 / 19;
  background: #1f2326;
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    -6px 6px 0 var(--shadow-tan),
    0 24px 48px rgba(31,35,38,0.18),
    inset 0 0 0 1.5px rgba(255,255,255,0.08);
  position: relative;
  flex-shrink: 0;
  transition: transform .35s ease;
}
.ab-side.win .phone {
  box-shadow:
    -6px 6px 0 var(--accent),
    0 24px 48px rgba(0,128,128,0.22),
    inset 0 0 0 1.5px rgba(255,255,255,0.08);
}
.ab-pair:hover .ab-side.win .phone { transform: translateY(-4px); }
.ab-side .phone .screen {
  width: 100%; height: 100%;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.ab-side .phone .notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #1f2326;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.ab-side .phone .statusbar {
  position: absolute; top: 0; left: 0; right: 0; height: 28px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px;
  font-size: 9px; font-weight: 700; color: #1f2326;
  z-index: 4;
}

/* VS divider */
.ab-vs {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.ab-vs .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal); font-weight: 900; font-size: 1rem;
  box-shadow: -2px 2px 0 var(--shadow-tan);
}
.ab-vs .delta {
  background: var(--teal); color: var(--white);
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem;
  padding: .4rem .65rem; border-radius: 10px;
  box-shadow: -2px 2px 0 var(--accent);
  white-space: nowrap;
}
.ab-vs .delta-lbl {
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-mute);
  text-align: center; max-width: 9ch; line-height: 1.2;
}

/* Annotations */
.ab-annotations { position: relative; max-width: 880px; margin: 1.5rem auto 0; }
.ab-anno {
  display: inline-flex; align-items: flex-start; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  padding: .55rem .85rem .55rem .65rem;
  border-radius: 12px;
  box-shadow: -2px 2px 0 var(--shadow-tan);
  font-size: .82rem; color: var(--ink); line-height: 1.4;
  max-width: 280px;
  margin: 0 .5rem .5rem 0;
}
.ab-anno .num {
  flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-family: var(--font-display); font-weight: 900;
  font-size: .72rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ab-annos-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .5rem;
}

@media (max-width: 760px) {
  .ab-pair { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .ab-vs { display: none; }
  .ab-stage { padding: 1.5rem .75rem 1.25rem; }
  .ab-side .phone { width: 100%; max-width: 260px; }
}

/* Mockup screen content */
.mock {
  font: 11px/1.45 system-ui, -apple-system, sans-serif;
  color: #1f2326;
  padding-top: 28px;
  height: 100%;
  overflow: hidden;
}
.mock * { box-sizing: border-box; }
.mock .topnav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 12px; border-bottom: 1px solid #eee5d8;
  font-size: 10px;
}
.mock .topnav .logo-w { font-weight: 900; letter-spacing: -0.02em; font-size: 11px; }
.mock .topnav .ico { width: 14px; height: 14px; opacity: .6; }
.mock .gallery {
  background: #efe7dc; height: 130px;
  display: flex; align-items: center; justify-content: center;
  color: #998; font-size: 9px;
}
.mock .gallery.parfum { background: linear-gradient(135deg, #d3c0a7 0%, #b89972 100%); color: #fff8ee; }
.mock .gallery.chair  { background: linear-gradient(135deg, #6b756f 0%, #404a44 100%); color: #fff; }
.mock .gallery.bundle { background: linear-gradient(135deg, #e9b88e 0%, #c98359 100%); color: #fff; }
.mock .gallery.fire   { background: linear-gradient(180deg, #1a2434 0%, #d35a2b 100%); color: #fff; }
.mock .gallery.kids   { background: linear-gradient(135deg, #fdb95c 0%, #ec6f4d 100%); color: #fff; }
.mock .pad { padding: 8px 12px; }
.mock .h { font-weight: 800; font-size: 11px; line-height: 1.25; margin: 6px 0 4px; }
.mock .price { font-family: var(--font-display); font-weight: 900; font-size: 14px; color: #1f2326; }
.mock .price-old { color: #b8a78f; text-decoration: line-through; font-size: 10px; margin-left: 4px; font-weight: 600; }
.mock .reviews-row { display: flex; gap: 3px; align-items: center; font-size: 9px; color: #756a58; margin-top: 2px; }
.mock .stars { color: #fcb03c; letter-spacing: -1px; }
.mock .btn-cta { background: #008080; color: #fff; text-align: center; padding: 8px; border-radius: 8px; font-weight: 800; font-size: 10px; margin: 8px 0; }
.mock .btn-cta.ghost { background: #fff; color: #008080; border: 1.5px solid #008080; }
.mock .row { display: flex; gap: 4px; }
.mock .pill { background: #f1eadf; padding: 3px 7px; border-radius: 99px; font-size: 8px; font-weight: 600; color: #5a5040; }
.mock .pill.on { background: #008080; color: #fff; }
.mock .usp-strip { display: flex; gap: 4px; margin: 6px 0; }
.mock .usp-strip .u { flex: 1; background: #f7f1ea; border-radius: 6px; padding: 4px; font-size: 7.5px; font-weight: 700; color: #1f2326; text-align: center; line-height: 1.2; border: 1px solid #ece2d3; }
.mock .usp-strip .u .ic { color: #008080; font-size: 9px; }
.mock .sticky-cta { position: absolute; left: 0; right: 0; bottom: 0; background: #fff; border-top: 1px solid #eee5d8; padding: 6px 12px; display: flex; gap: 4px; align-items: center; }
.mock .sticky-cta .price-mini { font-weight: 900; font-size: 10px; }
.mock .sticky-cta .add { flex: 1; background: #008080; color: #fff; padding: 6px 8px; border-radius: 6px; font-weight: 800; font-size: 9px; text-align: center; }
.mock .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mock .grid .cell { background: #efe7dc; aspect-ratio: 1; border-radius: 4px; display: flex; align-items: flex-end; padding: 3px; font-size: 7px; font-weight: 700; color: #fff; }
.mock .grid .cell.b1 { background: linear-gradient(135deg, #c4b29a, #8a7355); }
.mock .grid .cell.b2 { background: linear-gradient(135deg, #87968a, #4d5b50); }
.mock .grid .cell.b3 { background: linear-gradient(135deg, #d8a47c, #a76847); }
.mock .grid .cell.b4 { background: linear-gradient(135deg, #738fa7, #44546b); }
.mock .grid .cell.b5 { background: linear-gradient(135deg, #c19d8e, #8b6151); }
.mock .grid .cell.b6 { background: linear-gradient(135deg, #b1a08a, #786a55); }
.mock .story-block { padding: 8px; border-radius: 8px; margin-bottom: 6px; color: #fff; font-size: 9px; }
.mock .story-block.s1 { background: linear-gradient(135deg, #6b756f, #404a44); }
.mock .story-block.s2 { background: linear-gradient(135deg, #b89972, #8a6f4f); }
.mock .story-block .lbl-s { font-weight: 900; font-size: 10px; }
.mock .modal {
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  background: #fff; border: 1.5px solid #008080; border-radius: 12px;
  padding: 10px; box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.mock .modal .modal-h { font-weight: 900; font-size: 11px; margin-bottom: 4px; }
.mock .modal .row-m { display: flex; gap: 6px; align-items: center; margin: 6px 0; }
.mock .modal .thumb { width: 30px; height: 30px; background: linear-gradient(135deg, #6b756f, #404a44); border-radius: 4px; }
.mock .modal .info-m { flex: 1; font-size: 9px; }
.mock .filter-bar-side { display: flex; }
.mock .filter-bar-side .side { width: 60px; background: #f7f1ea; padding: 6px 4px; font-size: 7.5px; line-height: 1.4; color: #5a5040; border-right: 1px solid #ece2d3; }
.mock .filter-bar-side .side .item { padding: 2px 0; }
.mock .filter-bar-side .side .item.act { color: #008080; font-weight: 800; }
.mock .filter-bar-side .grid-mini { flex: 1; padding: 6px; }
.mock .filter-pills { display: flex; gap: 4px; padding: 6px 8px; overflow: hidden; border-bottom: 1px solid #eee5d8; }
.mock .filter-pills .fp { background: #f1eadf; padding: 4px 8px; border-radius: 99px; font-size: 8px; font-weight: 700; color: #5a5040; white-space: nowrap; }
.mock .filter-pills .fp.on { background: #008080; color: #fff; }
.mock .checkout-step { display: flex; gap: 6px; padding: 8px 12px; border-bottom: 1px solid #eee5d8; }
.mock .checkout-step .step { flex: 1; text-align: center; font-size: 7px; font-weight: 700; color: #b8a78f; }
.mock .checkout-step .step.act { color: #008080; }
.mock .pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 0 12px; }
.mock .pay-grid .pay { border: 1px solid #eee5d8; padding: 6px 4px; border-radius: 6px; font-size: 8px; font-weight: 700; text-align: center; }
.mock .pay-grid .pay.on { border-color: #008080; background: #f0f8f8; }
.mock .trust-band { background: #008080; color: #fff; padding: 6px 12px; font-size: 8px; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.mock .trust-band .urgency { background: #fcb03c; color: #1f2326; padding: 1px 5px; border-radius: 4px; font-size: 7px; }
.mock .bundle-hero { background: linear-gradient(135deg, #fcb03c, #d97a2c); padding: 10px; color: #fff; }
.mock .bundle-hero .tag-h { font-size: 8px; font-weight: 700; opacity: .85; }
.mock .bundle-hero .tit { font-weight: 900; font-size: 12px; line-height: 1.2; margin: 2px 0 4px; }
.mock .bundle-hero .price-row { display: flex; align-items: baseline; gap: 6px; }
.mock .bundle-hero .pp { font-family: var(--font-display); font-weight: 900; font-size: 16px; }
.mock .bundle-hero .po { font-size: 9px; text-decoration: line-through; opacity: .8; }
.mock .bundle-hero .save { background: #fff; color: #d97a2c; padding: 1px 5px; border-radius: 3px; font-size: 8px; font-weight: 800; }

/* Keylearning row */
.abtest-foot {
  margin-top: 1rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 1rem; align-items: center;
}
@media (max-width: 760px) { .abtest-foot { grid-template-columns: 1fr; } }
.keylearn { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.keylearn .chip {
  background: var(--white); border: 1px solid var(--line);
  padding: .4rem .8rem; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 600; color: var(--ink-soft);
}
.keylearn .chip b { color: var(--teal); font-weight: 800; }

/* Live ticker */
.ticker {
  display: inline-flex; gap: .8rem; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  padding: .5rem .9rem; border-radius: var(--r-pill);
  font-size: .8rem; box-shadow: var(--shadow-sm);
  font-family: ui-monospace, monospace;
}
.ticker .led {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: led 1.6s ease-in-out infinite;
}
@keyframes led {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.ticker .lab {
  color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .68rem; font-weight: 800;
}
.ticker .val { font-weight: 800; color: var(--ink); }

/* Counters */
.counter { font-variant-numeric: tabular-nums; }

/* ─────────────────────────────────────────────────────────────
   16. PDP — HERO + STATS
   ───────────────────────────────────────────────────────────── */
.pdp-hero-wrap {
  padding-top: calc(var(--sec-y) * 0.4);
  padding-bottom: calc(var(--sec-y) * 0.5);
}
.pdp-hero {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (max-width: 820px) { .pdp-hero { grid-template-columns: 1fr; gap: 1.75rem; } }
.pdp-hero .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--t-overline); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pdp-hero .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.pdp-hero h1 { color: var(--white); margin-bottom: 1.1rem; max-width: 22ch; }
.pdp-hero p { color: rgba(255,255,255,0.92); max-width: 56ch; margin: 0 0 1rem; line-height: 1.6; }
.pdp-hero p.korting { font-size: .95rem; color: rgba(255,255,255,0.78); }
.pdp-hero p.korting strong { color: var(--accent); font-weight: 800; }
.pdp-hero .ctaRow { margin-top: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.pdp-hero .btn { background: var(--accent); color: var(--ink); }
.pdp-hero .btn .arr { background: var(--ink); color: var(--accent); }
.pdp-hero .btn:hover { background: #c69460; }
.pdp-hero .btn.ghost {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
}
.pdp-hero .btn.ghost:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.8);
}
.pdp-hero-stats { display: grid; gap: .85rem; align-content: center; }
.pdp-hero-stats .card-mini {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  display: flex; align-items: center; gap: .9rem;
}
.pdp-hero-stats .card-mini.price {
  background: var(--white); color: var(--ink);
  border-color: transparent;
  box-shadow: -4px 4px 0 rgba(0,0,0,0.12);
  padding: 1.15rem 1.25rem;
}
.pdp-hero-stats .icon-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: -2px 2px 0 var(--shadow-tan);
}
.pdp-hero-stats .card-mini.price .icon-circle {
  background: var(--teal); color: var(--white);
  box-shadow: none;
}
.pdp-hero-stats .stat-val {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.25rem; line-height: 1.1;
  color: var(--white); letter-spacing: -0.01em;
}
.pdp-hero-stats .card-mini.price .stat-val { color: var(--teal); font-size: 1.6rem; }
.pdp-hero-stats .stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,0.78);
  margin-top: .15rem; line-height: 1.3;
}
.pdp-hero-stats .card-mini.price .stat-lbl { color: var(--ink-mute); }
.pdp-hero-stats .price-row {
  display: flex; align-items: baseline; gap: .55rem;
}
.pdp-hero-stats .price-old {
  color: var(--ink-mute);
  text-decoration: line-through;
  font-size: 1rem; font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────
   17. PDP — WAAROM / DELIVERABLES / FEATURES-32
   ───────────────────────────────────────────────────────────── */
.why-block { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.why-block .why-text p {
  color: var(--ink-soft); line-height: 1.7;
  font-size: 1.02rem; margin: 0 0 1rem;
}
.why-block .why-text strong { color: var(--ink); }

.deliverables { display: grid; gap: .85rem; }
.deliverable {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.deliverable .check {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: -2px 2px 0 var(--shadow-tan);
}
.deliverable strong {
  display: block; color: var(--ink);
  font-size: 1rem; margin-bottom: .25rem;
  font-weight: 800;
}
.deliverable p {
  margin: 0; color: var(--ink-soft);
  font-size: .92rem; line-height: 1.55;
}

.features-32 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .features-32 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-32 { grid-template-columns: 1fr; } }
.feat32 {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .85rem;
}
.feat32 .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: -2px 2px 0 var(--shadow-tan);
}
.feat32 h3 {
  font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--ink);
}
.feat32 p {
  color: var(--ink-soft); font-size: .92rem;
  line-height: 1.6; margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   18. CASE CARDS (gebruikt op homepage + PDP)
   ───────────────────────────────────────────────────────────── */
.cases-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 760px) { .cases-grid { grid-template-columns: 1fr; } }
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
  text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover {
  transform: translate(2px,-2px);
  box-shadow: -8px 8px 0 var(--shadow-tan);
}
.case-card .label {
  font-size: var(--t-overline); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--teal);
}
.case-card h3 {
  font-size: 1.4rem; letter-spacing: -0.02em;
  text-transform: none;
}
.case-card .desc {
  color: var(--ink-soft); font-size: .94rem;
  line-height: 1.55; margin: 0;
}
.case-card .metric-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: .75rem; align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}
.case-card .metric-row.solo { grid-template-columns: 1fr 1fr; }
.case-card .metric { text-align: center; }
.case-card .metric .v {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; color: var(--ink);
  line-height: 1; letter-spacing: -0.02em;
}
.case-card .metric .v.win { color: var(--teal); }
.case-card .metric .v.muted { color: var(--ink-mute); }
.case-card .metric .l {
  font-size: .7rem; color: var(--ink-mute);
  margin-top: .35rem;
  text-transform: uppercase; letter-spacing: .1em;
  font-weight: 700;
}
.case-card .arrow-mid {
  color: var(--teal); font-weight: 900; font-size: 1.3rem;
}
.case-card .tag-result {
  align-self: flex-start;
  background: var(--teal); color: var(--white);
  font-size: .75rem; font-weight: 800;
  padding: .4rem .85rem; border-radius: var(--r-pill);
  letter-spacing: .04em;
  white-space: nowrap;
  line-height: 1.2;
}
.case-card .case-cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--teal); font-weight: 800; font-size: .9rem;
  margin-top: auto;
}
.case-card .case-cta .arr {
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem;
}

/* ─────────────────────────────────────────────────────────────
   19. PDP — GUARANTEE BAND + FAQ + PRICE STACK
   ───────────────────────────────────────────────────────────── */
.guarantee {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee .badge-100 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--white); color: var(--teal);
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.6rem; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  box-shadow: -4px 4px 0 rgba(0,0,0,0.15);
  border: 3px solid var(--accent);
}
.guarantee h2 { color: var(--white); margin: 0 auto 1rem; max-width: 22ch; }
.guarantee p {
  color: rgba(255,255,255,0.94);
  max-width: 56ch; margin: 0 auto 1rem;
  font-size: 1.02rem; line-height: 1.65;
}
.guarantee .plus {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  max-width: 56ch;
  margin: 1.5rem auto 0;
}
.guarantee .plus strong { color: var(--accent); font-weight: 800; }
.guarantee .ctaRow {
  margin-top: 2rem;
  display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.guarantee .btn { background: var(--white); color: var(--teal); }
.guarantee .btn .arr { background: var(--teal); color: var(--white); }
.guarantee .btn:hover { background: var(--accent); color: var(--ink); }

.faq-list { display: grid; gap: .85rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--ink);
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-item summary .chev {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .9rem;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item[open] summary {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.faq-item .answer {
  padding: 1rem 1.4rem 1.4rem;
  color: var(--ink-soft); line-height: 1.65;
  font-size: .95rem;
}
.faq-item .answer strong { color: var(--ink); }

/* ─────────────────────────────────────────────────────────────
   20. CASE STUDY — HERO + KPI STACK
   ───────────────────────────────────────────────────────────── */
.case-hero-wrap {
  padding-top: calc(var(--sec-y) * 0.4);
  padding-bottom: calc(var(--sec-y) * 0.5);
}
.case-hero {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 860px) { .case-hero { grid-template-columns: 1fr; } }
.case-hero .crumb {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: .85rem;
  font-family: var(--font-display); font-weight: 600;
}
.case-hero .crumb a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.4);
}
.case-hero .eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  padding: .4rem .85rem;
  font-size: var(--t-overline); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.case-hero .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.case-hero h1 { color: var(--white); margin-bottom: 1rem; }
.case-hero p.lead {
  color: rgba(255,255,255,0.94);
  margin: 0 0 1.5rem;
  max-width: 50ch;
}
.case-hero .meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.case-hero .meta-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-pill);
  padding: .45rem 1rem;
  font-size: .82rem; font-weight: 700;
}

/* KPI stack rechts in case-hero */
.case-hero .kpi-stack { display: grid; gap: .85rem; }
.case-hero .kpi-big {
  background: var(--white); color: var(--ink);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  box-shadow: -4px 4px 0 rgba(0,0,0,0.12);
  display: flex; flex-direction: column; gap: .35rem;
  position: relative; overflow: hidden;
}
.case-hero .kpi-big .kpi-label {
  font-size: var(--t-overline); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--teal);
}
.case-hero .kpi-big .kpi-flow {
  display: flex; align-items: baseline;
  gap: .75rem; flex-wrap: wrap;
}
.case-hero .kpi-big .kpi-from {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink-mute); text-decoration: line-through;
}
.case-hero .kpi-big .kpi-arr {
  color: var(--accent); font-weight: 900; font-size: 1.4rem;
}
.case-hero .kpi-big .kpi-to {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.6rem; line-height: 1;
  letter-spacing: -0.02em; color: var(--teal);
}
.case-hero .kpi-big .kpi-sub {
  font-size: .82rem; color: var(--ink-soft);
}
.case-hero .kpi-big .kpi-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--teal); color: var(--white);
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: .35rem .7rem; border-radius: var(--r-pill);
  box-shadow: -2px 2px 0 var(--shadow-tan);
}
.case-hero .kpi-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.case-hero .kpi-mini {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: .9rem 1rem;
}
.case-hero .kpi-mini .v {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.4rem; line-height: 1;
  color: var(--white); letter-spacing: -0.01em;
}
.case-hero .kpi-mini .l {
  font-size: .72rem;
  color: rgba(255,255,255,0.78);
  margin-top: .35rem;
  text-transform: uppercase; letter-spacing: .1em;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────
   21. CASE STUDY — QUOTE STRIP
   ───────────────────────────────────────────────────────────── */
.quote-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
  position: relative;
}
.quote-strip::before {
  content: '"'; position: absolute; top: -1rem; left: 1.5rem;
  font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  color: var(--accent); font-weight: 700; font-style: italic;
}
.quote-strip blockquote {
  margin: 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.45; color: var(--ink);
  padding-left: 2.25rem;
  max-width: 60ch; text-wrap: pretty;
}
.quote-strip .src {
  display: flex; align-items: center; gap: .85rem;
  margin-top: 1.25rem;
  padding-left: 2.25rem;
}
.quote-strip .src .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.quote-strip .src .name { font-weight: 800; line-height: 1.2; }
.quote-strip .src .co {
  font-size: .78rem; color: var(--teal); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   22. CASE STUDY — STORY BLOCK
   ───────────────────────────────────────────────────────────── */
.story-block { display: grid; gap: 1rem; }
.story-block p {
  color: var(--ink-soft); line-height: 1.7;
  font-size: 1.02rem; margin: 0;
}
.story-block strong { color: var(--ink); }

/* ─────────────────────────────────────────────────────────────
   23. CASE STUDY — VOOR/NA COMPARE (phone mockups)
   ───────────────────────────────────────────────────────────── */
.compare-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}
.compare-col .cc-label {
  font-size: .72rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: var(--r-pill);
  border: 1.5px solid currentColor;
  display: inline-flex; align-items: center; gap: .5rem;
}
.compare-col.before .cc-label { color: var(--rose); }
.compare-col.after  .cc-label { color: var(--teal); }
.compare-col .cc-label .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
}
.compare-col h3 {
  font-size: 1.05rem; text-transform: uppercase;
  letter-spacing: 0.04em; text-align: center;
}
.compare-col.before h3 { color: var(--rose); }
.compare-col.after  h3 { color: var(--teal); }
.compare-col .sub {
  font-size: .85rem; color: var(--ink-mute);
  text-align: center;
  max-width: 32ch; line-height: 1.5;
  margin-top: -.35rem;
}

/* Phone bezel — case study (large, scrollable) */
.compare-col .phone {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 393 / 800;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 8px;
  position: relative;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.compare-col.before .phone { box-shadow: -6px 6px 0 #f3c4bc; }
.compare-col .phone::before {
  content: ''; position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #1a1a1a; border-radius: 0 0 14px 14px;
  z-index: 3;
}
.compare-col .phone .screen {
  width: 100%; height: 100%;
  border-radius: 22px;
  overflow-y: auto; overflow-x: hidden;
  position: relative;
  background: var(--white);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.compare-col .phone .screen::-webkit-scrollbar { display: none; }
.compare-col .phone .screen img {
  width: 100%; display: block;
  user-select: none; pointer-events: none;
}
.compare-col .phone .scroll-hint {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7); color: #fff;
  padding: .35rem .75rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  transition: opacity .3s ease;
  display: inline-flex; align-items: center; gap: .35rem;
}
.compare-col .phone[data-scrolled="true"] .scroll-hint { opacity: 0; }
.compare-col .phone .scroll-hint::after {
  content: '↕'; font-size: .85rem; line-height: 1;
}

.compare-col .cc-list {
  margin: .5rem 0 0; padding: 0;
  list-style: none;
  display: grid; gap: .55rem;
  width: 100%; max-width: 280px;
  font-size: .85rem; line-height: 1.5;
}
.compare-col .cc-list li {
  display: grid; grid-template-columns: 18px 1fr;
  gap: .55rem; align-items: flex-start;
  color: var(--ink-soft);
}
.compare-col .cc-list li::before {
  content: ''; width: 14px; height: 14px;
  border-radius: 50%; margin-top: .25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}
.compare-col.before .cc-list li::before {
  background-color: var(--rose);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round'><path d='M6 6l12 12M18 6L6 18'/></svg>");
}
.compare-col.after .cc-list li::before {
  background-color: var(--teal);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.compare-divider { display: none; }
@media (max-width: 760px) {
  .compare-divider {
    display: flex; align-items: center; gap: .75rem;
    margin: 0 auto; max-width: 280px;
    color: var(--ink-mute);
    font-size: .75rem;
    text-transform: uppercase; letter-spacing: .14em;
    font-weight: 800;
  }
  .compare-divider::before, .compare-divider::after {
    content: ''; flex: 1; height: 1px;
    background: var(--line);
  }
}

/* ─────────────────────────────────────────────────────────────
   24. CASE STUDY — OPTIMALISATIES (7 cards)
   ───────────────────────────────────────────────────────────── */
.opt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .opt-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .opt-grid { grid-template-columns: 1fr; } }
.opt-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
}
.opt-card .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  box-shadow: -2px 2px 0 var(--shadow-tan);
}
.opt-card h3 {
  font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--ink);
}
.opt-card p {
  color: var(--ink-soft);
  font-size: .92rem; line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   25. CASE STUDY — RESULTAAT BAR CHART
   ───────────────────────────────────────────────────────────── */
.result-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}
.bar-chart { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.bar-row {
  display: grid; grid-template-columns: 90px 1fr 100px;
  gap: 1rem; align-items: center;
}
.bar-row .lbl {
  font-weight: 800; font-size: .85rem;
  color: var(--ink-soft); letter-spacing: .04em;
  text-transform: uppercase;
}
.bar-row .bar {
  height: 38px; background: var(--bg);
  border-radius: var(--r-pill);
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.bar-row .bar .fill {
  position: absolute; inset: 0;
  border-radius: var(--r-pill);
  width: var(--w, 0%);
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
}
.bar-row.before .bar .fill {
  background: linear-gradient(90deg, var(--rose) 0%, #c95a4f 100%);
}
.bar-row.after  .bar .fill {
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-deep) 100%);
}
.bar-row .v {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.1rem; text-align: right;
}
.bar-row.before .v { color: var(--rose); }
.bar-row.after  .v { color: var(--teal); }
.result-block .delta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.result-block .delta-pill {
  background: var(--teal); color: var(--white);
  padding: .6rem 1.1rem;
  border-radius: var(--r-pill);
  font-weight: 800; font-size: .95rem;
  box-shadow: -2px 2px 0 var(--shadow-tan);
}
.result-block .delta-note {
  color: var(--ink-soft); font-size: .9rem;
}

/* ─────────────────────────────────────────────────────────────
   26. REVIEWS (homepage + PDP)
   ───────────────────────────────────────────────────────────── */
.reviews { overflow: hidden; }
.review-row {
  display: flex; gap: 1.25rem;
  width: max-content;
  padding: .5rem 0;
}
.review-row.r1 { animation: scroll 60s linear infinite; }
.review-row.r2 {
  animation: scrollR 60s linear infinite;
  margin-top: 1.25rem;
}
.review {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .85rem;
}
.review .who { display: flex; align-items: center; gap: .65rem; }
.review .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
}
.review .name { font-weight: 800; font-size: .9rem; line-height: 1.2; }
.review .co {
  font-size: .72rem; color: var(--teal); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.review p {
  margin: 0; font-size: .9rem;
  color: var(--ink-soft); line-height: 1.55;
}

/* Mobile: reviews swipebaar i.p.v. auto-scroll animatie.
   De auto-scroll werkt onbetrouwbaar op iOS (kan haperen of stoppen). */
@media (max-width: 760px) {
  .reviews {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 1rem 1rem;
  }
  .reviews::-webkit-scrollbar { display: none; }
  .reviews { scrollbar-width: none; }
  .review-row {
    animation: none !important;
    width: max-content;
    margin: 0 !important;
  }
  .review-row.r2 { display: none; } /* op mobiel maar 1 rij */
  .review {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

/* ─────────────────────────────────────────────────────────────
   27. CTA BAND / FINAL CTA
   ───────────────────────────────────────────────────────────── */
.cta-band, .final-cta {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: var(--sec-y) var(--sec-x);
  position: relative;
  overflow: hidden;
}
.cta-band h2, .final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem auto 1rem;
  max-width: 22ch;
}
.cta-band p, .final-cta p {
  color: rgba(255,255,255,0.92);
  max-width: 56ch; margin: 0 auto 2rem;
  font-size: 1.05rem; line-height: 1.6;
}
.cta-band .ctaRow, .final-cta .ctaRow {
  display: inline-flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
}
.final-cta .overline { color: var(--accent); }
.cta-band .info, .final-cta .info {
  margin-top: 2.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,0.7);
}

/* CTA-band buttons — wit / accent */
.cta-band .btn { background: var(--white); color: var(--teal); }
.cta-band .btn .arr { background: var(--teal); color: var(--white); }
.cta-band .btn:hover { background: var(--accent); color: var(--ink); }
.final-cta .btn { background: var(--accent); color: var(--ink); }
.final-cta .btn .arr { background: var(--ink); color: var(--accent); }
.final-cta .btn:hover { background: #ffc830; }

/* Price stack (PDP bestel-CTA) — gecentreerd op eigen rij, knoppen eronder */
.final-cta .price-stack {
  display: flex; flex-direction: column;
  align-items: center; gap: .25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  margin: .5rem auto 1.75rem;
  width: fit-content;
}
.final-cta .price-old {
  color: rgba(255,255,255,0.65);
  text-decoration: line-through;
  font-size: 1.1rem; font-weight: 600;
}
.final-cta .price-new {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent); line-height: 1;
  letter-spacing: -0.02em;
}
.final-cta .price-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────
   28. FOOTER (compact "fine" footer)
   ───────────────────────────────────────────────────────────── */
footer.fine {
  background: #131516;
  color: rgba(255,255,255,0.6);
  padding: 1.5rem var(--sec-x);
  font-size: .8rem;
}
footer.fine .row {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   29. REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────────────────────────────────────────────────────
   30. BUBBLE CANVAS (homepage achtergrond)
   ───────────────────────────────────────────────────────────── */
#bubble-canvas {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: .65;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, transparent 80px, #000 240px, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0, transparent 80px, #000 240px, #000 100%);
}
body.has-bubbles { position: relative; }
body.has-bubbles > *:not(#bubble-canvas) { position: relative; z-index: 1; }
body.has-bubbles .invest,
body.has-bubbles .cta-band,
body.has-bubbles .final-cta,
body.has-bubbles .topbar,
body.has-bubbles footer.fine { z-index: 2; }

/* Cursor trail (case study + PDP) */
#cursor-trail {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
}

/* ─────────────────────────────────────────────────────────────
   31. PRINT
   ───────────────────────────────────────────────────────────── */
@media print {
  .topbar, footer.fine, #bubble-canvas, #cursor-trail { display: none; }
  body { background: white; }
}
