/* ============================================================
   AUTO ANKAUF PULHEIM – Haupt-Stylesheet
   Datei: daten/css/style.css
   ============================================================ */

:root {
  --blue:        #1a4d8f;
  --blue-dark:   #0e2f5a;
  --blue-light:  #2a6abf;
  --black:       #111318;
  --white:       #ffffff;
  --bg:          #f0f4f9;
  --bg2:         #e6ecf5;
  --text:        #222834;
  --text-muted:  #5a6478;
  --accent:      #f0a500;
  --accent-dark: #c98b00;
  --green:       #1a7a3c;
  --border:      #c8d6e8;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(10,30,70,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  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; }

/* ── TOPBAR ── */
.topbar {
  background: var(--accent);
  color: var(--black);
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  padding: 8px 16px;
  letter-spacing: .03em;
}

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

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white);
  padding: 56px 24px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}
.hero-text h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.hero-text h1 span { color: var(--accent); }
.hero-text p { font-size: 1.08rem; opacity: .92; max-width: 520px; margin-bottom: 24px; }
.usp-list { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.usp-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: .86rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.usp-pill::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* Bild-Anker Hero */
.hero-img-placeholder {
  margin-top: 16px;
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.25);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  text-align: center;
  padding: 16px;
}
.hero-img-placeholder code {
  background: rgba(0,0,0,.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .73rem;
  color: rgba(255,255,255,.55);
}

/* ── FORMULAR CARD ── */
.form-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 10px 48px rgba(0,0,0,.28);
  padding: 28px 24px 22px;
  margin-bottom: -40px;
}
.form-card-title { font-size: 1.2rem; color: var(--blue-dark); margin-bottom: 2px; }
.form-card-sub { font-size: .8rem; color: var(--text-muted); margin-bottom: 16px; }
.step-bar { display: flex; align-items: center; gap: 0; margin-bottom: 18px; }
.step-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue); color: white;
  font-size: .8rem; font-weight: 700;
  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); }

