/* ============================================================
   ALL CLEAN SERVICE – Berlin
   Design-Rezept: "Azure Klinik-Frische"
   Weiß + Eisblau · Cornflower #4f87f0 · Navy #0f2a5e
   Fonts: Bricolage Grotesque (Display) · Figtree (Body)
   Deko-System: Orbit-Ellipsen + Funkel-Sterne (aus dem Logo)
   ============================================================ */

:root {
  --blue:        #4f87f0;
  --blue-2:      #7fa8ff;
  --blue-deep:   #2f66d8;
  --navy:        #0f2a5e;
  --navy-2:      #0a1c42;
  --ink:         #1c2b4d;
  --muted:       #5c6f93;
  --ice:         #f2f7ff;
  --ice-2:       #e7f0ff;
  --line:        #dce7f8;
  --white:       #ffffff;
  --green:       #17a673;

  --font-display: "Bricolage Grotesque", "Figtree", sans-serif;
  --font-body:    "Figtree", -apple-system, sans-serif;
  --font-script:  "Great Vibes", cursive;

  --radius:      22px;
  --radius-sm:   14px;
  --shadow:      0 18px 45px rgba(37, 78, 172, 0.10);
  --shadow-soft: 0 8px 24px rgba(37, 78, 172, 0.08);

  --container:   1200px;
  --header-h:    84px;
}

/* ---------- Reset & Basics ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

section { position: relative; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.section-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section-title .hl { color: var(--blue); }

.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

/* ---------- Deko: Orbit + Sparkle ---------- */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-orbit {
  border: 2px solid rgba(79, 135, 240, 0.10);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.deco-orbit.thin { border-width: 1.5px; border-color: rgba(15, 42, 94, 0.07); }
.deco-spark { color: rgba(79, 135, 240, 0.18); }
.deco-spark svg { display: block; }
.deco-dots {
  background-image: radial-gradient(rgba(79, 135, 240, 0.14) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.55;
}
section > .container { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn i { font-size: 20px; }

.btn-primary {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 60%, var(--blue-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 102, 216, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(47, 102, 216, 0.4); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue-deep); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 231, 248, 0.7);
  transition: height 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { height: 68px; box-shadow: 0 10px 30px rgba(15, 42, 94, 0.08); }

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo (SVG-Nachbau) */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo svg { height: 58px; width: auto; display: block; transition: height 0.25s ease; }
.site-header.scrolled .logo svg { height: 48px; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--blue-deep); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
}
.header-phone i { color: var(--blue); font-size: 20px; }
.header-btn { padding: 12px 24px; font-size: 15px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: var(--navy); font-size: 26px; align-items: center; justify-content: center; }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(10, 28, 66, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close { align-self: flex-end; font-size: 26px; color: var(--navy); width: 44px; height: 44px; }
.mobile-nav-panel a.mn-link {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 6px;
  border-bottom: 1px solid var(--ice-2);
}
.mobile-nav-panel .btn { margin-top: 18px; justify-content: center; }
.mn-meta { margin-top: 22px; font-size: 15px; color: var(--muted); line-height: 1.9; }
.mn-meta i { color: var(--blue); margin-right: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 110px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(10, 28, 66, 0.86) 0%, rgba(13, 41, 94, 0.62) 46%, rgba(13, 41, 94, 0.18) 78%, rgba(13, 41, 94, 0.05) 100%);
}

.hero-content { max-width: 660px; color: #fff; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cfe0ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 18px;
  backdrop-filter: blur(6px);
  margin-bottom: 24px;
}
.hero-kicker i { color: var(--blue-2); }

.hero h1 { display: contents; }
.hero-h1 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #cfe0ff;
  display: block;
  margin-bottom: 10px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-headline .hl { color: var(--blue-2); }

.hero-text { font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.88); max-width: 560px; margin-bottom: 26px; }

.hero-usps { display: grid; grid-template-columns: 1fr; gap: 12px; justify-content: start; margin-bottom: 34px; }
.hero-usps li { display: flex; align-items: center; gap: 10px; font-size: 16.5px; font-weight: 600; }
.hero-usps i {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(79, 135, 240, 0.35);
  border: 1px solid rgba(127, 168, 255, 0.6);
  color: #fff;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; font-size: 15px; color: rgba(255, 255, 255, 0.85); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { color: var(--blue-2); font-size: 18px; }

/* ---------- Hero Split (Content links · Quiz rechts) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-split .hero-content { max-width: 620px; }
.hero-split .hero-headline { font-size: clamp(34px, 3.9vw, 52px); }
.hero-split .hero-text { font-size: 17.5px; }
.hero-split .hero-usps { gap: 10px 24px; margin-bottom: 28px; }
.hero-split .hero-usps li { font-size: 15.5px; }

/* ---------- Quiz (4-Step-Formular) ---------- */
.quiz-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(4, 14, 40, 0.45);
  padding: 28px 26px 24px;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  color: var(--ink);
}
/* 10 %-Rabatt-Badge (Neukunden) */
.quiz-badge {
  position: absolute;
  top: -34px; right: 20px;
  z-index: 4;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 34px rgba(47, 102, 216, 0.5);
  border: 4px solid #fff;
  transform: rotate(9deg);
}
.quiz-badge strong { font-family: var(--font-display); font-size: 34px; font-weight: 800; line-height: 1; }
.quiz-badge span { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
/* Google-Trust unten in der Quiz-Card */
.quiz-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--ice-2);
}
.quiz-trust .qt-g { width: 20px; height: 20px; flex-shrink: 0; }
.quiz-trust .qt-stars { color: #f5b731; font-size: 14px; letter-spacing: 1px; }
.quiz-trust .qt-text { font-size: 13px; color: var(--muted); }
.quiz-trust .qt-text strong { color: var(--navy); font-weight: 700; }
.q-head { margin-bottom: 16px; }
.q-head strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.q-head span { font-size: 13.5px; color: var(--muted); }
.q-progress { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 7px; letter-spacing: 0.04em; }
.q-progress .q-pct { color: var(--blue-deep); }
.q-bar-track { height: 6px; background: var(--ice-2); border-radius: 99px; margin-bottom: 18px; overflow: hidden; }
.q-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue-deep), var(--blue-2)); border-radius: 99px; transition: width 0.3s ease; }
/* Schritt 1: wirkt wie eine schnelle Einzelfrage – Fortschritt erst ab Schritt 2 */
.acs-quiz.q-first .q-progress, .acs-quiz.q-first .q-bar-track { display: none; }

