/* ==========================================================================
   Flits Express B.V. — Design System & Stylesheet
   Kleuren, typografie en componenten zijn hieronder als CSS-variabelen
   gedefinieerd (zie :root) zodat de huisstijl later eenvoudig aangepast
   kan worden zonder de rest van de stylesheet te wijzigen.
   ========================================================================== */

:root {
  /* Merkkleuren — gebaseerd op het Flits Express logo */
  --navy-950: #081b33;
  --navy-900: #0b2a4e;
  --navy-800: #0f3760;
  --navy-700: #144a80;
  --navy-600: #1a5a9c;

  --blue-600: #1d6fb8;
  --blue-500: #2c86d6;
  --blue-400: #56a5e6;
  --blue-100: #e8f1fa;
  --blue-50: #f2f8fd;

  --orange-800: #9c4409;
  --orange-700: #b8510c;
  --orange-600: #d8630f;
  --orange-500: #f0791e;
  --orange-400: #f5943f;
  --orange-100: #fef0e3;
  --orange-50: #fff8f0;
  /* orange-700/800 zijn de toegankelijke varianten (WCAG AA, 4.5:1 met wit
     tekst) — gebruikt voor knoppen en leesbare tekst op een oranje vlak.
     orange-400/500/600 blijven gereserveerd voor decoratieve iconen,
     randen en accenten waar geen tekstcontrast-eis geldt. */

  --white: #ffffff;
  --gray-50: #f7f9fb;
  --gray-100: #eef1f5;
  --gray-200: #e1e6ec;
  --gray-300: #ccd4dc;
  --gray-400: #9aa7b4;
  --gray-500: #74838f;
  --gray-600: #5b6b7c;
  --gray-700: #445260;
  --gray-800: #2b3a4a;
  --gray-900: #16222e;

  /* Semantiek */
  --color-bg: var(--white);
  --color-bg-alt: var(--gray-50);
  --color-text: var(--gray-800);
  --color-text-muted: var(--gray-600);
  --color-heading: var(--navy-900);
  --color-primary: var(--navy-900);
  --color-accent: var(--orange-500);
  --color-accent-hover: var(--orange-600);
  --color-border: var(--gray-200);
  --color-success: #1b7a4c;
  --color-error: #c8351f;

  /* Typografie */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 2.875rem;
  --fs-4xl: 3.5rem;

  /* Ruimte / vorm */
  --container-width: 1240px;
  --container-pad: 24px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(11, 42, 78, 0.08), 0 1px 2px rgba(11, 42, 78, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 42, 78, 0.10), 0 2px 8px rgba(11, 42, 78, 0.06);
  --shadow-lg: 0 20px 48px rgba(11, 42, 78, 0.16), 0 4px 14px rgba(11, 42, 78, 0.08);
  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & basis
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Voorkomt horizontale overflow op smalle schermen wanneer een lang woord
   (bv. "Transportoplossingen") niet binnen de beschikbare breedte past. */
h1, h2, h3, h4, h5, h6, p, li {
  overflow-wrap: break-word;
}

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

/* Standaard iconformaat — voorkomt dat inline SVG's die geen expliciete
   breedte/hoogte meekrijgen (bv. via viewBox alleen) op hun browser-default
   grootte worden gerenderd. Specifiekere componentregels verderop in dit
   bestand overschrijven dit waar nodig (knoppen, USP-iconen, etc.). */
svg {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: -0.2em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  color: var(--color-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-900); }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
ul:last-child, ol:last-child { margin-bottom: 0; }
li { margin-bottom: 0.4em; }

button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow { max-width: 860px; }

.section { padding-block: 88px; }
.section--sm { padding-block: 56px; }
.section--alt { background: var(--color-bg-alt); }
.section--navy { background: var(--navy-900); color: var(--gray-200); }
.section--navy h2, .section--navy h3 { color: var(--white); }

@media (max-width: 900px) {
  .section { padding-block: 64px; }
  .section--sm { padding-block: 40px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--orange-400); }

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--color-text-muted); font-size: var(--fs-md); }
.section--navy .section-head p { color: var(--gray-300); }

.text-lead {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
}

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-800); color: var(--white); box-shadow: var(--shadow-md); }

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: var(--fs-xs); }
.btn-lg { padding: 18px 34px; font-size: var(--fs-base); }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

.icon-arrow { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover .icon-arrow { transform: translateX(3px); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--color-border);
}
/* Let op: bewust geen backdrop-filter op de header — dat property creëert
   een nieuw containing block voor position:fixed kind-elementen (zoals het
   mobiele menu) en zou dat menu binnen de headerhoogte laten klemzitten. */

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