/* Felder allgemein */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fld { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.fld label {
  font-size: .75rem; font-weight: 700; color: var(--blue-dark);
  text-transform: uppercase; letter-spacing: .04em;
  display: flex; align-items: center; gap: 5px;
}
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .95rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,77,143,.1);
}
/* Farbige Felder */
.fld.f-blue input, .fld.f-blue select { background: #eef4ff; border-color: #a8c0e8; }
.fld.f-green input { background: #edfbf2; border-color: #8dd4aa; }
.fld.f-yellow input, .fld.f-yellow select { background: #fff8e6; border-color: #f5cc6a; }

/* Buttons */
.btn-primary {
  width: 100%; padding: 14px;
  background: var(--accent); color: var(--black);
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700;
  border: none; border-radius: var(--radius); cursor: pointer;
  letter-spacing: .05em; transition: background .2s, transform .1s;
  margin-top: 4px;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-success {
  width: 100%; padding: 16px;
  background: var(--green); color: var(--white);
  font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700;
  border: none; border-radius: var(--radius); cursor: pointer;
  letter-spacing: .05em; transition: background .2s;
}
.btn-success:hover { background: #155c2d; }
.form-note { font-size: .73rem; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* ── SECTIONS ── */
.section { padding: 60px 24px; }
.section-inner { max-width: 1100px; margin: auto; }
.section-title { font-size: 1.9rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.section-sub { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; }

/* Ablauf */
.ablauf-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ablauf-step { text-align: center; }
.ablauf-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: white;
  font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.ablauf-step h3 { font-size: 1rem; color: var(--blue-dark); margin-bottom: 6px; }
.ablauf-step p { font-size: .88rem; color: var(--text-muted); }

/* Vorteile */
.vorteile-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vorteil-card {
  background: var(--white); border-radius: var(--radius); padding: 22px 18px;
  box-shadow: var(--shadow); border-top: 4px solid var(--blue); text-align: center;
}
.vorteil-icon { font-size: 2.2rem; margin-bottom: 10px; }
.vorteil-card h3 { font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 7px; }
.vorteil-card p { font-size: .88rem; color: var(--text-muted); }

/* Schäden */
.schaden-bg { background: var(--blue-dark); color: var(--white); }
.schaden-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.schaden-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 20px 14px; text-align: center; transition: background .2s;
}
.schaden-card:hover { background: rgba(255,255,255,.13); }
.schaden-card .sico { font-size: 2rem; margin-bottom: 10px; }
.schaden-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--accent); }
.schaden-card p { font-size: .82rem; opacity: .82; line-height: 1.5; }

/* Galerie */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 24px; }
.img-ph {
  background: var(--bg2); border: 2px dashed var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; color: var(--text-muted); font-size: .8rem; text-align: center; padding: 16px; height: 200px;
}
.img-ph code { font-size: .73rem; background: #dde6f2; padding: 2px 6px; border-radius: 4px; }

/* Stadtteile */
.stadtteile-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stadtteil-card {
  background: var(--white); border-radius: var(--radius); padding: 22px 20px;
  border-left: 5px solid var(--blue); box-shadow: var(--shadow);
}
.stadtteil-card h3 { font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 8px; }
.stadtteil-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* SEO Text */
.seo-text p { margin-bottom: 14px; line-height: 1.75; }

/* Facebook */
.fb-bar { background: #1877f2; padding: 20px 24px; text-align: center; }
.fb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: #1877f2;
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 10px 24px; border-radius: 30px; text-decoration: none;
  transition: transform .2s; margin-top: 10px;
}
.fb-btn:hover { transform: scale(1.04); text-decoration: none; }

/* ── SEITE 2 ── */
#page2 { display: none; min-height: 100vh; }
.page2-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white; padding: 40px 24px 32px; text-align: center;
}
.page2-hero h1 { font-size: 1.8rem; }
.page2-hero p { opacity: .85; margin-top: 8px; }
.page2-form-wrap { max-width: 700px; margin: 0 auto; padding: 36px 24px 60px; }
.section-block { border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 18px; }
.section-block h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--blue-dark);
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid rgba(0,0,0,.07);
  display: flex; align-items: center; gap: 7px;
}
.sb-blue  { background: #eef4ff; }
.sb-green { background: #edfbf2; }
.sb-yellow{ background: #fff8e6; }
.sb-red   { background: #fff4f4; }
.sb-white { background: var(--white); }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.check-label {
  display: flex; align-items: center; gap: 8px; font-size: .92rem; cursor: pointer;
  padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s, background .2s; background: white;
}
.check-label:hover { border-color: var(--blue); background: var(--bg); }
.check-label input { accent-color: var(--blue); width: 16px; height: 16px; }

.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-label {
  display: flex; align-items: center; gap: 7px; font-size: .92rem; cursor: pointer;
  padding: 9px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s, background .2s; background: white;
}
.radio-label:hover { border-color: var(--blue); background: var(--bg); }
.radio-label input { accent-color: var(--blue); }

/* ── DANKE ── */
#pageDanke { display: none; min-height: 100vh; background: var(--bg); }
.danke-inner { max-width: 600px; margin: auto; padding: 80px 24px; text-align: center; }
.danke-inner h1 { font-size: 2.2rem; color: var(--blue-dark); margin-bottom: 12px; }
.danke-inner p { color: var(--text-muted); font-size: 1.05rem; }

/* ── FLOATING BUTTONS – NUR MOBIL ── */
.float-btns {
  display: none; /* Standard: versteckt */
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  flex-direction: row;
  gap: 12px;
  width: calc(100% - 32px);
  max-width: 380px;
}
/* Nur auf Mobilgeräten anzeigen */
@media (max-width: 768px) {
  .float-btns { display: flex; }
}
.float-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  padding: 14px 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  color: white;
  text-align: center;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.35); text-decoration: none; color: white; }
.float-btn.wa  { background: #25d366; }
.float-btn.tel { background: var(--blue); }
.float-ico { font-size: 1.2rem; }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,.6); text-align: center; padding: 32px 24px; font-size: .85rem; }
footer strong { color: white; }
footer a { color: rgba(255,255,255,.5); }
footer a:hover { color: white; }
.footer-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  max-width: 900px; margin: 0 auto 20px; text-align: left;
}
.footer-col h4 { font-family: 'Oswald', sans-serif; color: var(--accent); font-size: 1rem; margin-bottom: 10px; }
.footer-col p, .footer-col a { font-size: .85rem; color: rgba(255,255,255,.6); display: block; line-height: 1.9; }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10,18,32,.97);
  color: rgba(255,255,255,.85);
  padding: 18px 28px; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -4px 28px rgba(0,0,0,.5);
  border-top: 3px solid var(--accent);
}
#cookieBanner p { font-size: .85rem; flex: 1; min-width: 260px; }
#cookieBanner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-ca {
  background: var(--accent); color: var(--black); font-weight: 700;
  border: none; padding: 10px 22px; border-radius: var(--radius);
  cursor: pointer; font-size: .9rem; font-family: inherit;
}
.btn-cd {
  background: transparent; color: rgba(255,255,255,.6); font-weight: 600;
  border: 1px solid rgba(255,255,255,.25); padding: 10px 22px;
  border-radius: var(--radius); cursor: pointer; font-size: .9rem; font-family: inherit;
}
.btn-ca:hover { background: var(--accent-dark); }
.btn-cd:hover { color: white; border-color: rgba(255,255,255,.5); }

