/* ===========================
   AUTOHOF NAUMBURG – Hauptstylesheet
   =========================== */

/* 0. Fonts */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* 1. Variablen */
:root {
  --red:        #C8102E;
  --red-dark:   #a00d24;
  --dark:       #1a1a1a;
  --dark-footer:#111111;
  --gray-light: #f5f5f5;
  --gray-mid:   #e0e0e0;
  --text:       #1e1e1e;
  --text-muted: #666666;
  --white:      #ffffff;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1200px;
  --nav-h:      72px;
  --radius:     8px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* 3. Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--dark);
}
.nav-logo-text {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  transition: color 0.18s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-phone {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.nav-number {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-number svg { color: var(--red); }
.btn-nav-call {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 4px;
  transition: background 0.18s;
}
.btn-nav-call:hover { background: var(--red-dark); }

/* Hamburger-Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  margin-left: auto;
  cursor: pointer;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Navigation (Overlay) */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  flex-direction: column;
  padding: 14px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  z-index: 997;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  padding: 15px 4px;
  border-bottom: 1px solid var(--gray-mid);
}
.mobile-nav .nav-link.active { color: var(--red); }
.mobile-nav .nav-call {
  margin-top: 20px;
  color: var(--white);
  background: var(--red);
  text-align: center;
  border-radius: var(--radius);
  padding: 15px;
  font-weight: 700;
  border-bottom: none;
}
.mobile-nav .nav-call:hover { background: var(--red-dark); }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 11px 22px;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 11px 22px;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn-white:hover { background: #f0f0f0; }

.btn-lg { font-size: 16px; padding: 15px 32px; }

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--white);
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  align-items: center;
  gap: 48px;
}
.hero-content {
  padding: 64px 0;
}
.hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 18px;
}
.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-title .red { color: var(--red); }
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text); }
.hero-checklist {
  margin: 20px 0 32px;
}
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
}
.hero-checklist li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image {
  align-self: stretch;
  min-height: 420px;
  background: #b8bec6;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-price-tag {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 16px 0 8px;
}
.hero-price-tag .price { color: var(--red); font-size: 28px; }
.hero-price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ===========================
   FEATURE BAR
   =========================== */
.feature-bar {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 36px 28px;
  position: relative;
  z-index: 1;
}
.feature-bar-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-icon { color: var(--red); margin-bottom: 4px; }
.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   SECTIONS
   =========================== */
section {
  padding: 72px 28px;
}
.section-gray { background: var(--gray-light); }
.section-dark { background: var(--dark-footer); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-dark .section-title { color: var(--white); }
.section-divider {
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ===========================
   CARDS
   =========================== */
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  height: 180px;
  background: #b8bec6;
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.card-icon { color: var(--red); margin-bottom: 12px; }
.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  margin-top: 14px;
  transition: gap 0.15s;
}
.card-link:hover { gap: 10px; }

.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.icon-card-icon { color: var(--red); }
.icon-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}
.icon-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===========================
   CHECKLIST
   =========================== */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}
.checklist li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================
   TWO-COLUMN CONTENT
   =========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.two-col-img {
  min-height: 320px;
  background: #b8bec6;
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-content {
  padding: 48px 40px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.two-col-content.dark {
  background: var(--dark);
  color: var(--white);
}
.two-col-content.dark .two-col-title { color: var(--white); }
.two-col-content.dark .checklist li { color: rgba(255,255,255,0.85); }
.two-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 10px;
}
.two-col-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
  color: var(--dark);
}
.two-col-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.two-col-content.dark .two-col-text { color: rgba(255,255,255,0.65); }

/* ===========================
   PROCESS STEPS
   =========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.step-img-wrap {
  width: 100%;
  height: 140px;
  border-radius: var(--radius);
  background: #c0c5cc;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.step-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.step-num {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-arrow {
  position: absolute;
  top: 54px;
  right: -10px;
  color: var(--red);
  z-index: 1;
}
.step:last-child .step-arrow { display: none; }
.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ===========================
   SPLIT (Text + Bild nebeneinander)
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: #b8bec6;
  min-height: 340px;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}
.split-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.split-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===========================
   TRANSPORT OPTIONS
   =========================== */
