/* ============================================================
   YOUR NEXT CAR GmbH — Premium Design System
   Autoankauf Ostfriesland & Niedersachsen
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  --c-primary:     #1a1a2e;
  --c-dark:        #16213e;
  --c-accent:      #c8a96e;
  --c-accent-lt:   #dfc48a;
  --c-accent-dk:   #a8894e;
  --c-bg:          #f8f6f0;
  --c-white:       #ffffff;
  --c-text:        #2c2c2c;
  --c-muted:       #6b7280;
  --c-border:      #e5e0d8;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Montserrat', sans-serif;
  --f-body:    'Lato', sans-serif;

  --t: all 0.3s ease;
  --sh-sm: 0 2px 8px rgba(0,0,0,.08);
  --sh-md: 0 4px 24px rgba(0,0,0,.12);
  --sh-lg: 0 8px 40px rgba(0,0,0,.18);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --mw: 1200px;
  --sp: clamp(64px, 9vw, 120px);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--f-body); color: var(--c-text); background: var(--c-bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* ─── Typography ─── */
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.2; color: var(--c-primary); }
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--f-ui); font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.text-muted  { color: var(--c-muted); }
.text-accent { color: var(--c-accent); }
.text-center { text-align: center; }
.text-white  { color: #fff; }

/* ─── Layout ─── */
.container { width: min(var(--mw), 100% - 48px); margin-inline: auto; }
section { padding-block: var(--sp); }

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.scrolled {
  background: var(--c-primary);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* Logo SVG inline */
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; text-decoration: none; }
.nav-logo-svg { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--f-display); font-size: 1.3rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; display: none;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,.82); font-family: var(--f-ui);
  font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--c-accent); }
.nav-cta {
  background: var(--c-accent) !important; color: var(--c-primary) !important;
  padding: 11px 22px; border-radius: var(--r-sm); font-weight: 700 !important;
  white-space: nowrap; transition: var(--t) !important;
}
.nav-cta:hover {
  background: var(--c-accent-lt) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,169,110,.4);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    display: none; position: fixed; inset: 0; top: 72px;
    background: var(--c-primary); flex-direction: column;
    align-items: center; justify-content: center; gap: 36px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 1rem; }
  .site-nav { background: var(--c-primary); padding: 16px 0; }
}

/* ─── HEADER BANNER ─── */
.header-banner {
  background: var(--c-accent); color: var(--c-primary);
  padding: 10px 0; overflow: hidden; margin-top: 80px;
}
.banner-track {
  display: flex; gap: 0; width: max-content;
  animation: bannerScroll 35s linear infinite;
}
.banner-set { display: flex; gap: 0; }
.banner-item {
  font-family: var(--f-ui); font-size: .77rem; font-weight: 700;
  letter-spacing: .05em; white-space: nowrap;
  padding: 0 28px; border-right: 1px solid rgba(26,26,46,.2);
}
.banner-item::before { content: '✓  '; }
@keyframes bannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
  /* fallback in case banner pushes it */
}
.hero.with-banner { min-height: calc(100vh - 40px); }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, 1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    140deg,
    rgba(26,26,46,.82) 0%,
    rgba(22,33,62,.55) 55%,
    rgba(0,0,0,.2) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; color: #fff;
  max-width: 820px; padding-top: 40px;
}
.hero-eyebrow {
  display: inline-block; background: var(--c-accent); color: var(--c-primary);
  font-family: var(--f-ui); font-size: .73rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 2px; margin-bottom: 28px;
}
.hero h1 {
  color: #fff; font-weight: 300; margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; color: var(--c-accent); }
.hero-sub {
  font-family: var(--f-ui); font-size: clamp(.95rem, 2vw, 1.18rem);
  font-weight: 300; color: rgba(255,255,255,.85);
  margin-bottom: 44px; line-height: 1.65; max-width: 600px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-ui); font-size: .92rem; font-weight: 700;
  padding: 15px 30px; border-radius: var(--r-sm);
  letter-spacing: .03em; transition: var(--t); border: 2px solid transparent;
  text-decoration: none; line-height: 1;
}
.btn-gold {
  background: var(--c-accent); color: var(--c-primary);
  border-color: var(--c-accent);
}
.btn-gold:hover {
  background: var(--c-accent-lt); border-color: var(--c-accent-lt);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,.35);
}
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent; color: var(--c-accent); border-color: var(--c-accent);
}
.btn-outline-gold:hover {
  background: var(--c-accent); color: var(--c-primary);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--c-primary); color: #fff; border-color: var(--c-primary);
}
.btn-dark:hover {
  background: var(--c-dark); transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--c-primary); padding: 22px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78); font-family: var(--f-ui);
  font-size: .78rem; font-weight: 500; letter-spacing: .03em;
}
.trust-item i { color: var(--c-accent); font-size: 1rem; }

