/* ============================================
   VOREPAIR® — Design System
   Dark high-tech · editorial · inspired by studio sites
   ============================================ */

:root {
  --bg: #07090b;
  --bg-2: #0c0f12;
  --surface: #101418;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eef2f4;
  --text-dim: #9aa6ad;
  --text-faint: #5c676e;
  --accent: #00e5c3;
  --accent-dim: rgba(0, 229, 195, 0.12);
  --accent-glow: rgba(0, 229, 195, 0.35);
  --font-display: "Space Grotesk", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-mono: "IBM Plex Mono", monospace;
  --pad: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #06110e; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- utilities ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.accent { color: var(--accent); }
.serif-i { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.wrap { padding-left: var(--pad); padding-right: var(--pad); max-width: 1440px; margin: 0 auto; }

/* ---------- top microbar ---------- */
.microbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px var(--pad);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.microbar span:nth-child(2) { display: none; }
@media (min-width: 720px) { .microbar span:nth-child(2) { display: block; } }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-logo sup { font-size: 10px; color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--text);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #06110e;
  box-shadow: 0 0 24px var(--accent-glow);
}
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  cursor: pointer;
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(64px, 10vw, 140px) var(--pad) clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}
.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: clamp(24px, 4vw, 48px);
}
.hero h1 {
  font-size: clamp(44px, 9vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 14ch;
}
.hero h1 .serif-i { text-transform: none; letter-spacing: -0.01em; }
.hero-sub {
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* page hero (subpages) */
.page-hero { padding: clamp(48px, 7vw, 96px) var(--pad); border-bottom: 1px solid var(--line); }
.page-hero h1 {
  font-size: clamp(38px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
}
.page-hero h1 .serif-i { text-transform: none; }
.page-hero p { margin-top: 20px; max-width: 560px; color: var(--text-dim); font-size: 17px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  transition: all 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-display);
}
.btn-primary {
  background: var(--accent);
  color: #06110e;
}
.btn-primary:hover { box-shadow: 0 0 32px var(--accent-glow); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.marquee-track .sep { color: var(--accent); margin: 0 18px; }
.marquee.big .marquee-track {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-transform: uppercase;
}
.marquee.big { padding: 28px 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- section scaffolding ---------- */
.section { padding: clamp(56px, 8vw, 120px) var(--pad); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: clamp(32px, 5vw, 64px); }
.section-head .mono { display: block; margin-bottom: 14px; }
.section-head h2 {
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
}
.section-head h2 .serif-i { text-transform: none; }
.section-head .lede { margin-top: 18px; max-width: 540px; color: var(--text-dim); }

/* ---------- cards grid ---------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px);
  position: relative;
  transition: background 0.3s;
}
.card:hover { background: var(--surface); }
.card .card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.14em;
}
.card .card-icon { font-size: 26px; margin: 18px 0 14px; color: var(--accent); }
.card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--text-dim); }
.card .card-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.card .card-meta .accent { color: var(--accent); }
.card-link::after {
  content: "→";
  position: absolute;
  top: clamp(24px, 3vw, 40px);
  right: clamp(24px, 3vw, 40px);
  color: var(--text-faint);
  transition: all 0.25s;
}
.card-link:hover::after { color: var(--accent); transform: translateX(4px); }

/* tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--text-dim);
}
.tag.hot { border-color: var(--accent); color: var(--accent); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--bg); padding: clamp(24px, 3vw, 44px); }
.stat-value {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value .serif-i { color: var(--accent); font-size: 0.7em; }
.stat-label { margin-top: 12px; font-size: 13px; color: var(--text-dim); max-width: 24ch; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); counter-reset: step; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--bg); padding: clamp(24px, 3vw, 40px); }
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 40px;
}
.step h3 { font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-dim); }

/* ---------- price table ---------- */
.price-table { border: 1px solid var(--line); }
.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px clamp(18px, 2.5vw, 32px);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--surface); }
.price-row.head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.price-row.head:hover { background: transparent; }
.price-name { font-weight: 600; font-size: 15px; }
.price-name small { display: block; font-weight: 400; font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }
.price-time { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.price-cost { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.price-cost .accent { font-size: 12px; font-weight: 400; }
.price-row .btn { padding: 9px 20px; font-size: 13px; }
@media (max-width: 720px) {
  .price-row { grid-template-columns: 1fr auto; }
  .price-time { display: none; }
  .price-row.head { display: none; }
  .price-row .btn { grid-column: 1 / -1; justify-content: center; }
}

/* ---------- big quote ---------- */
.bigquote { padding: clamp(64px, 9vw, 140px) var(--pad); border-bottom: 1px solid var(--line); text-align: center; }
.bigquote blockquote {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0 auto;
}
.bigquote blockquote .serif-i { color: var(--accent); text-transform: none; }
.bigquote figcaption { margin-top: 28px; color: var(--text-dim); font-size: 14px; }
.bigquote figcaption strong { color: var(--text); display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(72px, 10vw, 160px) var(--pad);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  bottom: -50%; left: 20%;
  width: 50vw; height: 50vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(40px, 8vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
}
.cta-band h2 .serif-i { text-transform: none; }
.cta-contacts { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.cta-contacts a { color: var(--text-dim); font-size: 16px; transition: color 0.2s; }
.cta-contacts a:hover { color: var(--accent); }
.cta-contacts .mono { margin-right: 12px; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px clamp(18px, 2.5vw, 32px);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 400; flex-shrink: 0; }
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--accent); }
.faq .faq-body { padding: 0 clamp(18px, 2.5vw, 32px) 24px; color: var(--text-dim); font-size: 14.5px; max-width: 680px; }

/* ---------- form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.field input, .field select, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- footer ---------- */
.footer { padding: clamp(48px, 6vw, 80px) var(--pad) 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand h4 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.footer-brand h4 sup { font-size: 10px; color: var(--accent); }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 32ch; }
.footer-col .mono { display: block; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 14px; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- device glow divider ---------- */
.tick-row {
  display: flex;
  justify-content: space-between;
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================
   SCROLL-DRIVEN HOMEPAGE
   ============================================ */

/* scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* word reveal — fade + lift, zonder clipping (niets wordt afgesneden) */
.wr {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.1, 1);
  will-change: opacity, transform;
}
.wr.in { opacity: 1; transform: none; }
.wr > span { display: inline; }

/* hero v2 — split with phone */
.hero-v2 {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: clamp(48px, 6vw, 80px) var(--pad);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-v2::before {
  content: "";
  position: absolute;
  top: -20%; right: -15%;
  width: 65vw; height: 65vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 960px) {
  .hero-v2 { grid-template-columns: 1fr; min-height: auto; }
}
/* lagere schermen: compactere hero zodat alles in beeld past */
@media (max-height: 820px) {
  .hero-v2 { min-height: auto; padding-top: clamp(32px, 4vw, 56px); padding-bottom: clamp(32px, 4vw, 56px); }
  .hero-phone { width: min(230px, 48vw); }
  .hero-sub { margin-top: 20px; }
  .hero-actions { margin-top: 26px; }
  .hero-scroll-hint { display: none; }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 22px; left: var(--pad);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  animation: hint-bob 2.2s ease-in-out infinite;
}
@keyframes hint-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* phone mockup — realistic iPhone */
.hero-phone-wrap { display: flex; justify-content: center; position: relative; z-index: 1; }
.hero-phone {
  width: min(290px, 60vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 50px;
  background: linear-gradient(155deg, #4a4d53 0%, #202227 22%, #2c2e34 50%, #17191d 78%, #3a3d43 100%);
  position: relative;
  transform: rotate(-6deg);
  will-change: transform;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), 0 0 100px rgba(0, 229, 195, 0.1);
}
.hero-phone .frame-inner {
  position: absolute;
  inset: 3.5px;
  border-radius: 46px;
  background: #000;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}
.hero-phone .btn-el {
  position: absolute;
  background: linear-gradient(90deg, #45484e, #1a1c20);
  border-radius: 3px;
}
.hero-phone .b-action { left: -2.5px; top: 17%; width: 3px; height: 4%; }
.hero-phone .b-vol1 { left: -2.5px; top: 25%; width: 3px; height: 6.5%; }
.hero-phone .b-vol2 { left: -2.5px; top: 33%; width: 3px; height: 6.5%; }
.hero-phone .b-power { right: -2.5px; top: 27%; width: 3px; height: 9.5%; }
.ph-screen {
  position: absolute;
  inset: 8px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(140% 90% at 82% -10%, rgba(0, 229, 195, 0.2), transparent 55%),
    radial-gradient(130% 100% at 8% 112%, rgba(70, 90, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #10141a 0%, #07090b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px 12px;
}
.ph-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.06) 50%, transparent 58%);
  animation: ph-sheen 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ph-sheen {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.ph-island {
  width: 33%;
  height: 24px;
  background: #000;
  border-radius: 100px;
  margin-top: 5px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.ph-island::after {
  content: "";
  position: absolute;
  right: 7px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e2c38, #05070a 70%);
}
.ph-clock {
  font-size: clamp(42px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 30px;
  color: #eef2f4;
}
.ph-date {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 10px;
}
.ph-notif {
  margin-top: auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 12px 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
}
.ph-notif .ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent);
  color: #06110e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 0 18px var(--accent-glow);
}
.ph-notif b { display: block; font-size: 12px; letter-spacing: 0.02em; }
.ph-notif span { display: block; font-size: 10.5px; color: var(--text-dim); line-height: 1.35; }
.ph-homebar {
  width: 36%; height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
  flex-shrink: 0;
}

/* ---------- photos ---------- */
.photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.06);
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 229, 195, 0.04) 0%, rgba(7, 9, 11, 0.0) 40%, rgba(7, 9, 11, 0.35) 100%);
  pointer-events: none;
}
.photo .cap {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(7, 9, 11, 0.65);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.photo.ph-fallback { aspect-ratio: 16 / 10; }
.photo.ph-fallback::before {
  content: "VOREPAIR® · IMAGE";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  background: linear-gradient(160deg, var(--surface), var(--bg));
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
}
.photo-strip .photo { aspect-ratio: 4 / 3; }
.photo-strip .photo:nth-child(2) { transform: translateY(clamp(12px, 2vw, 32px)); }
@media (max-width: 720px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip .photo:nth-child(2) { transform: none; }
}
.story-step .photo { margin-top: 24px; aspect-ratio: 16 / 10; max-width: 520px; }

/* ---------- booking scheduler ---------- */
.day-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.day-chip {
  flex: 0 0 auto;
  min-width: 74px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-display);
  transition: all 0.2s;
}
.day-chip .dc-dow {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.day-chip .dc-date { font-size: 15px; font-weight: 600; }
.day-chip:hover { border-color: var(--accent); }
.day-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #06110e;
  box-shadow: 0 0 18px var(--accent-glow);
}
.day-chip.active .dc-dow { color: rgba(6, 17, 14, 0.7); }
.day-chip.disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}
#lead-note { display: block; }

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 8px;
}
.slot {
  padding: 11px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.slot:hover { border-color: var(--accent); color: var(--accent); }
.slot.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #06110e;
  font-weight: 600;
  box-shadow: 0 0 16px var(--accent-glow);
}
.slot.disabled {
  opacity: 0.3;
  pointer-events: none;
  text-decoration: line-through;
}
.slot-hint { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase; }

/* ---------- iDEAL borg-betaling ---------- */
.deposit-box {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 18px;
  background: var(--surface);
}
.deposit-box .deposit-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}
.ideal-badge {
  background: #cc0066;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 6px;
  font-style: italic;
}
.deposit-box p { font-size: 13.5px; color: var(--text-dim); margin: 0 0 14px; }
.ideal-btn {
  width: 100%;
  justify-content: center;
  background: #cc0066;
  color: #fff;
}
.ideal-btn:hover { box-shadow: 0 0 28px rgba(204, 0, 102, 0.45); transform: translateY(-2px); }
.deposit-box.pulse { animation: dep-pulse 1.2s ease-in-out 3; border-color: var(--accent); }
@keyframes dep-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 229, 195, 0); }
  50% { box-shadow: 0 0 26px var(--accent-glow); }
}
.open-badge { color: var(--accent); }
.open-badge.closed { color: #ff7a6b; }

/* sticky story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
}
.story-left {
  position: sticky;
  top: 90px;
  align-self: start;
  padding: clamp(48px, 7vw, 110px) 0;
  height: fit-content;
}
.story-left h2 {
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 14px;
}
.story-left h2 .serif-i { text-transform: none; }
.story-counter {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
.story-counter .cur { color: var(--accent); font-size: 28px; }
.story-right { padding: clamp(24px, 4vw, 60px) 0; }
.story-step {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.story-step.active { opacity: 1; transform: none; }
.story-step .mono { display: block; margin-bottom: 16px; color: var(--accent); }
.story-step h3 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.story-step p { color: var(--text-dim); max-width: 46ch; font-size: 16.5px; }
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; }
  .story-left { position: static; padding-bottom: 0; }
  .story-step { min-height: auto; padding: 36px 0; opacity: 1; transform: none; }
}

/* horizontal scroll strip */
.hscroll { height: 320vh; position: relative; border-bottom: 1px solid var(--line); }
.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 4vh, 48px);
}
.hscroll-head { padding: 0 var(--pad); }
.hscroll-head .mono { display: block; margin-bottom: 12px; }
.hscroll-head h2 {
  font-size: clamp(30px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.hscroll-head h2 .serif-i { text-transform: none; }
.hscroll-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 var(--pad);
  will-change: transform;
  width: max-content;
}
.hcard {
  flex: 0 0 clamp(290px, 34vw, 480px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(170deg, var(--surface), var(--bg));
  padding: clamp(24px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: clamp(320px, 44vh, 440px);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.hcard:hover { border-color: var(--accent); transform: translateY(-6px); }
.hcard::after {
  content: "";
  position: absolute;
  bottom: -40%; right: -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-dim), transparent 65%);
  pointer-events: none;
}
.hcard .hcard-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}
.hcard .hcard-icon { font-size: 34px; color: var(--accent); margin: auto 0 18px; }
.hcard h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hcard p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 18px; }
.hcard .hcard-foot {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hcard .hcard-foot .price { color: var(--accent); }
.hscroll-hintbar {
  padding: 0 var(--pad);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 860px) {
  .hscroll { height: auto; }
  .hscroll-sticky { position: static; height: auto; padding: 56px 0; }
  .hscroll-track {
    width: auto;
    overflow-x: auto;
    transform: none !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .hcard { scroll-snap-align: start; flex-basis: 82vw; min-height: 340px; }
}

/* mini reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }
.review { background: var(--bg); padding: clamp(24px, 3vw, 36px); }
.review .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 14px; font-size: 14px; }
.review p { font-size: 15px; color: var(--text-dim); margin-bottom: 16px; }
.review .who { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }

/* ============================================
   HERO V3 — 3D-scène met iPhone + iPad
   ============================================ */
.hero-v3 {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vw, 80px) var(--pad);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  perspective: 1400px;
}
.hero-v3::before {
  content: "";
  position: absolute;
  top: -25%; right: -12%;
  width: 70vw; height: 70vw;
  max-width: 950px; max-height: 950px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}
.hero-v3-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
}
.hero-v3-content h1 { text-shadow: 0 6px 50px rgba(7, 9, 11, 0.85); }
.hero-v3-content .hero-sub { text-shadow: 0 4px 30px rgba(7, 9, 11, 0.9); }

