/* ==========================================================
   KANT KFZ-Gutachter & Sachverständigenbüro — style.css
   Weiß/Blau · schnell ladend · responsiv · barrierearm
   ========================================================== */

:root {
  --blau: #0d47a1;
  --blau-hell: #1976d2;
  --blau-dunkel: #0a357a;
  --blau-sehr-hell: #e3f2fd;
  --weiss: #ffffff;
  --grau-hell: #f8f9fa;
  --grau: #e9ecef;
  --grau-text: #6c757d;
  --text: #212529;
  --text-hell: #495057;
  --rot: #dc3545;
  --gruen: #28a745;
  --whatsapp: #25d366;
  --schatten: 0 2px 8px rgba(0, 0, 0, 0.08);
  --schatten-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blau-hell); text-decoration: none; }
a:hover { color: var(--blau-dunkel); }
h1, h2, h3, h4 { line-height: 1.25; }

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--blau); color: #fff; padding: 8px 16px;
  z-index: 10000; font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 0; color: #fff; }

/* ================= HEADER ================= */
.header {
  background: var(--weiss);
  border-bottom: 1px solid var(--grau);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1.4rem; color: var(--blau);
  letter-spacing: -0.5px; white-space: nowrap;
}
.logo:hover { color: var(--blau-dunkel); }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo small {
  display: block; font-size: 0.68rem; font-weight: 600;
  color: var(--grau-text); letter-spacing: 0.2px;
}
.nav { display: flex; align-items: center; }
.nav a {
  padding: 8px 13px; border-radius: 6px;
  font-weight: 500; font-size: 0.92rem; color: var(--text-hell);
  margin-left: 4px; transition: all 0.2s; white-space: nowrap;
}
.nav a:hover, .nav a.active { background: var(--blau-sehr-hell); color: var(--blau); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-blau { background: var(--blau); color: #fff; }
.btn-blau:hover { background: var(--blau-dunkel); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.btn-outline { background: transparent; color: var(--blau); border: 2px solid var(--blau); }
.btn-outline:hover { background: var(--blau); color: #fff; }
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-small { padding: 8px 16px; font-size: 0.85rem; }

.mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.mobile-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.2s;
}
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.45);
  z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.25s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: -290px; width: 280px; height: 100%;
  background: var(--weiss); z-index: 1002; padding: 70px 26px 26px;
  display: flex; flex-direction: column; gap: 4px;
  transition: right 0.28s ease; box-shadow: -6px 0 24px rgba(0, 0, 0, 0.12);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  padding: 13px 10px; border-bottom: 1px solid var(--grau);
  color: var(--text); font-weight: 600; font-size: 1rem;
}
.mobile-nav a:hover { color: var(--blau); }
.mobile-nav-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border: none; background: var(--grau-hell);
  border-radius: 50%; cursor: pointer; font-size: 1.15rem; color: var(--text);
}
.mobile-nav-close::before { content: "✕"; }

/* ================= HERO ================= */
.hero {
  background: linear-gradient(180deg, var(--blau-sehr-hell) 0%, var(--weiss) 100%);
  padding: 64px 24px 56px;
  border-bottom: 1px solid var(--grau);
}
.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-tag {
  display: inline-block; background: var(--weiss); color: var(--blau);
  padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 700;
  margin-bottom: 20px; border: 1px solid #bbdefb;
}
.hero h1 {
  font-size: 2.7rem; font-weight: 800; color: var(--text);
  line-height: 1.15; margin-bottom: 18px; letter-spacing: -1px;
}
.hero h1 em { color: var(--blau); font-style: normal; }
.hero p { font-size: 1.14rem; color: var(--text-hell); margin-bottom: 26px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: var(--grau-text); }
.hero-trust span { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.hero-trust svg { width: 17px; height: 17px; color: var(--gruen); flex-shrink: 0; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--schatten-hover); }
.hero-img img { width: 100%; height: auto; }