/* ── IMPRESSUM / DATENSCHUTZ SEITEN ── */
.content-page { max-width: 860px; margin: 60px auto; padding: 0 24px 80px; }
.content-page h1 { font-size: 2rem; color: var(--blue-dark); margin-bottom: 28px; }
.content-page h2 { font-size: 1.3rem; color: var(--blue-dark); margin: 32px 0 10px; }
.content-page h3 { font-size: 1.1rem; color: var(--blue); margin: 20px 0 8px; }
.content-page p  { margin-bottom: 12px; line-height: 1.75; color: var(--text); }
.content-page ul { margin: 0 0 14px 20px; }
.content-page ul li { margin-bottom: 6px; line-height: 1.7; }
.content-page a  { color: var(--blue); }
.content-page .box {
  background: var(--bg2); border-left: 4px solid var(--blue);
  padding: 16px 20px; border-radius: var(--radius); margin-bottom: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .form-card { margin-bottom: 0; }
  .vorteile-grid, .schaden-grid, .stadtteile-grid, .ablauf-steps, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header-inner { flex-direction: column; height: auto; padding: 10px 0; gap: 8px; }
  .header-contacts { gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .vorteile-grid, .schaden-grid, .stadtteile-grid, .ablauf-steps, .gallery-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .hero { padding: 28px 16px 0; }
  /* Abstand unten für Floating Buttons auf Mobil */
  #page1 footer, #page2 .page2-form-wrap { padding-bottom: 90px; }
}

/* ── BILD-SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
  max-height: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.slider-track {
  display: flex;
  transition: transform .55s ease;
  height: 260px;
}
.slider-track img {
  min-width: 100%;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: white; border: none;
  font-size: 1.4rem; cursor: pointer; width: 38px; height: 38px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: background .2s;
}
.slider-btn:hover { background: rgba(0,0,0,.7); }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
  position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px;
}
.slider-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s;
}
.slider-dot.active { background: var(--accent); }

/* ── NAV LINKS ── */
.sub-nav {
  background: var(--blue);
  padding: 0 24px;
}
.sub-nav-inner {
  max-width: 1100px; margin: auto;
  display: flex; gap: 4px; flex-wrap: wrap;
}
.sub-nav a {
  color: rgba(255,255,255,.78);
  font-family: 'Oswald', sans-serif;
  font-size: .88rem; font-weight: 400;
  padding: 10px 16px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  letter-spacing: .03em;
}
.sub-nav a:hover, .sub-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── SUBPAGE HERO ── */
.sub-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white; padding: 60px 24px 50px; text-align: center;
}
.sub-hero h1 { font-size: clamp(1.8rem,3.5vw,2.7rem); margin-bottom: 14px; }
.sub-hero h1 span { color: var(--accent); }
.sub-hero p { font-size: 1.08rem; opacity: .9; max-width: 680px; margin: 0 auto 26px; }
.breadcrumb { font-size: .82rem; opacity: .65; margin-bottom: 16px; display: flex; justify-content: center; gap: 8px; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── CONTENT SECTION ── */
.content-section { padding: 60px 24px; background: var(--white); }
.content-section h2 { font-size: 1.8rem; color: var(--blue-dark); margin-bottom: 14px; }
.content-section h2 span { color: var(--accent); }
.content-section p { font-size: 1.02rem; color: var(--text); margin-bottom: 16px; line-height: 1.75; }
.info-box {
  background: var(--bg); border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 24px 0;
}
.info-box h4 { color: var(--blue-dark); font-size: 1rem; margin-bottom: 12px; }
.info-box ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.info-box ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.info-box ul li { font-size: .95rem; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--accent); padding: 42px 24px; text-align: center; }
.cta-banner h2 { font-size: 1.9rem; color: var(--black); margin-bottom: 18px; }
.cta-phones { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-phones a {
  background: var(--blue-dark); color: white;
  font-family: 'Oswald', sans-serif; font-size: 1.05rem;
  padding: 12px 28px; border-radius: 30px; text-decoration: none;
  transition: background .2s;
}
.cta-phones a:hover { background: var(--black); text-decoration: none; }

/* ── STADTTEILE SUBPAGE ── */
.stadtteile { padding: 60px 24px; background: var(--bg); }
.stadtteile-grid-sub {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 10px; margin-top: 30px;
}
.stadtteil-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-size: .92rem; font-weight: 600; color: var(--blue-dark);
  text-align: center; transition: background .2s, color .2s;
}
.stadtteil-item:hover { background: var(--blue); color: white; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; } }

