/* ==================================================
   Autohaus Ernst / AHE-KFZ-UG – Design System V2
   Farben: Gold + Anthrazit (aus Logo) — Level: US-Cars-Referenz
   ================================================== */
:root {
  --anthrazit: #1f1f23;
  --anthrazit-deep: #141417;
  --anthrazit-2: #2e2e33;
  --gold: #d9a718;
  --gold-dark: #b8890b;
  --gold-deep: #8a6608;
  --gold-light: #f2e115;
  --text: #2e2e2e;
  --text-soft: #6b6b6b;
  --bg: #ffffff;
  --bg-soft: #f7f6f2;
  --border: #e7e4dc;
  --radius: 18px;
  --shadow: 0 8px 30px rgba(31, 31, 35, 0.09);
  --shadow-hover: 0 18px 44px rgba(31, 31, 35, 0.16);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Custom-Easing (Emil Kowalski) — kräftiger als CSS-Defaults */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
p { text-wrap: pretty; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.08;
  color: var(--anthrazit);
  font-weight: 600;
  text-wrap: balance;
}

/* ---------- Farbband (Signature-Element) ---------- */
.stripes {
  display: flex; height: 7px; width: 100%;
}
.stripes span:nth-child(1) { flex: 1.2; background: var(--gold); }
.stripes span:nth-child(2) { flex: 1; background: var(--anthrazit); }
.stripes span:nth-child(3) { flex: 1.2; background: var(--gold-dark); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--anthrazit-deep);
  color: #d6d6d6;
  font-size: 0.85rem;
  padding: 10px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: var(--gold); text-decoration: none; font-weight: 700; }
