/* =================================================================
   SELF-HOSTED FONTS (DSGVO-clean, no third-party connection)
   ================================================================= */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/fraunces-v33-latin.woff2') format('woff2-variations'),
       url('fonts/fraunces-v33-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/fraunces-v33-latin-italic.woff2') format('woff2-variations'),
       url('fonts/fraunces-v33-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url('fonts/ibm-plex-sans-v19-latin-var.woff2') format('woff2-variations'),
       url('fonts/ibm-plex-sans-v19-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/ibm-plex-mono-v15-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/ibm-plex-mono-v15-latin-500.woff2') format('woff2');
}

/* =================================================================
   DESIGN TOKENS — Spedition Klassisch palette
   ================================================================= */
:root {
  --primary:    #0F2D52;   /* marine blue */
  --primary-80: #23446b;
  --secondary:  #111827;   /* near-black ink */
  --accent:     #E86A1C;   /* signal orange */
  --accent-dark:#C2570E;
  --bg:         #FAF8F3;   /* off-white */
  --bg-alt:     #F2EEE3;   /* warm cream */
  --surface:    #FFFFFF;
  --text:       #111827;
  --muted:      #5B6574;
  --border:     #DFE2E8;
  --border-strong: #BDC4CE;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --maxw: 1240px;
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(15,45,82,0.06);
  --shadow-md: 0 8px 24px rgba(15,45,82,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 14px;
  background: var(--primary);
  color: var(--bg);
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--secondary); letter-spacing: -0.015em; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; margin: 0; }
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; margin: 0 0 12px; }
h3 { font-size: 20px; line-height: 1.3; margin: 0 0 8px; }
p  { margin: 0 0 12px; color: var(--text); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; position: relative; }
section.tight { padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 640px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--secondary);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.nav-brand .brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-brand-stack { display: flex; flex-direction: column; line-height: 1; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  list-style: none;
  margin-block: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav-links a:hover { border-bottom-color: var(--accent); color: var(--primary); }
.lang-toggle {
  display: flex;
  gap: 2px;
  padding: 3px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.lang-btn {
  padding: 4px 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--primary); color: var(--bg); }
.lang-btn svg { width: 15px; height: 9px; display: block; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary);
  margin: 4px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s, background 0.15s, border-color 0.15s, color 0.15s;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--bg); }
.btn-arrow { transition: transform 0.15s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background: var(--primary);
  color: var(--bg);
}
.hero h1 { color: var(--bg); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 28px 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-secondary {
  color: var(--bg);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-secondary:hover { background: var(--bg); color: var(--primary); border-color: var(--bg); }

/* hero trust bar */
.hero-trust {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hero-trust .t {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust .t .val {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.hero-trust .t .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* hero illustration — aerial highway (top-down view) */
.hero-art {
  position: relative;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #E8E4DA;
  border: 1px solid rgba(15,45,82,0.08);
}
/* land / terrain */
.hero-art .land {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, #D9CDB5 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, #C8BFA6 0%, transparent 50%),
    linear-gradient(135deg, #E8E4DA 0%, #D9CDB5 100%);
}
/* fields */
.hero-art .field {
  position: absolute;
  opacity: 0.4;
  border-radius: 10px;
}
.hero-art .field.f1 { top: 6%;  left: 4%;   width: 24%; height: 30%; background: #B8A870; transform: rotate(-8deg); }
.hero-art .field.f2 { top: 65%; right: 6%;  width: 30%; height: 24%; background: #A89860; transform: rotate(12deg); }
.hero-art .field.f3 { top: 10%; right: 14%; width: 20%; height: 22%; background: #C4B580; transform: rotate(4deg); }
.hero-art .field.f4 { top: 70%; left:  8%;  width: 22%; height: 18%; background: #BFB078; transform: rotate(-6deg); }

/* highway — angled diagonal across the frame */
.hero-art .highway {
  position: absolute;
  top: 50%;
  left: -15%;
  right: -15%;
  height: 100px;
  background: #3A3F48;
  transform: translateY(-50%) rotate(-4deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
/* center double-yellow */
.hero-art .highway::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #FFD700 0 28px, transparent 28px 48px);
}
/* white shoulder lines */
.hero-art .highway::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid #FAF8F3;
  border-bottom: 2px solid #FAF8F3;
  box-sizing: border-box;
}
/* lane divider dashes */
.hero-art .lane-line {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.55) 0 16px, transparent 16px 30px);
}
.hero-art .lane-line.top { top: 25%; }
.hero-art .lane-line.bot { top: 75%; }

/* truck lane tracks — angled with highway */
.hero-art .lane {
  position: absolute;
  left: -25%;
  right: -25%;
  height: 28px;
  pointer-events: none;
  overflow: hidden;
}
.hero-art .lane-right { top: calc(50% - 26px); transform: rotate(-4deg); }
.hero-art .lane-left  { top: calc(50% + 2px);  transform: rotate(-4deg); }

.hero-art .truck-td {
  position: absolute;
  top: 0;
  width: 72px;
  height: 28px;
  will-change: transform;
}
.hero-art .truck-td.go-right {
  left: 0;
  animation: truckDriveRight 9s linear infinite;
}
.hero-art .truck-td.go-left {
  right: 0;
  animation: truckDriveLeft 11s linear infinite;
  animation-delay: -5s;
  transform: scaleX(-1);
}
@keyframes truckDriveRight {
  0%   { transform: translateX(-120px); }
  100% { transform: translateX(1400px); }
}
@keyframes truckDriveLeft {
  0%   { transform: translateX(120px) scaleX(-1); }
  100% { transform: translateX(-1400px) scaleX(-1); }
}

/* city tucked in corner */
.hero-art .city-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 240px;
  height: 180px;
  pointer-events: none;
}
.hero-art .city-corner svg { display: block; width: 100%; height: 100%; }

/* hero card overlay — route badge */
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(250, 248, 243, 0.95);
  color: var(--secondary);
  padding: 14px 18px;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  max-width: 260px;
  box-shadow: var(--shadow-md);
}
.hero-badge .route-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero-badge .route-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

/* =================================================================
   LEISTUNGEN
   ================================================================= */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--accent);
  transition: width 0.3s;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.service-card .meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =================================================================
   ZAHLEN & FAKTEN
   ================================================================= */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 20px 28px 20px 0;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat .n-unit {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--accent);
  margin-left: 4px;
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* =================================================================
   ÜBER UNS
   ================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p { font-size: 16.5px; color: var(--text); margin-bottom: 18px; line-height: 1.65; }
.about-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 600;
  float: left;
  line-height: 0.9;
  margin: 4px 10px 0 0;
  color: var(--accent);
}
.trust-markers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
}
.trust .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--secondary);
}
.trust p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* =================================================================
   FUHRPARK
   ================================================================= */
.fuhrpark {
  background: var(--secondary);
  color: var(--bg);
}
.fuhrpark h2, .fuhrpark h3 { color: var(--bg); }
.fuhrpark .section-head p { color: rgba(250,248,243,0.75); }
.fuhrpark .eyebrow { color: var(--accent); }

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fleet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.fleet-visual {
  height: 180px;
  margin: -36px -36px 28px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--accent);
}
.fleet-card h3 { font-size: 24px; margin-bottom: 6px; }
.fleet-card .spec {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fleet-card p { color: rgba(250,248,243,0.75); font-size: 14.5px; margin: 0; }
.fleet-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.fleet-card li {
  font-size: 13.5px;
  color: rgba(250,248,243,0.85);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
}
.fleet-card li:last-child { border-bottom: none; }
.fleet-card li .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(250,248,243,0.55);
  text-transform: uppercase;
}