/* RESPONSIVE */
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr !important; }
  .form-card { margin-bottom: 0 !important; }
  .info-box ul { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .sub-nav-inner { gap: 0; }
  .sub-nav a { font-size: .8rem; padding: 10px 10px; }
}

/* ============================================================
   ERFTSTADT FIXES – Sticky topbar, mobile cards, hover effects
   ============================================================ */

/* 1. STICKY TOPBAR + HEADER gemeinsam */
#sticky-top {
  position: sticky;
  top: 0;
  z-index: 200;
}
#sticky-top .topbar {
  position: static; /* topbar is inside sticky wrapper */
}
#sticky-top header {
  position: static;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
/* sub-nav auch sticky direkt nach dem sticky-top */
.sub-nav-sticky {
  position: sticky;
  top: 0; /* wird per JS gesetzt */
  z-index: 199;
}

/* 2. HOVER-EFFEKTE auf Karten */
.vorteil-card {
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;
}
.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10,30,70,.18);
  border-top-color: var(--accent);
}

.stadtteil-card {
  transition: transform .2s, box-shadow .2s, border-left-color .2s;
}
.stadtteil-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10,30,70,.16);
  border-left-color: var(--accent);
}

.ablauf-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.ablauf-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,30,70,.18);
}
.ablauf-num { transition: background .2s; }
.ablauf-step:hover .ablauf-num { background: var(--accent); color: var(--black); }

