/* ═══════════════════════════════════════════════════════════════
   NAJJA COMPUTERS — najja.css  (v2 — Apple-stijl)
   Donker, veel ruimte, grote typografie, pill-knoppen, bento-tegels.
   Typografie: Figtree (SF Pro-achtig, geen standaardkeuze)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #000000;
  --bg-tint: #0a0a0e;
  --card: #131318;
  --card-2: #1a1a20;
  --ink: #f5f5f7;
  --mut: #a1a1a6;
  --dim: #6e6e73;
  --blue: #1da9ff;
  --blue-deep: #0a84ff;
  --grad: linear-gradient(96deg, #1da9ff 0%, #64d2ff 55%, #a8e6ff 100%);
  --wa: #25d366;
  --font: "Figtree", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --rad: 28px;
  --wrap: 1080px;
  --nav-h: 56px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  /* geen horizontale scroll of zwarte zijruimte op mobiel */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #00131f; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2c31; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3a40; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ═══ typografie ═══ */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }

h1 { font-size: clamp(3rem, 9vw, 6rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); font-weight: 750; letter-spacing: -0.03em; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--blue);
  text-transform: none;
  margin-bottom: 16px;
}

.sec-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 450;
  color: var(--mut);
  letter-spacing: -0.01em;
}

.br-desk { display: block; content: ""; }
@media (max-width: 720px) { .br-desk { display: none; } }

/* ═══ knoppen — Apple pills & tekstlinks ═══ */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: 13px 28px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pill:hover { background: #2f96ff; transform: scale(1.03); box-shadow: 0 8px 30px rgba(10, 132, 255, 0.35); }
.pill:active { transform: scale(0.99); }

.pill-sm { padding: 8px 18px; font-size: 0.85rem; }
.pill-lg { padding: 17px 38px; font-size: 1.15rem; }

.pill-ghost {
  background: transparent;
  border: 1px solid #424248;
  color: var(--ink);
}
.pill-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: #6e6e73; box-shadow: none; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 550;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
  cursor: pointer;
}
.tlink:hover { color: #6fc6ff; text-decoration: underline; text-underline-offset: 3px; }
.tlink .chev { font-size: 1.15em; line-height: 1; transition: transform 0.18s ease; font-weight: 400; }
.tlink:hover .chev { transform: translateX(3px); }

/* ═══ nav — frosted glass ═══ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  background: rgba(8, 8, 10, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav.scrolled { background: rgba(8, 8, 10, 0.86); border-bottom-color: rgba(255, 255, 255, 0.08); }

.nav-in {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.82);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
}
.nav-burger span { width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ═══ layout ═══ */
.sec {
  padding: clamp(90px, 13vh, 150px) 24px;
  max-width: none;
}
.sec-tint { background: var(--bg-tint); }

.sec-head {
  max-width: 820px;
  margin: 0 auto clamp(48px, 7vh, 76px);
  text-align: center;
}
.anchor-alias { position: absolute; }

/* ═══ hero ═══ */
.hero {
  padding: clamp(70px, 11vh, 130px) 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 100vw);
  height: 700px;
  background: radial-gradient(closest-side, rgba(29, 169, 255, 0.14), transparent 70%);
  pointer-events: none;
}
.hero h1 { position: relative; }
.hero .eyebrow { position: relative; }

.hero-sub {
  position: relative;
  margin-top: 26px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 450;
  color: var(--mut);
  letter-spacing: -0.012em;
}

.hero-cta {
  position: relative;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  max-width: 900px;
  margin: clamp(56px, 8vh, 90px) auto 0;
  border-radius: var(--rad) var(--rad) 0 0;
  overflow: hidden;
  will-change: transform;
}
.hero-visual img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
  object-position: center 30%;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}
.hero-badges {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 2;
  padding: 0 16px;
}
.hero-badges span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(20, 20, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 980px;
  padding: 8px 16px;
}

