/* ============================================================
   AUTO ANKAUF SIEGEN – Haupt-Stylesheet (Helles Design)
   ============================================================ */

:root {
  --blue:        #1a4fa8;
  --blue-dark:   #0c2d6b;
  --blue-light:  #2a6abf;
  --black:       #111318;
  --white:       #ffffff;
  --bg:          #f5f7fc;
  --bg2:         #eef1f9;
  --text:        #1e2535;
  --text-muted:  #5a6478;
  --accent:      #ff6b00;
  --accent-dark: #d45a00;
  --green:       #1a7a3c;
  --border:      #d0d9ec;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(10,30,70,0.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
}
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; letter-spacing: .02em; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Barrierefreiheit: Links im Fließtext unterstrichen */
main p a, main li a, .faq-body a { text-decoration: underline; }

/* ── TOPBAR ── */
.topbar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  padding: 9px 16px;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── HEADER ── */
header {
  background: var(--white);
  color: var(--text);
  padding: 0 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(10,30,80,.12);
  border-bottom: 3px solid var(--accent);
}
.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.logo { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--blue-dark); line-height: 1; flex-shrink: 0; }
.logo span { color: var(--accent); }
.header-contacts { display: flex; gap: 10px; align-items: center; }
.hc-item { display: flex; align-items: center; gap: 7px; color: var(--text); text-decoration: none; }
.hc-item:hover { text-decoration: none; }
.hc-icon { font-size: 1.2rem; }
.hc-text small { display: block; font-size: .65rem; color: var(--text-muted); line-height: 1; }
.hc-text strong { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--blue-dark); letter-spacing: .02em; }
.hc-wa { background: var(--green); border-radius: 30px; padding: 7px 14px; transition: background .2s; }
.hc-wa:hover { background: #135e2d; }
.hc-wa .hc-text small { color: rgba(255,255,255,.8); }
.hc-wa .hc-text strong { color: white; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  font-size: .8rem;
  padding: 7px 16px;
  font-weight: 600;
}
.trust-bar span { color: var(--accent); }

#sticky-top { position: sticky; top: 0; z-index: 100; }

/* ── SUB-NAV ── */
.sub-nav {
  background: var(--blue-dark);
  border-bottom: 2px solid var(--accent);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sub-nav::-webkit-scrollbar { display: none; }
.sub-nav-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  padding: 0 8px;
  width: max-content;
  min-width: 100%;
}
.sub-nav-inner a {
  color: rgba(255,255,255,.8);
  padding: 11px 14px;
  font-size: .83rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s, background .2s;
  border-bottom: 3px solid transparent;
}
.sub-nav-inner a:hover,
.sub-nav-inner a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
  background: rgba(255,255,255,.05);
}

/* ── HERO (HELLES DESIGN) ── */
.hero {
  background: linear-gradient(135deg, #f5f7fc 0%, #eef1f9 60%, #e3eaf6 100%);
  color: var(--text);
  padding: 40px 20px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 36px;
  align-items: start;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.hero-text h1 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 14px; color: var(--blue-dark); }
.hero-text h1 span { color: var(--accent); }
.hero-text p { font-size: 1.05rem; color: var(--text); max-width: 540px; margin-bottom: 20px; }
.usp-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.usp-pill {
  background: var(--blue-dark);
  color: white;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 600;
}

/* ── BILD SLIDER ── */
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}
.slider-track img {
  width: 100%;
  flex-shrink: 0;
  height: 260px;
  object-position: center 35%;
  object-fit: cover;
  display: block;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: #fff; border: none;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem;
  cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.slider-btn:hover { background: rgba(0,0,0,.75); }
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; }
/* Slider-Dots: Unsichtbarer 44px Touch-Bereich, kleiner visueller Punkt per ::after */
.slider-dot { width: 44px; height: 44px; border-radius: 50%; background: transparent; cursor: pointer; transition: opacity .2s; border: none; padding: 0; position: relative; }
.slider-dot::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); transition: background .2s; }
.slider-dot.active::after { background: var(--accent); }

