/* ============================================================
   Snowden Phone — "Shop First" (Concept C, gekozen build)
   Light-luxury, conversion-first hardware D2C store.
   Eén gedeelde stylesheet voor alle pagina's.
   ============================================================ */

:root {
  --bg: #fafafa;
  --bg-alt: #ffffff;
  --ink: #16161a;
  --ink-soft: #4c4c55;
  --ink-faint: #8a8a93;
  --line: #e7e5e0;
  --accent: #a07b38;
  --accent-dark: #87662c;
  --accent-soft: #f4ecdd;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 1px 2px rgba(22, 22, 26, 0.05), 0 8px 24px rgba(22, 22, 26, 0.06);
  --shadow-lift: 0 2px 4px rgba(22, 22, 26, 0.06), 0 18px 44px rgba(22, 22, 26, 0.12);
  --container: 1180px;
  --transition: 220ms cubic-bezier(0.33, 1, 0.68, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 820px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 10px; }
.section-head p { color: var(--ink-soft); }

.accent { color: var(--accent-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(160, 123, 56, 0.28);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 22px rgba(160, 123, 56, 0.36); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f1ede4; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover { border-color: #fff; }

.btn-small { padding: 10px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 26px; height: 26px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, #c79a4e 0%, var(--accent) 55%, #6f5424 100%);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}
.main-nav a:hover { color: var(--ink); text-decoration: none; }
.main-nav a.is-current { color: var(--ink); }
.main-nav a.is-current::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 3px;
}

.header-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (homepage) ---------- */
.hero {
  text-align: center;
  padding-top: clamp(56px, 9vw, 110px);
  background:
    radial-gradient(1100px 480px at 50% -120px, var(--accent-soft) 0%, rgba(244, 236, 221, 0) 70%),
    var(--bg);
}

.hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid #e8dcc3;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.2rem);
  max-width: 14ch;
  margin-inline: auto;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 18px auto 30px;
}

.hero-scroll {
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.hero-scroll:hover { text-decoration: none; color: var(--accent-dark); }

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 38px;
  padding-block: 16px;
}

.trust-strip-inner span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.trust-strip-inner span::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Hero banner-variant (navy + device) ---------- */
.hero--banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(48px, 8vw, 92px);
  background:
    radial-gradient(1200px 560px at 50% -8%, #1d3050 0%, rgba(16, 28, 46, 0) 62%),
    linear-gradient(180deg, #0d1726 0%, #101c2e 56%, #13233c 100%);
  color: #fff;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(520px 520px at 50% 82%, rgba(160, 123, 56, 0.22) 0%, rgba(160, 123, 56, 0) 70%);
  pointer-events: none;
}
.hero--banner .hero-kicker {
  color: #e7cf9f;
  background: rgba(231, 207, 159, 0.09);
  border-color: rgba(231, 207, 159, 0.22);
}
.hero--banner h1 { color: #fff; }
.hero--banner h1 em { font-style: normal; color: #e7cf9f; }
.hero--banner .hero-sub { color: #c4ccd8; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 28px;
}
.hero--banner .hero-scroll {
  color: #e7cf9f;
  border-bottom-color: rgba(231, 207, 159, 0.5);
  margin-bottom: 0;
}
.hero--banner .hero-scroll:hover { color: #fff; }
.hero-device {
  width: min(252px, 64vw);
  aspect-ratio: 1 / 2.06;
  margin: clamp(34px, 6vw, 60px) auto 0;
  position: relative;
}
.device-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 9px;
  border-radius: 42px;
  background: linear-gradient(150deg, #34343a 0%, #0b0b0d 32%, #0b0b0d 66%, #34343a 100%);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 26px;
  background:
    radial-gradient(85% 55% at 50% 30%, rgba(160, 123, 56, 0.18) 0%, rgba(160, 123, 56, 0) 58%),
    radial-gradient(125% 90% at 50% 16%, #1a2730 0%, #0c1217 46%, #06080b 100%);
  color: #e8eaed;
}
.device-camera {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #000;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.12);
}
.screen-status {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(232, 234, 237, 0.75);
  padding: 0 2px;
}
.screen-status .status-icons { display: inline-flex; gap: 4px; align-items: center; }
.screen-clock { text-align: center; margin-top: 10px; }
.screen-clock .clock-time {
  display: block;
  font-size: 2.9rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.screen-clock .clock-date {
  display: block;
  margin-top: 7px;
  font-size: 0.72rem;
  color: rgba(232, 234, 237, 0.7);
}
.screen-os {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.screen-os img { width: 34px; height: 34px; opacity: 0.95; }
.screen-os-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(232, 234, 237, 0.92);
}
.screen-lock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: rgba(232, 234, 237, 0.55);
}
.hero--banner .trust-strip {
  margin-top: clamp(40px, 6vw, 68px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.hero--banner .trust-strip-inner span { color: #c4ccd8; }

/* ---------- Wie zit erachter (oprichter-belofte) ---------- */
.pledge {
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.pledge-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.pledge-photo { margin: 0; }
.pledge-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.pledge-photo figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  text-align: center;
}
.pledge-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.pledge-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.pledge-lead { font-size: 1.1rem; color: var(--ink); margin-bottom: 14px; }
.pledge-copy > p { color: var(--ink-soft); margin-bottom: 18px; }
.pledge-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 14px;
}
.pledge-facts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.pledge-facts svg { flex: none; color: var(--accent-dark); margin-top: 2px; }
.pledge-facts strong { color: var(--ink); }
.pledge-sign { font-style: italic; color: var(--ink); margin-bottom: 22px; }
@media (max-width: 860px) {
  .pledge-inner { grid-template-columns: 1fr; }
  .pledge-photo { order: 2; max-width: 420px; margin-inline: auto; }
}

/* ---------- Toestel-builder (app-kiezer) ---------- */
.builder-form { max-width: 760px; margin: 0 auto; }
.builder-row { margin-bottom: 22px; }
.builder-field { display: grid; gap: 6px; }
.builder-field > span { font-weight: 700; font-size: 0.9rem; }
.builder-field select,
.builder-field input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font: inherit;
  color: var(--ink);
}
.builder-field select:focus,
.builder-field input[type="text"]:focus,
.builder-opt input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.builder-group { border: none; padding: 0; margin: 0 0 22px; }
.builder-group legend {
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 12px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.builder-tag {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid #e8dcc3;
  padding: 2px 8px;
  border-radius: 999px;
}
.builder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.builder-opt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  cursor: pointer;
}
.builder-opt input { margin-top: 2px; width: 16px; height: 16px; flex: none; accent-color: var(--accent); }
.builder-opt em { color: var(--ink-faint); font-style: normal; font-size: 0.85rem; }
.builder-opt--fixed { cursor: default; background: var(--accent-soft); border-color: #e8dcc3; }
.builder-field--other { margin-top: 4px; }
.builder-actions { text-align: center; margin-top: 26px; }
.builder-fee {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.builder-fee strong { color: var(--accent-dark); }
.builder-or { font-size: 0.9rem; color: var(--ink-soft); margin-top: 14px; }
.builder-or a { color: var(--accent-dark); font-weight: 600; }
.builder-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 12px; max-width: 52ch; margin-inline: auto; }
@media (max-width: 700px) { .builder-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .builder-grid { grid-template-columns: 1fr; } }

/* ---------- App-compat (Werkt het?) ---------- */
.compat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.compat-legend span { display: inline-flex; align-items: center; gap: 8px; }
.compat-group { margin-bottom: 40px; }
.compat-group h3 { font-size: 1.18rem; margin-bottom: 14px; }
.compat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.compat-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.compat-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  flex: none;
}
.compat-status.ok { background: #e7f5ec; color: #16a34a; }
.compat-status.warn { background: #fbf0d8; color: #b97309; }
.compat-status.no { background: #fce4e4; color: #dc2626; }
.compat-item h4 { font-size: 0.98rem; margin: 0 0 3px; }
.compat-item p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.compat-item a { color: var(--accent-dark); }

.callout {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  background: var(--accent-soft);
  border: 1px solid #e8dcc3;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.callout h3 { margin: 0; font-size: 1.05rem; }
.callout p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.compat-meta { font-size: 0.85rem; color: var(--ink-faint); margin-top: 8px; }
.compat-meta a { color: var(--accent-dark); }

/* ---------- Subpagina-hero ---------- */
.subpage-hero {
  padding-block: clamp(48px, 8vw, 96px);
  background:
    radial-gradient(900px 420px at 50% -120px, var(--accent-soft) 0%, rgba(244, 236, 221, 0) 70%),
    var(--bg);
}
.subpage-hero--dark {
  background:
    radial-gradient(800px 380px at 50% -80px, rgba(160, 123, 56, 0.35) 0%, rgba(160, 123, 56, 0) 70%),
    var(--ink);
  color: #fff;
}
.subpage-hero__inner { max-width: 760px; }
.subpage-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 18px; }
.subpage-hero .lede {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
}
.subpage-hero--dark .lede { color: rgba(255, 255, 255, 0.72); }
.subpage-hero--dark .hero-kicker { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #e7cf9f; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb span[aria-current] { color: var(--ink); }
.subpage-hero--dark .breadcrumb { color: rgba(255,255,255,0.5); }
.subpage-hero--dark .breadcrumb a { color: rgba(255,255,255,0.7); }

/* ---------- Generic section ---------- */
.section { padding-block: clamp(64px, 9vw, 110px); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section--dark { background: var(--ink); color: #f5f4f1; }
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: #b9b8be; }

/* ---------- Model grid ---------- */
.models { padding-block: clamp(64px, 9vw, 110px); }

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.model-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: #ddd8cf;
}

.model-card.is-featured { border-color: var(--accent); }
.model-card.is-featured:hover { border-color: var(--accent-dark); }

.model-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
}
.model-badge.badge-deal { background: var(--ink); }

/* photo + hover front/back swap */
.model-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  cursor: pointer;
}
.model-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: opacity 360ms ease;
}
.model-photo .photo-back { opacity: 0; }
.model-card:hover .photo-back,
.model-card:focus-within .photo-back { opacity: 1; }
.model-card:hover .photo-front,
.model-card:focus-within .photo-front { opacity: 0; }

.model-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
  border-top: 1px solid var(--line);
}

.model-body h3 { font-size: 1.3rem; }

.model-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 2px 0 14px;
}

.model-specs {
  list-style: none;
  margin-bottom: 18px;
  display: grid;
  gap: 7px;
}
.model-specs li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.model-specs li::before {
  content: "·";
  color: var(--accent);
  font-weight: 800;
}

.model-price { margin: auto 0 16px; display: flex; align-items: baseline; gap: 10px; }
.price-now { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.price-was { color: var(--ink-faint); font-size: 0.95rem; }

.models-note {
  text-align: center;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Comparison table ---------- */
.compare {
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.compare-table th,
.compare-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.compare-table thead th {
  font-size: 1.02rem;
  font-weight: 800;
  background: var(--bg);
  white-space: nowrap;
}

.compare-table tbody th[scope="row"] {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.compare-table td { color: var(--ink-soft); }

.col-featured { background: var(--accent-soft); }
thead .col-featured { background: var(--accent-soft); color: var(--ink); }

.th-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: 2px;
}

.row-price td { font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.row-price s { color: var(--ink-faint); font-weight: 500; font-size: 0.85rem; margin-left: 6px; }

.row-cta th, .row-cta td { border-bottom: none; padding-block: 18px; }

/* ---------- Waarom degoogled / split ---------- */
.why { padding-block: clamp(64px, 9vw, 110px); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.why-inner.is-reversed .why-photo { order: 2; }

.why-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  background: #fff;
}
.why-photo img { width: 100%; object-fit: cover; }

.why-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }

.why-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.why-list { list-style: none; display: grid; gap: 20px; margin-bottom: 34px; }
.why-list li {
  display: grid;
  gap: 3px;
  padding-left: 22px;
  position: relative;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.why-list strong { font-size: 1.02rem; }
.why-list span { color: var(--ink-soft); font-size: 0.95rem; }

.why-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Proces (homepage strip) ---------- */
.process {
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--ink);
  color: #f5f4f1;
}
.process .section-head h2 { color: #fff; }
.process .section-head p { color: #b9b8be; }

.process-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-strip li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.process-strip h3 { font-size: 1.05rem; margin-bottom: 6px; color: #fff; }
.process-strip p { font-size: 0.9rem; color: #b9b8be; }

/* ---------- Timeline (proces-pagina, verticaal genummerd) ---------- */
.timeline {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
}
.timeline-item {
  position: relative;
  padding: 0 0 38px 64px;
  border-left: 2px solid var(--line);
}
.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-num {
  position: absolute;
  left: -21px;
  top: -4px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--bg);
}
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.timeline-item p { color: var(--ink-soft); }

/* ---------- Feature grid (security architecture) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 26px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.section--dark .feature-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.section--dark .feature-card h3 { color: #fff; }
.feature-card p { font-size: 0.92rem; color: var(--ink-soft); }
.section--dark .feature-card p { color: #b9b8be; }
.feature-card .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.section--dark .feature-card .feature-icon { background: rgba(160,123,56,0.2); color: #e7cf9f; }
.feature-card .feature-icon svg { width: 20px; height: 20px; }

/* ---------- Specs list (product) ---------- */
.spec-list { list-style: none; display: grid; gap: 0; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.spec-list li span:first-child { color: var(--ink-soft); }
.spec-list li span:last-child { font-weight: 700; text-align: right; }

/* ---------- Personas (voor wie) ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.persona-card {
  padding: 30px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.persona-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.persona-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.persona-card > p { color: var(--ink-soft); margin-bottom: 16px; }
.persona-card ul { list-style: none; display: grid; gap: 8px; }
.persona-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.persona-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- Checklist (dark band) ---------- */
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
  display: flex; gap: 13px;
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
}
.checklist li::before {
  content: "—";
  color: #e7cf9f;
  flex-shrink: 0;
}

/* ---------- Values (principes) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 28px 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.value-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  padding: 28px 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.team-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-role { font-size: 0.85rem; color: var(--accent-dark); font-weight: 700; margin-bottom: 12px; }
.team-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Info card (entiteit / contact-blok) ---------- */
.info-card {
  padding: 30px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.section--dark .info-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.info-card__label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 12px;
}
.section--dark .info-card__label { color: #e7cf9f; }
.info-card__name { font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.section--dark .info-card__name { color: #fff; }
.info-card p { color: var(--ink-soft); font-size: 0.95rem; }
.section--dark .info-card p { color: rgba(255,255,255,0.6); }

/* ---------- Contact channels ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  display: block;
  padding: 28px 26px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: #ddd8cf; text-decoration: none; }
.contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-dark); margin-bottom: 16px;
}
.contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--ink); }
.contact-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 10px; }
.contact-card .contact-value { font-weight: 700; color: var(--accent-dark); }

/* ---------- Prose (juridische pagina's) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 20px; color: var(--ink-soft); }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--accent-dark); text-decoration: underline; }
.prose .table-scroll { overflow-x: auto; margin: 8px 0 22px; -webkit-overflow-scrolling: touch; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 460px; }
.prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose thead th { background: var(--accent-soft); color: var(--ink); font-weight: 700; white-space: nowrap; }
.prose tbody tr:nth-child(even) { background: var(--bg-alt); }
.prose td:first-child, .prose th:first-child { font-weight: 600; }
.prose .prose-meta { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 30px; }

/* ---------- FAQ ---------- */
.faq { padding-block: clamp(64px, 9vw, 110px); }

.faq-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.faq-inner--single { grid-template-columns: 1fr; max-width: 820px; margin-inline: auto; }

.faq-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.faq-head p { color: var(--ink-soft); }

.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-card); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent-dark);
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Trust ---------- */
.trust {
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  padding: 26px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.trust-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.trust-card p { font-size: 0.9rem; color: var(--ink-soft); }
/* 3-koloms variant (collapst via de bestaande .trust-grid media-queries) */
.trust-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Garantie-strip ---------- */
.guarantee-bar {
  background: var(--accent-soft);
  border-block: 1px solid var(--line);
  padding-block: 18px;
}
.guarantee-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}
.guarantee-bar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.guarantee-bar svg { flex: none; }

@media (max-width: 860px) {
  .guarantee-bar-inner { gap: 12px 22px; }
}

/* ---------- Eind-CTA ---------- */
.final-cta {
  padding-block: clamp(64px, 9vw, 110px);
  background:
    radial-gradient(800px 360px at 50% -80px, rgba(160, 123, 56, 0.35) 0%, rgba(160, 123, 56, 0) 70%),
    var(--ink);
  color: #fff;
  text-align: center;
}

.final-cta h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); margin-bottom: 10px; }
.final-cta p { color: #c9c8cd; margin-bottom: 30px; }

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  padding-top: clamp(48px, 7vw, 72px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
}

.footer-brand p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 14px; }

.footer-nav, .footer-contact, .footer-meta { display: grid; gap: 9px; align-content: start; }

.site-footer h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 6px;
}

.footer-nav a, .footer-contact a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  width: fit-content;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--ink); }

.footer-meta p { color: var(--ink-soft); font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  /* extra ruimte zodat de sticky buybar de inhoud niet bedekt */
  padding-bottom: 96px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- Betaal-badges ---------- */
.pay-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.pay-line .pay-label { font-size: 0.82rem; color: var(--ink-soft); }
.final-cta .pay-line .pay-label { color: #c9c8cd; }
.pay-badges { display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pay-badge {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #e2e0db;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #1a1a2e;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.pay-badge.pay-ideal { color: #cc0066; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom-inner .pay-line { margin-top: 0; }
@media (max-width: 640px) {
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- Sticky buy-bar ---------- */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(22, 22, 26, 0.08);
  transform: translateY(110%);
  transition: transform 320ms cubic-bezier(0.33, 1, 0.68, 1);
}
.buybar.is-visible { transform: translateY(0); }

.buybar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}

.buybar-info { display: flex; flex-direction: column; line-height: 1.3; }
.buybar-info strong { font-size: 0.95rem; }
.buybar-info span { font-size: 0.82rem; color: var(--ink-soft); }

.buybar-actions { display: flex; align-items: center; gap: 18px; }

.buybar-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
}
.buybar-link:hover { text-decoration: none; color: var(--accent-dark); }

/* ---------- Scroll-reveal (JS voegt .reveal toe) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.33, 1, 0.68, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1020px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Mobiel menu */
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 8px 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .main-nav a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.is-current::after { display: none; }
}

@media (max-width: 720px) {
  .why-inner, .faq-inner { grid-template-columns: 1fr; }
  .why-inner.is-reversed .why-photo { order: 0; }
  .why-photo { max-width: 440px; margin-inline: auto; }
  .persona-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .model-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-strip-inner { flex-direction: column; align-items: center; gap: 8px; }
  .buybar-link { display: none; }
  .buybar-info span { display: none; }
  .footer-bottom { padding-bottom: 110px; }
  .header-cta { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .model-card:hover { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .buybar { transition: none; }
}
