/* ============================================================
   PKW Ankauf 24h — Designsystem (Navy/Gold, Outfit + Rubik)
   ============================================================ */

@font-face { font-family: "Outfit"; src: url("/assets/fonts/outfit-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("/assets/fonts/outfit-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("/assets/fonts/outfit-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Rubik"; src: url("/assets/fonts/rubik-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Rubik"; src: url("/assets/fonts/rubik-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
  --navy-950: #0A1230;
  --navy-900: #0F1B3D;
  --navy-800: #1B2A5E;
  --navy-700: #24367A;
  --gold-500: #F4B400;
  --gold-600: #D99C00;
  --gold-100: #FEF3D0;
  --bg: #F8F9FC;
  --surface: #FFFFFF;
  --text: #101828;
  --muted: #475569;
  --line: #E2E8F0;
  --success: #16A34A;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 30px rgba(15, 27, 61, 0.08);
  --shadow-lift: 0 18px 50px rgba(15, 27, 61, 0.14);
  --font-head: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Rubik", "Segoe UI", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.6em; color: var(--navy-900); text-wrap: balance; overflow-wrap: break-word; hyphens: auto; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-800); }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold-500); color: var(--navy-950); padding: 10px 18px; z-index: 100; border-radius: 0 0 8px 0; font-weight: 500; }
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: background-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 6px 18px rgba(244, 180, 0, 0.35); }
.btn-gold:hover { background: var(--gold-600); color: var(--navy-950); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.4); }
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-500); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-950);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(10, 18, 48, 0.35); }
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { width: 280px; height: auto; }
@media (max-width: 1180px) { .brand-logo { width: 220px; } }
@media (max-width: 380px) { .brand-logo { width: 185px; } }