.topbar span b { color: #fff; font-weight: 700; }

/* ---------- Header / Nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(238, 238, 236, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 18px rgba(31,31,35,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.brand .brand-text { line-height: 1.15; }
.brand .brand-text strong {
  font-family: var(--font-display); text-transform: uppercase;
  color: var(--anthrazit); font-size: 1.35rem; display: block; letter-spacing: 0.03em;
}
.brand .brand-text strong em { font-style: normal; color: var(--gold-dark); }
.brand .brand-text small {
  color: var(--text-soft); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}

nav.main ul { display: flex; gap: 4px; list-style: none; align-items: center; }
nav.main a {
  text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem;
  padding: 10px 15px; border-radius: 10px;
  transition: background-color 0.18s var(--ease-out), color 0.18s var(--ease-out);
}
nav.main a:hover { background: var(--bg-soft); color: var(--anthrazit); }
nav.main a.active { color: var(--gold-dark); }
nav.main a.btn-nav {
  background: var(--gold); color: var(--anthrazit); margin-left: 10px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; padding: 11px 20px;
  box-shadow: 0 6px 18px rgba(217,167,24,0.35);
}
nav.main a.btn-nav:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
nav.main a.btn-nav:active { transform: translateY(0) scale(0.97); }

.nav-toggle { display: none; }
.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 27px; height: 3px; background: var(--anthrazit); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 16px 32px; border-radius: 12px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.07em;
  font-weight: 600; text-decoration: none; font-size: 1.02rem;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out),
              background-color 0.18s var(--ease-out), border-color 0.18s var(--ease-out), color 0.18s var(--ease-out);
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(160deg, var(--gold-light) -40%, var(--gold) 55%, var(--gold-dark) 130%);
  color: var(--anthrazit);
  box-shadow: 0 10px 26px rgba(217,167,24,0.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(217,167,24,0.5); color: #000; }
.btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-dark { background: var(--anthrazit); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn:active { transform: scale(0.96); }

/* ---------- HERO V2 (Kino-Format) ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 75% 10%, rgba(217,167,24,0.22), transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 95%, rgba(184,137,11,0.18), transparent 55%),
    linear-gradient(160deg, #232328 0%, var(--anthrazit-deep) 55%, #1a1408 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
.hero::after {
  content: ""; position: absolute; left: -10%; right: -10%; bottom: -2px; height: 120px;
  background: var(--bg); transform: skewY(-2.2deg); transform-origin: bottom left;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px;
  align-items: center; padding-top: 96px; padding-bottom: 170px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 0.8rem; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  color: #fff; margin-bottom: 20px; font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead { color: #c9c9c9; font-size: 1.15rem; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Glas-Statpanel im Hero */
.stat-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: 22px; padding: 38px 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.stat-panel .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 20px; }
.stat-panel .stat strong {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: #fff; display: block; line-height: 1;
}
.stat-panel .stat strong i { font-style: normal; color: var(--gold); }
.stat-panel .stat span {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #b9b9b9; font-weight: 700;
}
.stat-panel hr { border: none; border-top: 1px solid rgba(255,255,255,0.14); margin: 26px 0 18px; }
.stat-panel .addr { color: #a8a8a8; font-size: 0.9rem; }

/* Stempel-Badge */
.stamp {
  position: absolute; z-index: 3; right: 7%; top: 60px;
  transform: rotate(7deg);
  border: 3px solid var(--gold); color: var(--gold);
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  letter-spacing: 0.12em; text-align: center;
  padding: 12px 22px; border-radius: 10px; font-size: 1.05rem;
  box-shadow: 0 0 0 3px rgba(217,167,24,0.15), inset 0 0 24px rgba(217,167,24,0.12);
  background: rgba(217,167,24,0.06);
}
.stamp small { display: block; font-size: 0.68rem; letter-spacing: 0.22em; color: #d6b85a; }

/* ---------- Trustbar / Marquee ---------- */
.trustbar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 30%, var(--gold) 70%, var(--gold-dark));
  position: relative; z-index: 5;
}
.trustbar .container {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; padding-top: 26px; padding-bottom: 26px; text-align: center;
}
.trustbar .item strong {
  font-family: var(--font-display); display: block; font-size: 1.7rem;
  color: var(--anthrazit); line-height: 1.1;
}
.trustbar .item span {
  font-size: 0.78rem; color: #4d3d06; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---------- Sections ---------- */
section.block { padding: 96px 0; position: relative; }
section.block.soft { background: var(--bg-soft); }
section.block.dark { background: linear-gradient(165deg, #26262b, var(--anthrazit-deep)); color: #d8d8d8; }
section.block.dark h2, section.block.dark h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 3px; background: var(--gold); }
.section-head .eyebrow { color: var(--gold-dark); margin-bottom: 14px; }
section.block.dark .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.section-head p { color: var(--text-soft); font-size: 1.06rem; }
section.block.dark .section-head p { color: #a9a9a9; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  opacity: 0; transition: opacity 0.28s var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-7px); }
.card:hover::after { opacity: 1; }
.card .icon {
  width: 58px; height: 58px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; font-size: 1.65rem;
  background: linear-gradient(140deg, var(--gold-light) -30%, var(--gold) 60%, var(--gold-dark) 140%);
  margin-bottom: 20px; box-shadow: 0 8px 20px rgba(217,167,24,0.35);
}
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { color: var(--text-soft); font-size: 0.96rem; }

section.block.dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
section.block.dark .card p { color: #b5b5b5; }

/* ---------- Foto-Platzhalter ---------- */
.ph {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(217,167,24,0.10), transparent 55%),
    repeating-linear-gradient(45deg, #ececec, #ececec 12px, #f5f5f5 12px, #f5f5f5 24px);
  border: 2px dashed #c9c4b8; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #9a958a; font-weight: 600; font-size: 0.9rem; gap: 6px; text-align: center;
}
.ph::before { content: "📷"; font-size: 1.7rem; }
.ph-hero { min-height: 340px; }
.ph-card { min-height: 190px; border-radius: var(--radius) var(--radius) 0 0; border-bottom: none; }
.ph-square { min-height: 300px; }

/* ---------- Fahrzeug-Karten ---------- */
.car-card { padding: 0; }
.car-card .car-body { padding: 22px 24px 26px; }
.car-card h3 { font-size: 1.15rem; }
.car-card .price {
  font-family: var(--font-display); color: var(--gold-dark);
  font-weight: 700; font-size: 1.55rem; margin: 8px 0 10px;
}
.car-card .specs { color: var(--text-soft); font-size: 0.86rem; }

/* ---------- Listen ---------- */
.checklist { list-style: none; }
.checklist li {
  padding: 12px 0 12px 40px; position: relative; border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-light) -30%, var(--gold) 60%, var(--gold-dark) 140%);
  color: var(--anthrazit); font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(217,167,24,0.35);
}

/* ---------- Big-Number-Reihe ---------- */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.numbers .num strong {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; color: var(--anthrazit); display: block; line-height: 1;
}
.numbers .num strong i { font-style: normal; color: var(--gold-dark); }
section.block.dark .numbers .num strong { color: #fff; }
section.block.dark .numbers .num strong i { color: var(--gold); }
.numbers .num span {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--text-soft);
}
section.block.dark .numbers .num span { color: #a0a0a0; }

/* ---------- Kontakt / Info-Boxen ---------- */
.info-box {
  background: linear-gradient(165deg, #26262b, var(--anthrazit-deep));
  color: #fff; border-radius: var(--radius); padding: 38px 36px;
  border: 1px solid rgba(255,255,255,0.08);
}
.info-box h3 { color: var(--gold); margin-bottom: 16px; font-size: 1.3rem; }
.info-box table { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.info-box td { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.info-box td:last-child { text-align: right; color: #d8d8d8; }
.info-box a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ---------- CTA-Banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 100% at 85% 0%, rgba(217,167,24,0.3), transparent 55%),
    linear-gradient(150deg, #2a2a30, var(--anthrazit-deep));
  border-radius: 26px; padding: 64px 56px; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-banner::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 10px; color: #fff; }
.cta-banner h2 em { font-style: normal; color: var(--gold); }
.cta-banner p { color: #b9b9b9; font-size: 1.05rem; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--anthrazit-deep); color: #b0b0b0; padding: 0 0 26px;
  font-size: 0.93rem;
}
footer.site .stripes { margin-bottom: 56px; }
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px;
}
footer.site h4 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; margin-bottom: 16px; font-size: 1.05rem;
}
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 9px; }
footer.site a { color: #b0b0b0; text-decoration: none; transition: color 0.2s var(--ease-out); }
footer.site a:hover { color: var(--gold); }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
}
.f-logo { height: 42px; margin-bottom: 14px; background: #fff; padding: 5px 10px; border-radius: 8px; }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative; color: #fff; padding: 88px 0 110px; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 80% 0%, rgba(217,167,24,0.22), transparent 60%),
    linear-gradient(160deg, #232328 0%, var(--anthrazit-deep) 70%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
.page-hero::after {
  content: ""; position: absolute; left: -10%; right: -10%; bottom: -2px; height: 70px;
  background: var(--bg); transform: skewY(-1.6deg); transform-origin: bottom left;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; font-weight: 700; }
.page-hero p { color: #c9c9c9; max-width: 640px; margin-top: 14px; font-size: 1.1rem; }

/* ---------- Prosa (Impressum/Datenschutz) ---------- */
.prose { max-width: 820px; }
.prose h2 { margin: 40px 0 14px; font-size: 1.6rem; }
.prose h3 { margin: 26px 0 8px; font-size: 1.15rem; }
.prose p, .prose li { color: var(--text); margin-bottom: 12px; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--gold-dark); }
.note {
  background: #fdf6e3; border: 1px solid var(--gold-dark);
  padding: 14px 18px; border-radius: 12px; font-size: 0.9rem; color: #6b5a1e;
  margin: 22px 0;
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Scroll-Cue ---------- */
.scroll-cue {
  position: absolute; left: 50%; bottom: 130px; transform: translateX(-50%);
  z-index: 4; color: rgba(255,255,255,0.55); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; text-align: center;
}
.scroll-cue::after {
  content: ""; display: block; width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 10px auto 0; animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container, .grid-3, .grid-2, footer.site .cols { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .trustbar .container { grid-template-columns: 1fr; gap: 12px; }
  .burger { display: flex; }
  nav.main {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border); padding: 12px 24px 22px;
    box-shadow: 0 16px 30px rgba(31,31,35,0.12);
  }
  nav.main ul { flex-direction: column; align-items: stretch; }
  nav.main a { display: block; padding: 14px 16px; }
  .nav-toggle:checked ~ nav.main { display: block; }
  section.block { padding: 64px 0; }
  .cta-banner { padding: 42px 30px; }
  .stamp { display: none; }
  .hero .container { padding-top: 64px; padding-bottom: 140px; }
  .scroll-cue { display: none; }
}

/* ==================================================
   V4 – Conversion-Update (UX-Audit)
   ================================================== */

/* Sektionspadding kompakter */
section.block { padding: 80px 0; }
@media (max-width: 960px) { section.block { padding: 56px 0; } }

/* Card-Headlines ruhiger */
.card h3 { letter-spacing: 0.04em; font-weight: 500; }

/* Topbar mobil: nur Sterne + Telefon */
@media (max-width: 960px) {
  .topbar span:nth-child(1) { display: none; }
  .topbar .container { justify-content: center; gap: 10px; font-size: 0.8rem; }
}

/* Hero-Fahrzeugbild */
.hero-car {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-car::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.hero-car img { width: 100%; height: 380px; object-fit: cover; display: block; }
.hero-car .hero-car-label {
  position: absolute; left: 16px; bottom: 18px; z-index: 2;
  background: rgba(20,20,23,0.82); backdrop-filter: blur(6px);
  color: #fff; padding: 10px 16px; border-radius: 10px; font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-car .hero-car-label b { color: var(--gold); }
.hero-trust {
  margin-top: 26px; color: #b9b9b9; font-size: 0.88rem; font-weight: 600;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.hero-trust span::before { content: "✓ "; color: var(--gold); font-weight: 800; }

/* Stats-Band (ersetzt Stat-Panel) */
.stats-band {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 30%, var(--gold) 70%, var(--gold-dark));
  position: relative; z-index: 5;
}
.stats-band .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; padding-top: 26px; padding-bottom: 26px; text-align: center;
}
.stats-band .stat strong {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--anthrazit); display: block; line-height: 1.05;
}
.stats-band .stat span {
  font-size: 0.74rem; color: #4d3d06; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
@media (max-width: 960px) {
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .hero-car img { height: 240px; }
}

/* Quick-Chips */
.chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.chip {
  display: inline-block; padding: 12px 22px; border-radius: 100px;
  border: 2px solid var(--border); background: #fff; color: var(--text);
  font-weight: 700; font-size: 0.92rem; text-decoration: none;
  transition: transform 0.18s var(--ease-out), border-color 0.18s var(--ease-out), color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}
.chip:hover {
  border-color: var(--gold); color: var(--gold-dark);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217,167,24,0.25);
}
.chip:active { transform: translateY(0) scale(0.97); }

/* SVG-Icons in Karten */
.card .icon svg { width: 26px; height: 26px; stroke: var(--anthrazit); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Testimonials */
.quote-card .stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card blockquote { font-style: italic; margin: 0 0 14px; }
.quote-card .who { font-size: 0.82rem; color: #9a9a9a; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Fahrzeugbild-Hover-Zoom */
.car-card img { transition: transform 0.4s var(--ease-out); }
.car-card:hover img { transform: scale(1.05); }
.car-card { overflow: hidden; }

/* Kontakt-Formular */
.mini-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.mini-form input, .mini-form select, .mini-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
  color: #fff; font-family: var(--font-body); font-size: 0.95rem;
}
.mini-form input::placeholder, .mini-form textarea::placeholder { color: #9a9a9a; }
.mini-form select { color: #d8d8d8; }
.mini-form select option { color: #1f1f23; }
.mini-form input:focus, .mini-form select:focus, .mini-form textarea:focus { outline: none; border-color: var(--gold); }
.mini-form .full { grid-column: 1 / -1; }
.form-note { font-size: 0.82rem; color: #9a9a9a; margin-top: 10px; }
@media (max-width: 960px) { .mini-form { grid-template-columns: 1fr; } }

/* WhatsApp-Button */
.btn-wa { background: #1f8f4d; color: #fff; }
.btn-wa:hover { background: #17703c; color: #fff; transform: translateY(-3px); }

/* Sticky Mobile Bar */
.sticky-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(20,20,23,0.97); backdrop-filter: blur(8px);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}
.sticky-bar a {
  flex: 1; text-align: center; padding: 14px 8px; border-radius: 12px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.16s var(--ease-out);
}
.sticky-bar a:active { transform: scale(0.97); }
.sticky-bar .call { background: var(--gold); color: var(--anthrazit); }
.sticky-bar .wa { background: #1f8f4d; color: #fff; }
@media (max-width: 960px) {
  .sticky-bar.show { display: flex; }
  body { padding-bottom: 0; }
}

/* Badge global (V4.1) */
.badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: linear-gradient(140deg, var(--gold-light) -30%, var(--gold) 60%, var(--gold-dark) 140%);
  color: var(--anthrazit); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 700; font-size: 0.85rem;
  padding: 8px 16px; border-radius: 8px; box-shadow: 0 8px 20px rgba(217,167,24,0.45);
}

/* ==================================================
   V5 – Premium Motion & Graphics
   ================================================== */

/* Gold-Button: Glanz-Sweep */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-130%) skewX(-20deg);
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0%, 55% { transform: translateX(-130%) skewX(-20deg); }
  75%, 100% { transform: translateX(330%) skewX(-20deg); }
}

/* Hero: gestaffelter Auftritt */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero .eyebrow { animation: heroIn 0.7s cubic-bezier(0.2,0.7,0.2,1) both; }
.hero h1 { animation: heroIn 0.7s cubic-bezier(0.2,0.7,0.2,1) 0.12s both; }
.hero p.lead { animation: heroIn 0.7s cubic-bezier(0.2,0.7,0.2,1) 0.24s both; }
.hero .hero-actions { animation: heroIn 0.7s cubic-bezier(0.2,0.7,0.2,1) 0.36s both; }
.hero .hero-trust { animation: heroIn 0.7s cubic-bezier(0.2,0.7,0.2,1) 0.48s both; }
.hero-car { animation: heroIn 0.9s cubic-bezier(0.2,0.7,0.2,1) 0.3s both; }

/* Hero: Ken-Burns aufs Auto + wanderndes Punktraster */
.hero-car img { animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero::before { animation: gridpan 50s linear infinite; }
@keyframes gridpan { from { background-position: 0 0; } to { background-position: 220px 220px; } }

/* Header schrumpft beim Scrollen */
header.site .brand img { transition: transform 0.3s var(--ease-out); transform-origin: left center; }
header.site.scrolled .brand img { transform: scale(0.78); }

/* Marken-Marquee */
.brands-strip .row {
  flex-wrap: nowrap; justify-content: flex-start; width: max-content;
  animation: marquee 30s linear infinite;
}
.brands-strip .row span { white-space: nowrap; }
.brands-strip:hover .row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Karten-Icons: zeichnen sich beim Reveal + Hover-Kick */
.card .icon { transition: transform 0.3s var(--ease-out); }
.card:hover .icon { transform: rotate(-6deg) scale(1.1); }
.card .icon svg * { stroke-dasharray: 70; stroke-dashoffset: 70; }
.reveal.in .icon svg *, .card:not(.reveal) .icon svg * { animation: dash 1.1s ease 0.2s forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }

/* Stern-Puls im Stats-Band */
.star-pulse { display: inline-block; animation: pulse 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }

/* Chips: gestaffelt einblenden */
.chips .chip { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.reveal.in .chip { opacity: 1; transform: none; }
.reveal.in .chip:nth-child(1) { transition-delay: 0.05s; }
.reveal.in .chip:nth-child(2) { transition-delay: 0.12s; }
.reveal.in .chip:nth-child(3) { transition-delay: 0.19s; }
.reveal.in .chip:nth-child(4) { transition-delay: 0.26s; }
.reveal.in .chip:nth-child(5) { transition-delay: 0.33s; }
.reveal.in .chip:nth-child(6) { transition-delay: 0.4s; }

/* Linien-Auto im Ankauf-Band (zeichnet sich) */
.car-line {
  position: absolute; right: -40px; bottom: -30px; width: 520px; max-width: 60%;
  opacity: 0.5; z-index: 1; pointer-events: none;
}
.car-line path, .car-line circle {
  fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
}
.photo-band .reveal.in ~ .car-line path, .photo-band .reveal.in ~ .car-line circle,
.car-line.drawn path, .car-line.drawn circle {
  animation: cardraw 2.6s ease 0.3s forwards;
}
@keyframes cardraw { to { stroke-dashoffset: 0; } }

/* Sanfter Float für Scroll-Cue & Badges */
.badge { animation: floaty 4s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* Touch: keine "klebenden" Hover-Transforms nach Tap (Emil) */
@media (hover: none) {
  .card:hover, .btn:hover, .chip:hover, nav.main a.btn-nav:hover,
  .car-card:hover img, .card:hover .icon { transform: none; }
}

/* Reduced Motion: alles aus */
@media (prefers-reduced-motion: reduce) {
  .btn:active, .chip:active, nav.main a.btn-nav:active, .sticky-bar a:active { transform: none; }
  .btn-gold::after, .hero .eyebrow, .hero h1, .hero p.lead, .hero .hero-actions, .hero .hero-trust,
  .hero-car, .hero-car img, .hero::before, .brands-strip .row, .star-pulse, .badge,
  .card .icon svg *, .car-line path, .car-line circle {
    animation: none !important; stroke-dashoffset: 0 !important; opacity: 1 !important; transform: none !important;
  }
  .chips .chip { opacity: 1; transform: none; transition: none; }
}

/* ==================================================
   Taste (design-taste-frontend) - trust-first, MOTION 3
   Gratuitous Dauer-Loops aus, ruhigerer Auftritt
   ================================================== */
.btn-gold::after { display: none; }   /* Glanz-Sweep (Endlosschleife) */
.hero::before { animation: none; }    /* wanderndes Punktraster */
.badge { animation: none; }           /* Floaty-Bob */
.star-pulse { animation: none; }      /* Stern-Puls */

/* ==================================================
   V6 - Bold Refresh (sichtbarer Pass)
   ================================================== */
.hero .eyebrow { background: rgba(217,167,24,0.12); border: 1px solid rgba(217,167,24,0.45); padding: 8px 16px; border-radius: 100px; }
.hero .eyebrow::before { display: none; }
.hero h1 { font-size: clamp(3rem, 6.6vw, 5.2rem); letter-spacing: -0.02em; }
.hero h1 em { position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 2px; right: 2px; bottom: 0.04em; height: 0.12em; background: var(--gold); border-radius: 3px; }
.section-head h2 { font-size: clamp(2.3rem, 4.8vw, 3.5rem); letter-spacing: -0.01em; }
.btn-gold { padding: 18px 36px; font-size: 1.06rem; }

/* ==================================================
   V7 - Bold Refresh: ganze Seite
   ================================================== */
/* Pill-Eyebrows überall (wie im Hero) */
.eyebrow { background: rgba(217,167,24,0.12); border: 1px solid rgba(217,167,24,0.45); padding: 8px 16px; border-radius: 100px; }
.eyebrow::before { display: none; }
.section-head.center .eyebrow::after { display: none; }
/* Info-Karten: dauerhafter Gold-Topstrich (nicht nur bei Hover) */
.card:not(.car-card)::after { opacity: 1; }
.card:not(.car-card) h3 { font-size: 1.32rem; }
/* Stats-Band kräftiger */
.stats-band .stat strong { font-size: 2.5rem; }
.stats-band .stat span { font-size: 0.8rem; letter-spacing: 0.14em; }

/* V9 – Stats-Band harmonisiert: mehr Höhe, dominante Zahlen, Trennlinien */
.stats-band .container {
  max-width: 1080px; gap: 0;
  padding-top: 42px; padding-bottom: 40px;
}
.stats-band .stat { position: relative; padding: 0 16px; }
.stats-band .stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 58px; background: rgba(31,31,35,0.22);
}
.stats-band .stat strong {
  font-size: clamp(2.6rem, 4vw, 3.4rem); line-height: 1; margin-bottom: 8px;
}
.stats-band .stat span { font-size: 0.78rem; letter-spacing: 0.16em; opacity: 0.85; }
/* Zähler-Spans IN der Zahl von der Label-Regel ausnehmen */
.stats-band .stat strong span { font-size: inherit; letter-spacing: inherit; opacity: 1; }

/* V10 – Menüleiste dunkles Anthrazit (wie Schriftfarbe), Schrift hell */
header.site {
  background: rgba(31, 31, 35, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand img { background: #fff; padding: 5px 10px; border-radius: 10px; }
.brand .brand-text strong { color: #fff; }
.brand .brand-text strong em { color: var(--gold); }
.brand .brand-text small { color: #a6a6a6; }
nav.main a { color: #e4e4e4; }
nav.main a:hover { background: rgba(255,255,255,0.09); color: #fff; }
nav.main a.active { color: var(--gold); }
.burger span { background: #fff; }
@media (max-width: 960px) {
  nav.main {
    background: var(--anthrazit);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 16px 30px rgba(0,0,0,0.35);
  }
}

/* V11 – CTA "Auto verkaufen" mobil direkt im Header sichtbar */
.nav-cta-mobile { display: none; }
@media (max-width: 960px) {
  .nav-cta-mobile {
    display: inline-block;
    background: linear-gradient(160deg, var(--gold-light) -40%, var(--gold) 55%, var(--gold-dark) 130%);
    color: var(--anthrazit);
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em;
    font-weight: 600; font-size: 0.82rem; padding: 10px 14px; border-radius: 9px;
    text-decoration: none; white-space: nowrap;
    margin-left: auto; margin-right: 10px;
    box-shadow: 0 5px 14px rgba(217,167,24,0.35);
  }
  .nav-cta-mobile:active { transform: scale(0.96); }
  /* Mobil nur Logo-Plakette zeigen, damit nichts kollidiert */
  .brand .brand-text { display: none; }
  .brand { flex-shrink: 0; }
  .brand img { height: 40px; }
  .nav { gap: 10px; }
}

/* V12 – Logo eckig mit Schatten statt Plakette, Header-CTAs auf Logohöhe */
.brand img {
  background: #fff; padding: 6px 12px; box-sizing: border-box;
  height: 52px; border-radius: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
}
nav.main a { white-space: nowrap; }
nav.main a.btn-nav {
  display: inline-flex; align-items: center;
  height: 52px; padding: 0 22px;
}
@media (max-width: 960px) {
  .brand img { height: 44px; padding: 5px 10px; }
  .nav-cta-mobile {
    display: inline-flex; align-items: center;
    height: 44px; padding: 0 16px; border-radius: 0;
  }
}

/* V13 – WhatsApp-Button dynamischer: Icon, Puls-Glow, Shine-Sweep */
.btn-wa {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(160deg, #2eb865 -20%, #1f8f4d 60%, #177a40 130%);
  animation: waPulse 2.6s var(--ease-in-out) infinite;
}
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: waShine 3.4s ease-in-out infinite;
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px rgba(31,143,77,0.55);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(31,143,77,0.45), 0 0 0 0 rgba(46,184,101,0.5); }
  50% { box-shadow: 0 10px 26px rgba(31,143,77,0.45), 0 0 0 14px rgba(46,184,101,0); }
}
@keyframes waShine { 0%, 55% { left: -80%; } 100% { left: 140%; } }
@media (prefers-reduced-motion: reduce) {
  .btn-wa { animation: none; }
  .btn-wa::after { animation: none; display: none; }
}

/* V14 – Logo: Weißraum links wegcroppen, sichtbarer Glow auf dunklem Header */
.brand img {
  width: 139px; height: 52px;
  object-fit: cover; object-position: right center;
  padding: 6px 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.55), 0 0 18px rgba(217,167,24,0.3);
}
@media (max-width: 960px) {
  .brand img { width: 118px; height: 44px; padding: 5px 10px; }
}
/* WhatsApp-Puls kräftiger + größeres Icon */
.btn-wa { animation-duration: 2.2s; }
.btn-wa svg { width: 24px; height: 24px; }
.btn.btn-wa { color: #fff; }

/* V15 – Anti-Slop-Audit: Inline-Icons statt Emojis (Topbar + Sticky-Bar) */
.topbar svg.ti, .sticky-bar svg.ti {
  width: 14px; height: 14px; display: inline-block;
  vertical-align: -2px; margin-right: 7px; color: var(--gold);
}
.sticky-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.sticky-bar .wa svg.ti { color: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(31,143,77,0.45), 0 0 0 0 rgba(46,184,101,0.55); }
  50% { box-shadow: 0 10px 26px rgba(31,143,77,0.45), 0 0 0 18px rgba(46,184,101,0); }
}
@media (max-width: 960px) {
  .stats-band .container { padding-top: 30px; padding-bottom: 28px; gap: 26px 0; }
  .stats-band .stat:nth-child(3)::before { display: none; }
  .stats-band .stat strong { font-size: 2.3rem; }
}
/* Ankauf-Band: Slogan größer, Gold-Unterstrich auf dem Highlight-Wort */
.photo-band h2 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
.photo-band h2 em { position: relative; }
.photo-band h2 em::after { content: ""; position: absolute; left: 2px; right: 2px; bottom: 0.04em; height: 0.12em; background: var(--gold); border-radius: 3px; }

/* ==================================================
   V8 - Mehr Content: Steps, FAQ, Finanzierung
   ================================================== */
/* Ablauf-Steps mit Gold-Nummer */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
@media (hover: hover) { .step:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); } }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-light) -30%, var(--gold) 60%, var(--gold-dark) 140%);
  color: var(--anthrazit); font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  margin-bottom: 18px; box-shadow: 0 8px 20px rgba(217,167,24,0.35);
}
.step h3 { margin-bottom: 9px; font-size: 1.22rem; }
.step p { color: var(--text-soft); font-size: 0.96rem; }
section.block.dark .step { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); backdrop-filter: blur(8px); }
section.block.dark .step h3 { color: #fff; }
section.block.dark .step p { color: #b5b5b5; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* FAQ-Accordion */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 13px; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 2px 24px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.faq details[open] { border-color: var(--gold); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 1.06rem;
  color: var(--anthrazit); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--gold-dark); line-height: 1; transition: transform 0.25s var(--ease-out); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { color: var(--text-soft); padding: 0 0 20px; margin: 0; max-width: 68ch; }

/* Finanzierungs-Panel */
.fin-panel {
  background: linear-gradient(165deg, #26262b, var(--anthrazit-deep));
  color: #fff; border-radius: var(--radius); padding: 38px 36px;
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.fin-panel h3 { color: var(--gold); margin-bottom: 12px; font-size: 1.3rem; }
.fin-panel p { color: #c9c9c9; margin-bottom: 20px; font-size: 0.98rem; }

/* V6 – Echte Fotos */
.card img { transition: transform 0.4s var(--ease-out); }
.card:hover img { transform: scale(1.04); }

/* V7 – Gebäudefoto im Hero */
.hero {
  background:
    linear-gradient(120deg, rgba(20,20,23,0.95) 0%, rgba(20,20,23,0.86) 45%, rgba(31,25,9,0.78) 100%),
    url('img/aussen-front.jpg');
  background-size: cover;
  background-position: center 32%;
}
@media (max-width: 960px) {
  .hero { background-position: 68% 32%; }
}

/* V8 – Gerade Sektionsübergänge (weiße Schräg-Keile entfernt) */
.hero::after, .page-hero::after { display: none; }
.hero .container { padding-bottom: 96px; }
.page-hero { padding: 88px 0; }
@media (max-width: 960px) {
  .hero .container { padding-bottom: 64px; }
  .page-hero { padding: 56px 0; }
}
.scroll-cue { bottom: 28px; }