/* ─── DEALER BADGES ─── */
.dealer-strip {
  background: #fff; border-bottom: 1px solid var(--c-border); padding: 16px 0;
}
.dealer-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 4vw, 48px); flex-wrap: wrap;
}
.dealer-badge {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-ui); font-size: .78rem; font-weight: 600;
  color: var(--c-primary); opacity: .7; transition: opacity .2s;
}
.dealer-badge:hover { opacity: 1; }
.dealer-badge i { color: var(--c-accent); }

/* ─── SECTION HEADER ─── */
.sec-header { margin-bottom: clamp(40px, 6vw, 72px); }
.sec-eyebrow {
  display: block; font-family: var(--f-ui); font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent);
  margin-bottom: 14px;
}
.sec-header h2 { font-weight: 300; margin-bottom: 16px; }
.sec-header .sub {
  color: var(--c-muted); font-size: 1.05rem; max-width: 620px;
}
.sec-header.centered { text-align: center; }
.sec-header.centered .sub { margin-inline: auto; }
.gold-line {
  width: 52px; height: 2px; background: var(--c-accent);
  margin: 20px auto 0;
}
.sec-header:not(.centered) .gold-line { margin-left: 0; }

/* ─── PROCESS STEPS ─── */
.process-section { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px; counter-reset: step;
}
.step {
  position: relative; padding: 32px 22px; background: var(--c-bg);
  border-radius: var(--r-md); transition: var(--t);
  counter-increment: step; border: 1px solid transparent;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 20px; right: 18px;
  font-family: var(--f-display); font-size: 3.2rem; font-weight: 300;
  color: var(--c-accent); opacity: .22; line-height: 1;
}
.step:hover {
  background: var(--c-primary); border-color: rgba(200,169,110,.2);
  transform: translateY(-5px); box-shadow: var(--sh-md);
}
.step:hover .step-title { color: rgba(255,255,255,.95); }
.step:hover .step-text  { color: rgba(255,255,255,.65); }
.step:hover .step-icon  { color: var(--c-accent); }
.step-icon { font-size: 1.7rem; margin-bottom: 14px; color: var(--c-accent); }
.step-title {
  font-family: var(--f-ui); font-size: .92rem; font-weight: 700;
  color: var(--c-primary); margin-bottom: 8px; line-height: 1.4;
}
.step-text { font-size: .85rem; color: var(--c-muted); line-height: 1.6; }

/* ─── USP CARDS ─── */
.usp-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px;
}
.usp-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 38px 28px;
  transition: var(--t); position: relative; overflow: hidden;
}
.usp-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--c-accent);
  transform: scaleX(0); transition: transform .3s ease;
}
.usp-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.usp-card:hover::after { transform: scaleX(1); }
.usp-icon { font-size: 2.2rem; margin-bottom: 18px; color: var(--c-accent); }
.usp-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.usp-card p  { font-size: .9rem; color: var(--c-muted); }

/* ─── LOCATION SECTION ─── */
.locations-section { background: var(--c-primary); }
.locations-section h2 { color: #fff; }
.locations-section .sec-eyebrow { color: var(--c-accent); }
.locations-section .sub { color: rgba(255,255,255,.65); }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
  gap: 10px; margin-top: 48px;
}
.loc-region {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 26px 22px; transition: var(--t);
}
.loc-region:hover {
  background: rgba(200,169,110,.14); border-color: rgba(200,169,110,.3);
}
.loc-region-name {
  font-family: var(--f-ui); font-size: .7rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(200,169,110,.25);
}
.loc-list { display: flex; flex-direction: column; gap: 6px; }
.loc-list li {
  font-size: .86rem; color: rgba(255,255,255,.72);
  display: flex; align-items: center; gap: 8px;
}
.loc-list li::before {
  content: '→'; color: var(--c-accent); font-size: .72rem; flex-shrink: 0;
}

