/* ============================================================
   Uw Schoenmaker — Premium Design System
   ============================================================ */

:root {
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  /* RAL 7016 — anthracietgrijs (originele huisstijl) */
  --brand: #383E42;
  --brand-hover: #2e3336;
  --brand-light: #4a5560;
  --bg: #f6f7f9;
  --bg-elevated: #ffffff;
  --bg-muted: #eef0f2;
  --bg-dark: #383E42;
  --text: #202124;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-inverse: #ffffff;
  --border: rgba(56, 62, 66, 0.1);
  --border-strong: rgba(56, 62, 66, 0.18);
  --accent: #383E42;
  --accent-hover: #2e3336;
  --accent-soft: rgba(56, 62, 66, 0.1);
  --accent-glow: rgba(56, 62, 66, 0.25);
  --slate: #383E42;
  --slate-soft: #4a5560;
  --main: #383E42;
  --main-600: #2e3336;
  --main-400: #4a5560;
  --ok: #059669;
  --err: #dc2626;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.04);
  --shadow: 0 4px 24px rgba(15, 20, 25, 0.06);
  --shadow-lg: 0 24px 48px rgba(15, 20, 25, 0.1);
  --shadow-glow: 0 0 0 1px rgba(56, 62, 66, 0.06), 0 8px 32px rgba(56, 62, 66, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.35s;
  --header-h: 72px;
  --container: 1180px;
  --section-y: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.menu-open { overflow: hidden; }

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 56ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .lead { margin-inline: auto; margin-top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--slate);
  color: var(--text-inverse);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.btn-primary:hover {
  background: var(--slate-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  background: var(--brand-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--text);
  background: var(--bg-elevated);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
}

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Legacy btn aliases */
a.btn.primary, .btn.primary, button.btn.primary {
  background: var(--slate);
  color: var(--text-inverse);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
}

a.btn.outline, .btn.outline {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.loader::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: inherit;
  z-index: -1;
}

.site-header.scrolled::before {
  background: rgba(56, 62, 66, 0.97);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand .logo {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand-name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  display: none;
}

@media (min-width: 480px) {
  .brand-name { display: block; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-sm);
}

.nav-desktop a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-desktop a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta { display: none; }

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    background: #fff !important;
    color: var(--brand) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .nav-cta:hover {
    background: #f0f0f0 !important;
    color: var(--brand-hover) !important;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.site-header .hamburger .bar {
  background: #fff;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

header:not(.site-header) .hamburger .bar {
  background: var(--text);
}

.hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(15, 20, 25, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
  z-index: 999;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-panel {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  transform: translateY(-8px);
  transition: transform var(--duration) var(--ease);
}

.nav-mobile.open .nav-mobile-panel {
  transform: translateY(0);
}

.nav-mobile a {
  display: block;
  padding: 0.875rem 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.nav-mobile .nav-mobile-cta {
  margin-top: 0.5rem;
  width: 100%;
}

/* Legacy header support */
header:not(.site-header) {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

header:not(.site-header) .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

header:not(.site-header) .brand .logo { height: 44px; }
header:not(.site-header) .brand-name { display: none; }

header:not(.site-header) nav ul {
  display: none;
  list-style: none;
}

@media (min-width: 1024px) {
  header:not(.site-header) nav ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
  }
}

header:not(.site-header) nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}

header:not(.site-header) nav a:hover,
header:not(.site-header) nav a.active {
  color: var(--text);
  background: var(--accent-soft);
}

header:not(.site-header) .hamburger { display: flex; }

@media (min-width: 1024px) {
  header:not(.site-header) .hamburger { display: none; }
}

@media (max-width: 1023px) {
  header:not(.site-header) nav ul#nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
    display: flex;
    z-index: 998;
  }

  header:not(.site-header) nav ul#nav-list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  header:not(.site-header) nav ul#nav-list a {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--text);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 62, 66, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(26, 35, 50, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(56, 62, 66, 0.08), transparent),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 20, 25, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 20, 25, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 50%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  animation: fadeUp 1s var(--ease) 0.25s both;
}

.hero-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hero-card-dots {
  display: flex;
  gap: 6px;
}

.hero-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.hero-card-dots span:first-child { background: #ff5f57; }
.hero-card-dots span:nth-child(2) { background: #febc2e; }
.hero-card-dots span:nth-child(3) { background: #28c840; }

.hero-services-mini {
  display: grid;
  gap: 0.75rem;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.hero-service-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.hero-service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.hero-service-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.hero-service-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-float {
  position: absolute;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 6s ease-in-out infinite;
}

.hero-float i { color: var(--accent); }

.hero-float--1 { top: -12px; right: -8px; animation-delay: 0s; }
.hero-float--2 { bottom: 20%; left: -16px; animation-delay: -2s; }
.hero-float--3 { bottom: -8px; right: 20%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-decoration,
.hero-buttons { display: none; }

/* Trusted brands */
.trusted {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.trusted-logos img,
.dealer-logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
  min-width: 60px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  opacity: 1;
}

.dealer-logo-img {
  height: 48px;
  max-width: 120px;
}

/* ============================================================
   SECTIONS — Features, Services, etc.
   ============================================================ */
section { padding-block: var(--section-y); }

.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item,
.feature-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.feature-item:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.feature-item h3,
.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-item p,
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Services */
.services { background: var(--bg-muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card > p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  background: var(--bg-muted);
  color: var(--text-secondary);
  border-radius: 100px;
}

.service-timing {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
}

.service-timing i { margin-right: 0.25rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

.service-link i { transition: transform var(--duration) var(--ease); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* About */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--slate) 0%, var(--slate-soft) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual i {
  font-size: 4rem;
  color: rgba(255,255,255,0.2);
}

.about-visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-visual-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.about-visual-badge span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.about-content .lead { margin: 1rem 0 1.5rem; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.about-list i {
  color: var(--ok);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials { background: var(--bg-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Value props (no pricing) */
.value-props { background: var(--bg); padding-block: var(--section-y); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.value-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-glow);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--brand);
  border-radius: var(--radius);
  font-size: 1.25rem;
}

.value-card h3 { font-size: 1.125rem; }

.value-card p {
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.value-card .btn { width: 100%; margin-top: 0.5rem; }

.value-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.value-note a {
  color: var(--brand);
  font-weight: 600;
}

.page-hero-meta--center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.page-hero-meta--center span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

/* Pricing (legacy) */
.pricing { background: var(--bg); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing-toggle span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

.pricing-toggle span.active { color: var(--text); font-weight: 600; }

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--slate);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background var(--duration) var(--ease);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}

.toggle-switch.active::after { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Populair';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.pricing-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  flex: 1;
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features i {
  color: var(--ok);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; margin-top: auto; }

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* FAQ */
.faq { background: var(--bg-muted); }

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease);
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.faq-question:hover { background: var(--bg-muted); }

.faq-question i {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration) var(--ease);
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Local areas */
.local-areas { background: var(--bg); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.area-item {
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.area-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.area-item h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.area-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA */
.cta {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.cta-inner {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--slate) 0%, var(--brand) 50%, var(--slate-soft) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(56, 62, 66, 0.2), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-inline: auto;
}

.cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Contact section (homepage) */
.contact-preview {
  background: var(--bg-muted);
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-preview-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-info-card i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.contact-info-card a:hover { color: var(--accent); }

.contact-form-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.03em;
}

.page-header .eyebrow {
  justify-content: center;
  margin-bottom: 0.75rem;
}

.page-header .eyebrow::before {
  display: none;
}

.page-header .lead {
  margin-inline: auto;
  color: var(--text-secondary);
}

.breadcrumbs {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer,
footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .logo {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}

.footer-section h3,
.footer-grid h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a,
.footer-section a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover,
.footer-section a:hover { color: #fff; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 0.2rem;
  width: 16px;
}

.openingstijden .openingstijd,
.openingstijden-list .openingstijd-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.openingstijden .openingstijd:last-child,
.openingstijden-list .openingstijd-item:last-child { border-bottom: none; }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   FORMS
   ============================================================ */
.contact-form,
form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--err);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input { margin-top: 0.2rem; }
.checkbox-label a { color: var(--accent); text-decoration: underline; }

/* Contact page */
.contact-section { padding-block: var(--section-y); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p { color: var(--text-secondary); font-size: 0.9375rem; }
.contact-details a { color: var(--accent); font-weight: 600; }

.contact-form-container {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-section { padding-block: var(--section-y); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map { width: 100%; height: 400px; border: 0; }

/* Story / content pages */
.story-section,
.content-section { padding-block: var(--section-y); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.dealer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.dealer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 100px;
}

.dealer-logo .dealer-logo-img {
  height: 48px;
  max-width: 120px;
}

.dealer-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item { text-align: left; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.story-image .image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--slate), var(--slate-soft));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  gap: 0.5rem;
}

.story-image .image-placeholder i { font-size: 3rem; }

/* Cards & grids (legacy) */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s var(--ease); }
.fade-in.animate-in { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.whatsapp-button a:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem;
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
  z-index: 899;
  box-shadow: var(--shadow);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--slate);
  color: #fff;
  border-color: var(--slate);
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
  transition: opacity 0.3s var(--ease);
}

.cookie-content {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cookie-buttons { display: flex; gap: 0.5rem; }

/* Service page specifics */
.service-hero,
.brand-section,
.info-section { padding-block: var(--section-y); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.brand-card {
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.brand-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.brand-card img {
  height: 48px;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

/* reCAPTCHA */
.g-recaptcha-error { border: 2px solid var(--err) !important; border-radius: var(--radius-sm); padding: 4px; }
.btn-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Print */
@media print {
  .site-header, .hamburger, .whatsapp-button, .back-to-top, .cookie-consent, .loader { display: none !important; }
  body { background: #fff; }
}

/* ============================================================
   ULTRA PREMIUM — Page heroes, inner pages, automerken
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1.25rem;
  background: var(--slate);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-hero,
.page-header {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(56, 62, 66, 0.12), transparent),
    linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero--dark {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(56, 62, 66, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255,255,255,0.04), transparent),
    linear-gradient(165deg, #2a2e31 0%, #383E42 50%, #4a5560 100%);
  border-bottom: none;
  color: var(--text-inverse);
}

.page-hero--dark h1,
.page-hero--dark .lead,
.page-hero--dark .breadcrumbs,
.page-hero--dark .breadcrumbs a {
  color: rgba(255,255,255,0.9);
}

.page-hero--dark .breadcrumbs a:hover { color: #fff; }

.page-hero--dark .hero-subtitle,
.page-hero--dark p.lead {
  color: rgba(255,255,255,0.72);
}

.page-hero h1,
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  max-width: 18ch;
  margin-inline: auto;
}

.page-hero .lead,
.page-header .lead {
  max-width: 52ch;
  margin-inline: auto;
}

.page-hero .hero-buttons,
.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.page-hero--dark .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.page-hero--dark .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* Stagger reveal delays */
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

/* Service inner pages */
.service-hero { padding-block: var(--section-y); background: var(--bg); }

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .service-hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.service-hero-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.service-hero-content > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.service-features-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.service-features-list .feature-item:hover { transform: none; }

.service-features-list .feature-item i {
  color: var(--ok);
  font-size: 1.125rem;
}

.service-hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.service-hero-image .image-placeholder,
.story-image .image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--slate) 0%, var(--slate-soft) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}

.service-hero-image .image-placeholder i { font-size: 3.5rem; }

.services-overview,
.content-section,
.info-section,
.brand-section,
.german-brands-section,
.french-brands-section,
.japanese-brands-section,
.korean-brands-section,
.swedish-brands-section,
.italian-brands-section,
.british-brands-section,
.american-brands-section,
.other-brands-section {
  padding-block: var(--section-y);
}

.services-overview { background: var(--bg-muted); }

.services-overview h2,
.brand-section h2,
.german-brands-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.services-overview .lead,
.german-brands-section .lead {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.services-overview .services-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-item {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-item .service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }

.service-item > p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-details .duration,
.service-details .price,
.duration,
.price-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  background: var(--bg-muted);
  border-radius: 100px;
  color: var(--text-secondary);
}

/* Automerken brand cards */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.brands-grid .brand-card {
  text-align: left;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-models h4,
.brand-services h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.brand-models ul,
.brand-services ul {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 1rem;
  list-style: disc;
}

.brand-info { margin-top: auto; }

.breadcrumb-section {
  padding: 1rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb,
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb .separator { color: var(--text-muted); opacity: 0.5; }

/* CTA strip on inner pages */
.cta-strip {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--bg-muted);
}

.cta-strip-inner {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.cta-strip h2 { margin-bottom: 0.75rem; }

.cta-strip p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Enhanced button glow */
.btn-accent {
  position: relative;
  overflow: hidden;
}

.btn-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}

.btn-accent:hover::after { transform: translateX(100%); }

/* Hero cinematic upgrade */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(56, 62, 66, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

/* Trust bar on homepage */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.25rem 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-bar-item i { color: var(--accent); }

/* Inline CTA bar */
.inline-cta {
  padding: 2rem;
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-soft) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-block: 2rem;
}

.inline-cta h3 { color: #fff; font-size: 1.25rem; }

.inline-cta p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; margin-top: 0.25rem; }

/* Fix main content spacing */
main#main-content > section:first-child.page-hero {
  margin-top: 0;
}

main#main-content { min-height: 50vh; }

/* Secondary btn alias */
.btn.secondary,
a.btn.secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}

.page-hero--dark .btn.secondary {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.btn.secondary:hover {
  background: var(--bg-muted);
  border-color: var(--text);
}

/* ============================================================
   V3 — Cinematic polish, process, mobile CTA, inner CTAs
   ============================================================ */
.hero-grain,
.page-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: rgba(56, 62, 66, 0.2);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -60px;
  background: rgba(56, 62, 66, 0.12);
  animation: orbFloat 14s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -16px) scale(1.05); }
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-bg::before,
.page-hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.page-hero-bg::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(56, 62, 66, 0.15);
}

.page-hero-bg::after {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: 10%;
  background: rgba(26, 35, 50, 0.06);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.page-hero--dark .page-hero-meta { color: rgba(255,255,255,0.65); }

.page-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero-meta i { color: var(--accent); }

/* Inner page CTA — match homepage */
section.cta .container > .cta-content,
section.cta .cta-inner {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--slate) 0%, var(--brand) 50%, var(--slate-soft) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

section.cta .cta-content::before,
section.cta .cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(56, 62, 66, 0.2), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05), transparent 40%);
  pointer-events: none;
}

section.cta .cta-content h2,
section.cta .cta-inner h2 {
  position: relative;
  color: #fff;
  margin-bottom: 0.75rem;
}

section.cta .cta-content p,
section.cta .cta-inner p {
  position: relative;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}

section.cta .cta-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Process section */
.process {
  padding-block: var(--section-y);
  background: var(--bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Trust bar homepage */
.page-hero + .trust-bar-section {
  margin-top: 0;
  border-top: 1px solid var(--border);
}

.trust-bar-section {
  padding: 1.25rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 898;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.08);
  gap: 0.5rem;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.mobile-cta-bar .btn-call {
  background: var(--accent);
  color: #fff;
}

.mobile-cta-bar .btn-wa {
  background: #25d366;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  .whatsapp-button { bottom: 5.5rem; }
  .back-to-top { bottom: 5.5rem; right: 1rem; }
  body { padding-bottom: 72px; }
}

/* Nav active indicator */
.nav-desktop a {
  position: relative;
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* Card shine on hover */
.service-card::before,
.feature-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
  opacity: 0;
}

.service-card,
.feature-item {
  position: relative;
  overflow: hidden;
}

.service-card:hover::before,
.feature-item:hover::before {
  transform: translateX(100%);
  opacity: 1;
}

/* FAQ legacy pages */
.faq-section .faq-item .faq-question h3 {
  font-size: 1rem;
  margin: 0;
  flex: 1;
}

.faq-section .faq-item .faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Legacy FAQ pages — same accordion as homepage */
.faq-section .faq-grid,
.faq-section .faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-section .faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-section .faq-question {
  cursor: pointer;
  user-select: none;
}

.faq-section .faq-item.active .faq-answer {
  max-height: 500px;
}

/* Fix hero card inline style */
.hero-card-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Expertise grid (homepage) */
.expertise {
  padding-block: var(--section-y);
  background: var(--bg-muted);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.expertise-card {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.expertise-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.expertise-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.expertise-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.expertise-card a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.expertise-card a:hover { gap: 0.5rem; }

/* Visit / map section */
.visit-info {
  padding-block: var(--section-y);
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.visit-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.visit-list i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.visit-map {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.testimonials-cta a {
  font-weight: 600;
  color: var(--accent);
}

/* Tips page */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.tip-card {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tip-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.tip-card ul {
  margin-top: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.tip-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.tip-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}

.tips-category {
  padding-block: var(--section-y);
}

.tips-category:nth-child(even) {
  background: var(--bg-muted);
}

.timeline {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.timeline-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.credential-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.credential-card i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.credential-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.credential-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { order: -1; min-height: 240px; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ============================================================
   PROFESSIONAL POLISH — Stats, errors, performance, UX
   ============================================================ */

.stats-bar {
  padding: 2rem 0;
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-bar-item strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stats-bar-item span {
  font-size: 0.875rem;
  opacity: 0.8;
}

.contact-form-intro {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.contact-form-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-form-note a {
  font-weight: 600;
  color: var(--accent);
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.error-page-inner {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.error-code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.error-links a {
  color: var(--accent);
}

.error-links a:hover { text-decoration: underline; }

/* Form errors */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--err);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.error-message {
  color: var(--err);
  font-size: 0.8125rem;
  margin-top: 0.35rem;
  display: block;
}

/* Header scroll polish */
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(15, 20, 25, 0.08);
}

.site-header.scrolled .nav-inner {
  padding-block: 0.65rem;
}

/* Hero subtle motion */
@media (prefers-reduced-motion: no-preference) {
  .hero-orb--1 {
    animation: hero-float 12s ease-in-out infinite;
  }
  .hero-orb--2 {
    animation: hero-float 14s ease-in-out infinite reverse;
  }
  .hero-float--1 {
    animation: hero-badge-float 5s ease-in-out infinite;
  }
  .hero-float--2 {
    animation: hero-badge-float 6s ease-in-out infinite 0.5s;
  }
}

@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.03); }
}

@keyframes hero-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Content performance */
section:not(.hero):not(.page-hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* Image alt fallback sizing */
.logo {
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Focus visible improvements */
.btn:focus-visible,
a:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* ============================================================
   DESIGN V2 — Premium service pages & beveiliging
   ============================================================ */

:root {
  --gold: #b8956b;
  --gold-soft: rgba(184, 149, 107, 0.15);
  --hero-dark: #2a2f33;
}

body.pro-site {
  background: linear-gradient(180deg, var(--bg) 0%, #eef1f4 100%);
}

/* Premium page hero */
.page-hero--premium {
  text-align: left;
  background:
    linear-gradient(135deg, var(--hero-dark) 0%, var(--brand) 55%, #4a5560 100%);
  border-bottom: none;
  color: #fff;
}

.page-hero--premium .page-hero-bg {
  opacity: 0.4;
}

.page-hero--premium .page-hero-inner,
.page-hero--premium .container {
  text-align: left;
  max-width: var(--container);
}

.page-hero--premium .breadcrumbs,
.page-hero--premium .breadcrumbs a {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero--premium .breadcrumbs a:hover {
  color: #fff;
}

.page-hero--premium h1 {
  color: #fff;
  max-width: 18ch;
}

.page-hero--premium .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.page-hero--premium .eyebrow {
  color: var(--gold);
}

.page-hero--premium .eyebrow::before {
  background: var(--gold);
}

.page-hero--premium .page-hero-meta span {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
}

.page-hero--premium .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero--premium .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Security hub navigation */
.security-hub {
  padding: 2.5rem 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.security-hub-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.security-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.security-hub-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.security-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.security-hub-card--active {
  border-color: var(--brand);
  background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--accent-soft) 100%);
  box-shadow: var(--shadow-glow);
}

.security-hub-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.security-hub-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.security-hub-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.security-hub-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.security-hub--compact {
  padding: 1.25rem 0;
  background: var(--bg-muted);
}

.security-hub-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand);
  padding: 0.75rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.security-hub-back:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

/* Notice banner */
.notice-banner {
  padding: 0 0 2rem;
  background: var(--bg-elevated);
}

.notice-banner-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #fff8eb 0%, #fff 100%);
  border: 1px solid rgba(184, 149, 107, 0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.notice-banner-inner > i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.notice-banner-inner strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.notice-banner-inner p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.notice-banner-inner a {
  font-weight: 600;
  color: var(--brand);
}

/* Dealer logo bar */
.dealer-bar {
  padding: 1.5rem 0 2.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.dealer-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.dealer-bar-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.dealer-bar-logos img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity var(--duration) var(--ease), filter var(--duration) var(--ease);
}

.dealer-bar-logos img:hover {
  opacity: 1;
  filter: none;
}

/* Pro section headers */
.pro-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.pro-section-header h2 {
  margin-bottom: 0.75rem;
}

.pro-section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Service cards v2 */
.services-overview,
.key-repair-section,
.lost-keys-section,
.materials-section,
.specialized-locks {
  padding-block: var(--section-y);
}

.services-overview:nth-of-type(odd),
.key-repair-section {
  background: var(--bg-muted);
}

.service-item,
.material-item,
.specialized-item,
.car-brand-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.service-item:hover,
.material-item:hover,
.specialized-item:hover,
.car-brand-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 62, 66, 0.2);
}

.service-icon,
.material-icon,
.specialized-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-details .duration,
.brand-info .duration {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ok);
  background: rgba(5, 150, 105, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-top: 0.75rem;
}

/* Car brands grid premium */
.car-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.car-brand-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.car-brand-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.car-brand-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex: 1;
}

.car-brand-item li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
}

.car-brand-item li::before {
  content: '• ';
  color: var(--gold);
  font-weight: 700;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.car-brand-item:hover .brand-link {
  gap: 0.5rem;
}

.car-brand-item:hover .brand-link i {
  transform: translateX(4px);
}

.brand-link i {
  transition: transform var(--duration) var(--ease);
}

/* Info boxes */
.lost-keys-info,
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.info-box {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--brand);
}

.info-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box h3 i {
  color: var(--brand);
}

.info-box p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Process grid v2 */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.process-grid .process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  border-radius: 50%;
}

/* Service hero v2 */
.service-hero {
  padding-block: var(--section-y);
  background: var(--bg);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-placeholder {
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(145deg, var(--bg-muted) 0%, var(--bg-elevated) 100%);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-xl);
  color: var(--text-muted);
}

.image-placeholder i {
  font-size: 3.5rem;
  color: var(--brand);
  opacity: 0.5;
}

.image-placeholder p {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Brand cards automerken */
.brands-grid .brand-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-card .brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
}

/* CTA improvements */
section.cta .cta-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (max-width: 900px) {
  .security-hub-grid {
    grid-template-columns: 1fr;
  }
  .service-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-hero--premium h1 {
    max-width: none;
  }
}

/* Inbraak checklist */
.inbraak-checklist {
  padding-block: var(--section-y);
  background: var(--bg);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.checklist-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--duration) var(--ease);
}

.checklist-item:hover {
  box-shadow: var(--shadow);
}

.checklist-item > i {
  color: var(--ok);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.checklist-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.checklist-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.checklist-item a {
  font-weight: 600;
  color: var(--brand);
}

/* Compare services (sleutels vs auto vs sloten) */
.compare-services {
  padding: 2rem 0 3rem;
  background: var(--bg-muted);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.compare-card {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.compare-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.compare-card h3 {
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.compare-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.compare-badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
}

.compare-badge--ok {
  background: rgba(5, 150, 105, 0.12);
  color: var(--ok);
}

.compare-card a {
  font-weight: 600;
  color: var(--brand);
}

@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dealer-bar-logos {
    gap: 1.25rem;
  }
  .dealer-bar-logos img {
    height: 28px;
  }
}