.transport-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.transport-option {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.transport-option-img {
  background: #b8bec6;
  height: 200px;
}
.transport-option-img img { width: 100%; height: 100%; object-fit: cover; }
.transport-option-content { padding: 28px; }
.transport-option-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

/* ===========================
   SPEC BOX (Transporter)
   =========================== */
.spec-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.spec-box-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.spec-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  margin-top: 20px;
}
.spec-price-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.spec-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--red);
  color: var(--white);
  padding: 52px 28px;
}
.cta-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.cta-banner-icon {
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-banner-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.cta-banner-text {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.5;
}
.cta-banner-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* CTA Startseite mit Kontaktinfos */
.cta-info {
  background: var(--red);
  color: var(--white);
  padding: 52px 28px;
}
.cta-info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.75;
  margin-bottom: 6px;
}
.cta-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 4px;
  opacity: 0.9;
}

/* ===========================
   DARK CTA (Fahrzeugverkauf)
   =========================== */
.dark-cta {
  background: var(--dark);
  color: var(--white);
  padding: 56px 28px;
}
.dark-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.dark-cta-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}
.dark-cta-text {
  font-size: 15px;
  opacity: 0.75;
  line-height: 1.6;
}

/* ===========================
   KONTAKT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 14px; font-weight: 600; color: var(--dark); }
input, textarea, select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color 0.18s;
  background: var(--white);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
}
textarea { resize: vertical; min-height: 130px; }

.contact-info-block {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-block h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #333;
}
.contact-info-row svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-info-row strong { display: block; margin-bottom: 2px; }
.map-placeholder {
  background: #c8d4c0;
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,transparent,transparent 30px,rgba(255,255,255,.3) 30px,rgba(255,255,255,.3) 31px),
    repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(255,255,255,.3) 40px,rgba(255,255,255,.3) 41px);
}
.map-placeholder-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}
.map-placeholder-pin svg { color: var(--red); margin: 0 auto 6px; }

/* ===========================
   ÜBER UNS
   =========================== */
.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.value-card-icon { color: var(--red); margin-bottom: 14px; }
.value-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark-footer);
  color: rgba(255,255,255,0.7);
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 28px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-about {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-info-row svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 14px; line-height: 1.7; }

