/* ─────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────── */
:root {
  --bg: #F4F4F2;
  --bg-dark: #0A0A0A;
  --bg-dark-2: #141414;
  --card: #FFFFFF;
  --text: #0A0A0A;
  --text-muted: #6B7280;
  --text-dark-muted: rgba(255,255,255,0.7);
  --border: #E6E6E3;
  --border-dark: rgba(255,255,255,0.12);
  --accent: #00FFAA;
  --accent-dark: #00CC88;
  --accent-tint: #D6FFF0;
  --accent-text: #00AA70;    /* lesbares Mint auf hellem BG */
  --accent-ink: #0A0A0A;     /* Text auf Mint-BG */
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > * { width: 100%; }
body > footer,
body > #layout-footer { margin-top: auto; }
body:has(.sticky-bar) > footer { padding-bottom: 86px; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* Display headings: Archivo Black for carwow-style impact */
.display {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.02;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 28px;
  border-bottom: 1px solid var(--border-dark);
}
.nav-links {
  display: flex;
  gap: 4px;
  order: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.75; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 2;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-80px);
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width: 18px; height: 18px; fill: var(--accent-ink); }
.nav-logo-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 3;
}
.nav-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.nav-icon-btn:hover { opacity: 1; }
.nav-icon-btn svg { width: 22px; height: 22px; }

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 64px 40px 48px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(460px, 600px) 1fr;
  gap: 24px;
  align-items: center;
}
.hero-decor {
  height: 400px;
}
.hero-decor-tile {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, #1e3a3a 0%, #00CC88 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-decor-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.hero-decor-tile svg { width: 70%; height: 70%; opacity: 0.5; stroke: #fff; stroke-width: 1.3; fill: none; }
.hero-decor-tile.has-image {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.hero-decor-tile.has-image::after { display: none; }
.hero-decor-tile.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.hero-center { text-align: center; position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,255,170,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-title .arrow-circle {
  display: inline-flex;
  width: 0.68em;
  height: 0.68em;
  background: var(--accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: 6px;
  transform: translateY(-0.08em);
}
.hero-title .arrow-circle svg { width: 55%; height: 55%; fill: var(--accent-ink); }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-h2 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin: 8px auto 14px;
  max-width: 620px;
  letter-spacing: -0.005em;
}

/* SEARCH BOX */
.hero-search {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 8px;
  max-width: 560px;
  margin: 0 auto;
}
.search-tabs {
  display: flex;
  gap: 2px;
  padding: 4px 6px;
  margin-bottom: 6px;
}
.stab {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: transparent;
  transition: all 0.15s;
}
.stab:hover { color: #fff; }
.stab.active { background: rgba(255,255,255,0.14); color: #fff; }

.search-body {
  display: flex;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  gap: 4px;
  align-items: center;
}
.search-field { flex: 1; position: relative; }
.search-field select {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}
.search-field select:focus { outline: none; background: #f7f7f5; }
.search-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

.search-btn {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.search-btn:hover { background: var(--accent-dark); transform: scale(1.06); }
.search-btn svg { width: 18px; height: 18px; }

/* ─────────────────────────────────────────────────────
   FILTER PILLS
───────────────────────────────────────────────────── */
.filter-pills {
  background: var(--bg);
  padding: 24px 40px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.fpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.15s;
}
.fpill:hover { border-color: var(--accent); color: var(--accent-text); }
.fpill svg { width: 15px; height: 15px; }
.fpill.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ─────────────────────────────────────────────────────
   FEATURED STRIPE (ad-style)
───────────────────────────────────────────────────── */
.featured {
  max-width: 1400px;
  margin: 64px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.featured-card {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-card .kicker {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.featured-card p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 22px;
}
.featured-card p + p { margin-top: -10px; }
.btn-black {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A0A0A;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  width: fit-content;
  transition: background 0.15s;
}
.btn-black:hover { background: #2a2a2a; }

.featured-hero-img {
  border-radius: 18px;
  background: linear-gradient(135deg, #e9e9e4 0%, #d9d9d3 100%);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.featured-hero-img .watermark {
  position: relative;
  width: 64%;
  opacity: 0.45;
  stroke: #888;
  stroke-width: 1;
  fill: none;
}

/* ─────────────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────────────── */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 40px;
}
.section-dark {
  background: var(--bg-dark);
  color: #fff;
  max-width: none;
  margin: 0;
}
.section-dark .section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  gap: 20px;
}
.section-head-left { display: flex; align-items: center; gap: 18px; }
.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-dark .section-icon { background: rgba(0,255,170,0.2); }
.section-icon svg { width: 24px; height: 24px; }
.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.section-sub { font-size: 15px; color: var(--text-muted); }
.section-dark .section-sub { color: var(--text-dark-muted); }
.section-nav {
  display: flex;
  gap: 10px;
}
.section-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.section-arrow:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.section-arrow svg { width: 18px; height: 18px; }
.section-dark .section-arrow { background: #fff; border-color: #fff; color: #0A0A0A; }
.section-dark .section-arrow:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ─────────────────────────────────────────────────────
   BUDGET GRID (6 big tiles)
───────────────────────────────────────────────────── */
.budget-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 4.5vw, 56px);
  text-align: center;
  letter-spacing: 0;
  word-spacing: 0.12em;
  margin-bottom: 40px;
}
.budget-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.budget-tile {
  aspect-ratio: 1 / 1.1;
  background: #E5E5E0;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.budget-tile:hover { transform: translateY(-4px); }
.budget-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}
.budget-tile svg.car-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 78%;
  opacity: 0.5;
}
.budget-tile .budget-label {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  z-index: 1;
}
.budget-tile-1,
.budget-tile-2,
.budget-tile-3,
.budget-tile-4,
.budget-tile-5,
.budget-tile-6 {
  background: linear-gradient(155deg, #ECECE8 0%, #D8D8D2 100%);
}
.budget-tile.active { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ─────────────────────────────────────────────────────
   CAR CARDS
───────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.car-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  color: inherit;
  position: relative;
}
.car-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card-head {
  padding: 20px 22px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.card-title-group .card-model {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.card-title-group .card-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.card-badge-new {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-text);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-badge-new.ev { background: #d1fae5; color: #065f46; }
.card-badge-new.hybrid { background: #dbeafe; color: #1e40af; }
.card-badge-new svg { width: 10px; height: 10px; }
.card-savings {
  margin: 0 22px 14px;
  background: #141414;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
}
.card-img {
  height: 220px;
  background: #f1f1ed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.3s;
}
.car-card:hover .card-img img { transform: scale(1.05); }
.card-img-placeholder {
  color: #b8b8b0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.card-img-placeholder svg { width: 56px; height: 56px; }
.card-img-placeholder span { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.card-foot {
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.card-price-label { font-size: 13px; color: var(--text-muted); }
.card-price {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.card-price strong { color: var(--text); }
.card-arrow {
  position: absolute;
  bottom: 20px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.car-card:hover .card-arrow { background: var(--accent); transform: translateX(2px); }
.card-arrow svg { width: 16px; height: 16px; }

/* Skeleton-Platzhalter für Fahrzeug-Karten (Shimmer-Sweep) */
.skeleton {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  overflow: hidden;
}
.skeleton:empty { height: 380px; border: none; }
.skeleton-img { height: 190px; }
.skeleton-body { padding: 14px 16px; }
.skeleton-line { height: 12px; border-radius: 4px; margin-bottom: 10px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.shorter { width: 40%; }
.skeleton-price { height: 20px; width: 50%; border-radius: 4px; margin-bottom: 10px; }
.skeleton-img, .skeleton-line, .skeleton-price, .skeleton:empty {
  background: linear-gradient(90deg, #ECEDF1 25%, #F8F9FB 50%, #ECEDF1 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.3s linear infinite;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.loading-count-line { grid-column: 1 / -1; text-align: center; font-size: 13px; color: #9ca3af; padding: 6px 0; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────
   TRUST / REVIEWS
───────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border);
}
.review-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.stars-box {
  display: inline-flex;
  gap: 1px;
  background: #00B67A;
  padding: 3px;
}
.stars-box svg { width: 14px; height: 14px; fill: #fff; }
.verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.verified::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #00B67A;
  display: inline-block;
}
.review-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.review-text { font-size: 13px; color: #4a4a4a; line-height: 1.55; margin-bottom: 14px; min-height: 52px; }
.review-meta { font-size: 12px; color: var(--text-muted); }
.reviews-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 24px;
}
.reviews-footer strong { color: var(--text); font-weight: 700; }
.tp-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #00B67A;
}

/* ─────────────────────────────────────────────────────
   EDITORIAL (dark)
───────────────────────────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 40px;
}
.editorial-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-tint), #A3EBD0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial-portrait svg { width: 52%; height: 52%; fill: var(--accent); }
.editorial-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.editorial p {
  font-size: 15px;
  color: var(--text-dark-muted);
  line-height: 1.6;
  max-width: 720px;
}

.sub-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}
.test-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}
.test-card {
  background: var(--bg-dark-2);
  border-radius: 14px;
  overflow: hidden;
}
.test-img {
  aspect-ratio: 16 / 10;
  background: #222;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.test-img .placeholder { opacity: 0.3; stroke: #666; stroke-width: 1.3; fill: none; width: 50%; }
.test-score {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  font-family: 'Archivo', sans-serif;
}
.score-good { background: #2ee6a0; color: #0A0A0A; }
.score-ok { background: #ffd850; color: #0A0A0A; }
.score-bad { background: #ff8578; color: #0A0A0A; }
.test-card-body {
  padding: 14px 16px 18px;
}
.test-card-title {
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #fff;
  margin-bottom: 4px;
}
.dark-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0A0A0A;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  margin-top: 14px;
}
.dark-btn-outline:hover { background: #f0f0f0; }

/* ─────────────────────────────────────────────────────
   VIDEO GRID
───────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.video-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; background: #222; cursor: pointer; }
.video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%); z-index: 1; }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.15s;
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.video-caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  z-index: 2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────────────
   TYPE ICONS (Fahrzeugtyp)
───────────────────────────────────────────────────── */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.type-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  color: inherit;
}
.type-tile:hover { border-color: var(--accent); transform: translateY(-3px); }
.type-tile svg { width: auto; height: 48px; color: var(--text); transition: color 0.15s; }
.type-tile:hover svg { color: var(--accent); }
.type-name { font-size: 13px; font-weight: 600; color: var(--text); }

/* ─────────────────────────────────────────────────────
   BRANDS (Hersteller suchen)
───────────────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px 24px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 0.15s;
}
.brand-link:hover { color: var(--accent-text); }
.brand-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-logo.fallback {
  width: 32px; height: 32px;
  background: var(--accent-tint);
  color: var(--accent-text);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

/* ─────────────────────────────────────────────────────
   POPULAR MODELS (links 4 columns)
───────────────────────────────────────────────────── */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 24px;
}
.popular-grid a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 0;
  line-height: 1.4;
  transition: color 0.15s;
}
.popular-grid a:hover { color: var(--accent-text); }

/* ─────────────────────────────────────────────────────
   BOTTOM STICKY BAR
───────────────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  z-index: 90;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
}
.sticky-bar a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sticky-bar a:hover { color: rgba(10,10,10,0.75); }

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 60px 40px 30px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 24px;
}
.footer-brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 340px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  font-weight: 500;
}
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .budget-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid, .news-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .type-grid { grid-template-columns: repeat(4, 1fr); }
  .brands-grid, .popular-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-decor { display: none; }
  .featured { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo { transform: none; margin: 0 auto; }
  .hero { padding: 40px 20px 32px; }
  .section { padding: 48px 20px; }
  footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .budget-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .test-grid, .news-grid, .video-grid, .reviews-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid, .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────
   GEMEINSAMER SEITEN-HEADER (für neue Routen)
───────────────────────────────────────────────────── */
.page-header {
  padding: 40px 40px 0;
}
.page-header h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--text);
  margin: 18px 0 10px;
}
.page-header .page-h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 780px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb .crumb {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a.crumb:hover { color: var(--accent-text); }
.breadcrumb .crumb.current { color: var(--text); font-weight: 600; }
.breadcrumb .crumb-sep { opacity: 0.4; }

/* Content-Container */
.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px 80px;
}
.content-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.content-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}
.content-block p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Blog-Kachel */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.blog-card .blog-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Liste der Modelle/Marken/Bauarten */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.tile:hover {
  border-color: var(--accent);
  background: var(--accent-tint);
}
.tile-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.tile-icon img { width: 72%; height: 72%; object-fit: contain; }
.tile-icon-plain { background: transparent; }
.tile-icon-plain img { width: 100%; height: 100%; }
.tile-icon-plain .brand-logo-fallback { background: var(--accent-tint); border-radius: 50%; }
.bauart-icon { height: 40px; width: auto; color: var(--text); transition: color 0.15s; }
.tile:hover .bauart-icon { color: var(--accent-text); }
.tile-icon .brand-logo-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.tile-label { font-weight: 600; font-size: 14px; }
.tile-sub { font-size: 12px; color: var(--text-muted); }

/* Fahrzeug-Karten für Listings – kompakte Variante */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 720px) {
  .page-header { padding: 28px 20px 0; }
  .page-content { padding: 20px; }
  .content-block { padding: 22px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* Viewport-Nachladen (Infinite-Scroll) – gemeinsam für alle Listen-Seiten */
.load-more-wrap { text-align: center; margin-top: 28px; }
.load-more { font-size: 14px; font-weight: 600; color: #00AA70; border: 1.5px solid #A3EBD0; background: #fff; padding: 11px 28px; border-radius: 8px; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.load-more:hover { background: #E8FFF8; border-color: #00AA70; }

/* Kraftstoff-Chip (unter dem Preis) + Merken-Herz (oben rechts in der Infobox) */
/* Fahrzeug-Karten: Infobox (kanonisch für suche/ + kategorien/) */
.card-body { position: relative; padding: 14px 16px 16px; }
.card-body .card-make { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9ca3af; margin-bottom: 3px; padding-right: 36px; display: flex; align-items: center; gap: 6px; }
.card-body .card-model { font-size: 15px; font-weight: 700; color: #0d1526; margin-bottom: 2px; display: flex; align-items: center; gap: 6px; min-width: 0; }
.card-body .card-model > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-body .card-title { font-size: 12px; color: #6b7280; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-body .card-price { font-size: 20px; font-weight: 700; color: #00AA70; letter-spacing: -0.5px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.card-body .card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.card-body .card-tag { font-size: 11px; color: #4a5568; background: #f1f4f8; padding: 3px 8px; border-radius: 4px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.card-body .card-location { font-size: 12px; color: #9ca3af; display: flex; align-items: center; gap: 5px; }
.card-ico { width: 13px; height: 13px; color: #9ca3af; flex: 0 0 auto; }
.card-price .card-ico { width: 15px; height: 15px; color: #00AA70; }
.card-tag .card-ico { width: 11px; height: 11px; }
.card-fuel { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; letter-spacing: 0.02em; }
.badge-ev    { background: #d1fae5; color: #065f46; }
.badge-hybrid{ background: #dbeafe; color: #1e40af; }
.badge-diesel{ background: #fef3c7; color: #92400e; }
.badge-benzin{ background: #f3f4f6; color: #374151; }
.card-fav { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; background: transparent; border: none; padding: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.card-fav svg { width: 20px; height: 20px; fill: none; stroke: #9ca3af; stroke-width: 1.8; transition: fill 0.15s ease, stroke 0.15s ease, transform 0.15s ease; }
.card-fav:hover svg { stroke: #00AA70; transform: scale(1.1); }
.card-fav.active svg { fill: #00FFAA; stroke: #00AA70; }

/* Ladehinweis, solange Fahrzeugdaten gestreamt werden */
.loading-hint { grid-column: 1 / -1; text-align: center; padding: 70px 20px; color: #6b7280; }
.loading-hint p { margin: 14px 0 0; font-size: 14px; }
.loading-hint .loading-count { font-size: 12px; color: #9ca3af; margin-top: 6px; }
.loading-spinner { display: inline-block; width: 36px; height: 36px; border: 3px solid #A3EBD0; border-top-color: #00AA70; border-radius: 50%; animation: loading-spin 0.8s linear infinite; }
@keyframes loading-spin { to { transform: rotate(360deg); } }

/* Visuelle Markenauswahl (identisch zu /marken/) — genutzt auf /suchen/ */
.brand-picker { padding: 8px 40px 28px; }
.brand-picker-title { font-size: 20px; font-weight: 700; margin: 0 0 16px; }
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .brand-grid { grid-template-columns: 1fr; } .brand-picker { padding: 8px 20px 24px; } }
.brand-card { background: #fff; border-radius: 12px; text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; border: 1px solid #e8ecf0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 28px 16px; min-height: 168px; }
.brand-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: #A3EBD0; }
.brand-card-logo { width: 84px; height: 60px; display: flex; align-items: center; justify-content: center; }
.brand-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-logo-fallback { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: #D6FFF0; color: #00AA70; font-weight: 800; font-size: 22px; }
.brand-card-name { font-size: 15px; font-weight: 700; color: #0A0A0A; text-align: center; }

/* Smarte Modell-/Bauart-Linkauswahl auf Marken-Suchseiten (SEO-Einstiege) */
.quick-links { padding: 0 40px 12px; }
.quick-links h2 { font-size: 15px; font-weight: 700; margin: 14px 0 10px; color: var(--text); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-block; padding: 7px 14px; background: #fff; border: 1px solid #e8ecf0; border-radius: 999px; font-size: 13px; font-weight: 600; color: #1a1a2e; text-decoration: none; transition: all 0.15s; }
.chip:hover { border-color: #00AA70; color: #00AA70; background: #E8FFF8; }
.chip-links .chip-desktop { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-links .chip-mobile { display: none; }
.chip-more summary { display: inline-block; padding: 7px 14px; background: #fff; border: 1px solid #e8ecf0; border-radius: 999px; font-size: 13px; font-weight: 600; color: #1a1a2e; cursor: pointer; list-style: none; transition: all 0.15s; }
.chip-more summary::-webkit-details-marker { display: none; }
.chip-more summary::after { content: ' ▾'; color: #9ca3af; }
.chip-more summary:hover { border-color: #00AA70; color: #00AA70; background: #E8FFF8; }
.chip-more[open] summary { border-color: #00AA70; color: #00AA70; }
.chip-drop { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 0 2px; }
@media (max-width: 760px) {
  /* Mobil: nur Drop-downs, keine offene Chip-Reihe */
  .chip-links .chip-desktop { display: none; }
  .chip-links .chip-mobile { display: block; }
}
@media (max-width: 560px) { .quick-links { padding: 0 20px 12px; } }