/* spotlight die de muis volgt */
.hero-spotlight {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 195, 0.10) 0%, transparent 62%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-v3:hover .hero-spotlight { opacity: 1; }

/* de 3D-scène */
.device-scene {
  position: absolute;
  right: clamp(-30px, 5vw, 140px);
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.scene-auto {
  transform-style: preserve-3d;
  animation: scene-spin 16s ease-in-out infinite;
}
@keyframes scene-spin {
  0%   { transform: rotateY(-13deg) rotateX(2deg); }
  50%  { transform: rotateY(14deg) rotateX(-2deg); }
  100% { transform: rotateY(-13deg) rotateX(2deg); }
}

/* iPad-mockup */
.dev-ipad {
  width: min(400px, 42vw);
  aspect-ratio: 3 / 4;
  border-radius: 34px;
  background: linear-gradient(155deg, #4a4d53 0%, #202227 22%, #2c2e34 50%, #17191d 78%, #3a3d43 100%);
  padding: 12px;
  position: relative;
  transform: translateZ(-90px) rotate(7deg) translateX(30px);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.65), 0 0 110px rgba(0, 229, 195, 0.07);
  animation: pad-float 8s ease-in-out infinite;
}
@keyframes pad-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}
.pad-cam {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e2c38, #05070a 70%);
  z-index: 2;
}
.pad-screen {
  width: 100%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(130% 80% at 85% -5%, rgba(0, 229, 195, 0.16), transparent 55%),
    linear-gradient(180deg, #0e1218 0%, #07090b 100%);
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: filter 0.4s ease;
}
.pad-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.pad-row {
  display: grid;
  grid-template-columns: 82px 1fr 44px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}
.pad-row i {
  display: block;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}
.pad-row i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--v, 100%);
  background: linear-gradient(90deg, var(--accent), #7df5df);
  border-radius: 4px;
  box-shadow: 0 0 10px var(--accent-glow);
  animation: bar-fill 2.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes bar-fill { from { width: 0; } to { width: var(--v, 100%); } }
.pad-row b { font-size: 11px; font-family: var(--font-mono); text-align: right; }
.pad-foot {
  margin-top: auto;
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.45;
}
.pad-foot b { color: var(--text); }
.pad-check {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #06110e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 24px var(--accent-glow);
  animation: ph-pulse2 3s ease-in-out infinite;
}
@keyframes ph-pulse2 {
  0%, 100% { box-shadow: 0 0 16px var(--accent-glow); }
  50% { box-shadow: 0 0 34px var(--accent-glow); }
}

/* de telefoon in de scène */
.hero-v3 .hero-phone {
  position: absolute;
  left: clamp(-90px, -6vw, -50px);
  bottom: -8%;
  width: min(230px, 24vw);
  transform: translateZ(70px) rotate(-8deg);
  animation: phone-float 6.5s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 18px; }
}