/* ================= TRUST BAR ================= */
.trust-bar { background: var(--grau-hell); padding: 18px 24px; border-bottom: 1px solid var(--grau); }
.trust-bar-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; font-weight: 600; color: var(--text-hell);
}
.trust-item svg { width: 18px; height: 18px; color: var(--blau); flex-shrink: 0; }

/* ================= SECTIONS ================= */
.section { padding: 76px 24px; max-width: 1140px; margin: 0 auto; }
.section-grau { background: var(--grau-hell); max-width: none; }
.section-grau > .section-innen { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-header .ueber-zeile {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--blau-hell); margin-bottom: 10px;
}
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--grau-text); }

/* ================= LEISTUNGEN ================= */
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.leistung-card {
  background: var(--weiss); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--grau); transition: all 0.25s;
  display: flex; flex-direction: column;
}
.leistung-card:hover { transform: translateY(-4px); box-shadow: var(--schatten-hover); border-color: #ced4da; }
.leistung-card img { width: 100%; height: 170px; object-fit: cover; }
.leistung-card-body { padding: 22px; flex: 1; }
.leistung-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.leistung-card p { font-size: 0.9rem; color: var(--grau-text); line-height: 1.6; }
.leistung-card .preis-hinweis {
  margin-top: 12px; font-size: 0.82rem; font-weight: 700; color: var(--gruen);
  display: flex; align-items: center; gap: 6px;
}

/* ================= ABLAUF ================= */
.ablauf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ablauf-step { text-align: center; }
.ablauf-num {
  width: 56px; height: 56px; background: var(--blau); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
}
.ablauf-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.ablauf-step p { font-size: 0.88rem; color: var(--grau-text); }

/* ================= WARUM WIR ================= */
.warum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.warum-bild { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--schatten); }
.warum-bild img { width: 100%; }
.warum-list { list-style: none; }
.warum-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid var(--grau);
}
.warum-list li:last-child { border-bottom: none; }
.warum-check {
  width: 26px; height: 26px; background: var(--blau); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #fff; font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}
.warum-check::before { content: "✓"; }
.warum-list h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.warum-list p { font-size: 0.88rem; color: var(--grau-text); }

/* ================= STÄDTE ================= */
.staedte-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.stadt-link {
  display: block; padding: 12px 16px; background: var(--weiss);
  border-radius: var(--radius); border: 1px solid var(--grau);
  font-weight: 500; font-size: 0.9rem; color: var(--text-hell); transition: all 0.2s;
}
.stadt-link:hover {
  background: var(--blau); color: #fff; border-color: var(--blau);
  transform: translateX(3px);
}

/* ================= TESTIMONIALS ================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--weiss); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--grau); }
.testi-stars { color: #ffc107; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-stars::before { content: "★★★★★"; }
.testi-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; background: var(--blau-sehr-hell); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blau); font-size: 0.85rem;
}
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-ort { font-size: 0.8rem; color: var(--grau-text); }

/* ================= KONTAKT ================= */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.kontakt-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 18px; }
.kontakt-item { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--grau); }
.kontakt-item:last-of-type { border-bottom: none; }
.kontakt-icon {
  width: 40px; height: 40px; background: var(--blau-sehr-hell); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blau);
}
.kontakt-icon svg { width: 20px; height: 20px; }
.kontakt-item h4 {
  font-size: 0.74rem; font-weight: 600; color: var(--grau-text);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px;
}
.kontakt-item a, .kontakt-item span { font-size: 1rem; font-weight: 600; color: var(--text); }
.kontakt-item a:hover { color: var(--blau); }
.kontakt-form {
  background: var(--weiss); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--grau); box-shadow: var(--schatten);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grau);
  border-radius: 8px; font-size: 0.95rem; font-family: inherit;
  transition: all 0.2s; background: var(--weiss); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blau); box-shadow: 0 0 0 3px var(--blau-sehr-hell);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hinweis { font-size: 0.8rem; color: var(--grau-text); margin-top: 10px; }