.q-title { font-family: var(--font-display); font-size: 17.5px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.q-hint { font-size: 14px; color: var(--muted); margin: -8px 0 14px; }
.q-grid { display: grid; gap: 10px; }
.q-grid-2 { grid-template-columns: 1fr 1fr; }
.q-opt {
  background: var(--ice);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.q-grid-2 .q-opt { flex-direction: column; justify-content: center; text-align: center; gap: 7px; padding: 14px 10px; }
.q-opt i { font-size: 23px; color: var(--blue-deep); }
.q-opt:hover { border-color: var(--blue); background: #fff; transform: translateY(-1px); }
.q-field {
  width: 100%;
  background: var(--ice);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 15px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
}
.q-field:focus { outline: none; border-color: var(--blue); background: #fff; }
.q-back {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.q-back:hover { color: var(--blue-deep); }
.q-note { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 2px; }
.q-note i { color: var(--green); }
.btn-block { width: 100%; justify-content: center; }

.q-done { text-align: center; padding: 26px 6px 10px; }
.q-done[hidden] { display: none; }
.q-done > i { font-size: 52px; color: var(--green); display: block; margin-bottom: 12px; }
.q-done strong { display: block; font-family: var(--font-display); font-size: 21px; color: var(--navy); margin-bottom: 6px; }
.q-done p { font-size: 15px; color: var(--muted); }
.q-done-urgent { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--ice-2); display: grid; gap: 12px; justify-items: center; }
.q-done-urgent span { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* Quiz im Final-CTA (dunkler Hintergrund) */
.cta .quiz-card { margin-left: 0; max-width: none; box-shadow: 0 30px 70px rgba(4, 14, 40, 0.45); }

/* ---------- Stats-Band ---------- */
.stats { background: var(--white); padding: 0; }
.stats-band {
  margin-top: -64px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.stat {
  padding: 30px 26px;
  text-align: center;
  border-right: 1px solid var(--ice-2);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat-num em { font-style: normal; color: var(--blue); }
.stat-label { font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ---------- Leistungen Slider ---------- */
.services { padding: 110px 0 120px; background: var(--white); overflow: hidden; }
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }

.slider-zone { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }

.slider-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--navy);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.slider-arrow:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.slider-arrow:disabled { opacity: 0.35; pointer-events: none; }

.slider-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 26px;
  margin: -10px -4px -6px;
}
.slider-track::-webkit-scrollbar { display: none; }

.service-card {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.service-card-img { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-chip { display: none; }

.service-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.service-card-body p { font-size: 15.5px; color: var(--muted); margin-bottom: 16px; }
.service-points { margin-bottom: 22px; display: grid; gap: 9px; }
.service-points li { display: flex; align-items: flex-start; gap: 9px; font-size: 15px; font-weight: 500; color: var(--ink); }
.service-points i { color: var(--blue); font-size: 17px; margin-top: 3px; }
.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--blue-deep);
}
.service-link i { transition: transform 0.2s ease; }
.service-card:hover .service-link i { transform: translateX(5px); }

.slider-footer { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 8px; }
.slider-counter { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--muted); letter-spacing: 0.08em; }
.slider-counter em { font-style: normal; color: var(--navy); font-size: 18px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: all 0.25s ease; padding: 0; }
.slider-dots button.active { width: 26px; border-radius: 99px; background: var(--blue); }

/* ---------- Warum wir ---------- */
.why { padding: 110px 0; background: var(--ice); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.why-sticky { position: sticky; top: 130px; }
.why-sticky .section-lead { margin-bottom: 30px; }
.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px;
  margin-top: 6px;
}
.why-badge i { font-size: 30px; color: var(--blue); }
.why-badge strong { display: block; font-size: 16px; color: var(--navy); }
.why-badge span { font-size: 14px; color: var(--muted); }
.why-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }

.why-marquees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  height: 560px;
}
.why-col {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.why-col-track { display: flex; flex-direction: column; will-change: transform; }
.why-col-up   .why-col-track { animation: why-scroll 30s linear infinite; }
.why-col-down .why-col-track { animation: why-scroll 36s linear infinite reverse; }
.why-col:hover .why-col-track { animation-play-state: paused; }
.why-col-group { display: flex; flex-direction: column; gap: 22px; padding-bottom: 22px; }
@keyframes why-scroll { to { transform: translateY(-50%); } }

.why-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-tile .tile-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ice-2), #fff);
  border: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-tile h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.why-tile p { font-size: 15px; color: var(--muted); }

/* ---------- Schritte ---------- */
.steps { padding: 110px 0; background: #fff; overflow: hidden; }
.steps-head { text-align: center; margin-bottom: 60px; }
.steps-head .kicker { justify-content: center; }
.steps-head .kicker::before { display: none; }
.steps-head .section-lead { margin: 0 auto; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
/* Fortschrittslinie */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 44px; left: 8%; right: 8%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ice-2), var(--blue-2) 50%, var(--ice-2));
  z-index: 0;
}
/* Wandernder Punkt: nur von links nach rechts, LÄUFT HINTER den Kreisen (z-index 1 < .step z-index 2) und verschwindet dahinter */
.steps-grid::after {
  content: "";
  position: absolute;
  top: 38px; left: 8%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue-deep);
  box-shadow: 0 0 0 5px rgba(79, 135, 240, 0.22), 0 0 16px 4px rgba(79, 135, 240, 0.6);
  z-index: 1;
  animation: step-travel 5.5s linear infinite;
}
@keyframes step-travel {
  0%   { left: 8%; }
  100% { left: calc(92% - 14px); }
}
.step { position: relative; z-index: 2; text-align: center; padding: 0 8px; }
.step-num {
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(150deg, #fff, var(--ice));
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-soft), 0 0 0 6px rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-num i { font-size: 34px; color: var(--blue-deep); animation: step-float 3.6s ease-in-out infinite; }
.step:nth-child(even) .step-num i { animation-delay: 0.7s; }
@keyframes step-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) {
  .steps-grid::after, .step-num i, .why-col-track { animation: none !important; }
}
.step-num::after {
  content: attr(data-n);
  position: absolute;
  top: -6px; right: -6px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  color: #fff;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(47, 102, 216, 0.35);
}
.step h3 { font-size: 19.5px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- Galerie ---------- */
.gallery { padding: 110px 0; background: var(--ice); overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 22px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(10, 28, 66, 0.72);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 999px;
}

/* ---------- Referenzen Doppel-Marquee (gegenläufig, volle Breite) ---------- */
.gallery-marquees {
  display: grid;
  gap: 26px;
  margin-top: 50px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: mq-scroll 55s linear infinite; }
.marquee-right .marquee-track { animation-direction: reverse; animation-duration: 64s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; gap: 24px; padding-right: 24px; }
.mq-item { width: 330px; flex-shrink: 0; display: flex; flex-direction: column; }
.mq-thumb {
  height: 215px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.mq-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mq-cap {
  margin-top: 13px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
}
@keyframes mq-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; }
}