/* =================================================================
   KONTAKT
   ================================================================= */
.contact-panel {
  background: var(--primary);
  color: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
}
.contact-panel h3 { color: var(--bg); font-size: 22px; margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--accent);
  margin-top: 2px;
}
.contact-item .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.6);
  margin-bottom: 4px;
}
.contact-item .v { font-size: 15px; color: var(--bg); line-height: 1.45; }
.contact-item .v a { color: var(--bg); text-decoration: none; border-bottom: 1px dotted rgba(250,248,243,0.4); }
.contact-item .v a:hover { border-bottom-color: var(--accent); }

/* =================================================================
   STANDORT / MAP
   ================================================================= */
.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin-top: 28px;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-meta {
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: wrap;
  gap: 12px;
}
.map-meta a { color: var(--primary); text-decoration: none; font-weight: 500; }
.map-meta a:hover { text-decoration: underline; }

/* =================================================================
   FOOTER
   ================================================================= */
footer {
  background: var(--secondary);
  color: rgba(250,248,243,0.75);
  padding: 60px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot-brand p { color: rgba(250,248,243,0.65); font-size: 13.5px; max-width: 320px; margin-top: 14px; }
.foot h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  margin: 0 0 16px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 10px; }
.foot a {
  color: rgba(250,248,243,0.72);
  text-decoration: none;
  font-size: 14px;
}
.foot a:hover { color: var(--accent); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250,248,243,0.5);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 10px;
}

/* =================================================================
   LEGAL SECTIONS (Impressum, Datenschutz)
   ================================================================= */
.legal {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.legal h2 { margin-bottom: 24px; }
.legal h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--secondary);
}
.legal p, .legal li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}
.legal ul { padding-left: 22px; }
.legal .wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 860px;
}
.legal-note {
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
  padding: 14px 16px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  margin-bottom: 24px;
  border-radius: var(--radius);
}

/* === Utility / migrated-from-inline-style === */
.fleet-svg { width: 100%; height: 100%; }
.contact-fax-line { color: rgba(250,248,243,0.65); font-size: 13px; }
.no-pt { padding-top: 0 !important; }
.footer-logo-svg { display: block; }
.legal-stand { margin-top: 28px; font-size: 12.5px; color: var(--muted); }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* === Kontakt section (no-form layout) === */
.contact-stack {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.contact-stack .section-head {
  margin-bottom: 0;
  text-align: center;
}
.contact-stack .section-head p {
  margin-left: auto;
  margin-right: auto;
}
.contact-stack .contact-cta {
  align-self: center;
  margin-top: 8px;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav.mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 28px;
    gap: 16px;
  }
  .hero { padding: 80px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 20px; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--border); padding-bottom: 28px; margin-bottom: 8px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; margin-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 72px 0; }
  .contact-panel, .legal .wrap { padding: 28px; }
}
@media (max-width: 540px) {
  .hero-trust { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; }
  .foot-grid { grid-template-columns: 1fr; }
}

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

/* === Reduced motion (a11y) === */
@media (prefers-reduced-motion: reduce) {
  .truck { animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