/* ═══ landing: vier panelen die openklappen ═══ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* intro met zoekbalk boven de panelen */
.land-top {
  padding: clamp(44px, 7vh, 76px) 24px 30px;
  text-align: center;
  position: relative;
}
.land-top::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100vw);
  height: 420px;
  background: radial-gradient(closest-side, rgba(29, 169, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.land-top > * { position: relative; }
.land-top h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; letter-spacing: -0.03em; }
.land-sub {
  margin-top: 10px;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 450;
  color: var(--mut);
}
.land-search {
  max-width: 560px;
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid #2c2c33;
  border-radius: 980px;
  padding: 7px 7px 7px 22px;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* live suggesties onder de zoekbalk */
.land-sug {
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  z-index: 30;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  max-height: 330px;
  overflow-y: auto;
  text-align: left;
}
.land-sug button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 14px;
  padding: 11px 14px;
  cursor: pointer;
  font-family: var(--font);
  color: var(--ink);
  transition: background 0.14s ease;
}
.land-sug button:hover,
.land-sug button.hl { background: rgba(255, 255, 255, 0.07); }
.land-sug b { display: block; font-size: 0.95rem; font-weight: 650; letter-spacing: -0.01em; }
.land-sug small { display: block; margin-top: 1px; font-size: 0.76rem; color: var(--dim); font-weight: 500; }
.land-sug .sug-price { font-size: 0.85rem; font-weight: 650; color: var(--blue); white-space: nowrap; }
.land-search:focus-within {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.18);
}
.land-search svg { color: var(--dim); flex-shrink: 0; }
.land-search input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 500;
  padding: 9px 0;
}
.land-search input::placeholder { color: var(--dim); font-weight: 450; }
.land-search input::-webkit-search-cancel-button { display: none; }
.land-go {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--blue-deep);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  padding-bottom: 3px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.land-go:hover { background: #2f96ff; transform: scale(1.06); }

.slices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 12px 12px;
  background: var(--bg);
}

.slice {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  display: block;
  height: min(60vh, 560px);
  min-height: 440px;
}
.slice:focus-visible { outline: 2px solid var(--blue); outline-offset: -4px; }

.slice > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) brightness(0.78);
  transform: scale(1.01);
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
.slice:hover > img,
.slice:focus-visible > img { filter: saturate(1) brightness(0.9); transform: scale(1.05); }

/* drukwerkfoto: focus op het kleurrijke deel van de compositie */
.slice-img-druk { object-position: 62% center; }

.slice-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.28) 62%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

/* websites-paneel: schuine wand van echte projectschermen */
.slice-web {
  background:
    radial-gradient(120% 80% at 70% 12%, rgba(29, 169, 255, 0.14), transparent 60%),
    linear-gradient(170deg, #0c1723, #05080d);
}
.slice-stack {
  position: absolute;
  inset: -16% -22%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  transform: rotate(-8deg);
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
.slice-stack img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5);
}
.slice-web:hover .slice-stack,
.slice-web:focus-visible .slice-stack { transform: rotate(-8deg) translateY(-14px); }

.slice-num {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  color: rgba(245, 245, 247, 0.55);
}