/* Einfacher Footer */
.footer-simple { background: var(--dark-footer); color: rgba(255,255,255,0.7); }
.footer-simple-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 40px;
  align-items: start;
}
.footer-simple-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-simple-col-title svg { color: var(--red); }
.footer-simple-col p,
.footer-simple-col address {
  font-size: 14px;
  line-height: 1.75;
  font-style: normal;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.18s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===========================
   UTILITIES
   =========================== */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.mt-8  { margin-top: 8px;  } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px;  } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 28px 80px;
}
.legal-wrap h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.legal-wrap .legal-divider {
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 32px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 32px;
}
.legal-back:hover { text-decoration: underline; }
.legal-toc {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc h2 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.legal-toc ol { padding-left: 20px; }
.legal-toc li { font-size: 14px; margin-bottom: 6px; }
.legal-toc a { color: var(--red); }
.legal-toc a:hover { text-decoration: underline; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-mid);
}
.legal-section p { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 12px; }
.legal-section ul, .legal-section ol { padding-left: 20px; margin-bottom: 12px; }
.legal-section li { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 6px; }
.legal-section a { color: var(--red); }
.legal-section a:hover { text-decoration: underline; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 8px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-image { min-height: 280px; border-radius: 0; }
  .hero-content { padding: 48px 0; }
  .hero-title { font-size: 36px; }
  .feature-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .two-col-img { min-height: 240px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-simple-inner { grid-template-columns: 1fr 1fr; }
  .cta-info-inner { grid-template-columns: 1fr; text-align: center; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step-arrow { display: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .transport-options { grid-template-columns: 1fr; }
  .dark-cta-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 24px; }
  .cards-grid-4,.cards-grid-3,.cards-grid-2 { grid-template-columns: 1fr; }
  .feature-bar-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .two-col-content { padding: 32px 24px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .footer-simple-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .team-values { grid-template-columns: 1fr; }
  section { padding: 48px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-info-inner { grid-template-columns: 1fr; }
}

/* === Hero full-bleed (Startseite) === */
.hero-full {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-full-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10,10,12,.80) 0%, rgba(10,10,12,.55) 45%, rgba(10,10,12,.12) 100%);
}
.hero-full-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 28px;
}
.hero-full-content { max-width: 560px; }
.hero-full .hero-title { color: var(--white); font-size: 52px; }
.hero-full .hero-desc { color: rgba(255,255,255,.94); font-size: 18px; }
.hero-full .hero-btns { margin-top: 8px; }
@media (max-width: 760px) {
  .hero-full { min-height: 460px; }
  .hero-full-inner { padding: 64px 22px; }
  .hero-full .hero-title { font-size: 38px; }
  .hero-full-scrim { background: linear-gradient(180deg, rgba(10,10,12,.45) 0%, rgba(10,10,12,.85) 100%); }
}

/* === Logos (Header & Footer) === */
.nav-logo-img { height: 44px; width: auto; display: block; }

/* Footer-Logo: dunkles Logo braucht einen hellen Chip-Hintergrund für Sichtbarkeit auf dem dunklen Footer */
.footer-logo-img { height: 64px; width: auto; display: block; }
.footer-brand, .footer-simple-brand {
  width: fit-content;
  justify-self: start;
  max-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.footer-simple-brand { grid-column: 1 / -1; margin-bottom: 12px; }

@media (max-width: 760px) {
  .nav-logo-img { height: 38px; }
  .footer-logo-img { height: 52px; }
  .footer-brand, .footer-simple-brand { max-width: 240px; padding: 10px 14px; }
}

/* ===========================
   FAHRZEUGÜBERSICHT – FILTER
   =========================== */
.vfilter {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  margin-bottom: 36px;
}
.vfilter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: flex-end;
}
.vfilter-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 140px;
  min-width: 130px;
}
.vfilter-field span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}
.vfilter-field select { padding: 10px 12px; }
.vfilter-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.vfilter-reset {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  text-decoration: underline;
}
.vfilter-reset:hover { color: var(--red); }

/* Fahrzeugraster */
.vgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.vcard {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  color: var(--text);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vcard.is-sold { opacity: 0.72; }
.vcard-img {
  position: relative;
  height: 190px;
  background: #b8bec6;
  overflow: hidden;
}
.vcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.vcard:hover .vcard-img img { transform: scale(1.04); }
.vcard-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.28);
}
.vcard-status {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 12px; font-weight: 700;
  padding: 4px 11px; border-radius: 999px;
  color: #fff;
}
.vcard-status.reserviert { background: rgba(234,179,8,0.95); color: #3a2c00; }
.vcard-status.verkauft { background: rgba(200,16,46,0.95); }
.vcard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vcard-title { font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1.25; margin: 0; }
.vcard-sub { font-size: 13px; color: var(--text-muted); }
.vcard-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin: 10px 0;
  padding: 12px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.vcard-specs > div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.vcard-spec-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-muted); }