/* Städte-Dropdown */
.nav-sub details { position: relative; }
.nav-sub summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; color: #E6EAF5; font-weight: 500; font-size: 0.98rem; border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}
.nav-sub summary::-webkit-details-marker { display: none; }
.nav-sub summary:hover { color: var(--gold-500); background: rgba(255, 255, 255, 0.06); }
.nav-sub details[open] summary svg { transform: rotate(180deg); }
.nav-sub summary svg { transition: transform 0.2s; }
.main-nav ul.nav-dropdown { display: block; }
.nav-dropdown {
  list-style: none; margin: 0; padding: 10px;
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px; z-index: 60;
  background: var(--navy-900); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.nav-dropdown a { border-radius: 8px; }
@media (max-width: 1150px) {
  .nav-sub summary { padding: 16px 12px; font-size: 1.15rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); border-radius: 0; }
  .nav-dropdown { position: static; box-shadow: none; border: 0; background: rgba(255, 255, 255, 0.04); border-radius: 10px; }
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.main-nav a:not(.btn) {
  display: block; padding: 10px 12px; color: #E6EAF5; text-decoration: none; white-space: nowrap;
  font-weight: 500; font-size: 0.98rem; border-radius: 8px; transition: color 0.2s, background-color 0.2s;
}
.main-nav a:not(.btn):hover { color: var(--gold-500); background: rgba(255, 255, 255, 0.06); }
.nav-cta { margin-left: 10px; padding: 10px 18px; min-height: 44px; font-size: 0.95rem; white-space: nowrap; }
.header-phone { display: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px; background: transparent; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }

@media (max-width: 1150px) {
  .nav-toggle { display: flex; }
  .header-phone {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; margin-left: auto; border-radius: 50%;
    background: var(--gold-500); color: var(--navy-950);
  }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--navy-950);
    transform: translateX(100%); transition: transform 0.28s ease; overflow-y: auto;
    padding: 24px; margin: 0;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a:not(.btn) { padding: 16px 12px; font-size: 1.15rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); border-radius: 0; }
  .nav-cta-row { margin-top: 18px; }
  .nav-cta { width: 100%; margin: 0; font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy-950); color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture { display: contents; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 18, 48, 0.82) 8%, rgba(10, 18, 48, 0.35) 55%, rgba(10, 18, 48, 0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
  padding-block: clamp(48px, 8vw, 104px);
}
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero .accent { color: var(--gold-500); position: relative; }
.hero-inner > div { min-width: 0; }
.hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: #D6DCEC; max-width: 54ch; }
.hero-usps { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 22px 0 28px; }
.hero-usps li { display: flex; align-items: center; gap: 9px; font-weight: 500; color: #EDF0F8; font-size: 0.98rem; }
.hero-usps svg { color: var(--gold-500); flex-shrink: 0; }
@media (prefers-reduced-motion: no-preference) {
  .hero-usps li { opacity: 0; animation: usp-dash-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .hero-usps li:nth-child(1) { animation-delay: 0.4s; }
  .hero-usps li:nth-child(2) { animation-delay: 2.4s; }
  .hero-usps li:nth-child(3) { animation-delay: 4.4s; }
  .hero-usps li svg { transform: scale(0); animation: usp-check-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .hero-usps li:nth-child(1) svg { animation-delay: 0.75s; }
  .hero-usps li:nth-child(2) svg { animation-delay: 2.75s; }
  .hero-usps li:nth-child(3) svg { animation-delay: 4.75s; }
}
@keyframes usp-dash-in {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes usp-check-pop {
  from { transform: scale(0); }
  60% { transform: scale(1.35); }
  to { transform: scale(1); }
}
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.hero-trust-stars { color: var(--gold-500); letter-spacing: 2px; font-size: 1.05rem; }
.hero-trust p { margin: 0; font-size: 0.92rem; color: #C3CBE0; }
.hero-trust strong { color: #fff; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 40px 56px; }
  /* Bild hängt an der Textspalte statt am Hero: Auto liegt an der Bild-Unterkante,
     unter dem Text sind 290px fürs Auto reserviert → das Auto ist auf JEDER Breite
     und Texthöhe direkt über dem Formular sichtbar, nie dahinter. Das versteckte
     <picture> lädt dieselbe URL vor (ein Request, gecacht). */
  .hero-media { display: none; }
  .hero { background: var(--navy-950); }
  .hero-inner > div:first-child {
    position: relative;
    margin-inline: calc(clamp(16px, 4vw, 32px) * -1);
    padding-inline: clamp(16px, 4vw, 32px);
    padding-bottom: 120px;
    background:
      linear-gradient(180deg, rgba(10, 18, 48, 0.92) 0%, rgba(10, 18, 48, 0.78) 30%, rgba(10, 18, 48, 0.45) 50%, rgba(10, 18, 48, 0.15) 68%, rgba(10, 18, 48, 0.1) 92%, rgba(10, 18, 48, 0.4) 100%),
      url('/assets/img/hero-mobil-sunset-2.webp') center bottom / cover no-repeat;
  }
  .hero-inner { gap: 24px; }
  /* Trust-Zeile steht im hellen Sonnen-Bereich des Bildes */
  .hero-trust p, .hero-usps li { text-shadow: 0 1px 10px rgba(10, 18, 48, 0.85); }
}

/* ---------- Lead-Card (Formular) ---------- */
.lead-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg); padding: 10px;
  box-shadow: var(--shadow-lift);
}
.lead-card > * { background: var(--surface); }
.lead-card-head { border-radius: calc(var(--radius-lg) - 8px) calc(var(--radius-lg) - 8px) 0 0; padding: 26px 26px 4px; }
.lead-card-kicker { color: var(--gold-600); font-weight: 600; font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.lead-card-title { margin-bottom: 4px; font-size: 1.5rem; }
.lead-card-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.lead-form { border-radius: 0 0 calc(var(--radius-lg) - 8px) calc(var(--radius-lg) - 8px); padding: 18px 26px 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field label { display: block; font-weight: 500; font-size: 0.85rem; margin-bottom: 5px; color: var(--navy-900); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s; min-height: 48px;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(36, 54, 122, 0.15);
}
.form-field input.is-invalid { border-color: #DC2626; }
.form-error { color: #DC2626; font-size: 0.9rem; margin: 0 0 12px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
.lead-success { border-radius: 0 0 calc(var(--radius-lg) - 8px) calc(var(--radius-lg) - 8px); padding: 30px 26px; text-align: center; }
.lead-success svg { color: var(--success); margin-inline: auto; margin-bottom: 12px; }
.form-row-1 { grid-template-columns: 1fr; }
.form-field input[data-marke-frei], .form-field input[data-modell-frei] { margin-top: 8px; }
/* Honeypot: für Menschen unsichtbar, Bots füllen es aus */
.form-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-field select:disabled { color: var(--muted); background: #F1F4F9; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 96px); }
.section-alt { background: var(--surface); }
.section-navy { background: var(--navy-950); color: #D6DCEC; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.centered { margin-inline: auto; text-align: center; }
.kicker { color: var(--gold-600); font-weight: 600; font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.section-navy .kicker { color: var(--gold-500); }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.section-navy .section-sub { color: #B9C2DA; }

/* ---------- Steps (Ablauf) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step-card {
  background: var(--surface); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-soft); position: relative; counter-increment: step;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: var(--gold-500); display: block; margin-bottom: 8px; line-height: 1;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { margin: 0; color: var(--muted); font-size: 0.97rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------- USP-Grid ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.usp-card {
  background: var(--surface); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-soft); transition: box-shadow 0.25s, translate 0.25s;
}
.usp-card:hover { box-shadow: var(--shadow-lift); translate: 0 -3px; }
.usp-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--gold-100);
  display: grid; place-items: center; margin-bottom: 16px;
}
.usp-icon img, .usp-icon svg { width: 30px; height: 30px; }
.usp-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.usp-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Reviews ---------- */
.reviews-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--surface); border-radius: 999px; padding: 10px 22px; box-shadow: var(--shadow-soft); margin-bottom: 34px; }
.reviews-badge .stars { color: var(--gold-500); font-size: 1.1rem; letter-spacing: 2px; }
.reviews-badge span { font-weight: 500; font-size: 0.95rem; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.review-card { background: var(--surface); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 12px; }
.review-card .stars { color: var(--gold-500); letter-spacing: 2px; }
.review-card blockquote { margin: 0; font-size: 0.97rem; color: var(--text); flex: 1; }
.review-card figcaption { font-weight: 600; font-family: var(--font-head); font-size: 0.92rem; color: var(--navy-900); display: flex; align-items: center; gap: 8px; }
.review-card figcaption svg { color: #4285F4; }

/* ---------- Städte-Grid ---------- */
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; list-style: none; padding: 0; margin: 0; }
.city-grid a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 16px 18px; font-weight: 500; font-family: var(--font-head);
  color: var(--navy-900); text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 56px;
}
.city-grid a:hover { border-color: var(--gold-500); box-shadow: var(--shadow-soft); }
.city-grid svg { color: var(--gold-600); flex-shrink: 0; }

/* ---------- Marken-Band ---------- */
.brands-band { display: flex; flex-wrap: wrap; gap: 12px; }
.brands-band span {
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12);
  color: #D6DCEC; border-radius: 999px; padding: 9px 20px; font-size: 0.92rem; font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-list details {
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-soft);
  margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--navy-900);
  min-height: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; width: 12px; height: 12px; flex-shrink: 0;
  border-right: 2.5px solid var(--gold-600); border-bottom: 2.5px solid var(--gold-600);
  transform: rotate(45deg); transition: transform 0.25s; margin-top: -4px;
}
.faq-list details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-list .faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq-list .faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA-Finale ---------- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.cta-final p { max-width: 56ch; margin-inline: auto; }
.cta-final .hero-cta-row { justify-content: center; margin-top: 28px; }

/* ---------- Content-/Artikel-Seiten ---------- */
.page-hero { background: var(--navy-950); color: #fff; padding-block: clamp(40px, 6vw, 72px); }
.page-hero h1 { color: #fff; margin-bottom: 0.3em; }
.page-hero .accent { color: var(--gold-500); }
.page-hero p { color: #C3CBE0; max-width: 62ch; margin-bottom: 0; font-size: 1.08rem; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 18px; color: #8E99B8; }
.breadcrumbs a { color: #B9C2DA; }
.breadcrumbs span[aria-current] { color: #E6EAF5; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; color: var(--navy-800); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 0.95rem; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--font-head); color: var(--navy-900); background: var(--gold-100); }
.prose ul li, .prose ol li { margin-bottom: 0.4em; }
.prose blockquote { border-left: 4px solid var(--gold-500); margin: 1.4em 0; padding: 4px 0 4px 18px; color: var(--muted); }

.layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(32px, 4vw, 56px); align-items: start; }
.layout-sidebar > * { min-width: 0; }
.sidebar-sticky { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 980px) { .layout-sidebar { grid-template-columns: 1fr; } .sidebar-sticky { position: static; } }

/* Distrikt-Chips (Städteseiten) */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 14px 0 0; }
.chip-list li { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 0.88rem; color: var(--muted); }

/* Info-Card (Anfahrt etc.) */
.info-card { background: var(--gold-100); border-radius: var(--radius); padding: 24px 26px; margin-block: 28px; }
.info-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.info-card p:last-child { margin-bottom: 0; }

/* Ratgeber-Karten */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.article-card {
  background: var(--surface); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow 0.25s, translate 0.25s;
}
.article-card:hover { box-shadow: var(--shadow-lift); translate: 0 -3px; }
.article-card h3 { margin: 0; }
.article-card h3 a { text-decoration: none; color: var(--navy-900); }
.article-card p { color: var(--muted); font-size: 0.95rem; margin: 0; flex: 1; }
.article-card .meta { font-size: 0.82rem; color: var(--gold-600); font-weight: 600; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; }
.article-card .more { font-weight: 600; font-family: var(--font-head); font-size: 0.92rem; color: var(--navy-800); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

/* Leistungen */
.service-block { background: var(--surface); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-soft); margin-bottom: 24px; scroll-margin-top: calc(var(--header-h) + 20px); }
.service-block h2 { display: flex; align-items: center; gap: 14px; font-size: 1.35rem; }
.service-block h2 img { width: 34px; height: 34px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #B9C2DA; margin-top: clamp(56px, 8vw, 96px); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-block: clamp(48px, 6vw, 72px); }
.footer-brand p { font-size: 0.92rem; margin-top: 18px; }
.footer-nap { line-height: 1.7; }
.footer-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-500); font-family: var(--font-head); margin: 0 0 14px; font-weight: 600; }
.footer-title + .footer-links + .footer-title { margin-top: 26px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 2px; }
.footer-links a { color: #B9C2DA; text-decoration: none; font-size: 0.94rem; display: inline-block; padding: 6px 0; min-height: 32px; }
.footer-links a:hover { color: var(--gold-500); }
.footer-contact a { font-weight: 500; color: #E6EAF5; }
.footer-hours { font-size: 0.88rem; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, 0.07); color: #E6EAF5; transition: background-color 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-social .social-facebook:hover { background: #1877F2; color: #fff; }
.footer-social .social-instagram:hover { background: radial-gradient(circle at 30% 110%, #FDD764 0%, #FA7E1E 30%, #D62976 60%, #962FBF 85%); color: #fff; }
.footer-social .social-youtube:hover { background: #FF0000; color: #fff; }
.footer-social .social-x:hover { background: #111; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-block: 20px; font-size: 0.85rem; }
.footer-bottom p { margin: 0; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Floating Buttons (Pfeil, Anruf, WhatsApp) ---------- */
.fab-cluster { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab-row { display: flex; gap: 12px; }
.fab {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  color: #fff; border: 0; cursor: pointer; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
}
.fab:hover { transform: scale(1.06); color: #fff; }
.fab-wa { background: #25D366; }
.fab-call { background: var(--gold-500); color: var(--navy-950); }
.fab-call:hover { color: var(--navy-950); }
.fab-top { background: var(--navy-800); width: 46px; height: 46px; }
.fab-top[hidden] { display: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.check-list svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }

/* ---------- Rotierende Hero-Wörter ---------- */
.rotate-word { display: inline-block; min-width: 7ch; transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s; will-change: transform, opacity; }
.rotate-word.word-in { transform: translateX(0); opacity: 1; }
.rotate-word.word-out { transform: translateX(-40px); opacity: 0; }

/* ---------- Avatar-Stack (Hero-Trust) ---------- */
.avatar-stack { display: flex; flex-shrink: 0; }
.avatar-stack img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--navy-950); margin-left: -12px; box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.avatar-stack img:first-child { margin-left: 0; }

/* ---------- Marquee (generisch) ---------- */
.marquee { position: relative; overflow: hidden; cursor: grab; user-select: none; -webkit-user-select: none; }
.marquee.is-dragging { cursor: grabbing; }
.marquee-track { display: flex; align-items: stretch; width: max-content; will-change: transform; }
.marquee-fade::before, .marquee-fade::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(40px, 8vw, 120px); z-index: 2; pointer-events: none;
}
.marquee-fade::before { left: 0; background: linear-gradient(90deg, var(--fade-color, var(--bg)), transparent); }
.marquee-fade::after { right: 0; background: linear-gradient(270deg, var(--fade-color, var(--bg)), transparent); }

/* ---------- Marken-Band unter dem Hero ---------- */
.brands-strip { background: var(--navy-900); padding-block: 22px; --fade-color: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.06); }
.brands-strip .marquee-track { gap: clamp(36px, 5vw, 64px); align-items: center; padding-inline: 32px; }
.brands-strip img {
  height: 34px; width: auto; opacity: 0.75;
  filter: invert(1) brightness(1.6); transition: opacity 0.2s;
}
.brands-strip img:hover { opacity: 1; }

/* ---------- Schritte mit Bildern ---------- */
.steps-media { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step-media-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); counter-increment: step; display: flex; flex-direction: column;
  transition: box-shadow 0.25s, translate 0.25s;
}
.step-media-card:hover { box-shadow: var(--shadow-lift); translate: 0 -4px; }
.step-media-card .step-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.step-media-card .step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.step-media-card:hover .step-img img { transform: scale(1.04); }
.step-media-card .step-img::after {
  content: "0" counter(step); position: absolute; left: 16px; bottom: -18px;
  width: 56px; height: 56px; border-radius: 16px; background: var(--gold-500); color: var(--navy-950);
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  display: grid; place-items: center; box-shadow: 0 8px 20px rgba(244, 180, 0, 0.4);
}
.step-media-card .step-body { padding: 34px 24px 26px; }
.step-media-card h3 { margin-bottom: 8px; }
.step-media-card p { margin: 0; color: var(--muted); font-size: 0.97rem; }
@media (max-width: 820px) { .steps-media { grid-template-columns: 1fr; } }

/* ---------- USP-Media-Grid (3×2, Bilder) ---------- */
.usp-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp-media-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s, translate 0.25s;
}
.usp-media-card:hover { box-shadow: var(--shadow-lift); translate: 0 -4px; }
.usp-media-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.usp-media-card:hover > img { transform: scale(1.05); }
.usp-media-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,48,0) 30%, rgba(10,18,48,0.88) 82%);
}
.usp-media-body { position: relative; z-index: 1; padding: 22px 22px 20px; color: #fff; }
.usp-media-body h3 { color: #fff; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; font-size: 1.12rem; }
.usp-media-body h3 img { width: 26px; height: 26px; filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(5deg); }
.usp-media-body p { margin: 0; font-size: 0.92rem; color: #D6DCEC; }
@media (max-width: 980px) { .usp-media-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .usp-media-grid { grid-template-columns: 1fr; } .usp-media-card { min-height: 240px; } }

/* ---------- Video-Sektion (dunkle Karte wie Bestand, veredelt) ---------- */
.video-panel {
  background: var(--navy-950); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; box-shadow: var(--shadow-lift);
}
.video-panel .video-side { position: relative; align-self: stretch; min-height: 340px; }
.video-panel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-panel .video-copy { padding: clamp(28px, 4vw, 56px); color: #D6DCEC; }
.video-panel .video-copy h2 { color: #fff; }
.video-panel .check-list li { color: #D6DCEC; }
@media (max-width: 900px) { .video-panel { grid-template-columns: 1fr; } .video-panel .video-side { min-height: 0; aspect-ratio: 16/9; position: relative; } }

/* ---------- Bewertungs-Marquee ---------- */
.reviews-marquee { --fade-color: var(--surface); padding-block: 10px; }
.reviews-marquee .marquee-track { gap: 22px; padding-inline: 10px; align-items: stretch; }
.review-slide {
  width: min(360px, 82vw); flex-shrink: 0; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-slide .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 1.02rem; }
.review-slide blockquote { margin: 0; font-size: 0.96rem; flex: 1; }
.review-slide .review-person { display: flex; align-items: center; gap: 12px; }
.review-slide .review-initials {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--navy-800); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px;
}
.review-slide .review-person strong { font-family: var(--font-head); font-size: 0.94rem; color: var(--navy-900); display: block; }
.review-slide .review-person span { font-size: 0.8rem; color: var(--muted); }
.review-slide .g-logo { margin-left: auto; flex-shrink: 0; }

/* ---------- Städte-Sektion (zentriert, kein Waisenkind) ---------- */
.city-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; list-style: none; padding: 0; margin: 0; }
.city-flex li { flex: 0 1 auto; }
.city-flex a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 13px 22px; font-weight: 500; font-family: var(--font-head);
  color: var(--navy-900); text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  min-height: 50px;
}
.city-flex a:hover { border-color: var(--gold-500); box-shadow: var(--shadow-soft); background: var(--gold-100); }
.city-flex svg { color: var(--gold-600); flex-shrink: 0; }

/* ---------- Städteseiten-Hero mit Bild ---------- */
.page-hero.has-image { position: relative; overflow: hidden; }
.page-hero.has-image .page-hero-media { position: absolute; inset: 0; }
.page-hero.has-image .page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.page-hero.has-image .page-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,18,48,0.85) 15%, rgba(10,18,48,0.45) 65%, rgba(10,18,48,0.6) 100%);
}
.page-hero.has-image .container { position: relative; z-index: 1; }
.page-hero.has-image { padding-block: clamp(56px, 9vw, 110px); }

/* ---------- CTA mit Bild ---------- */
.cta-image { position: relative; overflow: hidden; }
.cta-image .cta-bg { position: absolute; inset: 0; }
.cta-image .cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.cta-image .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(10,18,48,0.55); }
.cta-image .container { position: relative; z-index: 1; }

/* ---------- Scroll-Reveal (nur aktiv wenn JS läuft: .js-reveal am html) ---------- */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Zahlen-Band ---------- */
.stats-band { padding-block: clamp(36px, 5vw, 56px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0; }
.stat { text-align: center; }
.stat dd { margin: 0; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold-500); line-height: 1.1; }
.stat dt { font-size: 0.9rem; color: #B9C2DA; margin-bottom: 6px; order: 2; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; } }

/* ---------- Wir kaufen jedes Auto ---------- */
.usp-icon { color: var(--gold-600); }
.condition-grid { margin-bottom: 8px; }
.condition-note { text-align: center; color: var(--muted); margin: 26px 0 0; }
.condition-note a { font-weight: 600; }

/* ---------- Vergleichstabelle ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.compare-table { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; background: var(--surface); font-size: 0.96rem; }
.compare-table th, .compare-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th { font-family: var(--font-head); font-size: 1.02rem; color: var(--muted); background: var(--surface); padding-top: 20px; }
.compare-table tbody th { font-family: var(--font-head); font-weight: 600; color: var(--navy-900); width: 26%; }
.compare-table tbody td { color: var(--muted); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .compare-us { background: var(--gold-100); color: var(--navy-900); font-weight: 500; }
.compare-table thead .compare-us { color: var(--navy-900); font-weight: 700; }
.compare-table tbody .compare-us { position: relative; padding-left: 44px; }
.compare-table tbody .compare-us::after {
  content: ""; position: absolute; left: 18px; top: 20px; width: 15px; height: 8px;
  border-left: 2.5px solid var(--success); border-bottom: 2.5px solid var(--success);
  transform: rotate(-45deg);
}
.compare-cta { margin-top: 32px; }
/* Mobil: gestapelte Blöcke statt seitlichem Scroll (unsere Spalte wäre sonst versteckt) */
@media (max-width: 680px) {
  .compare-table { min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table tbody tr { display: block; padding: 18px 18px 16px; border-bottom: 1px solid var(--line); }
  .compare-table tbody tr:last-child { border-bottom: 0; }
  .compare-table tbody th, .compare-table tbody td { display: block; width: auto; border: 0; padding: 0; }
  .compare-table tbody th { margin-bottom: 8px; font-size: 1.02rem; }
  .compare-table tbody td::before { content: "Privatverkauf: "; font-weight: 600; color: var(--text); }
  .compare-table tbody td { margin-bottom: 6px; }
  .compare-table tbody td.compare-us { background: var(--gold-100); border-radius: 10px; padding: 10px 12px 10px 40px; margin-bottom: 0; }
  .compare-table tbody td.compare-us::before { content: "PKW Ankauf 24h: "; color: var(--navy-900); }
  .compare-table tbody .compare-us::after { left: 14px; top: 17px; }
}

/* ---------- WhatsApp-Schnellbewertung ---------- */
.wa-panel {
  background: var(--navy-950); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 4vw, 56px); color: #D6DCEC; overflow: hidden; position: relative;
}
.wa-panel::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 70%);
  pointer-events: none;
}
.wa-panel h2 { color: #fff; }
.wa-steps { list-style: none; padding: 0; margin: 22px 0 28px; }
.wa-steps li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.wa-steps li span {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(37, 211, 102, 0.16); border: 1.5px solid #25D366; color: #25D366;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  display: grid; place-items: center; margin-top: 1px;
}
.btn-wa { background: #25D366; color: #073B1C; }
.btn-wa:hover { background: #1FBF5B; color: #073B1C; }
.wa-visual { display: flex; align-items: center; position: relative; z-index: 1; }
.wa-chat { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.wa-bubble {
  max-width: 92%; padding: 13px 16px; border-radius: 16px; font-size: 0.93rem; line-height: 1.5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.wa-bubble-out { align-self: flex-end; background: #DCF8C6; color: #10331B; border-bottom-right-radius: 4px; }
.wa-bubble-in { align-self: flex-start; background: #fff; color: var(--text); border-bottom-left-radius: 4px; }
.wa-bubble-offer { border: 2px solid #25D366; }
.wa-bubble strong { color: var(--navy-900); }
@media (max-width: 880px) { .wa-panel { grid-template-columns: 1fr; } .wa-bubble { max-width: 100%; } }

/* ---------- Standort & Karte ---------- */
.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.location-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column; align-items: flex-start;
}
.location-card h3 { font-size: 1.35rem; margin-bottom: 16px; }
.location-card address { font-style: normal; margin: 0 0 4px; }
.location-line { display: flex; align-items: flex-start; gap: 12px; margin: 0 0 14px; color: var(--text); }
.location-line svg { color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }
.location-line a { font-weight: 500; }
.location-note { color: var(--muted); font-size: 0.93rem; margin: 6px 0 22px; }
.location-card .btn { margin-top: auto; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--navy-950); }
.location-map svg { width: 100%; height: 100%; min-height: 320px; display: block; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .map-pulse { animation: map-pulse 2.4s ease-out infinite; }
}
@keyframes map-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } }

/* ---------- Ansprechpartner (Oktay) ---------- */
.owner-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.owner-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.owner-copy .check-list { margin: 0 0 26px; }
@media (max-width: 880px) {
  .owner-grid { grid-template-columns: 1fr; }
  .owner-photo { max-width: 380px; margin-inline: auto; width: 100%; }
}

/* ---------- Ghost-Button auf hellem Grund ---------- */
.btn-ghost-dark { background: transparent; color: var(--navy-800); border: 2px solid var(--navy-800); }
.btn-ghost-dark:hover { background: var(--navy-800); color: #fff; }

/* ---------- Ads-Landingpage (minimal) + Danke-Seite ---------- */
.lp-header .header-inner { justify-content: space-between; }
.lp-header-cta { display: inline-flex; }
@media (max-width: 560px) {
  .lp-header .brand-logo { width: 180px; }
  .lp-header-cta { padding: 0; width: 48px; height: 48px; min-height: 48px; border-radius: 50%; }
  .lp-cta-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}
.lp-footer { margin-top: 0; }
.lp-footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.lp-footer a { color: #B9C2DA; }
.danke-section { min-height: 60vh; }
.danke-inner { max-width: 640px; text-align: center; }
.danke-check { color: var(--success); margin-inline: auto; margin-bottom: 18px; }
.danke-lead { font-size: 1.1rem; color: var(--muted); }
.danke-next { text-align: left; background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 26px 30px; margin: 30px 0; }
.danke-next h2 { font-size: 1.2rem; }
.danke-next ol { margin: 0; padding-left: 1.3em; }
.danke-next li { margin-bottom: 8px; }
.danke-cta { justify-content: center; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
