/* Base reset & layout */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-midnight-ink);
  color: var(--color-moonlight);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: 1.5;
  letter-spacing: -0.01px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Blueprint grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(186, 215, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 215, 247, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Radial hero glow — bordeaux */
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(105, 12, 15, 0.22) 0%,
    rgba(105, 12, 15, 0.08) 45%,
    transparent 70%);
  pointer-events: none;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-24);
  position: relative;
  z-index: 1;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-16) 0;
  background: rgba(5, 6, 15, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(63, 73, 89, 0.45);
  transition: padding 0.4s ease, background 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(5, 6, 15, 0.97);
  border-bottom-color: rgba(105, 12, 15, 0.30);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: var(--text-heading-sm);
  font-weight: var(--weight-black);
  color: var(--color-glacier);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

/* Frosted pill container om de links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  background: rgba(199, 211, 234, 0.04);
  border: 1px solid rgba(199, 211, 234, 0.09);
  border-radius: var(--radius-pill);
  padding: 4px;
}

.nav-links a {
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  color: var(--color-pebble);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  transition: color 0.18s, background 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-links a svg.nav-icon {
  opacity: 0.45;
  transition: opacity 0.18s;
  flex-shrink: 0;
}

.nav-links a:hover {
  color: var(--color-glacier);
  background: rgba(199, 211, 234, 0.08);
}

.nav-links a:hover svg.nav-icon {
  opacity: 0.85;
}

/* Actieve sectie — bordeaux tint */
.nav-links a.active {
  color: var(--color-bordeaux-text);
  background: rgba(105, 12, 15, 0.22);
}

.nav-links a.active svg.nav-icon {
  opacity: 1;
  stroke: var(--color-bordeaux-text);
}

/* Rechter groep: telefoonnummer + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  color: var(--color-fog);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}

.nav-phone:hover {
  color: var(--color-pebble);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--color-bordeaux);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  line-height: 1.5;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-bordeaux-hover);
  box-shadow: var(--shadow-bordeaux);
  color: #ffffff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: transparent;
  color: var(--color-moonlight);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  line-height: 1.5;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-hairline);
  transition: color 0.15s, box-shadow 0.15s;
}

.btn-ghost:hover {
  color: var(--color-glacier);
  box-shadow: rgba(186, 215, 247, 0.2) 0px 0px 0px 1px inset;
}

/* ── Eyebrow label ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--weight-regular);
  letter-spacing: 0.14em;
  color: var(--color-bordeaux-text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-12);
  justify-content: center;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-bordeaux-glow);
  opacity: 0.5;
}

/* ── Typography ── */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, var(--text-display));
  font-weight: var(--weight-black);
  line-height: 1.08;
  color: var(--color-glacier);
  letter-spacing: -0.04em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--weight-bold);
  line-height: 1.12;
  color: var(--color-glacier);
  letter-spacing: -0.03em;
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--text-heading-sm);
  font-weight: var(--weight-bold);
  line-height: 1.25;
  color: var(--color-ice);
  letter-spacing: -0.02em;
}

p {
  color: var(--color-moonlight);
  line-height: 1.65;
}

a {
  color: var(--color-bordeaux-text);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--color-glacier);
}

/* ── Sections ── */
section {
  padding: var(--space-120) 0;
  position: relative;
  z-index: 1;
  scroll-margin-top: 100px;
}

.usp-strip {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-56);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.section-header p {
  color: var(--color-pebble);
  font-size: var(--text-subheading);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Cards ── */
.card {
  background: var(--color-graphite-plate);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hairline);
  pointer-events: none;
}

/* ── Service cards grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
}

/* ── Stappen grid (werkwijze) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
}

.service-card {
  background: var(--color-graphite-plate);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hairline);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(105, 12, 15, 0.12);
}

/* bordeaux accent strip links op elke card */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-bordeaux-glow) 40%,
    var(--color-bordeaux) 60%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover::after {
  opacity: 1;
}

.service-photo {
  margin: calc(-1 * var(--space-24)) calc(-1 * var(--space-24)) var(--space-20);
  height: 168px;
  position: relative;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.88) saturate(0.9);
}

.service-card:hover .service-photo img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.05);
}

.service-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, #2f343e);
  pointer-events: none;
}

.service-card h3 {
  margin-bottom: var(--space-8);
}

.service-card p {
  font-size: var(--text-body-sm);
  color: var(--color-fog);
  line-height: 1.6;
}

.service-badge {
  display: inline-block;
  margin-top: var(--space-16);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cipher-mint);
  background: rgba(38, 150, 132, 0.1);
  padding: 3px 9px;
  border-radius: var(--radius-md);
}