/* pijl-chip rechtsboven, kleurt blauw op hover */
.slice::after {
  content: "›";
  position: absolute;
  right: 16px; top: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(20, 20, 24, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 2px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.slice:hover::after,
.slice:focus-visible::after {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: scale(1.08);
}

/* altijd zichtbare titel + subtekst + cta */
.slice-body {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
}
.slice-body h2 {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}
.slice-body p {
  margin-top: 5px;
  font-size: 0.88rem;
  font-weight: 480;
  color: rgba(245, 245, 247, 0.78);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.slice-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
  transition: gap 0.2s ease;
}
.slice-cta .chev { font-size: 1.15em; transition: transform 0.2s ease; }
.slice:hover .slice-cta { text-decoration: underline; text-underline-offset: 3px; }
.slice:hover .slice-cta .chev { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .slice > img, .slice-stack { transition: none !important; }
}

/* tablet: twee kolommen */
@media (max-width: 1080px) {
  .slices { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .slice { height: 340px; min-height: 0; }
  .slice-stack { gap: 11px; }
  .slice-stack img { border-radius: 11px; }
}

/* mobiel: gestapelde panelen, tik = ga ernaartoe */
@media (max-width: 640px) {
  .slices { grid-template-columns: 1fr; gap: 8px; padding: 0 8px 8px; }
  .land-top { padding-bottom: 22px; }
  .slice { height: 200px; border-radius: 16px; }
  .slice > img { filter: saturate(0.95) brightness(0.8); }
  .slice-shade { background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.78) 100%); }
  .slice-num { top: 16px; left: 20px; }
  .slice::after { right: 14px; top: 12px; width: 36px; height: 36px; }
  .slice-body { left: 20px; right: 20px; bottom: 16px; }
  .slice-body h2 { font-size: 1.3rem; }
  .slice-body p { font-size: 0.84rem; }
  .slice-cta { margin-top: 8px; font-size: 0.88rem; }
  .slice-stack { inset: -30% -12%; gap: 9px; }
  .slice-stack img { border-radius: 9px; }
}

/* ═══ keuzetegels onder de hero ═══ */
.gates-sec { padding: clamp(56px, 8vh, 90px) 24px clamp(72px, 10vh, 110px); background: var(--bg); }
.gates {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gate {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, background 0.22s ease;
}
.gate:hover { transform: translateY(-5px); background: var(--card-2); }
.gate img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gate:hover img { transform: scale(1.04); }
.gate-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.gate-body h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
.gate-body p { color: var(--mut); font-size: 0.9rem; font-weight: 450; }
.gate-body .tlink { margin-top: auto; padding-top: 10px; font-size: 0.92rem; }

/* ═══ split (foto + tekst) ═══ */
.split {
  max-width: 1000px;
  margin: 0 auto clamp(48px, 7vh, 72px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split > img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}
.split-body h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.025em; }
.split-body > p { margin-top: 14px; color: var(--mut); font-size: 1.02rem; font-weight: 450; }
.checks { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.checks li {
  position: relative;
  padding-left: 30px;
  font-size: 0.98rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* split met foto rechts */
.split-rev > img { order: 2; }
@media (max-width: 620px) { .split-rev > img { order: 0; } }

/* iets kleinere hero-kop voor subpagina's */
.hero-h1-sm { font-size: clamp(2.5rem, 7vw, 4.6rem); }

/* hero met foto als volledige achtergrond */
.hero-photo {
  min-height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(70px, 10vh, 120px);
}
.hero-photo::before { display: none; }
.hero-photo > *:not(.hero-bgimg) { position: relative; z-index: 1; }
.hero-bgimg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
/* op brede schermen de bezorger rechts van de tekstkolom plaatsen */
@media (min-width: 861px) {
  .hero-bgimg img { width: 135%; max-width: none; }
}
/* bovenaan vloeit de foto weg in zwart; onderaan licht de scène op */
.hero-bgimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.82) 26%, rgba(0, 0, 0, 0.38) 58%, rgba(0, 0, 0, 0.30) 76%, #000 100%);
}
.hero-photo .hero-badges {
  position: static;
  margin-top: 34px;
  padding: 0;
}
.hero-photo h1, .hero-photo .hero-sub, .hero-photo .eyebrow { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55); }
.hero-photo .tlink { text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85); }

/* ═══ info & voorwaarden ═══ */
.jumps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  position: relative;
}
.jumps a {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--mut);
  border: 1px solid #35353c;
  border-radius: 980px;
  padding: 9px 18px;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.jumps a:hover { border-color: var(--blue); color: #fff; background: rgba(10, 132, 255, 0.12); }

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 7vh, 80px) 24px clamp(80px, 11vh, 130px);
}
.legal-group { margin-bottom: clamp(48px, 7vh, 72px); }
.legal-group:last-child { margin-bottom: 0; }
.legal-group > .eyebrow { margin-bottom: 8px; }
.legal-group > h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 10px; }
.legal-group > .legal-intro { color: var(--mut); font-size: 1rem; font-weight: 450; margin-bottom: 22px; max-width: 58ch; }
.legal-item {
  background: var(--card);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 10px;
}
.legal-item h3 { font-size: 1.05rem; letter-spacing: -0.015em; margin-bottom: 6px; }
.legal-item p { color: var(--mut); font-size: 0.94rem; font-weight: 450; }
.legal-item a { color: var(--blue); }
.legal-item a:hover { text-decoration: underline; text-underline-offset: 2px; }
.legal-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 22px; }