/* ================= FAQ ================= */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grau); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 0; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 1rem; font-weight: 600; color: var(--text); font-family: inherit;
}
.faq-q::after { content: "+"; font-size: 1.4rem; color: var(--blau); font-weight: 400; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }
.faq-a p { color: var(--grau-text); font-size: 0.93rem; line-height: 1.7; }

/* ================= CTA-BAND ================= */
.cta-band { background: var(--blau); color: #fff; padding: 52px 24px; }
.cta-band-innen {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: 1.7rem; font-weight: 800; margin-bottom: 8px; }
.cta-band p { color: #cfe3f7; margin: 0; max-width: 560px; }
.cta-band .btn-whatsapp { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2); }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-outline { color: #fff; border-color: #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--blau); }

/* ================= FOOTER ================= */
.footer { background: #17212b; color: #adb5bd; padding: 58px 24px 24px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #adb5bd; margin-bottom: 16px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #adb5bd; font-size: 0.85rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #6c757d; }
.footer-bottom a { color: #6c757d; font-size: 0.8rem; margin-left: 16px; }
.footer-bottom a:hover { color: #fff; }

/* ================= COOKIE-BANNER ================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--weiss); border-top: 1px solid var(--grau);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); padding: 16px 24px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-text { font-size: 0.85rem; color: var(--text-hell); max-width: 620px; line-height: 1.5; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ================= A11Y-WIDGET ================= */
.a11y-w { position: fixed; bottom: 80px; right: 20px; z-index: 9998; }
.a11y-btn {
  width: 48px; height: 48px; background: var(--blau); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--schatten-hover); font-size: 1.3rem; transition: all 0.2s;
}
.a11y-btn:hover { transform: scale(1.08); }
.a11y-panel {
  position: absolute; bottom: 56px; right: 0; width: 230px;
  background: var(--weiss); border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14); padding: 16px;
  display: none; border: 1px solid var(--grau);
}
.a11y-panel.show { display: block; }
.a11y-panel h4 { font-size: 0.85rem; margin-bottom: 10px; color: var(--text); }
.a11y-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--grau); font-size: 0.85rem; color: var(--text);
}
.a11y-opt:last-child { border-bottom: none; }
.a11y-sw {
  width: 38px; height: 20px; background: var(--grau); border-radius: 10px;
  position: relative; cursor: pointer; border: none; transition: all 0.2s; flex-shrink: 0;
}
.a11y-sw.on { background: var(--blau); }
.a11y-sw::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px;
  background: #fff; border-radius: 50%; transition: all 0.2s;
}
.a11y-sw.on::after { left: 20px; }
body.hc { filter: contrast(1.25); }
body.lt { font-size: 17.5px; }
body.rm * { animation: none !important; transition: none !important; }
body.rm html, html:has(body.rm) { scroll-behavior: auto; }

/* ================= SCROLL-TOP ================= */
.scroll-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 9997;
  width: 44px; height: 44px; background: var(--blau); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.2s;
  box-shadow: var(--schatten-hover); font-size: 1.1rem;
}
.scroll-top.show { opacity: 1; visibility: visible; }

/* ================= RECHTSSEITEN ================= */
.legal-page { padding: 56px 24px 70px; max-width: 780px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 22px; color: var(--text); }
.legal-page h2 { font-size: 1.2rem; font-weight: 700; margin: 26px 0 10px; color: var(--text); }
.legal-page p, .legal-page li { color: var(--text-hell); line-height: 1.8; margin-bottom: 10px; font-size: 0.95rem; }
.legal-page ul { margin-left: 20px; margin-bottom: 14px; }
.legal-page address { font-style: normal; color: var(--text-hell); line-height: 1.8; margin-bottom: 12px; }

