/* =========================================================================
   Ludwig Automobile – Marbach am Neckar
   Premium Dark Automotive Theme · HTML/CSS/JS · DSGVO-freundlich
   Schriften lokal (assets/fonts), keine externen CDNs.
   ========================================================================= */

/* ---------- Lokale Schriften (self-hosted, kein Google-Fonts-CDN) -------- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('assets/fonts/space-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('assets/fonts/space-grotesk-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/space-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('assets/fonts/inter-700.woff2') format('woff2');
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farbwelt: tiefes Anthrazit + rotes Marken-Akzent (aus dem Logo) */
  --bg:            #0b0c0e;
  --bg-2:          #101216;
  --surface:       #16191f;
  --surface-2:     #1c2027;
  --surface-3:     #232833;
  --line:          rgba(255,255,255,.09);
  --line-strong:   rgba(255,255,255,.16);

  --text:          #f3f5f8;
  --text-muted:    #a6adb8;
  --text-dim:      #767d89;

  --accent:        #e11d2a;   /* Signalrot – wie im Logo */
  --accent-600:    #c4141f;
  --accent-glow:   rgba(225,29,42,.35);
  --accent-soft:   rgba(225,29,42,.12);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow:    0 12px 32px rgba(0,0,0,.35);
  --shadow-lg: 0 28px 60px rgba(0,0,0,.5);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-display: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
}

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  margin-bottom: 16px;
}
.section-head p { color: var(--text-muted); font-size: 1.06rem; }

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

/* ---------- Buttons ---------- */
.btn {
  --bh: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--bh);
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px -8px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px var(--accent-glow);
}
.btn--ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { --bh: 58px; padding: 0 32px; font-size: 1.03rem; }

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(11,12,14,.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand img { height: 42px; width: auto; border-radius: 6px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .02em;
  line-height: 1;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-muted);
  padding: 9px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.05); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--text);
}
.nav__phone svg { width: 17px; height: 17px; color: var(--accent); }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile-Menü-Panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(9,10,12,.96);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px var(--gutter) 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s var(--ease), opacity .35s var(--ease), visibility .45s;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  padding: 14px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--accent); padding-left: 8px; }
.mobile-menu a span { color: var(--accent); }
.mobile-menu__cta { margin-top: 32px; display: grid; gap: 12px; }

body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(225,29,42,.18), transparent 60%),
    radial-gradient(900px 700px at 8% 108%, rgba(60,80,130,.16), transparent 55%),
    linear-gradient(180deg, #0b0c0e 0%, #0d0f13 100%);
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: .82rem; font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.hero__badge strong { color: var(--text); font-weight: 600; }
.stars { color: var(--accent); letter-spacing: 1px; }

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px 40px; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__meta span { font-size: .84rem; color: var(--text-dim); margin-top: 6px; }

/* Hero visual card */
.hero__visual { position: relative; }
.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-strong);
  aspect-ratio: 4 / 3.2;
  background: var(--surface);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(190deg, transparent 45%, rgba(8,9,11,.85) 100%);
}
.hero__price {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  background: rgba(11,12,14,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 16px;
}
.hero__price small { display: block; font-size: .72rem; color: var(--text-dim); }
.hero__price b { font-family: var(--font-display); font-size: 1.15rem; }
.hero__float {
  position: absolute;
  right: -14px; top: 26px; z-index: 3;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.hero__float .ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.hero__float .ico svg { width: 20px; height: 20px; }
.hero__float b { font-family: var(--font-display); font-size: .95rem; display: block; }
.hero__float span { font-size: .78rem; color: var(--text-dim); }

/* ---------- Marken-Laufband ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-dim);
  letter-spacing: .04em;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Karten-Grid (Leistungen) ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx,50%) 0%, var(--accent-soft), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card__ico {
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(225,29,42,.2);
}
.card__ico svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: .98rem; }
.card__tag {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; color: var(--text-dim);
}

/* ---------- Fahrzeug-Galerie ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vehicle {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.vehicle__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.vehicle__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.vehicle:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.vehicle:hover .vehicle__img img { transform: scale(1.07); }
.vehicle__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11,12,14,.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: .72rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
}
.vehicle__body { padding: 16px 18px 18px; }
.vehicle__body h3 { font-size: 1.02rem; margin-bottom: 6px; letter-spacing: -.01em; }
.vehicle__specs { color: var(--text-dim); font-size: .84rem; }
.vehicle__price {
  margin-top: 12px; display: flex; align-items: baseline; justify-content: space-between;
}
.vehicle__price b { font-family: var(--font-display); font-size: 1.28rem; }
.vehicle__price span { font-size: .78rem; color: var(--text-dim); }
.fleet-note {
  margin-top: 30px; text-align: center; color: var(--text-dim); font-size: .9rem;
}

/* ---------- Über uns ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 5/4; object-fit: cover;
}
.about__stat {
  position: absolute; right: -18px; bottom: -22px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 40px -12px var(--accent-glow);
}
.about__stat b { font-family: var(--font-display); font-size: 2rem; line-height: 1; display: block; }
.about__stat span { font-size: .8rem; opacity: .9; }
.about h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 18px; }
.about p { color: var(--text-muted); margin-bottom: 16px; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .tick {
  flex: 0 0 auto; width: 24px; height: 24px; margin-top: 2px;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.checklist .tick svg { width: 14px; height: 14px; }
.checklist b { font-weight: 600; }
.checklist p { margin: 0; font-size: .92rem; }

/* ---------- Warum wir (Feature-Split) ---------- */
.why { background: var(--bg-2); }
.feature-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.feature {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color .3s, transform .3s var(--ease);
}
.feature:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.feature .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: .9rem; color: var(--accent); margin-bottom: 14px;
}
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: .95rem; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.step__n {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--accent);
  line-height: 1; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .92rem; }