/* ═══ statement (grote uitspraak) ═══ */
.statement { padding: clamp(36px, 6vh, 70px) 24px 0; text-align: center; }
.statement-line {
  font-size: clamp(2rem, 5.4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

/* ═══ commissie-rekenmachine ═══ */
.calc {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--rad);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.calc-row label, .calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--mut);
  margin-bottom: 12px;
}
.calc-row label b { font-size: 1.15rem; font-weight: 750; color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-row input[type="range"] {
  width: 100%;
  accent-color: var(--blue-deep);
  cursor: pointer;
  height: 28px;
}
.calc-result {
  border-top: 1px solid #26262c;
  padding-top: 26px;
  text-align: center;
}
.calc-device { font-size: 1rem; font-weight: 600; color: var(--mut); }
.calc-price { margin-top: 4px; display: flex; align-items: baseline; justify-content: center; gap: 12px; flex-wrap: wrap; }
.calc-price b {
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.calc-per { font-size: 1.05rem; font-weight: 500; color: var(--dim); }
.calc-note { margin-top: 12px; font-size: 0.86rem; color: var(--dim); max-width: 46ch; margin-left: auto; margin-right: auto; }
.calc .picker-ctas { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.calc .seg { background: #0c0c10; }

/* ═══ afsluitende foto-band ═══ */
.band-sec { padding: 0 24px clamp(90px, 13vh, 150px); background: var(--bg); }
.band {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--card);
  border-radius: var(--rad);
  overflow: hidden;
}
.band > img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.band-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.band-body h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.band-sub { color: var(--mut); font-size: 1.05rem; font-weight: 450; }
.band-body .tlink { margin-top: 10px; }
.band-body .eyebrow { margin-bottom: 4px; }

/* ═══ stats ═══ */
.stats { background: var(--bg-tint); padding: clamp(56px, 8vh, 84px) 24px; }
.stats-in {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat b span { font: inherit; color: inherit; }
.stat > span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dim);
}

/* ═══ prijs-kiezer ═══ */
.picker {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--rad);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.picker-label {
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

/* segmented control */
.seg { display: flex; gap: 6px; background: #0c0c10; border-radius: 14px; padding: 5px; width: max-content; max-width: 100%; overflow-x: auto; }
.seg-wrap { flex-wrap: wrap; width: 100%; overflow: visible; }
.seg button {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--mut);
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 9px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}
.seg button:hover { color: var(--ink); }
.seg button.on { background: var(--card-2); color: var(--ink); box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4); }
.seg button.on { background: #2a2a31; }

/* model chips */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips button {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--mut);
  background: transparent;
  border: 1px solid #35353c;
  border-radius: 980px;
  padding: 8px 17px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.chips button:hover { border-color: #55555e; color: var(--ink); }
.chips button.on { border-color: var(--blue); color: #fff; background: rgba(10, 132, 255, 0.16); }

.picker-result {
  border-top: 1px solid #26262c;
  padding-top: 26px;
  text-align: center;
}
.picker-device { font-size: 1rem; font-weight: 600; color: var(--mut); }
.picker-price { margin-top: 6px; display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.picker-vanaf { font-size: 1.05rem; font-weight: 500; color: var(--dim); }
.picker-price b {
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.18s ease;
}
.picker-price b.swap { opacity: 0; }
.picker-note { margin-top: 10px; font-size: 0.88rem; color: var(--dim); }
.picker-ctas {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* usps */
.usps {
  max-width: var(--wrap);
  margin: clamp(56px, 8vh, 80px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.usps b { display: block; font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.usps span { display: block; margin-top: 4px; font-size: 0.95rem; color: var(--dim); }

.brands {
  margin: clamp(48px, 7vh, 72px) auto 0;
  max-width: 900px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--dim);
  letter-spacing: 0.01em;
  line-height: 2.1;
}
.brands-note { margin-top: 14px; text-align: center; font-size: 0.95rem; color: var(--dim); }
.brands-note .tlink { font-size: 0.95rem; }

/* ═══ projecten rail ═══ */
.rail-wrap { max-width: 1200px; margin: 0 auto; position: relative; }

.rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 26px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }

.rail-card {
  flex: 0 0 min(780px, 86%);
  scroll-snap-align: center;
  background: var(--card);
  border-radius: var(--rad);
  overflow: hidden;
  transition: transform 0.25s ease;
}
.rail-card:hover { transform: translateY(-5px); }
.rail-card img { width: 100%; height: auto; aspect-ratio: 1400 / 643; object-fit: cover; object-position: top; }
.rail-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px 24px;
}
.rail-meta h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
.rail-meta p { margin-top: 4px; color: var(--mut); font-size: 0.95rem; font-weight: 450; }
.rail-tag {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--blue);
  background: rgba(10, 132, 255, 0.14);
  border-radius: 980px;
  padding: 6px 14px;
  margin-top: 3px;
}

.rail-nav { display: flex; justify-content: flex-end; gap: 12px; padding: 0 4px; }
.rail-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--card-2);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
  display: grid;
  place-items: center;
  padding-bottom: 3px;
}
.rail-btn:hover:not(:disabled) { background: #2f2f36; transform: scale(1.06); }
.rail-btn:disabled { opacity: 0.35; cursor: default; }

/* ═══ drukwerk galerij (horizontale fotostrip) ═══ */
.gal {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: 4px;
  scroll-behavior: smooth;
  padding: 4px 4px 26px;
  scrollbar-width: none;
}
.gal::-webkit-scrollbar { display: none; }
.g-item {
  flex: 0 0 auto;
  height: clamp(300px, 46vh, 460px);
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  cursor: zoom-in;
  position: relative;
  scroll-snap-align: start;
  transition: transform 0.25s ease;
}
.g-item:hover { transform: translateY(-5px); }
.g-item img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  transition: transform 0.35s ease;
}
.g-item:hover img { transform: scale(1.03); }
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 18px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.g-item:hover figcaption { opacity: 1; }
.gal-hint {
  margin-right: auto;
  align-self: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dim);
}

/* ═══ horeca bento ═══ */
.bento {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tile {
  background: var(--card);
  border-radius: 24px;
  padding: 28px 26px;
  transition: transform 0.22s ease, background 0.22s ease;
}
.tile:hover { transform: translateY(-4px); background: var(--card-2); }
.tile h3 { font-size: 1.15rem; letter-spacing: -0.015em; margin-bottom: 8px; }
.tile p { color: var(--mut); font-size: 0.93rem; font-weight: 450; }

.tile-wide { grid-column: span 2; grid-row: span 2; padding: 0; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.tile-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.tile-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78));
}
.tile-cap { position: relative; z-index: 2; padding: 26px; }
.tile-cap p { color: rgba(245, 245, 247, 0.75); }

.tile-zero { grid-column: span 2; text-align: left; display: flex; flex-direction: column; justify-content: center; }
.tile-zero b { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }

.hsteps {
  max-width: 1100px;
  margin: clamp(48px, 7vh, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.hsteps b {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(10, 132, 255, 0.16);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
}
.hsteps h4 { font-size: 1.05rem; margin-bottom: 4px; }
.hsteps p { font-size: 0.9rem; color: var(--dim); font-weight: 450; }

.center-cta {
  margin-top: clamp(44px, 6vh, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* ═══ promo's ═══ */
.promos {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.promo {
  background: var(--card);
  border-radius: var(--rad);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.22s ease, background 0.22s ease;
}
.promo:hover { transform: translateY(-5px); background: var(--card-2); }
.promo .eyebrow { margin-bottom: 0; }
.promo h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); letter-spacing: -0.025em; }
.promo p { color: var(--mut); font-size: 0.95rem; font-weight: 450; max-width: 30ch; }
.promo .tlink { margin-top: auto; font-size: 0.98rem; }

/* ═══ waarom ═══ */
.why {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}
.why li {
  font-size: 1.08rem;
  font-weight: 550;
  letter-spacing: -0.012em;
  color: var(--ink);
  padding: 14px 0 14px 34px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.why li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ═══ contact ═══ */
.sec-contact {
  text-align: center;
  background:
    radial-gradient(700px 380px at 50% 115%, rgba(29, 169, 255, 0.13), transparent 70%),
    var(--bg-tint);
  padding-bottom: clamp(110px, 15vh, 170px);
}
.sec-contact .sec-sub { max-width: 640px; margin-left: auto; margin-right: auto; }
.sec-contact .center-cta { margin-top: 40px; }
.contact-alt {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.contact-tip {
  margin-top: 44px;
  font-size: 0.88rem;
  color: var(--dim);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ footer — Apple-klein ═══ */
.ft { background: var(--bg); border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 44px 24px 40px; }
.ft-in { max-width: 1000px; margin: 0 auto; }
.ft-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ft-col { display: flex; flex-direction: column; gap: 9px; }
.ft-col h5 { font-size: 0.78rem; font-weight: 650; color: var(--ink); margin-bottom: 3px; }
.ft-col a, .ft-col span { font-size: 0.78rem; color: var(--dim); font-weight: 450; }
.ft-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.ft-legal { padding-top: 22px; }
.ft-legal p { font-size: 0.75rem; color: var(--dim); }
.ft-legal a { color: var(--mut); }
.ft-legal a:hover { color: var(--ink); text-decoration: underline; }

/* ═══ whatsapp float (links) ═══ */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 44px rgba(37, 211, 102, 0.5); }

/* ═══ terug naar boven (rechts) ═══ */
.totop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 20, 24, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
}
.totop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.totop:hover { background: rgba(44, 44, 51, 0.85); }

/* ═══ lightbox ═══ */
.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
}
.lb[hidden] { display: none; }
.lb img { max-width: min(92vw, 880px); max-height: 78vh; border-radius: 18px; }
.lb-cap { font-size: 0.85rem; font-weight: 550; color: var(--mut); }
.lb-close {
  position: absolute;
  top: 20px; right: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1rem;
  width: 44px; height: 44px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.2); }

/* ═══ reveal ═══ */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-visual { transform: none !important; }
  * { transition-duration: 0.01ms !important; animation: none !important; }
}

/* ═══ responsive ═══ */
@media (max-width: 1024px) {
  .stats-in { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .gates { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-wide { grid-column: span 2; }
  .tile-zero { grid-column: span 2; }
  .promos { grid-template-columns: 1fr; max-width: 560px; }
  .hsteps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 30px 30px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 59;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.35rem; font-weight: 600; padding: 13px 0; width: 100%; letter-spacing: -0.02em; }
  .nav-burger { display: flex; }
  .usps { grid-template-columns: 1fr; gap: 30px; }
  .why { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 620px) {
  .sec { padding-left: 18px; padding-right: 18px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-visual { border-radius: 20px 20px 0 0; }
  .hero-visual img { height: 48vh; }
  .stats-in { grid-template-columns: repeat(2, 1fr); }
  .picker { padding: 24px 18px; }
  .seg { width: 100%; }
  .seg button { flex: 1; padding: 9px 10px; font-size: 0.85rem; }
  .seg-wrap button { flex: initial; }
  .g-item { height: clamp(260px, 40vh, 340px); border-radius: 16px; }
  .gates { grid-template-columns: 1fr; }
  .gate img { height: 150px; }
  .split { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; }
  .band > img { min-height: 220px; max-height: 280px; }
  .bento { grid-template-columns: 1fr; }
  .tile-wide, .tile-zero { grid-column: auto; }
  .tile-wide { min-height: 300px; }
  .hsteps { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .rail-card { flex-basis: 92%; }
  .rail-meta { flex-direction: column; gap: 10px; padding: 18px 20px 20px; }
  .ft-cols { grid-template-columns: repeat(2, 1fr); }
  .picker-ctas .pill { width: 100%; }
}
