/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #15151a;   /* Carbon / Anthrazit */
  --navy2:  #1d1e25;
  --gold:   #a8323d;   /* Bordeaux (Markenrot, Akzent) */
  --gold2:  #be3f4a;   /* Bordeaux hover */
  --rose:   #cf6f77;   /* Heller Rotton für Text/Zahlen auf Dunkel */
  --white:  #ffffff;
  --off:    #f5f3ef;   /* Warmes Creme */
  --text:   #1e2535;
  --muted:  #6b7280;
  --border: #e7e1d7;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: var(--muted); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  padding: 14px 32px;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,50,61,.35); }

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-mark { width: 124px; height: auto; display: block; }
.logo-word { font-size: 1.15rem; font-weight: 600; color: var(--white); letter-spacing: .01em; }
.logo-gmbh { font-size: .72rem; font-weight: 400; color: rgba(255,255,255,.55); letter-spacing: .04em; }
/* Alt-Klassen für Footer-Kompatibilität */
.logo-main { font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.logo-sub   { font-size: .65rem; font-weight: 400; color: var(--rose); letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold2) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(21,21,26,.94) 0%, rgba(40,18,22,.72) 55%, rgba(21,21,26,.88) 100%),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80&auto=format') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  color: var(--rose);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 20px;
  backdrop-filter: blur(8px);
}
.badge-score { display: block; font-size: 1.3rem; font-weight: 700; color: var(--rose); line-height: 1.2; }
.badge-label { display: block; font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 2px; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ─── SECTIONS ─── */
.section { padding: 96px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--off); }

.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--rose); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-intro { max-width: 560px; color: rgba(255,255,255,.65); margin-bottom: 48px; font-size: 1.05rem; }

/* ─── TWO COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ─── ÜBER UNS ─── */
.col-text p { margin-bottom: 16px; }
.check-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.about-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-icon {
  width: 72px; height: 72px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--rose);
}
.about-card-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.about-card-addr { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.8; }
.about-card-addr a { color: var(--rose); font-weight: 600; }
.about-card-addr a:hover { color: var(--gold2); }

/* ─── FAHRZEUGE / MOBILE.DE ─── */
.mobilede-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.mobilede-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 40px;
}
.mobilede-logo-wrap { margin-bottom: 20px; }
.mobilede-icon { height: 30px; }
.mobilede-card h3 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.mobilede-card p { color: rgba(255,255,255,.6); margin-bottom: 28px; font-size: .95rem; }
.mobilede-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 700; color: var(--rose); }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); }

.mobilede-features { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
}
.feature-item strong { color: var(--white); display: block; margin-bottom: 2px; font-size: .95rem; }
.feature-item p { color: rgba(255,255,255,.5); font-size: .85rem; margin: 0; }

/* ─── LEISTUNGEN ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: .9rem; line-height: 1.6; }

/* ─── BEWERTUNGEN ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-card p { font-size: .9rem; line-height: 1.65; flex: 1; font-style: italic; }
.reviewer { font-weight: 600; font-size: .85rem; color: var(--text); }
.review-source {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.rating-summary {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rating-logo { width: 24px; height: 24px; }
.mobilede-pill, .autoscout-pill {
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem; color: white;
}
.mobilede-pill { background: #005ca9; }
.autoscout-pill { background: #ff6b00; }
.rating-item strong { display: block; font-size: 1.05rem; color: var(--text); }
.rating-item span { font-size: .8rem; color: var(--muted); }

/* ─── KONTAKT ─── */
.kontakt-grid { gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin: 32px 0 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--text); font-size: .9rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .95rem; }
.contact-item a:hover { color: var(--gold); }

.hours-table { border-collapse: collapse; }
.hours-table td { padding: 3px 20px 3px 0; font-size: .9rem; color: var(--muted); }
.hours-table td:first-child { color: var(--text); font-weight: 500; }

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-link { display: block; }
.map-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 48px;
  gap: 16px;
  transition: background var(--transition);
}
.map-inner:hover { background: linear-gradient(135deg, var(--navy2) 0%, #223060 100%); }
.map-inner svg { color: var(--rose); }
.map-inner p { color: rgba(255,255,255,.7); font-size: 1rem; }
.map-inner span { color: var(--rose); font-size: .9rem; font-weight: 600; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 48px 0;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; flex-direction: column; line-height: 1.1; align-items: center; }
.footer-addr { color: rgba(255,255,255,.5); font-size: .875rem; }
.footer-addr a { color: var(--rose); }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-copy a { color: rgba(255,255,255,.4); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mobilede-preview { grid-template-columns: 1fr; }
  .mobilede-stats { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-grid { gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 12px; }
  .rating-summary { gap: 20px; }

  .main-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(10,14,26,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.1rem; padding: 14px 16px; }
  .nav-cta { text-align: center; margin-left: 0 !important; }
  .burger { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .col-visual { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