/* ─── FAQ ─── */
.faq-section { background: #fff; }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; font-family: var(--f-ui);
  font-size: .98rem; font-weight: 600; color: var(--c-primary); transition: color .2s;
}
.faq-q:hover { color: var(--c-accent); }
.faq-icon {
  color: var(--c-accent); font-size: 1.5rem; font-weight: 300;
  flex-shrink: 0; line-height: 1; transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s ease; }
.faq-item.open .faq-a { max-height: 480px; }
.faq-a-inner {
  padding: 0 0 22px; color: var(--c-muted); line-height: 1.8; font-size: .94rem;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--c-primary); text-align: center;
  padding-block: clamp(64px, 9vw, 110px); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; font-weight: 300; margin-bottom: 16px; }
.cta-section .sub {
  color: rgba(255,255,255,.7); font-size: 1.06rem;
  margin-bottom: 44px; max-width: 520px; margin-inline: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT BLOCK ─── */
.contact-block { background: var(--c-bg); padding-block: 72px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
}
.contact-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 20px; background: #fff;
  border-radius: var(--r-md); border: 1px solid var(--c-border); transition: var(--t);
}
.contact-item:hover { border-color: var(--c-accent); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.contact-item i  { font-size: 1.9rem; color: var(--c-accent); margin-bottom: 14px; }
.contact-label   { font-family: var(--f-ui); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 7px; }
.contact-value   { font-weight: 700; color: var(--c-primary); font-size: .95rem; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3); text-decoration: none;
  animation: waPulse 3s ease-in-out infinite; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }
.wa-float i  { color: #fff; font-size: 26px; line-height: 1; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--c-primary); color: #fff; font-family: var(--f-ui);
  font-size: .78rem; font-weight: 600; padding: 9px 15px;
  border-radius: var(--r-sm); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all .25s ease;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none;
  border-left-color: var(--c-primary);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 12px rgba(0,0,0,.3); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.3); }
}
@media (max-width: 768px) { .wa-float { width: 60px; height: 60px; } .wa-float i { font-size: 28px; } }