/* ── Stappen cards (werkwijze) ── */
.step-card {
  padding: 0;
}

.step-photo {
  height: 168px;
  position: relative;
  overflow: hidden;
}

.step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.88) saturate(0.9);
}

.step-card:hover .step-photo img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.05);
}

.step-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, #2f343e);
  pointer-events: none;
}

/* Kenteken-variant: donkere achtergrond, SVG gecentreerd */
.step-photo--plate {
  background: #111318;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-24) var(--space-32);
}

.step-photo--plate::after {
  display: none;
}

.step-photo--plate img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: none;
  transform: none;
}

.step-card:hover .step-photo--plate img {
  transform: scale(1.04);
  filter: none;
}

.step-body {
  padding: var(--space-24);
  text-align: center;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-bordeaux-text);
  text-transform: uppercase;
  margin-bottom: var(--space-16);
}

.step-body h3 {
  margin-bottom: var(--space-12);
}

.step-body p {
  font-size: var(--text-body-sm);
  color: var(--color-fog);
}

/* ── Hero ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: var(--space-80) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  max-width: 820px;
  margin: 0 auto;
}

/* ── Hero entrance animations ── */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(72px) scale(0.93);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes accentShimmer {
  from { background-position: 100% center; }
  to   { background-position: -200% center; }
}

.hero-inner .eyebrow {
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}

.hero-inner h1 {
  margin: var(--space-8) 0;
  animation: heroReveal 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

/* Woord "eerlijk geprijsd" in bordeaux gradient + shimmer */
.hero-inner h1 .accent {
  display: block;
  background: linear-gradient(90deg,
    var(--color-bordeaux-text) 0%,
    var(--color-bordeaux-text) 20%,
    #ffffff 48%,
    var(--color-bordeaux-glow) 65%,
    var(--color-bordeaux-text) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentShimmer 5s linear 1.3s infinite;
}

.hero-subtitle {
  font-size: var(--text-subheading);
  color: var(--color-pebble);
  max-width: 520px;
  text-align: center;
  line-height: 1.65;
  animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-8);
  animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both;
}

/* Conic border op hero */
.hero-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: conic-gradient(from 90deg at 50% -5%,
    transparent 0deg,
    rgba(105, 12, 15, 0.2) 90deg,
    rgba(140, 18, 23, 0.35) 180deg,
    rgba(105, 12, 15, 0.2) 270deg,
    transparent 360deg);
  mask: linear-gradient(to bottom, black 0%, transparent 120px);
  -webkit-mask: linear-gradient(to bottom, black 0%, transparent 120px);
}

/* ── USP strip ── */
.usp-strip {
  padding: var(--space-48) 0;
  border-top: 1px solid rgba(63, 73, 89, 0.5);
  border-bottom: 1px solid rgba(63, 73, 89, 0.5);
  background: rgba(47, 52, 62, 0.15);
}

.usp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.usp-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-4) var(--space-32) var(--space-4) 0;
  border-right: 1px solid rgba(63, 73, 89, 0.4);
  transition: none;
}

.usp-card:first-child { padding-left: 0; }
.usp-card:last-child  { border-right: none; padding-right: 0; }

/* Kolommen 2–4: extra padding links */
.usp-card:not(:first-child) {
  padding-left: var(--space-32);
}

.usp-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-bordeaux-text);
  opacity: 0.65;
  margin-bottom: var(--space-4);
}

.usp-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(105, 12, 15, 0.14);
  border: 1px solid rgba(105, 12, 15, 0.32);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  transition: background 0.2s, border-color 0.2s;
}

.usp-icon-wrap svg {
  width: 19px;
  height: 19px;
  stroke: var(--color-bordeaux-text);
}

.usp-card:hover .usp-icon-wrap {
  background: rgba(105, 12, 15, 0.26);
  border-color: rgba(105, 12, 15, 0.55);
}

.usp-title {
  font-size: var(--text-body);
  font-weight: var(--weight-bold);
  color: var(--color-glacier);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.usp-sub {
  font-size: var(--text-body-sm);
  color: var(--color-fog);
  line-height: 1.45;
}

/* ── Reviews ── */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  margin-bottom: var(--space-56);
  flex-wrap: wrap;
}

.reviews-summary-score {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.reviews-score-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: var(--weight-black);
  color: var(--color-glacier);
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 2px;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
}

.reviews-divider {
  width: 1px;
  height: 36px;
  background: rgba(63, 73, 89, 0.6);
}

.reviews-meta {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--text-body-sm);
  color: var(--color-fog);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  padding: var(--space-24);
}

