/* ──────────────────────────────────────────────────────────────
   style.css – Mobile-HH (combined from index + autoverkaufen)
   ────────────────────────────────────────────────────────────── */

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

:root {
  --ink: #14161A;
  --ink-2: #2A2D33;
  --charcoal: #3C4048;
  --gray: #767C87;
  --gray-soft: #9AA0AA;
  --gray-light: #F5F4F1;
  --gray-mist: #EFEDE8;
  --border: #E6E2DB;
  --white: #FFFFFF;
  --gold: #A9824C;
  --gold-dim: #8A6B3E;
  --gold-tint: #F3ECDD;
  --accent: #25D366;
  --accent-dk: #1FAE57;
  --danger: #C4483A;
  --shadow-sm: 0 1px 3px rgba(20, 21, 24, 0.06);
  --shadow-md: 0 6px 24px rgba(20, 21, 24, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 21, 24, 0.16);
  --radius: 10px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'DM Serif Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-body);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── UTILITY ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--alt {
  background: var(--gray-light);
}

.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}

.section--ink .eyebrow {
  color: var(--gold);
}

.section--ink .eyebrow::before {
  background: var(--gold);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.65rem);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section--ink .section-head h2 {
  color: var(--white);
}

.section-head p {
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.section--ink .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--gray-light);
}

.section--ink .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.section--ink .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  background: var(--accent);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-danger:hover {
  background: #A53C30;
  transform: translateY(-2px);
}

/* ── Pulsing / scaling buttons ── */
@keyframes mhh-pulse-scale-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(169, 130, 76, 0.55);
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(169, 130, 76, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(169, 130, 76, 0);
    transform: scale(1);
  }
}

@keyframes mhh-pulse-scale-accent {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

@keyframes mhh-pulse-scale-red {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 72, 58, 0.55);
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(196, 72, 58, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 72, 58, 0);
    transform: scale(1);
  }
}

@keyframes mhh-pulse-scale-ink {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 22, 26, 0.55);
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(20, 22, 26, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 22, 26, 0);
    transform: scale(1);
  }
}

.btn-pulse-gold {
  animation: mhh-pulse-scale-gold 2.2s ease-out infinite;
}

.btn-pulse-accent {
  animation: mhh-pulse-scale-accent 2.2s ease-out infinite;
}

.btn-pulse-red {
  animation: mhh-pulse-scale-red 2.2s ease-out infinite;
}

.btn-pulse-ink {
  animation: mhh-pulse-scale-ink 2.2s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn-pulse-gold,
  .btn-pulse-accent,
  .btn-pulse-red,
  .btn-pulse-ink {
    animation: none;
  }
}

/* ─── HEADER ─── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 21px;
  height: 21px;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--gray);
}

.logo-arrow {
  margin-left: 2px;
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  color: var(--gray);
}

.logo-wrapper:hover .logo-arrow {
  transform: rotate(180deg);
}

.logo-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 200;
}

.logo-wrapper:hover .logo-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logo-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s ease;
}

.logo-dropdown .ldi-active {
  background: black !important;
  color: white !important;
}

.logo-dropdown-item:hover {
  background: var(--gray-light);
}

.logo-dropdown-item .badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-dim);
  background: var(--gold-tint);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.logo-dropdown-item .domain {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 400;
  margin-left: auto;
  opacity: 0.8;
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  background: var(--gray-light);
  color: var(--ink);
}

.tab-btn.active {
  background: var(--gray-light);
  color: var(--ink);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-left: 6px;
  transition: all 0.15s ease;
}

.nav-cta:hover {
  background: var(--ink-2);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 7px 11px;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ─── PANELS ─── */
.panel {
  display: none;
  flex: 1;
}

.panel.active {
  display: block;
}

main {
  flex: 1;
}

.fade-in {
  animation: fadeIn 0.45s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── HERO (index) ─── */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(169, 130, 76, 0.25), transparent 60%),
    linear-gradient(125deg, rgba(20, 22, 26, 0.60) 0%, rgba(30, 33, 38, 0.60) 55%, rgba(36, 39, 46, 0.65) 100%),
    url('https://mobile-hh.de/core/mobile-images/6.jpeg') center / cover no-repeat;
  color: white;
  padding: 100px 24px 80px;
  min-height: 75vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent 0 68px, rgba(255, 255, 255, 0.025) 68px 69px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.0rem, 3.4vw, 2.7rem);
  color: #FFF;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  line-height: 1.12;
  margin-bottom: 18px;
  color: white;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 34px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-btns .btn {
  font-size: 1.02rem;
  padding: 16px 30px;
}