/* ---------- Standort ---------- */
.location { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  min-height: 380px;
  box-shadow: var(--shadow);
}
.map-card__ph { position: absolute; inset: 0; }
.map-card__pin {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  display: grid; place-items: center; z-index: 2;
}
.map-card__pin .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 4px solid #fff;
  box-shadow: 0 0 0 6px var(--accent-glow);
}
.map-card__pin .pulse {
  position: absolute; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { to { transform: scale(4.5); opacity: 0; } }
.map-card__label {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  background: rgba(11,12,14,.8); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 14px; padding: 12px 16px;
}
.map-card__label b { font-family: var(--font-display); display: block; font-size: .98rem; }
.map-card__label span { font-size: .82rem; color: var(--text-muted); }

.contact-facts { display: grid; gap: 14px; align-content: start; }
.fact {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.fact__ico {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.fact__ico svg { width: 22px; height: 22px; }
.fact b { font-family: var(--font-display); font-size: .95rem; display: block; margin-bottom: 3px; }
.fact p, .fact a { color: var(--text-muted); font-size: .95rem; }
.fact a:hover { color: var(--accent); }

/* Öffnungszeiten-Tabelle */
.hours { list-style: none; padding: 0; margin: 6px 0 0; width: 100%; }
.hours li { display: flex; justify-content: space-between; padding: 5px 0; font-size: .92rem; border-bottom: 1px dashed var(--line); }
.hours li:last-child { border-bottom: none; }
.hours span:first-child { color: var(--text-muted); }
.hours span:last-child { color: var(--text); font-weight: 500; }
.hours .ph { color: var(--text-dim); font-style: italic; }

/* ---------- Kontakt / Formular ---------- */
.contact { background: var(--bg-2); }
.contact__wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,64px); align-items: start; }
.contact__intro h2 { font-size: clamp(1.9rem,4vw,2.8rem); margin-bottom: 16px; }
.contact__intro p { color: var(--text-muted); margin-bottom: 26px; }
.contact__cards { display: grid; gap: 12px; }

form.lead {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 500; margin-bottom: 8px; }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 52px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: var(--bg-2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.consent {
  display: flex; gap: 13px; align-items: flex-start;
  margin: 6px 0 22px;
  font-size: .88rem; color: var(--text-muted);
}
.consent input {
  flex: 0 0 auto;
  width: 22px; height: 22px; margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: .82rem; color: var(--text-dim); margin-top: 16px; text-align: center; }
.form-status { font-size: .92rem; margin-top: 14px; padding: 12px 16px; border-radius: 12px; display: none; }
.form-status.ok { display: block; background: rgba(40,180,110,.12); color: #6fe0a8; border: 1px solid rgba(40,180,110,.3); }
.form-status.err { display: block; background: var(--accent-soft); color: #ff8b93; border: 1px solid rgba(225,29,42,.35); }

/* ---------- Accordion (mobil für lange Inhalte) ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion + .accordion { margin-top: 12px; }
.accordion__head {
  width: 100%; text-align: left;
  background: var(--surface);
  border: none; color: var(--text);
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; min-height: 56px;
}
.accordion__head .chev { flex: 0 0 auto; transition: transform .3s var(--ease); color: var(--accent); }
.accordion.is-open .accordion__head .chev { transform: rotate(180deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion__body-inner { padding: 0 20px 20px; color: var(--text-muted); font-size: .95rem; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, #17191f 0%, #0e0f13 100%);
  border: 1px solid var(--line-strong);
  text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -20%, var(--accent-soft), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 30px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 80px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand img { height: 46px; margin-bottom: 18px; border-radius: 8px; }
.footer__brand p { color: var(--text-muted); font-size: .94rem; max-width: 34ch; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  display: grid; place-items: center; color: var(--text-muted);
  transition: color .25s, border-color .25s, transform .25s, background .25s;
}
.footer__social a:hover { color: #fff; background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h4 {
  font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: var(--text-muted); font-size: .94rem; }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
}
.footer__copy { color: var(--text-dim); font-size: .86rem; }
.footer__powered { font-size: .9rem; color: var(--text-muted); }
.footer__powered a { color: #22b8e0; font-weight: 600; }
.footer__powered a:hover { text-decoration: underline; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Legal-Seiten ---------- */
.legal { padding-top: 140px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px; }
.legal .lead { color: var(--text-muted); margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--text-muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.legal .placeholder {
  background: var(--accent-soft);
  border: 1px dashed rgba(225,29,42,.4);
  color: #ffb3b8;
  border-radius: 10px; padding: 3px 9px; font-size: .9rem; font-weight: 500;
}
.legal .note {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 18px 20px; margin: 26px 0; color: var(--text-muted); font-size: .92rem;
}
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; margin-bottom: 30px; }

/* =========================================================================
   RESPONSIVE  (Mobile First – Anpassungen nach oben)
   ========================================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: block; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; }
  .hero__float { display: none; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .about__stat { right: 12px; }
  .grid--3, .feature-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .location { grid-template-columns: 1fr; }
  .contact__wrap { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .grid--2, .grid--3, .grid--4, .fleet-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.1rem, 8.4vw, 2.8rem); }
  .hero h1 em { white-space: normal; }
  .hero__meta { gap: 20px 32px; }
  .hero__cta .btn { flex: 1 1 auto; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__powered { order: 2; }
  .about__stat { position: static; display: inline-block; margin-top: 18px; }
}

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