.review-card-stars {
  display: flex;
  gap: 2px;
}

.review-card-stars svg {
  width: 15px;
  height: 15px;
}

.review-text {
  font-size: var(--text-body-sm);
  color: var(--color-pebble);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  quotes: "\201C" "\201D";
}

.review-text::before { content: open-quote; }
.review-text::after  { content: close-quote; }

.review-footer {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding-top: var(--space-16);
  border-top: 1px solid rgba(63, 73, 89, 0.4);
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bordeaux-subtle);
  border: 1px solid var(--color-bordeaux-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--color-bordeaux-text);
  flex-shrink: 0;
  font-family: var(--font-display);
}

.review-byline {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-size: var(--text-body-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-moonlight);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: var(--text-caption);
  color: var(--color-fog);
  margin-top: 2px;
}

.review-google-badge {
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0.65;
  transition: opacity 0.15s;
}

.review-card:hover .review-google-badge {
  opacity: 1;
}

/* ── Terugbelformulier ── */
.callback-card {
  max-width: 900px;
  margin: 0 auto var(--space-32);
  padding: var(--space-32) var(--space-32);
}

.callback-intro {
  margin-bottom: var(--space-24);
}

.callback-form {
  width: 100%;
}

.callback-fields {
  display: flex;
  gap: var(--space-12);
  align-items: flex-end;
  flex-wrap: wrap;
}

.callback-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  flex: 1;
  min-width: 160px;
}

.callback-field label {
  font-size: var(--text-caption);
  font-family: var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-bordeaux-text);
  opacity: 0.85;
}

.callback-field input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  color: var(--color-moonlight);
  font-size: var(--text-body);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.callback-field input:focus {
  border-color: rgba(105,12,15,0.60);
  background: rgba(255,255,255,0.06);
}

.callback-field input::placeholder {
  color: var(--color-pebble);
  opacity: 0.55;
}

.callback-submit {
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}

.callback-success {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  color: var(--color-moonlight);
  font-size: var(--text-body);
}

.callback-success svg {
  color: #4ade80;
  flex-shrink: 0;
}

.callback-error {
  color: #f87171;
  font-size: var(--text-body-sm);
  margin: 0 0 var(--space-12);
}

.cb-car-info {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: var(--space-12);
  font-size: var(--text-caption);
  color: var(--color-bordeaux-text);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  background: rgba(105,12,15,0.10);
  border: 1px solid rgba(105,12,15,0.22);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  width: fit-content;
}

@media (max-width: 600px) {
  .callback-fields {
    flex-direction: column;
    align-items: stretch;
  }
  .callback-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ── Stap-nummers ── */
.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-bordeaux-text);
  margin-bottom: var(--space-16);
  text-transform: uppercase;
}

/* ── CTA section ── */
.cta-section {
  text-align: center;
}

.cta-card {
  background: var(--color-graphite-plate);
  border-radius: var(--radius-xl);
  padding: var(--space-56) var(--space-40);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hairline);
  pointer-events: none;
}

/* bordeaux glow achter CTA card */
.cta-card::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse,
    rgba(105, 12, 15, 0.18) 0%,
    transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  margin-bottom: var(--space-16);
}

.cta-card p {
  color: var(--color-pebble);
  margin-bottom: var(--space-32);
  font-size: var(--text-subheading);
  line-height: 1.6;
}

/* ── Footer ── */
footer {
  padding: var(--space-40) 0;
  border-top: 1px solid rgba(63, 73, 89, 0.5);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.footer-meta {
  font-size: var(--text-caption);
  color: var(--color-fog);
}

.footer-links {
  display: flex;
  gap: var(--space-20);
  list-style: none;
}

.footer-links a {
  font-size: var(--text-caption);
  color: var(--color-fog);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--color-moonlight);
}

/* ── Contact labels ── */
.contact-label {
  font-size: var(--text-caption);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bordeaux-text);
  margin-bottom: var(--space-12);
  opacity: 0.8;
}