/* ---------- Standorte (Navy) ---------- */
.areas {
  padding: 120px 0;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(79, 135, 240, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
}
.areas .kicker { color: var(--blue-2); }
.areas .section-title { color: #fff; }
.areas .section-lead { color: rgba(255, 255, 255, 0.78); }

.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

/* Bullet-Liste */
.area-bullets { display: grid; gap: 15px; margin: 30px 0 34px; }
.area-bullets li { display: flex; align-items: flex-start; gap: 13px; font-size: 16.5px; font-weight: 500; color: #eaf1ff; }
.area-bullets li i {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(79, 135, 240, 0.32);
  border: 1px solid rgba(127, 168, 255, 0.55);
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* CTA-Buttons */
.area-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.area-actions .btn-ghost { border-color: rgba(255, 255, 255, 0.5); }

/* Berlin-Karte als Foto-Karte + pulsierender Marker */
/* 3D-Karte liegt frei in der Sektion (kein Rahmen), Kanten weich ausgeblendet */
.berlin-map-wrap {
  position: relative;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 48%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 78% at 50% 48%, #000 58%, transparent 100%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}
.berlin-map-wrap img { width: 100%; display: block; }
.map-marker { position: absolute; width: 0; height: 0; z-index: 3; }
.map-marker-dot {
  position: absolute;
  left: -10px; top: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-deep);
  border: 3px solid #fff;
  box-shadow: 0 5px 14px rgba(15, 42, 94, 0.45);
}
.map-marker-ring {
  position: absolute;
  left: -10px; top: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(79, 135, 240, 0.55);
  animation: marker-pulse 2.6s ease-out infinite;
}
@keyframes marker-pulse {
  0%   { transform: scale(1);   opacity: 0.75; }
  70%  { transform: scale(3.6); opacity: 0; }
  100% { transform: scale(3.6); opacity: 0; }
}
.map-marker-label {
  position: absolute;
  left: 50%; top: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(15, 42, 94, 0.94);
  color: #fff;
  padding: 7px 13px;
  border-radius: 11px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 20px rgba(4, 14, 40, 0.45);
}
.map-marker-label small { display: block; font-weight: 500; font-size: 11px; color: rgba(255, 255, 255, 0.72); margin-top: 1px; }
@media (prefers-reduced-motion: reduce) { .map-marker-ring { animation: none; opacity: 0.4; } }

/* ---------- Testimonials ---------- */
.reviews { padding: 110px 0; background: #fff; overflow: hidden; }

/* Google-Trust-Badges */
.reviews-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 20px; margin: 26px 0 6px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: var(--shadow-soft);
}
.google-badge .g-logo { width: 26px; height: 26px; flex-shrink: 0; }
.google-badge .g-rating { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--navy); line-height: 1; }
.google-badge .g-stars { color: #f5b731; font-size: 15px; letter-spacing: 1px; }
.google-badge .g-text { font-size: 12.5px; color: var(--muted); }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.trust-chip i { color: var(--green); font-size: 19px; }

/* Bewertungs-Slider (durchlaufend) */
.reviews-marquee {
  margin-top: 42px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track { display: flex; width: max-content; animation: mq-scroll 62s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-group { display: flex; gap: 24px; padding-right: 24px; }
.reviews-marquee .review-card { width: 380px; flex-shrink: 0; margin: 6px 0; }
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .reviews-track { animation: none; }
}

/* Trust-Chips UNTER den Bewertungen (mobil ausgeblendet) */
.reviews-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin-top: 40px; }
@media (max-width: 680px) { .reviews-chips { display: none; } }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.review-stars { color: #f5b731; font-size: 18px; letter-spacing: 2px; }
.review-g { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.9; }
.review-text { font-size: 15.5px; color: var(--ink); flex: 1; }
.review-meta { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue-2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-meta strong { display: block; font-size: 15.5px; color: var(--navy); }
.review-meta span { font-size: 13.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--ice); overflow: hidden; }
.faq-wrap { max-width: 800px; margin: 50px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item.open { box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--navy);
}
.faq-q i { font-size: 22px; color: var(--blue); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 26px 24px; font-size: 15.5px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  padding: 130px 0;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(10, 28, 66, 0.93) 0%, rgba(13, 41, 94, 0.82) 55%, rgba(13, 41, 94, 0.55) 100%);
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.cta .kicker { color: var(--blue-2); }
.cta .section-title { color: #fff; }
.cta-text { color: rgba(255, 255, 255, 0.85); font-size: 17.5px; margin-bottom: 28px; max-width: 520px; }
.cta-points { display: grid; gap: 13px; margin-bottom: 34px; }
.cta-points li { display: flex; align-items: center; gap: 12px; font-size: 16.5px; font-weight: 600; }
.cta-points i {
  width: 27px; height: 27px;
  border-radius: 50%;
  background: rgba(79, 135, 240, 0.35);
  border: 1px solid rgba(127, 168, 255, 0.6);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-alt { display: flex; flex-wrap: wrap; gap: 14px 30px; font-size: 15.5px; color: rgba(255, 255, 255, 0.85); }
.cta-alt a { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: #fff; }
.cta-alt i { color: var(--blue-2); font-size: 19px; }

/* Formular-Karte */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(4, 14, 40, 0.45);
  padding: 38px 36px;
  color: var(--ink);
}
.form-card h3 { font-size: 23px; margin-bottom: 6px; }
.form-card .form-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--ice);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%235c6f93' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); background: #fff; }
.form-field textarea { resize: vertical; min-height: 96px; }
.form-consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form-consent input { margin-top: 3px; accent-color: var(--blue); }
.form-consent a { color: var(--blue-deep); text-decoration: underline; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 18px; }
.form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-note i { color: var(--green); }
.form-success { text-align: center; padding: 40px 10px; display: none; }
.form-success i { font-size: 54px; color: var(--green); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: rgba(255, 255, 255, 0.78); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer-brand svg { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 15px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 16.5px; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 15px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--blue-2); }
.footer-col li { font-size: 15px; display: flex; align-items: flex-start; gap: 10px; }
.footer-col li i { color: var(--blue-2); font-size: 18px; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.78); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 22px; }

/* ---------- Sticky Mobile Bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(15, 42, 94, 0.12);
}
.sticky-bar .btn { padding: 14px 10px; font-size: 15px; width: 100%; }

/* ---------- Unterseiten ---------- */
.subhero {
  position: relative;
  min-height: min(90vh, 840px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 80px) 0 90px;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
.subhero-bg { position: absolute; inset: 0; z-index: -2; }
.subhero-bg img { width: 100%; height: 100%; object-fit: cover; }
.subhero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(10, 28, 66, 0.88) 0%, rgba(13, 41, 94, 0.66) 46%, rgba(13, 41, 94, 0.22) 78%, rgba(13, 41, 94, 0.08) 100%);
}
.subhero-usps { display: grid; grid-template-columns: 1fr; gap: 12px; justify-content: start; margin: 0 0 30px; }
.subhero-usps li { display: flex; align-items: center; gap: 10px; font-size: 16.5px; font-weight: 600; }
.subhero-usps i {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(79, 135, 240, 0.35);
  border: 1px solid rgba(127, 168, 255, 0.6);
  color: #fff;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.75); margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 14px; }
.subhero-h1 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #cfe0ff;
  display: block;
  margin-bottom: 10px;
}
.subhero-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  max-width: 700px;
  margin-bottom: 20px;
}
.subhero-headline .hl { color: var(--blue-2); }
.subhero-text { font-size: 18px; color: rgba(255, 255, 255, 0.88); max-width: 580px; margin-bottom: 28px; }
.subhero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 8px; }
.subhero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.subhero-chips span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.subhero-chips i { color: var(--blue-2); }

/* Intro Split */
.intro { padding: 110px 0; background: #fff; overflow: hidden; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.intro-media .intro-badge {
  position: absolute;
  right: -18px; bottom: -22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.intro-badge i { font-size: 30px; color: var(--blue); }
.intro-badge strong { display: block; font-family: var(--font-display); font-size: 17px; color: var(--navy); }
.intro-badge span { font-size: 13.5px; color: var(--muted); }
.intro-list { margin-top: 26px; display: grid; gap: 14px; }
.intro-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16.5px; font-weight: 500; }
.intro-list i {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ice-2);
  color: var(--blue-deep);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Unter-Leistungen (Detail-Blöcke + Sticky-Nav) */
.subservices { padding: 110px 0; background: var(--ice); overflow: hidden; }
.subservices-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; margin-top: 50px; }
.subnav { position: sticky; top: 120px; display: grid; gap: 8px; }
.subnav a, .subnav .subnav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subnav a i, .subnav .subnav-btn i { font-size: 20px; color: var(--blue); }
.subnav a:hover, .subnav .subnav-btn:hover { background: #fff; color: var(--navy); }
.subnav a.active, .subnav .subnav-btn.active { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-soft); }
.subnav-cta { margin-top: 18px; background: var(--navy); border-radius: var(--radius-sm); padding: 24px 22px; color: #fff; }
.subnav-cta strong { font-family: var(--font-display); font-size: 17px; display: block; margin-bottom: 6px; }
.subnav-cta p { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-bottom: 16px; }
.subnav-cta .btn { width: 100%; justify-content: center; padding: 12px 16px; font-size: 14.5px; color: #fff; border: 2px solid rgba(255, 255, 255, 0.9); }
.subnav-cta-phone { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 14px; font-size: 15px; font-weight: 700; color: #fff; }
.subnav-cta-phone i { font-size: 18px; color: var(--blue-2); }
.subnav-cta-phone:hover { color: var(--blue-2); }

/* Tab-Panel: nur aktiver Block sichtbar, Box bleibt fest, Inhalt wechselt */
.ss-panel { position: relative; }
.ss-block {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.ss-block.active { display: block; animation: ss-fade 0.35s ease; }
@keyframes ss-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ss-kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--ice-2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.ss-block h3 { font-size: 26px; line-height: 1.18; margin-bottom: 14px; max-width: 90%; }
.ss-block > p { font-size: 15.5px; color: var(--muted); margin-bottom: 20px; position: relative; z-index: 1; }
.ss-points { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px; position: relative; z-index: 1; }
.ss-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; font-weight: 500; }
.ss-points i { color: var(--blue); font-size: 17px; margin-top: 3px; }
.ss-img { margin-top: 24px; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 21/9; }
.ss-img img { width: 100%; height: 100%; object-fit: cover; }

/* Rhythmus-Karten */
.rhythm { padding: 110px 0; background: #fff; overflow: hidden; }
.rhythm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; position: relative; z-index: 1; }
.rhythm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rhythm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.rhythm-card .r-icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-2), #fff);
  border: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.rhythm-card .r-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: rhythm-pulse 2.8s ease-out infinite;
}
.rhythm-card:nth-child(2) .r-icon::after { animation-delay: 0.7s; }
.rhythm-card:nth-child(3) .r-icon::after { animation-delay: 1.4s; }
@keyframes rhythm-pulse {
  0%   { transform: scale(0.9); opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.rhythm-card h3 { font-size: 21px; margin-bottom: 10px; }
.rhythm-card p { font-size: 15px; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .rhythm-card .r-icon::after { animation: none; opacity: 0; } }

/* ---------- CTA-Banner (volle Breite, Hintergrundbild) ---------- */
.cta-banner {
  position: relative;
  padding: 104px 0;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-banner-bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(10, 28, 66, 0.93) 0%, rgba(13, 41, 94, 0.8) 60%, rgba(47, 102, 216, 0.55) 100%);
}
.cta-banner .kicker { justify-content: center; color: var(--blue-2); }
.cta-banner .kicker::before { display: none; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 14px; }
.cta-banner h2 .hl { color: var(--blue-2); }
.cta-banner p { font-size: 18px; color: rgba(255, 255, 255, 0.86); max-width: 640px; margin: 0 auto 30px; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Vergleich (Vorteile / us vs. them) ---------- */
.compare { padding: 110px 0; background: var(--ice); overflow: hidden; }
.compare-head { text-align: center; margin-bottom: 50px; }
.compare-head .kicker { justify-content: center; }
.compare-head .kicker::before { display: none; }
.compare-head .section-lead { margin: 0 auto; }
.compare-table {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-cell {
  padding: 18px 24px;
  border-bottom: 1px solid var(--ice-2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
}
.compare-row:last-child .compare-cell { border-bottom: none; }
.compare-crit { font-weight: 600; color: var(--navy); }
.compare-us, .compare-them { justify-content: center; text-align: center; }
.compare-us { background: rgba(79, 135, 240, 0.07); }
.compare-head-cell { font-family: var(--font-display); font-weight: 700; font-size: 16px; padding: 20px 18px; border-bottom: 1px solid var(--ice-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center; }
.compare-head-cell.crit { align-items: flex-start; justify-content: center; color: var(--muted); font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-head-cell.us { background: var(--navy); color: #fff; }
.compare-head-cell.them { background: var(--ice-2); color: var(--muted); }
.compare-head-cell .ch-logo { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.compare-head-cell small { font-size: 11.5px; font-weight: 500; opacity: 0.8; }
.cmp-yes { color: var(--green); font-size: 24px; }
.cmp-no { color: #e0484f; font-size: 24px; }
.cmp-note { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.compare-foot { text-align: center; margin-top: 36px; }

/* Bild-Strip */
.strip { padding: 110px 0; background: #fff; overflow: hidden; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.strip-grid .gallery-item { aspect-ratio: 4/3; }

/* ---------- Kontakt-Seite ---------- */
.contact-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background:
    radial-gradient(700px 380px at 90% 20%, rgba(79, 135, 240, 0.12), transparent 60%),
    var(--ice);
  overflow: hidden;
}
.contact-hero .section-lead { max-width: 560px; }

.contact-body { padding: 90px 0 110px; background: #fff; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 24px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .cc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ice-2), #fff);
  border: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card strong { display: block; font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 3px; }
.contact-card span, .contact-card p { font-size: 15px; color: var(--muted); }
.contact-card .cc-value { font-size: 17px; font-weight: 700; color: var(--blue-deep); }

.contact-form-card {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 38px;
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-card .form-sub { font-size: 15px; color: var(--muted); margin-bottom: 26px; }
.contact-form-card .form-field input,
.contact-form-card .form-field select,
.contact-form-card .form-field textarea { background: #fff; }
.contact-form-card .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* Map */
.map-section { padding: 0 0 110px; background: #fff; }
.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 21/8;
  min-height: 320px;
  background: linear-gradient(140deg, var(--ice), var(--ice-2));
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 30px;
}
.map-placeholder i { font-size: 46px; color: var(--blue); }
.map-placeholder p { font-size: 14.5px; color: var(--muted); max-width: 420px; }

/* ---------- Rechtsseiten ---------- */
.legal-page { padding: calc(var(--header-h) + 70px) 0 100px; background: #fff; }
.legal-page .container { max-width: 860px; }
.legal-page h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 34px; }
.legal-page h2 { font-size: 24px; margin: 42px 0 14px; }
.legal-page h3 { font-size: 19px; margin: 28px 0 10px; }
.legal-page p, .legal-page li { font-size: 16px; color: var(--ink); margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 22px; }
.legal-page a { color: var(--blue-deep); text-decoration: underline; }

/* ---------- Cookie-Banner ---------- */
.cookie-wall { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cookie-wall[hidden] { display: none; }
.cookie-backdrop { position: absolute; inset: 0; background: rgba(10, 28, 66, 0.55); backdrop-filter: blur(4px); }
.cookie-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px rgba(4, 14, 40, 0.5);
  max-width: 480px;
  width: 100%;
  padding: 36px 34px;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-logo svg { height: 52px; width: auto; margin: 0 auto 18px; display: block; }
.cookie-title { font-size: 21px; text-align: center; margin-bottom: 12px; }
.cookie-text { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 14px; }
.cookie-links { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 22px; display: flex; justify-content: center; gap: 8px; }
.cookie-links a { color: var(--blue-deep); text-decoration: underline; }
.cookie-actions { display: grid; gap: 12px; }
.cookie-btn-accept { width: 100%; justify-content: center; }
.cookie-actions-row { display: flex; gap: 12px; }
.btn-cookie-reject, .btn-cookie-settings {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-cookie-reject:hover, .btn-cookie-settings:hover { border-color: var(--blue); color: var(--blue-deep); }
.cookie-settings-panel { margin-top: 22px; border-top: 1px solid var(--ice-2); padding-top: 20px; display: grid; gap: 16px; }
.cookie-settings-panel[hidden] { display: none; }
.cookie-category { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-cat-label { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.cookie-cat-text { font-size: 13px; color: var(--muted); }
.cookie-always-on { font-size: 12.5px; font-weight: 700; color: var(--green); white-space: nowrap; }
.cookie-toggle-wrap { position: relative; display: inline-block; width: 48px; height: 27px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle-input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-track {
  position: absolute; inset: 0;
  background: var(--line);
  border-radius: 99px;
  transition: background 0.25s ease;
}
.cookie-toggle-track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}
.cookie-toggle-input:checked + .cookie-toggle-track { background: var(--blue); }
.cookie-toggle-input:checked + .cookie-toggle-track::after { transform: translateX(21px); }

/* ---------- Promo-Popup (Scroll-Trigger) ---------- */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.promo-popup[hidden] { display: none; }
.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 66, 0.55);
  backdrop-filter: blur(4px);
}
.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 40px 90px rgba(4, 14, 40, 0.5);
  max-width: 760px;
  width: 100%;
  overflow: hidden;
  animation: promoIn 0.35s ease;
}
@keyframes promoIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.promo-media { position: relative; min-height: 100%; }
.promo-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(15, 42, 94, 0.0) 55%, rgba(15, 42, 94, 0.35) 100%);
}
.promo-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--navy);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.promo-close:hover { background: var(--ice-2); }
.promo-body { padding: 38px 36px 32px; }
.promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--ice-2);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}
.promo-body h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.promo-body h3 .hl { color: var(--blue); }
.promo-text { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.promo-points { display: grid; gap: 9px; margin-bottom: 22px; }
.promo-points li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.promo-points i { color: var(--blue); font-size: 17px; margin-top: 2px; }
.promo-actions { display: flex; gap: 12px; }
.promo-actions .btn { flex: 1; justify-content: center; padding: 14px 18px; font-size: 15px; }
.promo-note { margin-top: 12px; font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.promo-note i { color: var(--green); }

@media (max-width: 680px) {
  .promo-card { grid-template-columns: 1fr; max-width: 420px; max-height: 92vh; overflow-y: auto; }
  .promo-media { min-height: 130px; }
  .promo-body { padding: 26px 22px 24px; }
  .promo-actions { flex-direction: column; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Referenzen: keine Bild-Unterschriften mehr ---------- */
.mq-cap { display: none; }

/* ---------- Marken-Leiste (Logo-Marquee) ---------- */
.brands { padding: 56px 0 44px; background: #fff; position: relative; overflow: hidden; }
.brands-head { text-align: center; font-size: 13.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.brand-marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-track { display: flex; width: max-content; animation: mq-scroll 42s linear infinite; }
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-group { display: flex; align-items: center; gap: 68px; padding-right: 68px; }
.brand-logo { display: flex; align-items: center; height: 40px; white-space: nowrap; }
.brand-logo img { height: 100%; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: 0.65; transition: opacity 0.2s ease, filter 0.2s ease; }
.brand-marquee:hover .brand-logo img { opacity: 0.9; }
/* Text-Platzhalter, bis echte Logo-PNGs eingesetzt werden (TODO) */
.brand-logo .brand-ph { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; color: #aab6cc; }
@media (prefers-reduced-motion: reduce) { .brand-track { animation: none; } .brand-marquee { overflow-x: auto; } }

/* ---------- Dezente Punkt-Hintergründe (weniger steril) ---------- */
.dotbg { position: relative; }
.dotbg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(79, 135, 240, 0.13) 1.4px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.dotbg > .container, .dotbg > .gallery-marquees, .dotbg > .reviews-marquee { position: relative; z-index: 1; }

/* ---------- Transparenter Header über dem Hero (wird beim Scrollen solide) ---------- */
.logo svg { transition: height 0.25s ease, filter 0.25s ease; }
.site-header.header-transparent:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.header-transparent:not(.scrolled) .main-nav a,
.header-transparent:not(.scrolled) .header-phone { color: #fff; }
.header-transparent:not(.scrolled) .header-phone i { color: #fff; }
.header-transparent:not(.scrolled) .nav-toggle { color: #fff; }
.header-transparent:not(.scrolled) .logo svg { filter: brightness(0) invert(1); }

/* ---------- Intro-Bild etwas größer ---------- */
.intro-grid { grid-template-columns: 1.2fr 1fr; }
.intro-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* Scroll-Hinweis der Tabs: nur mobil sichtbar */
.subnav-hint { display: none; }

/* ---------- Kundenstimmen: Lead-Text + mobil-only Google-Badge ---------- */
.reviews-lead { text-align: center; font-size: 16px; color: var(--muted); max-width: 560px; margin: 12px auto 0; }
.reviews-trust-mobile { display: none; }
@media (max-width: 680px) { .reviews-trust-mobile { display: flex; } }

/* ---------- Vergleich: Logo im „Us"-Header ---------- */
.compare-head-cell.us .ch-logo-svg { height: 30px; width: auto; display: block; margin: 0 auto 2px; }

/* ---------- Floating-Kontakt-Button (Telefon / WhatsApp / E-Mail) ---------- */
.fab { position: fixed; right: 24px; bottom: 26px; z-index: 86; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab-action { display: inline-flex; align-items: center; gap: 10px; opacity: 0; transform: translateY(16px) scale(0.9); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; }
.fab.open .fab-action { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab.open .fab-action:nth-child(1) { transition-delay: 0.14s; }
.fab.open .fab-action:nth-child(2) { transition-delay: 0.08s; }
.fab.open .fab-action:nth-child(3) { transition-delay: 0.02s; }
.fab-action .fab-label { background: #fff; color: var(--navy); font-size: 13.5px; font-weight: 700; padding: 8px 13px; border-radius: 10px; box-shadow: 0 8px 20px rgba(4, 14, 40, 0.22); white-space: nowrap; }
.fab-action .fab-ic { width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; box-shadow: 0 8px 20px rgba(4, 14, 40, 0.3); flex-shrink: 0; }
.fab-call .fab-ic { background: var(--blue-deep); }
.fab-wa .fab-ic { background: #25d366; }
.fab-mail .fab-ic { background: var(--navy); }
.fab-toggle { position: relative; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(47, 102, 216, 0.5); cursor: pointer; }
.fab-toggle i { font-size: 28px; position: absolute; transition: opacity 0.2s ease, transform 0.3s ease; }
.fab-toggle .fab-ic-x { opacity: 0; transform: rotate(-90deg); }
.fab.open .fab-toggle .fab-ic-chat { opacity: 0; transform: rotate(90deg); }
.fab.open .fab-toggle .fab-ic-x { opacity: 1; transform: rotate(0); }
.fab-bubble { position: absolute; right: 76px; top: 50%; transform: translateY(-50%); background: var(--navy); color: #fff; font-size: 12.5px; font-weight: 700; padding: 9px 14px; border-radius: 12px; white-space: nowrap; box-shadow: 0 8px 20px rgba(4, 14, 40, 0.4); animation: fab-bob 2.4s ease-in-out infinite; }
.fab-bubble::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--navy); }
.fab.open .fab-bubble { opacity: 0; pointer-events: none; }
@keyframes fab-bob { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(-62%); } }
@media (prefers-reduced-motion: reduce) { .fab-bubble { animation: none; } }
@media (max-width: 900px) { .fab { right: 16px; bottom: 90px; } .fab-toggle { width: 58px; height: 58px; } .fab-toggle i { font-size: 25px; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 1fr; gap: 46px; }
  .hero-split .hero-content { max-width: 640px; }
  .quiz-card { margin: 0 auto; }
  .service-card { flex-basis: calc((100% - 26px) / 2); }
  .why-grid { grid-template-columns: 1fr; gap: 46px; }
  .why-sticky { position: static; }
  .areas-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .subservices-grid { grid-template-columns: 1fr; gap: 30px; position: relative; }
  /* Tabs mobil: horizontal scrollbar + rechter Fade + animiertes Chevron als „mehr"-Hinweis */
  .subnav { position: static; display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 10px; padding: 0 42px 6px 0; -ms-overflow-style: none; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, #000 80%, transparent 99%); mask-image: linear-gradient(90deg, #000 80%, transparent 99%); }
  .subnav::-webkit-scrollbar { display: none; }
  .subnav a, .subnav .subnav-btn { width: auto; white-space: nowrap; flex: 0 0 auto; padding: 11px 16px; border: 1px solid var(--line); background: #fff; }
  .subnav-hint {
    position: absolute;
    top: 8px; right: 0;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--blue-deep);
    box-shadow: 0 4px 12px rgba(15, 42, 94, 0.18);
    font-size: 19px;
    pointer-events: none;
    z-index: 2;
    animation: hint-nudge 1.4s ease-in-out infinite;
  }
  @keyframes hint-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
  .subnav-cta { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-btn { display: none; }

  .hero { padding-bottom: 130px; }
  .hero-usps { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--ice-2); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--ice-2); }

  .services-head { flex-direction: column; align-items: flex-start; }
  /* Warum-Marquee auf Mobil: statisch, alle Kacheln untereinander */
  .why-marquees { grid-template-columns: 1fr; height: auto; gap: 18px; }
  .why-col { overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .why-col-track { animation: none !important; }
  .why-col-group { padding-bottom: 0; gap: 18px; }
  .why-col-group[aria-hidden="true"] { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .steps-grid::before, .steps-grid::after { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: 1 / -1; }
  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-media .intro-badge { right: 12px; bottom: -22px; }
  .strip-grid { grid-template-columns: 1fr; }
  .ss-points { grid-template-columns: 1fr; }
  .ss-block { padding: 30px 24px; }
  .ss-block h3 { max-width: 100%; }
  .compare-table { grid-template-columns: 1.5fr 0.9fr 0.9fr; }
  .compare-cell, .compare-head-cell { padding: 14px 12px; font-size: 14px; }
  .compare-head-cell .ch-logo { font-size: 14px; }
  .sticky-bar { display: grid; }
  body { padding-bottom: 76px; }
  .site-footer { padding-bottom: 10px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .btn { white-space: normal; text-align: center; }
  .header-phone { white-space: nowrap; }

  .slider-zone { gap: 8px; grid-template-columns: auto 1fr auto; }
  .slider-arrow { width: 42px; height: 42px; font-size: 19px; }
  .service-card { flex-basis: 86%; }

  .hero-actions .btn { width: 100%; }
  .quiz-card { padding: 24px 18px 20px; }
  .q-grid-2 { grid-template-columns: 1fr 1fr; gap: 8px; }
  .q-grid-2 .q-opt { font-size: 13.5px; padding: 12px 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
  .contact-form-card { padding: 30px 22px; }
  .stats-band { margin-top: -46px; }
  .stat { padding: 22px 14px; }
  .stat-num { font-size: 27px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; }
  .mq-item { width: 230px; }
  .mq-thumb { height: 150px; }
  .mq-cap { font-size: 14px; margin-top: 10px; }
  .marquee-group { gap: 14px; padding-right: 14px; }
  .gallery-marquees { gap: 16px; }
  .reviews-marquee .review-card { width: 300px; }
  .reviews-group { gap: 16px; padding-right: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 34px; }
  .subhero { min-height: min(82vh, 640px); }
  .subhero-usps { grid-template-columns: 1fr; }
  .subhero-actions .btn { width: 100%; }
  .map-frame { aspect-ratio: 4/3; }
  .rhythm-grid { grid-template-columns: 1fr; }
  .cta-banner-actions .btn { width: 100%; }
  .compare-table { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .compare-cell, .compare-head-cell { padding: 12px 8px; font-size: 12.5px; }
  .compare-crit { font-size: 13px; }
  .cmp-yes, .cmp-no { font-size: 20px; }
  .quiz-badge { width: 84px; height: 84px; top: -22px; right: 12px; border-width: 3px; }
  .quiz-badge strong { font-size: 25px; }
  .quiz-badge span { font-size: 9px; }
  .brand-group { gap: 40px; padding-right: 40px; }
  .brand-logo { height: 30px; }
  .brand-logo .brand-ph { font-size: 18px; }
}