/* ── FORMULAR ── */
.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 8px 40px rgba(10,30,80,.14);
  border: 2px solid var(--border);
  align-self: start;
  position: sticky;
  top: 72px;
}
.form-card-title { font-size: 1.2rem; color: var(--blue-dark); margin-bottom: 4px; }
.form-card-sub { font-size: .83rem; color: var(--text-muted); margin-bottom: 12px; }
.step-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: white;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-dot.inactive { background: var(--border); color: var(--text-muted); }
.step-line { flex: 1; height: 3px; background: var(--border); border-radius: 2px; }
.fld { margin-bottom: 10px; }
.fld label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 3px; }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 9px 11px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .93rem;
  background: var(--bg); color: var(--text);
  transition: border-color .2s;
  font-family: inherit;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-primary {
  width: 100%; padding: 13px;
  background: var(--accent); color: white;
  border: none; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; letter-spacing: .04em;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.form-note { font-size: .75rem; color: var(--text-muted); margin-top: 7px; text-align: center; }

/* ── SUBPAGE FORMULAR SECTION ── */
.subpage-form-section {
  background: var(--bg);
  padding: 48px 20px;
  border-top: 3px solid var(--border);
}
.subpage-form-inner {
  max-width: 700px;
  margin: auto;
}
.subpage-form-inner h2 { font-size: 1.5rem; color: var(--blue-dark); margin-bottom: 6px; }
.subpage-form-inner p { color: var(--text-muted); margin-bottom: 20px; font-size: .97rem; }
.subpage-form-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

/* ── KM DISTANZ SECTION ── */
.distance-section { padding: 48px 20px; background: var(--white); }
.distance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.distance-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.distance-card .dc-city { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--blue-dark); font-weight: 600; }
.distance-card .dc-km { font-size: .88rem; color: var(--accent); font-weight: 700; }
.distance-card .dc-link { font-size: .8rem; color: var(--blue); margin-top: 4px; }
.distance-card .dc-link:hover { color: var(--accent); }

/* ── PAGE 2 ── */
#page2 { display: none; }

/* ── SECTION STYLES ── */
.section { padding: 48px 20px; }
.section-light { background: var(--white); }
.section-gray { background: var(--bg); }
.section-inner { max-width: 1100px; margin: auto; }
.section-title { font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 10px; color: var(--blue-dark); }
.section-title span { color: var(--accent); }
.section-sub { font-size: .97rem; color: var(--text-muted); margin-bottom: 28px; }

/* ── VORTEILE GRID ── */
.vorteile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.vorteil-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px 18px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,30,80,.08);
  transition: transform .2s, box-shadow .2s, border-top-color .2s;
  position: relative;
}
.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(10,30,80,.15);
  border-top-color: var(--blue);
}
.vorteil-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.vorteil-card h3 { font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 8px; }
.vorteil-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.5; }

/* ── ABLAUF ── */
.ablauf-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; counter-reset: step; }
.ablauf-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  position: relative;
}
.ablauf-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: .9rem;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 28px;
}
.ablauf-icon { font-size: 1.9rem; margin-bottom: 10px; }
.ablauf-step h3 { font-size: .95rem; color: var(--blue-dark); margin-bottom: 5px; }
.ablauf-step p { font-size: .82rem; color: var(--text-muted); }

/* ── STADTTEILE ── */
.stadtteile { padding: 48px 20px; background: var(--bg); }
.stadtteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.stadtteil-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  text-align: center;
  font-weight: 600;
  font-size: .87rem;
  color: var(--blue-dark);
  transition: background .2s, color .2s, transform .2s;
}
.stadtteil-card a { color: inherit; text-decoration: none; display: block; }
.stadtteil-card:hover { background: var(--blue-dark); color: white; transform: translateY(-2px); }
.stadtteil-card:hover a { color: white; }

.stadtteile-grid-sub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.stadtteil-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-dark);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white;
  padding: 48px 20px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); color: white; margin-bottom: 12px; }
.cta-phones { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.cta-phones a {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.cta-phones a:first-child { background: var(--accent); color: white; }
.cta-phones a:nth-child(2) { background: var(--green); color: white; }
.cta-phones a:last-child { background: rgba(255,255,255,.15); color: white; border: 2px solid rgba(255,255,255,.4); }
.cta-phones a:hover { transform: translateY(-2px); opacity: .9; text-decoration: none; }

/* ── INFO BOX ── */
.info-box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 18px 0;
}
.info-box h4 { font-size: .97rem; color: var(--blue-dark); margin-bottom: 10px; }
.info-box ul { padding-left: 18px; }
.info-box ul li { margin-bottom: 5px; font-size: .9rem; color: var(--text); }

/* ── BOX ── */
.box {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 14px 0;
}

/* ── CONTENT-PAGE (Impressum, Datenschutz) ── */
.content-page {
  max-width: 820px;
  margin: 36px auto;
  padding: 0 20px 60px;
}
.content-page h1 { font-size: 1.9rem; color: var(--blue-dark); margin-bottom: 22px; }
.content-page h2 { font-size: 1.25rem; color: var(--blue-dark); margin: 26px 0 10px; }
.content-page h3 { font-size: 1rem; color: var(--text); margin: 16px 0 7px; }
.content-page p { margin-bottom: 12px; font-size: .96rem; }

/* ── SUB HERO (Unterseiten) ── */
.sub-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  padding: 36px 20px 32px;
  border-bottom: 3px solid var(--border);
}
.sub-hero .breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: 8px; }
.sub-hero .breadcrumb a { color: var(--blue); }
.sub-hero .breadcrumb span { margin: 0 5px; }
.sub-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--blue-dark); margin-bottom: 12px; line-height: 1.2; }
.sub-hero h1 span { color: var(--accent); }
.sub-hero p { max-width: 700px; font-size: 1.02rem; color: var(--text); margin-bottom: 16px; }