/* 3. MOBILE FIXES – Service-Cards & alles */
@media (max-width: 480px) {
  /* Topbar kürzer auf kleinen Screens */
  .topbar {
    font-size: .76rem;
    padding: 6px 10px;
    line-height: 1.4;
  }

  /* Header kompakter */
  .header-inner {
    height: auto;
    padding: 8px 12px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .logo { font-size: 1.25rem; }
  .hc-text strong { font-size: .95rem; }
  .hc-text small { font-size: .62rem; }
  .hc-wa { padding: 6px 10px; }

  /* Sub-Nav scrollbar auf mobil */
  .sub-nav-inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sub-nav-inner::-webkit-scrollbar { display: none; }
  .sub-nav a { white-space: nowrap; font-size: .78rem; padding: 10px 12px; }

  /* Service Cards – ALLE einspaltzig */
  .vorteile-grid,
  .schaden-grid,
  .stadtteile-grid,
  .ablauf-steps,
  .gallery-grid,
  .checkbox-grid,
  .stadtteile-grid-sub {
    grid-template-columns: 1fr !important;
  }

  /* Unterseiten-Teaser 3 Karten → 1 Spalte */
  .vorteile-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Schaden-Grid 4 Spalten → 2 Spalten auf kleinen Screens */
  .schaden-grid { grid-template-columns: 1fr 1fr !important; }

  /* Hero padding */
  .hero { padding: 20px 14px 0; }
  .hero-text h1 { font-size: 1.5rem; }
  .hero-text p { font-size: .92rem; }
  .usp-list { gap: 6px; }
  .usp-pill { font-size: .78rem; padding: 5px 10px; }

  /* Sections */
  .section { padding: 36px 14px; }
  .section-title { font-size: 1.4rem; }

  /* Stadtteile-Cards kompakter */
  .stadtteil-card { padding: 16px 14px; }
  .stadtteil-card h3 { font-size: .95rem; }

  /* Vorteil-cards kompakter */
  .vorteil-card { padding: 18px 14px; }

  /* CTA Buttons stack */
  .cta-phones { flex-direction: column; align-items: center; }
  .cta-phones a { width: 100%; max-width: 300px; text-align: center; }

  /* Stats banner horizontal scroll */
  .stats-row { overflow-x: auto; flex-wrap: nowrap !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 20px; }
}

/* Tablet: 2 Spalten statt 3 */
@media (max-width: 768px) and (min-width: 481px) {
  .vorteile-grid,
  .ablauf-steps,
  .stadtteile-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .schaden-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── GALERIE SLIDER ── */
.gallery-slider-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 28px;
  box-shadow: 0 8px 32px rgba(10,30,70,.18);
}
.gallery-slider {
  display: flex;
  transition: transform .5s ease;
}
.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
}
.gallery-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .gallery-slide img { height: 220px; }
}
.gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45); color: white; border: none;
  font-size: 1.8rem; cursor: pointer; width: 46px; height: 46px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: background .2s;
}
.gal-btn:hover { background: rgba(0,0,0,.72); }
.gal-prev { left: 14px; }
.gal-next { right: 14px; }
.gal-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.gal-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s;
  display: inline-block;
}
.gal-dot.active { background: var(--accent); }

/* 4-Karten Grid responsive */
.vorteile-grid[style*="repeat(4"] {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .vorteile-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .vorteile-grid[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Formular voll sichtbar auf Mobil */
@media (max-width: 600px) {
  .form-card {
    padding: 18px 14px 16px;
  }
  .form-card-title { font-size: 1rem; }
  .hero-inner { padding-bottom: 20px; }
}

/* ── FORM FIX – kein Abschneiden ── */
body { overflow-x: hidden; }

.hero-inner {
  grid-template-columns: 1fr 420px;
  align-items: start;
  overflow: visible;
}

/* Auf kleinen Screens IMMER einspaltzig stapeln */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .form-card {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto 0 !important;
  }
  .hero-text { width: 100% !important; }
  .hero-slider { max-height: 200px !important; }
  .hero-slider .slider-track { height: 200px !important; }
  .hero-slider .slider-track img { height: 200px !important; }
}

/* Hero padding unten damit Form nicht abgeschnitten */
.hero {
  padding-bottom: 40px !important;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--black);
  color: rgba(255,255,255,.85);
  text-align: center;
  font-size: .85rem;
  padding: 9px 16px;
  letter-spacing: .02em;
}
.trust-bar span { color: var(--accent); font-weight: 700; }

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #e8940a 100%);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(240,165,0,.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 4px 16px rgba(240,165,0,.4), 0 0 0 0 rgba(240,165,0,.3); }
  50%      { box-shadow: 0 4px 24px rgba(240,165,0,.6), 0 0 0 8px rgba(240,165,0,0); }
}