.hero-rating {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.hero-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ─── SELL HERO (autoverkaufen) ─── */
.sell-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #1f2228 100%);
  color: white;
  padding: 80px 24px 60px;
  text-align: center;
}

.sell-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.sell-hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* ─── INFO STRIP ─── */
.info-strip {
  background: var(--ink-2);
  color: white;
  padding: 15px 24px;
}

.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  align-items: center;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.info-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── STANDORT ─── */
.standort-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.standort-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.standort-text strong {
  color: var(--ink);
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}

.brand-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 100px;
}

.standort-perk {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.standort-perk:last-child {
  border-bottom: 1px solid var(--border);
}

.standort-perk-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold-tint);
  color: var(--gold-dim);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.standort-perk h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.standort-perk p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.6;
}

.standort-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.standort-media iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
}

@media (max-width: 860px) {
  .standort-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .standort-media iframe {
    height: 320px;
  }
}

.standort-perks-bg {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 8px 24px;
  margin-top: 6px;
}

.standort-perks-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 22, 26, 0.88), rgba(20, 22, 26, 0.74)), url('https://mobile-hh.de/core/mobile-images/5.jpeg') center / cover no-repeat;
  z-index: 0;
}

.standort-perks-bg>* {
  position: relative;
  z-index: 1;
}

.standort-perks-bg .standort-perk {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.standort-perks-bg .standort-perk:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.standort-perks-bg .standort-perk h4 {
  color: #fff;
}

.standort-perks-bg .standort-perk p {
  color: rgba(255, 255, 255, 0.78);
}

.standort-perks-bg .standort-perk-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.standort-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.standort-photo-strip img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

@media (max-width: 480px) {
  .standort-photo-strip img {
    height: 70px;
  }
}

/* ─── WARUM MOBILE-HH (reasons grid) ─── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.reason-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--white);
  transition: background 0.2s ease;
}

.reason-card:hover {
  background: var(--gray-light);
}

.reason-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.reason-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── DREI SÄULEN (pillars) ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 3px solid var(--gold);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-card.is-featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  border-top: 3px solid var(--accent);
}

.pillar-card:nth-child(3) {
  border-top: 3px solid var(--charcoal);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-tint);
  color: var(--gold-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.pillar-card.is-featured .pillar-icon {
  background: rgba(169, 130, 76, 0.18);
  color: var(--gold);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.pillar-card.is-featured h3 {
  color: white;
}

.pillar-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dim);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pillar-card.is-featured .pillar-subtitle {
  color: var(--gold);
}

.pillar-card p.desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 22px;
}

.pillar-card.is-featured p.desc {
  color: rgba(255, 255, 255, 0.72);
}

.pillar-facts {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pillar-facts li {
  display: flex;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.pillar-card.is-featured .pillar-facts li {
  color: rgba(255, 255, 255, 0.88);
}

.pillar-facts li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-cta {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── VEHICLES / IFRAME ─── */
.vehicles-section {
  padding: 96px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--ink);
}

.section-count {
  font-size: 0.85rem;
  color: var(--gray);
}

.iframe-wrap {
  position: relative;
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 900px;
}

.iframe-wrap iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: none;
}

.iframe-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: white;
  border-radius: var(--radius-lg);
  pointer-events: none;
  transition: opacity 0.3s;
}

.iframe-loading.hidden {
  opacity: 0;
}

.iframe-loading p {
  font-size: 0.9rem;
  color: var(--gray);
}

.loading-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mobile-de-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid var(--border);
  background: var(--gray-light);
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.15s;
}

.mobile-de-link:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ─── IMPRESSION ─── */
.impression-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 44px 0 8px;
}

.impression-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: box-shadow 0.2s ease;
}

.impression-card:hover {
  box-shadow: var(--shadow-md);
}

.impression-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 21, 24, 0.85) 0%, rgba(20, 21, 24, 0.15) 55%, transparent 100%);
}

.impression-card-label {
  position: relative;
  z-index: 1;
  padding: 22px;
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
}

.impression-card-label span {
  display: block;
  font-weight: 500;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .impression-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .impression-card {
    min-height: 180px;
  }
  .impression-card-label {
    padding: 14px;
    font-size: 0.9rem;
  }
}

/* ─── KERNVORTEILE (detail grid) ─── */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.detail-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.28rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.detail-card p.lead-sm {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.check-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.step-mini-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-mini-list li {
  counter-increment: step;
  display: flex;
  gap: 13px;
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.step-mini-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold-tint);
  color: var(--gold-dim);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── PROZESS (timeline) ─── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1.5px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: left;
}

.timeline-num {
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 22px;
}

