/* ==========================================================================
   wirkaufendeinauto-{bezirk}.at — Master-Stylesheet
   Farben: Navy #063A69 / Blau #0868B5 / Akzent #4A9FE0 / BG #FFFFFF, #F5F8FB
   Bewusst KEIN Glassmorphism, KEINE Gradient-Orbs, KEINE runden Card-Schatten,
   KEINE Emojis/3D-Icons — reduziertes, seriöses regionales Erscheinungsbild.
   ========================================================================== */

:root {
  color-scheme: light only;
  --navy: #063A69;
  --blue: #0868B5;
  --accent: #4A9FE0;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FB;
  --text: #0B1B2E;
  --border: #D9E3EC;
  --whatsapp: #25D366;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  background: #FFFFFF;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

#main-content { background: #FFFFFF; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 0; background: #FFFFFF; }
.section-soft { background: var(--bg-soft); }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.01em; color: var(--navy); }

.eyebrow-line { border: none; border-top: 1px solid var(--border); }

/* ---- Header ---- */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-block { line-height: 1.1; }
.logo-word {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.logo-word span { color: var(--blue); }
.logo-bezirk {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5C7690;
  text-transform: uppercase;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.main-nav a:hover { color: var(--blue); }
.header-phone { text-align: right; display: flex; align-items: center; gap: 10px; }
.header-phone .phone-number { font-size: 15px; font-weight: 700; color: var(--navy); }
.header-phone .phone-hours { font-size: 12px; color: #5C7690; }
.phone-icon { width: 18px; height: 18px; flex-shrink: 0; }

.hamburger { display: none; background: none; border: none; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0;
}

/* ---- Hero ---- */
.hero { background: var(--bg-soft); padding: 20px 0 32px; position: relative; overflow: hidden; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-soft) 0%, rgba(245,248,251,0.88) 32%, rgba(245,248,251,0.45) 55%, rgba(245,248,251,0.15) 75%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.hero-headline {
  font-size: 46px;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--navy);
}
.hero-headline .bezirk-name { color: var(--blue); }
.hero-subtext { margin-top: 20px; font-size: 16px; color: #33465C; max-width: 420px; }

.hero-visual { position: relative; display: flex; justify-content: flex-end; min-height: 260px; }

.hero-form-box {
  position: absolute;
  top: -28px;
  right: 0;
  width: 300px;
  background: var(--navy);
  padding: 22px;
  border-radius: 4px;
}
.hero-form-box h2 {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 12px; }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #BFD4E8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.form-field input {
  width: 100%;
  border: none;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}
.form-field input::placeholder { color: #8DA0B3; }
.btn-primary {
  width: 100%;
  background: #E8720C;
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 2px;
  margin-top: 4px;
}
.btn-primary:hover { background: #C7600A; }
.form-note {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-top: 10px;
  font-size: 11px;
  color: #9BB4CC;
}
.form-msg { font-size: 13px; margin-top: 10px; display: none; }
.form-msg.success { color: #8FE3B0; display: block; }
.form-msg.error { color: #FFB0A8; display: block; }

/* ---- Benefits strip ---- */
.benefits-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.benefit-item {
  padding: 0 32px;
  border-left: 1px solid var(--border);
}
.benefit-item:first-child { border-left: none; padding-left: 0; }
.benefit-item h3 { font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: #33465C; }

/* Subtle scroll-in animation — no bounce, no gradients */
.benefit-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.benefit-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.benefit-item:nth-child(1).is-visible { transition-delay: 0s; }
.benefit-item:nth-child(2).is-visible { transition-delay: 0.1s; }
.benefit-item:nth-child(3).is-visible { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .benefit-item { opacity: 1; transform: none; transition: none; }
}

/* ---- Section headings ---- */
.section-heading {
  font-size: 26px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}

/* ---- Ablauf ---- */
.ablauf-section {
  background: var(--navy);
  padding: 64px 0;
}
.ablauf-section .section-heading { color: #FFFFFF; }
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  perspective: 1200px;
}
.ablauf-step {
  position: relative;
  padding-right: 20px;
  opacity: 0;
  transform: rotateY(-90deg);
  transform-origin: left center;
  transition: transform 0.65s ease, opacity 0.5s ease;
  backface-visibility: hidden;
}
.ablauf-step.is-visible {
  opacity: 1;
  transform: rotateY(0deg);
}
.ablauf-step:nth-child(1).is-visible { transition-delay: 0s; }
.ablauf-step:nth-child(2).is-visible { transition-delay: 0.12s; }
.ablauf-step:nth-child(3).is-visible { transition-delay: 0.24s; }
.ablauf-step:nth-child(4).is-visible { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .ablauf-step { opacity: 1; transform: none; transition: none; }
}
.ablauf-nr { font-size: 34px; font-weight: 800; color: #FFFFFF; margin-bottom: 10px; }
.ablauf-step h3 { font-size: 14px; color: #FFFFFF; margin-bottom: 6px; letter-spacing: 0.02em; }
.ablauf-step p { font-size: 13.5px; color: #BFD4E8; }
.ablauf-arrow {
  position: absolute; top: 8px; right: -4px;
  font-size: 20px; color: var(--accent); font-weight: 700;
}

/* ---- Fahrzeugtypen ---- */
.fahrzeuge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.fahrzeug-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; margin-bottom: 12px;
}
.fahrzeug-card h3 { font-size: 13.5px; color: var(--navy); margin-bottom: 5px; letter-spacing: 0.02em; }
.fahrzeug-card p { font-size: 12.5px; color: #33465C; }

/* Slide-in-from-sides scroll animation — odd cards from left, even cards from right */
.fahrzeug-card {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fahrzeug-card:nth-child(odd) { transform: translateX(-50px); }
.fahrzeug-card:nth-child(even) { transform: translateX(50px); }
.fahrzeug-card.is-visible { opacity: 1; transform: translateX(0); }
.fahrzeug-card:nth-child(1).is-visible { transition-delay: 0s; }
.fahrzeug-card:nth-child(2).is-visible { transition-delay: 0.08s; }
.fahrzeug-card:nth-child(3).is-visible { transition-delay: 0.16s; }
.fahrzeug-card:nth-child(4).is-visible { transition-delay: 0.24s; }
.fahrzeug-card:nth-child(5).is-visible { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .fahrzeug-card { opacity: 1; transform: none; transition: none; }
}

/* ---- Warum verkaufen + telefon CTA ---- */
.warum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.warum-list { list-style: none; }
.warum-list li {
  font-size: 15px;
  color: #23374E;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.warum-list li:first-child { padding-top: 0; }
.warum-list li::before {
  content: "—";
  position: absolute; left: 0; color: var(--blue); font-weight: 700;
}
.phone-cta-block {
  background: var(--navy);
  padding: 34px;
  border-radius: 4px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phone-cta-block .cta-label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #BFD4E8; margin-bottom: 8px;
}
.phone-cta-block .cta-number { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.phone-cta-block .cta-hours { font-size: 13.5px; color: #A9C2D9; margin-bottom: 20px; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #128C4A;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 2px;
  width: fit-content;
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: var(--whatsapp); }

/* ---- Gemeinden ---- */
.gemeinden-section { position: relative; overflow: hidden; }
.gemeinden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.gemeinden-text p { font-size: 15px; color: #33465C; margin-bottom: 20px; max-width: 480px; }
.gemeinden-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.gemeinde-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 2px;
}
.gemeinde-tag.hidden-tag { display: none; }
.gemeinde-tag.highlight { border-color: var(--blue); color: var(--blue); }
.btn-outline-small {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 9px 18px;
  border-radius: 2px;
}
.btn-outline-small:hover { background: var(--navy); color: #fff; }
.gemeinden-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }

/* ---- FAQ ---- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.faq-chevron { transition: transform 0.15s ease; color: var(--blue); font-size: 16px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  font-size: 14px;
  color: #33465C;
}
.faq-item.open .faq-answer { max-height: 240px; padding-bottom: 16px; }

/* ---- Erfahrungen & häufige Fragen ---- */
.er-eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
}
.er-intro { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.er-intro .section-heading { text-align: center; }
.er-p { font-size: 15px; color: #33465C; line-height: 1.7; margin-top: 14px; }
.trust-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 26px;
  margin-top: 28px;
  text-align: left;
}
.trust-box-title { font-weight: 800; color: var(--navy); font-size: 14px; margin-bottom: 14px; }
.trust-box-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.trust-box-list li { font-size: 14px; font-weight: 600; color: #23374E; display: flex; align-items: flex-start; gap: 8px; }
.trust-check { color: #178C4A; font-weight: 800; flex-shrink: 0; }

.er-subheading { font-size: 21px; color: var(--navy); text-align: center; max-width: 720px; margin: 48px auto 24px; text-transform: none; font-weight: 800; }

.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qa-card { background: #FFFFFF; border: 1px solid var(--border); border-radius: 4px; padding: 20px; }
.qa-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.qa-card p { font-size: 13.5px; color: #33465C; line-height: 1.6; }

.compare-wrap { max-width: 880px; margin: 0 auto; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.compare-col { padding: 28px 26px; }
.compare-col-light { background: #FFFFFF; }
.compare-col-navy { background: var(--navy); color: #fff; }
.compare-col h4 { font-size: 12.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; color: #5C7690; }
.compare-col-navy h4 { color: #9BC2E8; }
.compare-col ul { list-style: none; }
.compare-col-light ul li { font-size: 14px; font-weight: 600; color: #64748B; padding: 6px 0; }
.compare-col-navy ul li { font-size: 14px; font-weight: 600; color: #fff; padding: 6px 0; }
.compare-note { text-align: center; max-width: 680px; margin: 20px auto 24px; }

/* ---- Seriös erkennen ---- */
.seriös-list { max-width: 760px; margin: 0 auto 32px; display: flex; flex-direction: column; gap: 22px; }
.seriös-item { display: flex; gap: 16px; }
.num-badge {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.seriös-item h4 { font-size: 15.5px; color: var(--navy); margin-bottom: 4px; }
.seriös-item p { font-size: 14px; color: #33465C; line-height: 1.6; }
.alert-box {
  max-width: 760px; margin: 0 auto; background: #FFF7ED; border: 1px solid #F3C98B;
  border-radius: 4px; padding: 16px 20px; font-size: 14px; color: #7A4A0A; line-height: 1.6;
}

/* ---- Verkaufstipps ---- */
.tips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 980px; margin: 0 auto; }
.tip-card {
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 4px; padding: 16px;
  display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; font-weight: 600; color: #23374E;
}

/* ---- Gemeinden accordion ---- */
.gm-accordion { max-width: 900px; margin: 24px auto 0; display: flex; flex-direction: column; gap: 8px; }
.gm-item { background: #FFFFFF; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.gm-question {
  width: 100%; background: none; border: none; text-align: left; padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14.5px; font-weight: 700; color: var(--navy);
}
.gm-item.open .faq-chevron { transform: rotate(180deg); }
.gm-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 18px; }
.gm-item.open .gm-answer { max-height: 900px; padding-bottom: 18px; }
.gm-text { font-size: 14px; color: #33465C; line-height: 1.7; margin-bottom: 14px; }
.gm-faqs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.gm-faq-q { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.gm-faq-a { font-size: 13.5px; color: #33465C; }
.gm-neighbors { font-size: 12.5px; color: #5C7690; }

/* ---- Bezirk map ---- */
.bezirk-map {
  width: 100%;
  height: 420px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.gm-marker span {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--navy);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--navy);
}
.leaflet-popup-content-wrapper { border-radius: 2px; }
.leaflet-popup-content { font-size: 13px; color: var(--navy); }

/* ---- Final CTA ---- */
.final-cta {
  background: var(--navy);
  padding: 40px 0;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.final-cta h2 { color: #fff; font-size: 22px; text-transform: uppercase; margin-bottom: 6px; }
.final-cta p { color: #BFD4E8; font-size: 14.5px; }
.btn-cta-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-cta-white:hover { background: var(--bg-soft); }

/* ---- Footer ---- */
.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo .logo-word { font-size: 15px; }
.footer-logo .logo-bezirk { font-size: 10px; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: #5C7690; }
.footer-nav a:hover { color: var(--blue); }

/* ---- Mobile sticky CTA ---- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 200;
}
.mobile-sticky-cta .msc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.mobile-sticky-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 14px 4px 12px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: 0 8px 22px rgba(6, 58, 105, 0.28);
}
.mobile-sticky-cta a .msc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sticky-cta a svg { width: 18px; height: 18px; }
.mobile-sticky-cta a.msc-whatsapp { box-shadow: 0 8px 22px rgba(30, 190, 87, 0.32); }
.mobile-sticky-cta a.msc-call { background: var(--navy); }
.mobile-sticky-cta a.msc-whatsapp { background: #1EBE57; }
.mobile-sticky-cta a.msc-bewerten { background: var(--blue); }

/* ==========================================================================
   Responsive — Mobile-first reorder inside hero, single-column grids
   ========================================================================== */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .header-inner { padding: 12px 16px; gap: 10px; }
  .header-phone { flex-shrink: 0; }
  .header-phone .phone-hours { display: none; }
  .header-phone .phone-number {
    font-size: 14px;
    white-space: nowrap;
  }
  .header-phone a { display: block; }

  .hero { padding: 20px 0 32px; }
  .hero-headline { font-size: 32px; }
  .hero-grid { display: flex; flex-direction: column; gap: 20px; }
  .hero-visual { order: 2; min-height: 0; }
  .hero-form-box { position: static; width: 100%; order: 2; margin-top: 16px; }
  .hero-text { order: 1; }
  .hero-bg-scrim {
    background: linear-gradient(180deg, rgba(245,248,251,0.94) 0%, rgba(245,248,251,0.8) 35%, rgba(245,248,251,0.4) 65%, rgba(245,248,251,0.15) 100%);
  }

  .benefits-grid { grid-template-columns: 1fr; gap: 18px; padding-top: 24px; padding-bottom: 24px; }
  .benefit-item { border-left: none; padding: 0 0 16px; border-bottom: 1px solid var(--border); }
  .benefit-item:last-child { border-bottom: none; padding-bottom: 0; }

  .ablauf-grid { grid-template-columns: 1fr; gap: 24px; }
  .ablauf-arrow { display: none; }

  .fahrzeuge-grid { grid-template-columns: repeat(2, 1fr); }

  .warum-grid { grid-template-columns: 1fr; }

  .gemeinden-grid { grid-template-columns: 1fr; }
  .gemeinden-photo { order: -1; }

  .faq-grid { grid-template-columns: 1fr; }

  .final-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .btn-cta-white { width: 100%; text-align: center; }

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

  .trust-box-list { grid-template-columns: 1fr; }
  .qa-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }

  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 500px) {
  .fahrzeuge-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 28px; }
}

@media (max-width: 400px) {
  .logo-word { font-size: 16px; }
  .logo-bezirk { font-size: 9.5px; }
  .header-phone .phone-number { display: none; }
  .header-phone {
    background: var(--navy);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-phone .phone-icon { stroke: #fff; }
}