/* ================= STADT-SEITEN ================= */
.breadcrumb { font-size: 0.85rem; color: var(--grau-text); margin-bottom: 18px; }
.breadcrumb a { color: var(--blau-hell); font-weight: 600; }
.stadt-hero { background: linear-gradient(180deg, var(--blau-sehr-hell), var(--weiss)); padding: 52px 24px 44px; border-bottom: 1px solid var(--grau); }
.stadt-hero-inner { max-width: 1140px; margin: 0 auto; }
.stadt-hero h1 { font-size: 2.3rem; font-weight: 800; margin-bottom: 12px; color: var(--text); letter-spacing: -0.5px; }
.stadt-hero h1 em { color: var(--blau); font-style: normal; }
.stadt-hero p { font-size: 1.08rem; color: var(--grau-text); max-width: 760px; }
.stadt-kontakt-bar { background: var(--blau-sehr-hell); padding: 22px 24px; border-bottom: 1px solid #bbdefb; }
.stadt-kontakt-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.stadt-btn {
  padding: 12px 24px; background: var(--weiss); color: var(--blau);
  border: 2px solid var(--blau); border-radius: 8px; font-weight: 600; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 7px;
}
.stadt-btn:hover { background: var(--blau); color: #fff; }
.stadt-btn-fest { background: var(--blau); color: #fff; }
.stadt-btn-fest:hover { background: var(--blau-dunkel); }
.stadt-content { max-width: 1140px; margin: 0 auto; padding: 56px 24px; }
.stadt-zweispaltig { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.stadt-zweispaltig h2 { font-size: 1.5rem; font-weight: 800; margin: 26px 0 10px; color: var(--text); }
.stadt-zweispaltig h2:first-child { margin-top: 0; }
.stadt-zweispaltig p, .stadt-zweispaltig li { color: var(--text-hell); font-size: 0.97rem; line-height: 1.75; }
.stadt-zweispaltig ul { margin: 0 0 16px 20px; }
.stadt-zweispaltig li { margin-bottom: 6px; }
.stadt-aside { position: sticky; top: 96px; }
.stadt-aside .kontakt-form { padding: 26px; }
.stadt-aside img { border-radius: var(--radius-lg); margin-bottom: 20px; box-shadow: var(--schatten); }
.stadt-factbox { background: var(--blau-sehr-hell); border-radius: var(--radius-lg); padding: 22px 24px; margin-top: 20px; }
.stadt-factbox h3 { font-size: 1rem; font-weight: 700; color: var(--blau-dunkel); margin-bottom: 10px; }
.stadt-factbox ul { list-style: none; margin: 0; }
.stadt-factbox li { font-size: 0.9rem; color: var(--text-hell); padding: 5px 0; display: flex; gap: 8px; }
.stadt-factbox li::before { content: "✓"; color: var(--gruen); font-weight: 700; }

/* ================= ANIMATION ================= */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero h1 { font-size: 2.15rem; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-img { order: -1; max-width: 560px; margin: 0 auto; }
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .warum-grid { grid-template-columns: 1fr; gap: 36px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .staedte-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .ablauf-grid { grid-template-columns: repeat(2, 1fr); }
  .stadt-zweispaltig { grid-template-columns: 1fr; }
  .stadt-aside { position: static; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .mobile-btn { display: flex; }
  .header-cta .btn-outline { display: none; }
  .header-cta .btn-small { padding: 8px 13px; }
  .logo { font-size: 1.15rem; }
  .logo small { display: none; }
  .section { padding: 52px 20px; }
  .hero { padding: 44px 20px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .staedte-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 8px; }
  .form-row { grid-template-columns: 1fr; }
  .ablauf-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-btns { justify-content: center; width: 100%; }
  .cookie-btns .btn { flex: 1; justify-content: center; }
  .cta-band-innen { flex-direction: column; align-items: flex-start; }
  .stadt-hero h1 { font-size: 1.75rem; }
  .a11y-w { bottom: 76px; right: 14px; }
  .scroll-top { right: 14px; }
}