/* hover-effect: schermen lichten op */
.device-scene:hover .pad-screen,
.device-scene:hover .ph-screen { filter: brightness(1.18) saturate(1.1); }
.device-scene:hover .dev-ipad { box-shadow: 0 50px 110px rgba(0, 0, 0, 0.65), 0 0 140px rgba(0, 229, 195, 0.22); }
.device-scene:hover .hero-phone { box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), 0 0 130px rgba(0, 229, 195, 0.28); }
.ph-screen { transition: filter 0.4s ease; }

/* responsief */
@media (max-width: 1180px) {
  .hero-v3-content { max-width: 540px; }
  .dev-ipad { width: min(340px, 38vw); }
}
@media (max-width: 960px) {
  .hero-v3 { flex-direction: column; align-items: flex-start; min-height: auto; gap: 24px; }
  .device-scene {
    position: relative;
    right: auto; top: auto;
    transform: none;
    margin: 24px auto 60px;
    order: 2;
  }
  .dev-ipad { width: min(340px, 62vw); }
  .hero-v3 .hero-phone { width: min(180px, 34vw); left: -40px; }
  .hero-v3-content h1, .hero-v3-content .hero-sub { text-shadow: none; }
}
@media (max-height: 820px) and (min-width: 961px) {
  .hero-v3 { min-height: auto; }
  .dev-ipad { width: min(320px, 34vw); }
  .hero-v3 .hero-phone { width: min(190px, 20vw); }
}