/* ── CONTENT SECTION ── */
.content-section { padding: 44px 20px; background: var(--white); }
.content-section h2 { font-size: 1.45rem; color: var(--blue-dark); margin-bottom: 14px; }
.content-section h2 span { color: var(--accent); }

/* ── SEO TEXT ── */
.seo-text { max-width: 900px; }
.seo-text p { margin-bottom: 14px; font-size: .97rem; }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(12,45,107,.97);
  color: white;
  padding: 14px 20px;
  z-index: 9999;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
#cookieBanner p { font-size: .82rem; flex: 1; min-width: 200px; }
#cookieBanner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cd { padding: 8px 18px; background: rgba(255,255,255,.15); color: white; border: 1px solid rgba(255,255,255,.3); border-radius: 6px; cursor: pointer; font-size: .83rem; }
.btn-ca { padding: 8px 18px; background: var(--accent); color: white; border: none; border-radius: 6px; cursor: pointer; font-size: .83rem; font-weight: 700; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--blue-dark);
  padding: 20px;
}
.stats-inner { max-width: 1100px; margin: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; }
.stats-label { color: white; font-family: 'Oswald', sans-serif; font-size: clamp(.9rem, 1.8vw, 1.2rem); }
.stats-label small { display: block; font-family: 'Source Sans 3', sans-serif; font-size: .76rem; color: rgba(255,255,255,.65); font-weight: 400; }
.stats-nums { display: flex; flex-wrap: wrap; gap: 8px; }
.stat-box { background: rgba(255,255,255,.1); border-radius: 8px; padding: 9px 16px; text-align: center; min-width: 70px; }
.stat-box strong { display: block; font-family: 'Oswald', sans-serif; font-size: 1.25rem; color: var(--accent); line-height: 1.1; }
.stat-box small { font-size: .66rem; color: rgba(255,255,255,.65); }

/* ── FOOTER ── */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  padding: 36px 20px 18px;
  font-size: .88rem;
}
.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}
.footer-col h4 { color: var(--accent); font-family: 'Oswald', sans-serif; font-size: .97rem; margin-bottom: 12px; letter-spacing: .04em; }
.footer-col p, .footer-col a { display: block; color: rgba(255,255,255,.72); font-size: .85rem; margin-bottom: 5px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 14px; text-align: center; font-size: .78rem; max-width: 1100px; margin: auto; }
.footer-bottom a { color: rgba(255,255,255,.55); margin: 0 5px; }
.footer-bottom a:hover { color: var(--accent); }

/* ── MOBILE FLOATING WA BUTTON ── */
.wa-float {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 16px;
  background: var(--green);
  color: white;
  border-radius: 50px;
  padding: 12px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  z-index: 998;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.05); text-decoration: none; color: white; }

/* ── ZURÜCK BUTTON – deaktiviert ── */
.back-btn { display: none !important; }