.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--blue-50);
  color: var(--navy-900);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; color: var(--orange-500); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy-900); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 980px) {
  .header-bar { height: 76px; }
  .brand img { height: 38px; }
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 32px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
  }
  .main-nav a {
    padding: 14px 12px;
    font-size: var(--fs-md);
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }
  .header-actions { gap: 10px; }
  .header-actions .btn-primary.header-cta { padding: 11px 16px; font-size: var(--fs-xs); }
  .nav-mobile-contact {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
  }
  .nav-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--navy-900);
    padding: 10px 12px;
  }
  .nav-mobile-contact svg { width: 18px; height: 18px; color: var(--orange-500); }
}
@media (min-width: 981px) {
  .nav-mobile-contact { display: none; }
}

body.nav-open { overflow: hidden; }

/* ==========================================================================
   Breadcrumb / page banner
   ========================================================================== */

.page-banner {
  position: relative;
  color: var(--white);
  padding-block: 72px;
  background: linear-gradient(100deg, rgba(8,27,51,0.92) 0%, rgba(11,42,78,0.84) 55%, rgba(11,42,78,0.55) 100%), var(--navy-900);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: var(--blue-100);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-100); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-current] { color: var(--white); font-weight: 600; }
.breadcrumb svg { width: 14px; height: 14px; color: var(--blue-100); }
.page-banner h1 { color: var(--white); margin-bottom: 14px; font-size: var(--fs-3xl); }
.page-banner h1 svg { width: 34px; height: 34px; margin-right: 8px; vertical-align: -0.12em; color: var(--orange-400); }
.page-banner .lead { color: var(--gray-200); font-size: var(--fs-md); max-width: 680px; }

@media (max-width: 700px) {
  .page-banner { padding-block: 52px; }
  .page-banner h1 { font-size: var(--fs-2xl); }
}

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */

.hero {
  position: relative;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: stretch;
}
.hero-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero-line svg { width: 15px; height: 15px; color: var(--orange-400); flex-shrink: 0; }
.hero h1 {
  color: var(--white);
  font-size: var(--fs-4xl);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: var(--fs-md);
  color: var(--gray-200);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero .btn-group { margin-bottom: 0; }
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 360px;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { min-height: 0; aspect-ratio: 16/9; }
}
@media (max-width: 700px) {
  .hero-inner { padding-block: 64px 40px; }
  .hero h1 { font-size: var(--fs-2xl); }
}

/* USP strip */
.usp-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: -56px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 16px;
  border-left: 1px solid var(--gray-200);
}
.usp-item:first-child { border-left: 0; }
.usp-item .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-item .icon-wrap svg { width: 22px; height: 22px; color: var(--navy-900); }
.usp-item strong { font-size: var(--fs-sm); color: var(--navy-900); font-weight: 700; }
.usp-item span { font-size: var(--fs-xs); color: var(--color-text-muted); }

@media (max-width: 980px) {
  .usp-strip { grid-template-columns: repeat(3, 1fr); margin-top: -40px; padding: 26px; gap: 22px 10px; }
  .usp-item:nth-child(3n+1) { border-left: 0; }
  .usp-item:not(:nth-child(3n+1)) { border-left: 1px solid var(--gray-200); }
}
@media (max-width: 620px) {
  .usp-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; border-radius: 0; box-shadow: none; border-top: 1px solid var(--gray-200); }
  .usp-item:nth-child(2n+1) { border-left: 0; }
  .usp-item:not(:nth-child(2n+1)) { border-left: 1px solid var(--gray-200); }
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }

.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card-media img { transform: scale(1.05); }

.card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { margin-bottom: 0; font-size: var(--fs-md); }
.card-body p { color: var(--color-text-muted); font-size: var(--fs-sm); flex: 1; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--navy-900);
  margin-top: 4px;
}
.card-link svg { width: 15px; height: 15px; transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-link:hover { color: var(--orange-700); }

.service-number {
  font-size: var(--fs-xs);
  font-weight: 800;
  color: var(--orange-700);
  letter-spacing: 0.05em;
}

/* Icon feature cards (no image) */
.feature-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card .icon-wrap svg { width: 26px; height: 26px; color: var(--white); }
.feature-card h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.feature-card p { color: var(--color-text-muted); font-size: var(--fs-sm); margin: 0; }

/* ==========================================================================
   Partners
   ========================================================================== */

.partners-note {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: var(--fs-sm);
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
  max-width: 1040px;
  margin-inline: auto;
}
.partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 128px;
}
.partner-badge .wordmark {
  font-weight: 800;
  font-size: var(--fs-lg);
  letter-spacing: 0.01em;
  color: var(--gray-500);
  transition: color var(--transition);
}
.partner-badge:hover .wordmark { color: var(--navy-900); }
.partner-disclaimer {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--gray-500);
  margin-top: 32px;
  max-width: 720px;
  margin-inline: auto;
}