/* ============================================
   3D-LAAG — tilt, carrousel, statement-marquee
   ============================================ */

/* 3D-tilt (JS zet de transform; dit regelt de soepelheid) */
.hero-phone-wrap { perspective: 950px; }
.tilt3d { transform-style: preserve-3d; transition: transform 0.25s ease-out; will-change: transform; }
.tilt3d.snap { transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }

/* statement-marquee in serif-cursief */
.marquee.big.statement .marquee-track {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  color: var(--accent);
  letter-spacing: 0;
}
.marquee.big.statement .sep { color: var(--text-faint); }

/* voor wie / uitrusting */
.usecase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
@media (max-width: 860px) { .usecase-grid { grid-template-columns: 1fr; } }
.uc-list { list-style: none; border-top: 1px solid var(--line); }
.uc-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--text-dim);
}
.uc-list li::before { content: "✦"; color: var(--accent); flex-shrink: 0; }
.uc-list li strong { color: var(--text); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--text-dim);
  transition: all 0.25s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* 3D-carrousel */
.c3d-wrap {
  position: relative;
  height: clamp(320px, 48vh, 500px);
  perspective: 1300px;
  overflow: visible;
}
.c3d-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.c3d-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(440px, 72vw);
  aspect-ratio: 4 / 3;
  margin-left: calc(min(440px, 72vw) / -2);
  margin-top: calc(min(440px, 72vw) * 0.75 / -2);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  backface-visibility: hidden;
  transition: filter 0.9s ease, opacity 0.9s ease;
  filter: brightness(0.35) saturate(0.6);
}
.c3d-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c3d-slide .c3d-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(7, 9, 11, 0.7);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.c3d-slide.front { filter: none; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 229, 195, 0.08); }
.c3d-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(18px, 3vh, 32px);
}
.c3d-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
  transition: all 0.25s;
}
.c3d-btn:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 18px var(--accent-glow); }
.c3d-dots { display: flex; gap: 8px; }
.c3d-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line-strong);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.c3d-dot.on { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); transform: scale(1.25); }

@media (prefers-reduced-motion: reduce) {
  .tilt3d, .c3d-stage, .c3d-slide { transition: none !important; transform: none !important; }
  .scene-auto, .dev-ipad, .hero-v3 .hero-phone, .pad-check { animation: none !important; }
  .pad-row i::after { animation: none !important; width: var(--v, 100%); }
  .device-scene { transform: translateY(-50%) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .wr > span, .story-step, .hscroll-track, .hero-phone { transition: none !important; animation: none !important; transform: none !important; }
  .ph-check, .ph-screen::after, .marquee-track, .hero-scroll-hint { animation: none !important; }
}