/* ─── FOOTER ─── */
.site-footer { background: var(--c-dark); color: rgba(255,255,255,.7); padding-block: 64px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-logo-img { height: 34px; width: auto; filter: brightness(0) invert(.85); margin-bottom: 18px; }
.footer-tagline { font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.footer-address { font-size: .84rem; line-height: 1.9; }
.footer-col-title {
  font-family: var(--f-ui); font-size: .7rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .86rem; transition: color .2s; }
.footer-links a:hover { color: var(--c-accent); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .88rem; transition: var(--t);
}
.footer-social a:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(200,169,110,.1); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-bottom {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-size: .78rem;
}
.footer-copy { opacity: .55; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { transition: color .2s; }
.footer-legal a:hover { color: var(--c-accent); }
.footer-network { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-net-title {
  font-family: var(--f-ui); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 10px;
}
.footer-net-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-net-links a { font-size: .76rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-net-links a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

/* ─── FADE-IN SCROLL ANIMATIONS ─── */
.fi { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fi.visible { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: .1s; }
.fi-d2 { transition-delay: .2s; }
.fi-d3 { transition-delay: .3s; }
.fi-d4 { transition-delay: .4s; }
.fi-d5 { transition-delay: .5s; }
.fi-d6 { transition-delay: .6s; }

/* ─── ARTICLE / INNER PAGES ─── */
.page-header {
  background: var(--c-primary); color: #fff;
  padding-block: 110px 72px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(200,169,110,.08) 0%, transparent 60%);
}
.page-header h1 { color: #fff; font-weight: 300; position: relative; }
.breadcrumb {
  font-family: var(--f-ui); font-size: .78rem;
  color: rgba(255,255,255,.45); margin-bottom: 18px; position: relative;
}
.breadcrumb a { color: var(--c-accent); }
.breadcrumb span { margin: 0 8px; opacity: .5; }
.page-lead {
  font-family: var(--f-ui); font-size: 1.08rem; font-weight: 300;
  color: rgba(255,255,255,.75); max-width: 620px; margin: 18px auto 0;
  line-height: 1.65; position: relative;
}

.article-wrap { max-width: 780px; margin-inline: auto; padding-block: 64px; }
.article-wrap h2 { margin-top: 52px; margin-bottom: 22px; font-size: 2rem; }
.article-wrap h3 { margin-top: 36px; margin-bottom: 14px; font-size: 1.4rem; }
.article-wrap p   { font-size: 1.02rem; line-height: 1.82; }
.article-wrap ul, .article-wrap ol { padding-left: 28px; margin-bottom: 20px; }
.article-wrap ul { list-style: disc; }
.article-wrap ol { list-style: decimal; }
.article-wrap li { margin-bottom: 8px; line-height: 1.7; }

.intro-text {
  font-size: 1.15rem; color: var(--c-muted); line-height: 1.85;
  margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--c-border);
}

.checklist { list-style: none !important; padding-left: 0 !important; }
.checklist li {
  padding: 14px 0 14px 36px; position: relative;
  border-bottom: 1px solid var(--c-border); font-size: .95rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; font-size: 1rem; }

/* ─── COMPARISON ─── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.compare-card { border-radius: var(--r-md); padding: 32px; border: 2px solid transparent; }
.compare-card.neg { background: #fef2f2; border-color: #fecaca; }
.compare-card.pos { background: #f0fdf4; border-color: #86efac; }
.compare-card-title { font-family: var(--f-ui); font-weight: 700; margin-bottom: 20px; font-size: 1rem; }
.compare-card.neg .compare-card-title { color: #dc2626; }
.compare-card.pos .compare-card-title { color: #16a34a; }
.compare-list { list-style: none; padding: 0; }
.compare-list li { padding: 9px 0; font-size: .9rem; display: flex; gap: 10px; border-bottom: 1px solid rgba(0,0,0,.05); }
.compare-list li:last-child { border-bottom: none; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }

/* ─── VEHICLE CARDS ─── */
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.vehicle-card { background: #fff; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-border); transition: var(--t); }
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.vehicle-img-wrap { height: 200px; overflow: hidden; background: var(--c-bg); }
.vehicle-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.04); }
.vehicle-body { padding: 20px 22px; }
.vehicle-name { font-family: var(--f-ui); font-weight: 700; font-size: .92rem; margin-bottom: 6px; color: var(--c-primary); }
.vehicle-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .78rem; color: var(--c-muted); margin-bottom: 14px; }
.vehicle-price { font-family: var(--f-display); font-size: 1.45rem; color: var(--c-primary); font-weight: 500; }

/* ─── OPENING HOURS ─── */
.hours-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 30px; }
.hours-title { font-family: var(--f-ui); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--c-border); font-size: .9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 700; color: var(--c-primary); }

/* ─── BRAND GRID ─── */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(138px, 1fr)); gap: 14px; }
.brand-card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 20px 14px; display: flex; flex-direction: column;
  align-items: center; gap: 8px; text-align: center;
  transition: var(--t); color: var(--c-primary);
}
.brand-card:hover { border-color: var(--c-accent); background: var(--c-primary); color: #fff; transform: translateY(-3px); box-shadow: var(--sh-sm); }
.brand-icon { font-size: 1.7rem; }
.brand-name { font-family: var(--f-ui); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

/* ─── SVG MAP (Domain 2) ─── */
.map-container { background: rgba(255,255,255,.04); border-radius: var(--r-lg); padding: 32px; }
.city-dot { fill: var(--c-accent); cursor: pointer; transition: r .2s; }
.city-dot:hover { r: 7; }
.city-label { font-family: var(--f-ui); font-size: 9px; fill: rgba(255,255,255,.75); pointer-events: none; }
.ync-dot { fill: #fff; }
.radius-circle { fill: rgba(200,169,110,.08); stroke: rgba(200,169,110,.28); stroke-width: 1; stroke-dasharray: 5 4; }

/* ─── IMPRESSUM / DATENSCHUTZ ─── */
.legal-content { max-width: 820px; margin-inline: auto; padding-block: 72px; }
.legal-content h2 { margin-top: 48px; margin-bottom: 16px; font-size: 1.5rem; }
.legal-content h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.15rem; }
.legal-content p, .legal-content li { font-size: .96rem; color: var(--c-muted); line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

/* ─── GOOGLE MAPS EMBED ─── */
.maps-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.maps-wrap iframe { display: block; width: 100%; border: none; }

/* ─── INFO BOXES ─── */
.info-box { background: #fff; border: 1px solid var(--c-border); border-left: 4px solid var(--c-accent); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 24px 28px; margin: 32px 0; }
.info-box p { font-size: .94rem; color: var(--c-text); }

/* ─── TWO-COL SECTION ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ─── UTIL ─── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 768px) {
  .hide-sm { display: none !important; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .brands-grid  { grid-template-columns: repeat(3, 1fr); }
}