.timeline-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .timeline::before {
    display: none;
  }
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: linear-gradient(135deg, var(--gold-tint) 0%, #F8F4EC 100%);
  border: 1px solid #E8D9BE;
  border-radius: var(--radius-lg);
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
  overflow: hidden;
  width: 100%;
}

.highlight-box h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}

.highlight-box .lead-sm {
  font-size: 0.94rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 10px;
}

.highlight-box .lead-sm strong {
  color: var(--gold-dim);
}

.tip-note {
  margin-top: 18px;
  font-size: 0.83rem;
  color: var(--charcoal);
  font-style: italic;
  border-left: 2.5px solid var(--gold);
  padding-left: 14px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .highlight-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 26px;
  }
}

/* ─── DIREKTVERGLEICH ─── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-col-head {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 4px 16px;
}

.compare-col-head.bad {
  color: var(--danger);
}

.compare-col-head.good {
  color: var(--gold-dim);
}

.compare-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  font-size: 0.89rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.compare-row.good {
  background: #FBF8F2;
  border-color: #E8D9BE;
}

.compare-row .ico {
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-row .ico.x {
  color: var(--danger);
}

.compare-row .ico.check {
  color: var(--accent);
}

.compare-row strong {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 760px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── PARTNER ─── */
.partner-group {
  margin-bottom: 34px;
}

.partner-group:last-child {
  margin-bottom: 0;
}

.partner-group h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.partner-group p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: 560px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

/* ─── STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  margin-top: 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.section--ink .stat-label {
  color: rgba(255, 255, 255, 0.68);
}

/* ─── 4-SCHRITTE (process list) ─── */
.process-list {
  display: flex;
  flex-direction: column;
}

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.process-item:first-child {
  border-top: 1px solid var(--border);
}

.process-item-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold);
}

.process-item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.process-item p {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.7;
}

@media (max-width: 620px) {
  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.faq-question .plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.faq-question .plus::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  margin-left: -1px;
}

.faq-item.open .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 480px;
}

/* ─── PROMISE BLOCK ─── */
.promise-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.promise-block h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.25;
}

.promise-block p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 16px;
}

/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center;
  padding: 100px 24px;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: white;
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.final-cta .sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

.final-cta .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ─── CONTACT ─── */
.contact-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px 88px;
}

.contact-section .section-head h2 {
  text-align: left;
}

.contact-section .lead {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-tint);
  color: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
}

.contact-card a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  word-break: break-word;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card p {
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-address {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-address h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
  margin-bottom: 10px;
}

.contact-address address {
  font-style: normal;
  color: var(--ink);
  line-height: 1.8;
  font-size: 0.95rem;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  display: block;
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ─── LEGAL (Impressum / Datenschutz) ─── */
.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 88px;
}

.legal-section h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-section .legal-updated {
  color: var(--gray);
  font-size: 0.84rem;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.legal-section h2 {
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 10px;
}

.legal-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 20px 0 8px;
}

.legal-section p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-section ul {
  margin: 8px 0 12px 20px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* ─── POSITION BLOCKS (autoverkaufen) ─── */
.position-block {
  padding: 80px 0;
}

.position-block .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.position-block .eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
}

.position-block h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--ink);
}

.position-block p {
  font-size: 1rem;
  color: var(--charcoal);
  margin: 0 auto 30px;
  line-height: 1.7;
}

.position-block .btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.pos-1 {
  background: #faf6ef;
  border-bottom: 1px solid var(--border);
}

.pos-2 {
  background: #f0f3f7;
  border-bottom: 1px solid var(--border);
}

.pos-3 {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.pos-4 {
  background: #faf6ef;
  border-bottom: 1px solid var(--border);
}

.pos-5 {
  background: #f0f3f7;
  border-bottom: 1px solid var(--border);
}

.pos-6 {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 30px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: white;
}

.footer-logo span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links button,
.footer-links a {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0;
  transition: color 0.15s;
  text-decoration: none;
}

.footer-links button:hover,
.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 0.82rem;
}

.footer-backlinks {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-backlinks a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-backlinks a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-backlinks .sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .detail-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 16px;
  }

  nav {
    display: none;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 16px;
    gap: 2px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  nav.open .tab-btn,
  nav.open .nav-cta {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    margin-left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 20px 50px;
    min-height: 60vh;
  }

  .section {
    padding: 64px 0;
  }

  .vehicles-section,
  .contact-section,
  .legal-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .iframe-wrap,
  .iframe-wrap iframe {
    min-height: 700px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .logo-dropdown {
    min-width: 240px;
    left: -10px;
  }

  .compare-col-head {
    padding-bottom: 8px;
  }

  .position-block {
    padding: 56px 0;
  }

  .position-block .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .position-block .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}