.vcard-spec-val { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vcard-foot { margin-top: auto; }
.vcard-price { font-size: 22px; font-weight: 800; color: var(--red); }
.vcard-fin { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.vcard-fin strong { color: var(--text); }
.vcard-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 700; color: var(--red);
  margin-top: 12px; transition: gap 0.15s;
}
.vcard:hover .vcard-link { gap: 9px; }

.vempty {
  text-align: center;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 56px 28px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.vhint { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 30px; }

/* ===========================
   FAHRZEUGDETAILSEITE
   =========================== */
.vdetail-section { padding: 28px 28px 72px; background: var(--white); }
.vdetail-top { margin-bottom: 18px; }
.vdetail-back {
  font-size: 14px; font-weight: 600; color: var(--red);
}
.vdetail-back:hover { text-decoration: underline; }
.vdetail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

/* Galerie */
.vgal { position: sticky; top: calc(var(--nav-h) + 16px); }
.vgal-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #b8bec6;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.vgal-main-img { width: 100%; height: 100%; object-fit: cover; }
.vgal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
  border: 0;
}
.vgal-nav:hover { background: rgba(200,16,46,0.9); }
.vgal-prev { left: 12px; }
.vgal-next { right: 12px; }
.vgal-counter {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.55); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px;
}
.vgal-thumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.vgal-thumb {
  width: 76px; height: 58px; border-radius: 6px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; padding: 0; background: none;
}
.vgal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vgal-thumb.is-active { border-color: var(--red); }
.vgal-noimg {
  flex-direction: column; gap: 10px; color: rgba(0,0,0,0.35);
  font-size: 14px;
}

/* Infospalte */
.vdetail-info { min-width: 0; }
.vdetail-head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.vdetail-title { font-size: 30px; font-weight: 800; color: var(--dark); line-height: 1.15; margin: 0; }
.vdetail-status {
  font-size: 13px; font-weight: 700; padding: 5px 13px; border-radius: 999px; color: #fff;
  white-space: nowrap;
}
.vdetail-status.verfuegbar { background: #16a34a; }
.vdetail-status.reserviert { background: #ca8a04; }
.vdetail-status.verkauft { background: var(--red); }
.vdetail-sub { font-size: 15px; color: var(--text-muted); margin-top: 6px; }

.vdetail-notice {
  margin-top: 18px; padding: 14px 18px; border-radius: var(--radius);
  font-size: 14px; line-height: 1.6;
}
.vdetail-notice.sold { background: rgba(200,16,46,0.08); border: 1px solid rgba(200,16,46,0.3); color: #991225; }
.vdetail-notice.reserved { background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.4); color: #7a5a00; }

.vdetail-pricebox {
  margin-top: 22px; padding: 22px; background: var(--gray-light); border-radius: var(--radius);
}
.vdetail-price { font-size: 32px; font-weight: 800; color: var(--red); }
.vdetail-fin { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.vdetail-fin strong { color: var(--text); }

.vdetail-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.vdetail-specs { margin-top: 34px; }
.vdetail-specs h2,
.vdetail-text h2 {
  font-size: 18px; font-weight: 800; color: var(--dark); margin: 0 0 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--red);
}
.vspec-table { width: 100%; border-collapse: collapse; }
.vspec-table th,
.vspec-table td {
  padding: 11px 0; text-align: left; font-size: 15px;
  border-bottom: 1px solid var(--gray-mid);
}
.vspec-table th {
  width: 42%; font-weight: 600; color: var(--text-muted);
  padding-right: 16px;
}
.vspec-table td { font-weight: 600; color: var(--text); }

.vdetail-text { margin-top: 34px; }
.vdetail-text p { font-size: 15px; line-height: 1.75; color: #444; margin-bottom: 12px; white-space: pre-wrap; }
.vdetail-text h2 { margin-top: 26px; }

.vdetail-footnote {
  margin-top: 30px; font-size: 12px; color: var(--text-muted); line-height: 1.6;
  padding-top: 18px; border-top: 1px solid var(--gray-mid);
}

/* Responsive Detailseite */
@media (max-width: 900px) {
  .vdetail-grid { grid-template-columns: 1fr; gap: 32px; }
  .vgal { position: static; }
}
@media (max-width: 600px) {
  .vdetail-title { font-size: 24px; }
  .vdetail-price { font-size: 26px; }
  .vspec-table th { width: 45%; }
}