/* ── Desktop: hide hamburger + mobile-only CTA ── */
#nav-toggle         { display: none; }
.nav-cta-mobile     { display: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Nav hamburger */
  #nav-toggle {
    display: inline-flex;
    padding: 8px 10px;
    margin-left: auto;
  }

  .nav-right {
    display: none;
  }

  .nav-inner {
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
  }

  /* Op mobile: geen pill container */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: var(--space-8) 0 var(--space-16);
    border-top: 1px solid rgba(63, 73, 89, 0.3);
    margin-top: var(--space-12);
    background: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    padding: 11px var(--space-4);
    border-radius: 0;
    font-size: var(--text-body);
  }

  .nav-links a svg.nav-icon {
    opacity: 0.6;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: var(--space-8);
    padding-top: var(--space-12);
    border-top: 1px solid rgba(63, 73, 89, 0.2);
  }

  .nav-cta-mobile .btn-primary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Rest van de pagina */
  .services-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    gap: var(--space-12);
  }

  .reviews-divider {
    display: none;
  }

  .usp-cards {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
  }

  .usp-card,
  .usp-card:not(:first-child) {
    padding: 0;
    border-right: none;
  }

  /* Dunne scheidslijn onder elke rij op mobile */
  .usp-card:nth-child(1),
  .usp-card:nth-child(2) {
    padding-bottom: var(--space-24);
    border-bottom: 1px solid rgba(63, 73, 89, 0.35);
  }

  .cta-card {
    padding: var(--space-40) var(--space-24);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: var(--space-80) 0;
  }

  .hero {
    min-height: 75vh;
  }
}

/* ── Scroll reveal ── */
/* Alleen actief als JS de class 'anim-init' op body zet */
.anim-init .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.70s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.70s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.anim-init .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Animaties uit bij gebruikersvoorkeur voor minder beweging */
@media (prefers-reduced-motion: reduce) {
  .anim-init .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero-inner .eyebrow,
  .hero-inner h1,
  .hero-subtitle,
  .hero-cta {
    animation: none;
  }
  .hero-inner h1 .accent {
    animation: none;
    background-size: 100% auto;
    background-position: 0% center;
  }
}

/* ── Dienstpagina's ── */
.dienst-hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  margin-bottom: var(--space-40);
}

.dienst-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hairline);
  pointer-events: none;
}

.dienst-hero-photo img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) saturate(0.95);
}

.dienst-content {
  max-width: 720px;
  margin: 0 auto;
}

.dienst-content p {
  color: var(--color-pebble);
  line-height: 1.7;
  margin-bottom: var(--space-16);
}

.dienst-content ul {
  color: var(--color-pebble);
  line-height: 1.7;
  margin: 0 0 var(--space-20);
  padding-left: 20px;
}

.dienst-content ul li { margin-bottom: 6px; }

.dienst-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-body-sm);
  margin: var(--space-20) 0 var(--space-28);
}

.dienst-price-table th {
  text-align: left;
  padding: 8px 12px;
  color: var(--color-fog);
  font-weight: 400;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-steel-border);
}

.dienst-price-table td {
  padding: 10px 12px;
  color: var(--color-moonlight);
  border-bottom: 1px solid rgba(63,73,89,0.3);
}

.dienst-price-table td:last-child { text-align: right; font-family: var(--font-mono); color: var(--color-glacier); }

.dienst-meta-row {
  display: flex;
  gap: var(--space-24);
  flex-wrap: wrap;
  margin-bottom: var(--space-28);
  font-size: var(--text-body-sm);
  color: var(--color-fog);
}

.dienst-meta-row strong { color: var(--color-moonlight); font-weight: var(--weight-medium); }

/* ── APK-vervaldatum check ── */
.apk-check-card {
  background: rgba(38, 150, 132, 0.08);
  border: 1px solid rgba(38, 150, 132, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-16) var(--space-20);
}

.apk-check-card strong {
  display: block;
  color: var(--color-moonlight);
  font-size: var(--text-body);
  margin-bottom: 4px;
}

.apk-check-card p {
  color: var(--color-pebble);
  font-size: var(--text-body-sm);
  line-height: 1.6;
  margin-bottom: var(--space-12);
}

.apk-check-card .btn-primary { margin-top: 4px; }

.apk-check-car {
  font-family: var(--font-mono);
  font-size: 12px !important;
  color: var(--color-fog) !important;
}

.apk-check-card.apk-check-warn {
  background: var(--color-bordeaux-subtle);
  border-color: var(--color-bordeaux-hairline);
}

.apk-check-card.apk-check-warn strong { color: var(--color-bordeaux-text); }

/* ── FAQ accordion ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-12); }

.faq-item {
  background: var(--color-graphite-plate);
  border: 1px solid var(--color-steel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-16) var(--space-20);
  font-weight: var(--weight-medium);
  color: var(--color-moonlight);
  font-size: var(--text-body-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--color-bordeaux-text);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.15s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item-answer {
  padding: 0 var(--space-20) var(--space-16);
  color: var(--color-pebble);
  font-size: var(--text-body-sm);
  line-height: 1.65;
}

/* ── Utility ── */
.text-center { text-align: center; }