/* ── NEU BADGE ── */
.neu-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #e8940a 100%);
  color: #111; font-family: 'Oswald', sans-serif; font-size: .9rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 40px;
  box-shadow: 0 4px 20px rgba(240,165,0,.45);
  animation: badgePulse 2.5s ease-in-out infinite;
}
.neu-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,.4);
  animation: dotBlink 1.2s ease-in-out infinite alternate;
}
.neu-dot:last-child { animation-delay: .6s; }
@keyframes dotBlink {
  from { opacity: .3; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1.2); }
}

/* ── STRASSEN ANIMATION ── */
.road-wrap { display: flex; gap: 0; position: relative; }
.road-desktop .road-track { display: none; }
.road-desktop .road-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; }
@media (max-width: 768px) {
  .road-wrap { flex-direction: row; align-items: flex-start; }
  .road-track { position: relative; width: 44px; flex-shrink: 0; align-self: stretch; }
  .road-dashes {
    position: absolute; left: 50%; top: 10px; bottom: 10px;
    transform: translateX(-50%); width: 6px;
    background: repeating-linear-gradient(to bottom, var(--blue) 0px, var(--blue) 12px, transparent 12px, transparent 22px);
    border-radius: 3px; opacity: .35;
  }
  .road-steps { flex: 1; display: flex; flex-direction: column; gap: 0 !important; grid-template-columns: none !important; }
}
.ablauf-step { transition: background .3s, border-color .3s, transform .25s; }
.ablauf-step.ablauf-aktiv {
  background: var(--white); border-color: var(--accent) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(240,165,0,.2);
}
.ablauf-step.ablauf-aktiv .ablauf-num { background: var(--accent); color: var(--black); }
.ablauf-step.ablauf-aktiv h3 { color: var(--blue); }
.road-car {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%) rotate(180deg);
  transition: top .12s linear, opacity .3s;
  opacity: 0;
}

/* ── ABHOLRADIUS GRID ── */
.abholradius-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.abholort {
  background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 14px 12px;
  text-align: center; border-bottom: 3px solid var(--blue-light);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: background .2s, border-color .2s, transform .15s;
}
.abholort:hover, .abholort.aktiv {
  background: rgba(255,255,255,.14); border-bottom-color: var(--accent);
  transform: translateY(-2px);
}
.abholort-icon { font-size: 1.3rem; margin-bottom: 2px; }
.abholort strong { font-size: .9rem; color: var(--accent); font-family: 'Oswald', sans-serif; }
.abholort span { font-size: .74rem; color: rgba(255,255,255,.6); }
.abholort-nrw { border-bottom-color: var(--accent); background: rgba(255,255,255,.04); }
.abholort-nrw strong { color: white; }
@media (max-width: 768px) { .abholradius-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .abholradius-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── ZAHLEN BAR ── */
.zahlen-bar { background: var(--blue-dark); padding: 28px 16px; }
.zahlen-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.zahl-item { padding: 12px 8px; background: rgba(255,255,255,.07); border-radius: 8px; }
.zahl-item h3 { font-size: 2rem; color: var(--accent); font-family: 'Oswald', sans-serif; line-height: 1; }
.zahl-item p { font-size: .82rem; opacity: .85; margin-top: 5px; }
@media (max-width: 640px) {
  .zahlen-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .zahl-item h3 { font-size: 1.6rem; }
}