/* ════════════════════════════════════════
   RESPONSIVE – TABLET & MOBILE
   ════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .form-card {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero { padding-top: 28px; }
  .slider-track img { height: 210px; object-position: center 35%; }
}

@media (max-width: 640px) {
  /* Header */
  .header-inner { height: 58px; }
  .logo { font-size: 1.2rem; }
  /* Zeige WhatsApp auf Mobile */
  .hc-wa { display: flex !important; padding: 6px 12px; }
  .hc-wa .hc-text { display: none; }
  .hc-icon { font-size: 1.4rem; }
  /* Floating WA Button */
  .wa-float { display: flex; }
  /* Topbar kleiner */
  .topbar { font-size: .75rem; padding: 7px 10px; }
  /* Trust bar */
  .trust-bar { font-size: .75rem; padding: 6px 10px; }
  /* Hero */
  .hero { padding: 20px 14px 0; }
  .hero-text h1 { font-size: 1.5rem; }
  .hero-text p { font-size: .95rem; }
  .usp-list { gap: 6px; }
  .usp-pill { font-size: .78rem; padding: 4px 11px; }
  /* Slider */
  .slider-track img { height: 190px; object-position: center 35%; }
  /* Form */
  .form-card { padding: 18px 14px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Vorteile */
  .vorteile-grid { grid-template-columns: 1fr 1fr; }
  /* Ablauf */
  .ablauf-steps { grid-template-columns: 1fr 1fr; }
  /* Stadtteile */
  .stadtteile-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  /* Stats */
  .stats-inner { justify-content: center; text-align: center; }
  /* CTA phones */
  .cta-phones a { padding: 11px 20px; font-size: .95rem; width: 100%; text-align: center; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Subpage form */
  .subpage-form-card { padding: 18px 14px; }
  /* Section padding */
  .section { padding: 36px 14px; }
  .stadtteile { padding: 36px 14px; }
  .cta-banner { padding: 36px 14px; }
  .content-section { padding: 32px 14px; }
  .sub-hero { padding: 24px 14px 20px; }
  /* Distance grid */
  .distance-grid { grid-template-columns: 1fr 1fr; }
  /* Two column content sections */
  .section-inner[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 400px) {
  .vorteile-grid { grid-template-columns: 1fr; }
  .ablauf-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .distance-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   ANIMATIONEN & NEUE SEKTIONEN
   ════════════════════════════════════════ */

/* ── PULSIERENDER CTA-BUTTON ── */
@keyframes pulse-btn {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,0,.55); }
  60%  { box-shadow: 0 0 0 14px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}
.btn-primary { animation: pulse-btn 2.4s infinite; }
.btn-primary:hover { animation: none; }

/* ── SCROLL REVEAL ── */
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── PULSIERENDER WA-FLOAT ── */
@keyframes pulse-wa {
  0%   { box-shadow: 0 4px 20px rgba(0,0,0,.3), 0 0 0 0 rgba(26,122,60,.6); }
  70%  { box-shadow: 0 4px 20px rgba(0,0,0,.3), 0 0 0 16px rgba(26,122,60,0); }
  100% { box-shadow: 0 4px 20px rgba(0,0,0,.3), 0 0 0 0 rgba(26,122,60,0); }
}
.wa-float { animation: pulse-wa 2s infinite; }

/* ── KUNDENBEWERTUNGEN ── */
.bewertungen-section {
  background: var(--bg);
  padding: 56px 20px;
  border-top: 3px solid var(--border);
}

/* Score Strip */
.bew-score-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  margin-top: 8px;
}
.bew-score-big {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}
.bew-stars {
  color: #fbbc04;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.bew-stars-small {
  font-size: 1rem;
  color: #fbbc04;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.bew-count { font-size: .85rem; color: var(--text-muted); }

/* Karussell */
.bew-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bew-viewport {
  flex: 1;
  overflow: hidden;
}
.bew-track {
  display: flex;
  gap: 18px;
  transition: transform .5s ease;
  will-change: transform;
}
.bew-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 14px;
  padding: 20px 18px;
  /* Breite wird per JavaScript gesetzt */
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 18px rgba(10,30,80,.07);
  transition: transform .2s, box-shadow .2s;
}
.bew-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(10,30,80,.13); }
.bew-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.bew-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bew-card-top strong { font-size: .92rem; color: var(--blue-dark); display: block; }
.bew-date { font-size: .75rem; color: var(--text-muted); }
.bew-text { font-size: .88rem; color: var(--text); line-height: 1.6; margin: 0; }

/* Prev/Next Buttons */
.bew-prev, .bew-next {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1;
}
.bew-prev:hover, .bew-next:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Dots */
.bew-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.bew-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.bew-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .15s, color .15s;
}
.faq-btn:hover { background: var(--bg); color: var(--accent); }
.faq-btn span {
  color: var(--accent);
  font-size: .75rem;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 16px;
}
.faq-body.open { /* max-height set via JS */ }
.faq-body p {
  padding: 0 0 14px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ── HERO BADGE ANIMATION ── */
@keyframes badge-in {
  0%   { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}
.hero-badge { animation: badge-in .5s ease both; }

/* ── STAT BOX HOVER ── */
.stat-box {
  transition: transform .2s, background .2s;
  cursor: default;
}
.stat-box:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.2);
}
.stat-box strong { transition: color .2s; }
.stat-box:hover strong { color: white; }

/* ── ABLAUF STEP HOVER ── */
.ablauf-step { transition: transform .2s, box-shadow .2s; }
.ablauf-step:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(10,30,80,.14); }

/* ── RESPONSIVE NEUE SEKTIONEN ── */
@media (max-width: 640px) {
  .bew-prev, .bew-next { width: 34px; height: 34px; font-size: 1.2rem; }
  .faq-list { gap: 7px; }
  .bew-score-strip { flex-direction: column; gap: 4px; text-align: center; }
  /* FAQ section 2-col -> 1-col */
  .section-inner > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}