@media (max-width: 560px) { .partners-grid { gap: 16px 32px; } }

/* ==========================================================================
   Split section (image + text)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.1; object-fit: cover; }
.split-media .stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.split-media .stat-card .icon-wrap {
  width: 46px; height: 46px; border-radius: 10px; background: var(--orange-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.split-media .stat-card .icon-wrap svg { width: 24px; height: 24px; color: var(--orange-600); }
.split-media .stat-card strong { display: block; font-size: var(--fs-sm); color: var(--navy-900); }
.split-media .stat-card span { font-size: var(--fs-xs); color: var(--color-text-muted); }

.split-body ul.check-list { list-style: none; padding: 0; margin: 22px 0 28px; }
.split.reverse { grid-template-columns: 1fr 1fr; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-body { order: 1; }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-media, .split.reverse .split-body { order: initial; }
  .split-media .stat-card { position: static; margin-top: -40px; margin-inline: 16px; }
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: var(--fs-sm);
  color: var(--color-text);
}
.check-list svg { width: 20px; height: 20px; color: var(--orange-500); flex-shrink: 0; margin-top: 1px; }

/* ==========================================================================
   Trust / vertrouwen section
   ========================================================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.trust-item .icon-wrap {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(240,121,30,0.16);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.trust-item .icon-wrap svg { width: 24px; height: 24px; color: var(--orange-400); }
.trust-item h3 { color: var(--white); font-size: var(--fs-md); margin-bottom: 8px; }
.trust-item p { color: var(--gray-300); font-size: var(--fs-sm); margin: 0; }

@media (max-width: 980px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(240,121,30,0.25), transparent 70%);
}
.cta-banner .cta-text { position: relative; z-index: 1; max-width: 560px; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; font-size: var(--fs-xl); }
.cta-banner h2 svg { width: 26px; height: 26px; margin-right: 6px; vertical-align: -0.15em; }
.cta-banner p { color: var(--gray-300); margin: 0; font-size: var(--fs-sm); }
.cta-banner .btn-group { position: relative; z-index: 1; }

.cta-banner--orange {
  background: linear-gradient(120deg, var(--orange-700) 0%, var(--orange-800) 100%);
}
.cta-banner--orange p { color: rgba(255,255,255,0.95); }
.cta-banner--orange::before { background: radial-gradient(circle, rgba(11,42,78,0.25), transparent 70%); }

@media (max-width: 700px) {
  .cta-banner { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
}

/* Sticky urgent bar (spoedrit) */
.urgent-strip {
  background: var(--orange-700);
  color: var(--white);
}
.urgent-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 12px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}
.urgent-strip a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 800;
}
.urgent-strip svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   Process steps
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  counter-reset: step;
}
.process-step { position: relative; padding: 8px 22px 8px 0; }
.process-step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 800;
  font-size: var(--fs-md);
  margin-bottom: 18px;
}
.process-step h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.process-step p { color: var(--color-text-muted); font-size: var(--fs-sm); margin: 0; }
.process-step::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -4px;
  width: 24px;
  height: 2px;
  background: var(--gray-300);
}
.process-step:last-child::after { display: none; }

@media (max-width: 980px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-step::after { display: none; }
}
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Regio's / dekking
   ========================================================================== */

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.region-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--navy-900);
}
.region-chip svg { width: 16px; height: 16px; color: var(--orange-500); }

/* ==========================================================================
   FAQ / accordion
   ========================================================================== */

.faq-list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 22px 4px;
  text-align: left;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--navy-900);
  cursor: pointer;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--orange-500);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 24px 4px;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}
.faq-item > summary { list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }

.faq-sidebar {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-border);
}
.faq-sidebar h3 { font-size: var(--fs-md); margin-bottom: 10px; }
.faq-sidebar p { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: 18px; }

/* ==========================================================================
   Contactkanalen (klantenservice / contact)
   ========================================================================== */

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.channel-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: left;
}
.channel-card .icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy-900); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.channel-card .icon-wrap svg { width: 24px; height: 24px; color: var(--white); }
.channel-card h3 { font-size: var(--fs-md); margin-bottom: 6px; }
.channel-card p { color: var(--color-text-muted); font-size: var(--fs-sm); margin-bottom: 14px; }
.channel-card a.value { font-weight: 800; font-size: var(--fs-md); color: var(--navy-900); }
.channel-card a.value:hover { color: var(--orange-700); }

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

/* ==========================================================================
   Forms
   ========================================================================== */

.form-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 640px) { .form-card { padding: 26px 20px; } }

.form-section-title {
  font-size: var(--fs-md);
  color: var(--navy-900);
  margin-bottom: 4px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 800;
}
.form-section-desc { color: var(--color-text-muted); font-size: var(--fs-sm); margin-bottom: 22px; }
hr.form-divider { border: 0; border-top: 1px solid var(--color-border); margin: 32px 0; }

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.form-row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) {
  .form-row, .form-row--3 { grid-template-columns: 1fr; gap: 16px; }
}

.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row .form-group { margin-bottom: 0; }

label {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--gray-800);
}
label .optional { font-weight: 500; color: var(--gray-500); font-size: var(--fs-xs); }
label .req { color: var(--orange-700); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--fs-sm);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
textarea { resize: vertical; min-height: 110px; }

input:hover, select:hover, textarea:hover { border-color: var(--gray-400); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px var(--blue-100);
}

input::placeholder, textarea::placeholder { color: var(--gray-400); }

.form-hint { font-size: var(--fs-xs); color: var(--gray-500); }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--color-error);
}
.form-group.has-error .form-hint { display: none; }
.field-error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--color-error);
  font-weight: 600;
}
.form-group.has-error .field-error { display: block; }

fieldset { border: 0; padding: 0; margin: 0 0 20px; }
fieldset legend {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--gray-800);
  padding: 0;
  margin-bottom: 10px;
}
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  position: relative;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.radio-pill label {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}
.radio-pill input:checked + label {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}
.radio-pill input:focus-visible + label { outline: 3px solid var(--blue-400); outline-offset: 2px; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--navy-900); }
.checkbox-row label { font-weight: 500; font-size: var(--fs-sm); color: var(--gray-700); }
.checkbox-row a { font-weight: 700; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.form-note { font-size: var(--fs-xs); color: var(--gray-500); max-width: 340px; }

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  margin-bottom: 26px;
}
.form-alert svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-alert.is-visible { display: flex; }
.form-alert--success { background: #eaf7ef; color: var(--color-success); border: 1px solid #bfe6cd; }
.form-alert--error { background: #fdecea; color: var(--color-error); border: 1px solid #f5c2ba; }

.form-aside {
  background: var(--navy-900);
  color: var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.form-aside h3 { color: var(--white); font-size: var(--fs-md); margin-bottom: 14px; }
.form-aside ul { list-style: none; padding: 0; margin: 0 0 28px; }
.form-aside li { display: flex; gap: 12px; margin-bottom: 16px; font-size: var(--fs-sm); }
.form-aside li svg { width: 20px; height: 20px; color: var(--orange-400); flex-shrink: 0; margin-top: 1px; }
.form-aside .aside-contact { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px; }
.form-aside .aside-contact a { color: var(--white); font-weight: 800; font-size: var(--fs-md); display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.form-aside .aside-contact a svg { width: 18px; height: 18px; color: var(--orange-400); }

.form-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .form-layout { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-950);
  color: var(--gray-400);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: var(--fs-sm); color: var(--gray-400); max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--gray-400); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--white); }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-sm); margin-bottom: 14px; }
.footer-col .contact-line svg { width: 17px; height: 17px; color: var(--orange-400); flex-shrink: 0; margin-top: 2px; }
.footer-badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gray-200);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 12px;
  border-radius: 999px;
}
.footer-badge svg { width: 14px; height: 14px; color: var(--orange-400); }

.footer-bottom {
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--gray-400); }
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0 !important;
}

.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.badge-list .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-50);
  color: var(--navy-900);
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: 8px 14px;
  border-radius: 999px;
}
.badge-list .badge svg { width: 14px; height: 14px; color: var(--orange-500); }

/* Table (klantenservice / offerte overzicht) */
.info-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.info-table th, .info-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
}
.info-table th { color: var(--navy-900); font-weight: 700; background: var(--gray-50); }
.info-table td { color: var(--color-text-muted); }

/* 404 */
.error-page { text-align: center; padding-block: 120px; }
.error-page .error-code { font-size: 6rem; font-weight: 800; color: var(--blue-100); line-height: 1; }
