/* ============================================================
   GABI REINIGUNGSSERVICE — style.css
   Leitmotiv: "Man sieht sofort, wer hier geputzt hat."
   Helles, glasklares Premium-System mit "Polish Sheen" Signature-Motion
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand */
  --accent:        #2E86D6;   /* Sky-Blue — Vertrauen & Wasser */
  --accent-light:  #56ACE6;   /* Logo-Blau, dekorativ */
  --accent-dark:   #1D6FB0;
  --accent-brand:  #50ADE6;   /* Exaktes Logo-Blau — für Textauszeichnung */
  --accent-2:      #14B8A6;   /* Aqua-Mint — Frische */
  --accent-2-light:#5EEAD4;

  /* Neutrals — bewusst hell: "sauber & rein" */
  --bg:            #F6FAFD;
  --surface:       #FFFFFF;
  --surface-alt:   #EEF4FA;
  --ink:           #0F2136;
  --ink-muted:     #56677A;
  --ink-faint:     #8A99A8;
  --line:          rgba(15, 33, 54, 0.08);
  --dark:          #0A1628;

  /* Glass */
  --glass-bg:      rgba(255, 255, 255, 0.55);
  --glass-border:  rgba(255, 255, 255, 0.65);

  /* Radii */
  --radius:        20px;
  --radius-sm:     12px;
  --radius-lg:     28px;

  /* Shadows */
  --shadow-sm:  0 2px 10px rgba(15, 33, 54, 0.06);
  --shadow-md:  0 12px 32px rgba(15, 33, 54, 0.10);
  --shadow-lg:  0 24px 64px rgba(15, 33, 54, 0.16);
  --shadow-accent: 0 14px 36px rgba(46, 134, 214, 0.28);

  /* Motion */
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxury:   cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --font-display:  'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --container:     1240px;
  --section-padding: clamp(4rem, 8vw, 7rem);
  --nav-h:         76px; /* Freiraum für den schwebenden Dock-Pill (20px Abstand + Pill-Höhe) */
  --ribbon-h:      54px; /* Höhe des Standort-Tickers — Basis für Hero-Bottom-Reserve */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  overflow: hidden;
}

.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(46, 134, 214, 0.36); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(15, 33, 54, 0.04);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(15, 33, 54, 0.07);
  border-color: rgba(15, 33, 54, 0.16);
  transform: translateY(-2px);
}

.btn-nav { padding: 0.72rem 1.4rem; font-size: 0.92rem; }

/* Polish Sheen — Signature-Element: Lichtstreifen wie auf frisch gewischter Fläche */
.btn-shine { isolation: isolate; }
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
}
.btn-shine.is-sheening::after,
.btn-shine:hover::after {
  animation: sheen-sweep 1.1s var(--ease-out);
}
@keyframes sheen-sweep {
  0%   { left: -60%; }
  100% { left: 130%; }
}

/* ============================================================
   SCROLL-PROGRESS-BAR — site-weiter Fortschrittsbalken
   Referenz: eminabi-transporte. z-index über der Dock-Nav (900),
   damit er auch beim Scrollen sichtbar am oberen Rand bleibt.
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 950;
  background: rgba(15, 33, 54, 0.06);
}
.scroll-progress-bar {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(46, 134, 214, 0.5);
  will-change: transform;
}

/* ============================================================
   MOBILE STICKY-CTA-BAR — Basis (versteckt). Sichtbarkeit und
   volle Gestaltung ab 768px in mobile.css, JS blendet per
   .visible-Klasse ein. Referenz: eminabi-transporte.
   ============================================================ */
.mobile-cta-bar { display: none; }

/* ============================================================
   NAVIGATION — macOS Dock Nav
   Referenz: eminabi-transporte, in Gabi-Reinigung-Markenfarben
   ============================================================ */

/* Äußerer Header — transparent, volle Breite, Klicks gehen durch;
   nur der Dock-Pill selbst ist interaktiv */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

/* ---- Der Dock-Pill ---- */
.nav-dock {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  background: rgba(8, 18, 36, 0.7);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 40px rgba(4, 10, 22, 0.55),
    0 3px 10px rgba(4, 10, 22, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: auto;
  max-width: calc(100vw - 40px);
  transition: box-shadow 0.3s ease;
}
.nav-dock:hover {
  box-shadow:
    0 16px 48px rgba(4, 10, 22, 0.6),
    0 4px 14px rgba(4, 10, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ---- Trenner ---- */
.dock-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  margin-inline: 6px;
  flex-shrink: 0;
  border-radius: 1px;
}

/* ---- Logo ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 6px;
  border-radius: 18px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  transform-origin: center bottom;
}
.nav-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.04) translateY(-1px);
}
.nav-logo img {
  height: 32px; width: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ---- Nav-Links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  transform-origin: center bottom;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  transform: scale(1.1) translateY(-2px);
}
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ---- CTA-Bereich ---- */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-brand);
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
  transform-origin: center bottom;
}
.nav-phone:hover {
  background: rgba(80, 173, 230, 0.14);
  transform: scale(1.08) translateY(-1px);
}

/* CTA-Button im Dock — kompakter als die Standardgröße */
.nav-cta .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 14px;
}
.nav-cta .btn:hover { transform: scale(1.06) translateY(-2px); }

/* ---- Hamburger (nur Mobile) ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px; height: 36px;
  gap: 5px;
  border-radius: 12px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Dropdown — schwebt unter dem Dock ---- */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
  margin-top: 10px;
  pointer-events: auto;
  background: rgba(7, 16, 32, 0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(4, 10, 22, 0.5);
  min-width: 240px;
  max-width: calc(100vw - 40px);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav-mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  border-radius: 12px;
}

/* Outline-Button — für den Anrufen-Link im Mobile-Dropdown */
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.12);
  will-change: transform;
  filter: saturate(0.88) brightness(0.98) contrast(1.03);
}

/* Marken-Farbgrade — tönt das Foto leicht in Richtung Markenblau statt es
   nur abzudunkeln. mix-blend-mode: color übernimmt Ton/Sättigung dieser
   Ebene, behält aber die Helligkeitsstruktur des Fotos (Lichter/Schatten
   bleiben erhalten). Bewusst subtil — das Foto soll Foto bleiben. */
.hero-grade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(150deg, #1D6FB0 0%, #2E86D6 45%, #0A1628 100%);
  mix-blend-mode: color;
  opacity: 0.3;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 18, 36, 0.5) 0%, rgba(8, 18, 36, 0.34) 32%, rgba(8, 18, 36, 0.56) 78%, rgba(5, 13, 28, 0.86) 100%),
    linear-gradient(120deg, rgba(20, 60, 100, 0.3), rgba(10, 40, 70, 0.12) 45%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 1.75rem calc(var(--ribbon-h) + 100px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}
.hero-badge svg { color: var(--accent-brand); flex-shrink: 0; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5rem;
}
.hero-title-line { display: block; }
.hero-title-accent {
  color: var(--accent-brand);
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-bottom: 2.4rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.hero-sub-location { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

/* Kein gemeinsamer Pillen-Hintergrund — jeder Punkt ist sein eigener
   kleiner Glas-Chip. Wirkt auch bei Zeilenumbruch bewusst gesetzt statt
   schief befüllt (einheitlich mit der Mobile-Darstellung). */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.hero-trust-item:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}
.hero-trust-item svg { color: var(--accent-brand); flex-shrink: 0; }
.hero-trust-sep { display: none; }

/* MyHammer-Badge — externe Verifizierung, bekommt bewusst mehr Gewicht
   als die selbstbeschriebenen Chips: satterer Akzent-Ton + Polish-Sheen
   (Signature-Motion, wiederverwendet statt neu erfunden) */
.hero-trust-item--verified {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(80, 173, 230, 0.32), rgba(80, 173, 230, 0.12));
  border-color: rgba(122, 196, 240, 0.65);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(46, 134, 214, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.hero-trust-item--verified svg { color: #fff; }
@media (hover: hover) {
  .hero-trust-item--verified:hover {
    background: linear-gradient(135deg, rgba(80, 173, 230, 0.42), rgba(80, 173, 230, 0.18));
    border-color: rgba(122, 196, 240, 0.85);
  }
}

/* Formelbasiert über dem Standort-Ticker positioniert —
   verhindert Überschneidung mit der Trust-Leiste auf jeder Viewport-Höhe */
.hero-scroll {
  position: absolute;
  bottom: calc(var(--ribbon-h) + 18px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-brand), transparent);
  animation: hero-scroll-line 2s ease-in-out infinite;
}
@keyframes hero-scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Standort-Ticker — Endlos-Schleife des Einsatzgebiets */
.hero-locations {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  padding: 1.05rem 0;
  background: linear-gradient(180deg, rgba(6, 15, 28, 0) 0%, rgba(6, 15, 28, 0.62) 55%, rgba(6, 15, 28, 0.82) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hero-locations-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  white-space: nowrap;
  animation: hero-locations-scroll 34s linear infinite;
}
.hero-locations:hover .hero-locations-track,
.hero-locations:focus-within .hero-locations-track {
  animation-play-state: paused;
}

.hero-locations-item {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-locations-item.is-highlight { color: var(--accent-brand); }

.hero-locations-dot {
  width: 4px; height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-brand);
  opacity: 0.8;
}

@keyframes hero-locations-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Entrance fallback: visible without JS */
.hero-badge, .hero-title-line, .hero-sub, .hero-actions, .hero-trust, .hero-scroll {
  opacity: 1;
}
.js-loaded .hero-badge,
.js-loaded .hero-title-line,
.js-loaded .hero-sub,
.js-loaded .hero-actions,
.js-loaded .hero-trust,
.js-loaded .hero-scroll {
  opacity: 0;
}
.js-loaded .hero-locations { opacity: 0; }

/* ---------- Höhen-Kompression: kurze Viewports (Laptops, Browserfenster) ----------
   Verhindert Kollision von Trust-Leiste, Scroll-Indikator und Standort-Ticker
   auf Bildschirmen mit wenig vertikalem Platz — unabhängig von der Breite. */
@media (max-height: 820px) {
  :root { --ribbon-h: 44px; }

  .hero-content { padding-top: calc(var(--nav-h) + 1rem); }
  .hero-badge { margin-bottom: 1.1rem; }
  .hero-title { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 1rem; }
  .hero-sub { margin-bottom: 1.6rem; }
  .hero-actions { margin-bottom: 1.6rem; }
  .hero-trust { padding: 0.7rem 1.3rem; }
  .hero-locations { padding: 0.75rem 0; }
  .hero-scroll-line { height: 28px; }
}

@media (max-height: 680px) {
  .hero-scroll { display: none; }
}

/* ============================================================
   SECTION HEADER — einheitliches Muster für alle Sektionen
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-brand);
  background: rgba(80, 173, 230, 0.08);
  border: 1px solid rgba(80, 173, 230, 0.18);
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ============================================================
   FAKTEN & VERTRAUEN
   ============================================================ */
.facts {
  position: relative;
  padding: var(--section-padding) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg);
  overflow: hidden;
}
.facts-glow {
  position: absolute;
  z-index: 0;
  left: 50%; top: 50%;
  width: 62vw; height: 62vw;
  max-width: 880px; max-height: 880px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(80, 173, 230, 0.12), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}
.facts-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.facts-bar {
  position: relative;
  display: flex;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* NEU-Ribbon — durchgehendes Band diagonal über die obere Ecke gelegt,
   wird vom overflow:hidden der Bar sauber an den Rändern abgeschnitten
   (Standardtechnik für Eck-Ribbons). Periodisch wiederkehrender
   Polish-Sheen — dasselbe Signature-Motiv wie der Hero-CTA, statt einer
   neuen, eigenständigen Bewegungsidee. */
.facts-new-badge {
  position: absolute;
  top: 24px; right: -46px;
  z-index: 2;
  width: 170px;
  padding: 0.45rem 0;
  text-align: center;
  transform: rotate(45deg);
  transform-origin: center;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(46, 134, 214, 0.32);
  overflow: hidden;
}
.facts-new-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: facts-badge-sheen 4.5s ease-in-out infinite;
}
@keyframes facts-badge-sheen {
  0%   { left: -60%; }
  20%  { left: 130%; }
  100% { left: 130%; }
}

.facts-item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: clamp(2rem, 3.5vw, 2.6rem) 1.5rem;
  transition: background var(--transition);
}
.facts-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22%; bottom: 22%; right: 0;
  width: 1px;
  background: var(--line);
}
@media (hover: hover) {
  .facts-item:hover { background: rgba(80, 173, 230, 0.035); }
  .facts-item:hover .facts-icon {
    background: rgba(80, 173, 230, 0.16);
    transform: translateY(-2px);
  }
}

.facts-icon {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(80, 173, 230, 0.1);
  color: var(--accent-brand);
  transition: background var(--transition), transform var(--transition);
}
.facts-icon svg { width: 24px; height: 24px; }

/* Bespoke Mikro-Gesten — je Icon eine eigene, inhaltlich passende
   Erzählung statt eines einheitlichen Effekts für alle vier */

/* Standort-Pin: Ping-Ring markiert einmalig den "Standort" nach der Landung */
.facts-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent-brand);
  display: none;
  pointer-events: none;
}

/* Chat-Bubble: kurze "tippt gerade..."-Punkte, bevor die Bubble sich setzt */
.facts-typing {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.facts-typing span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-brand);
}

/* Wort-Kaskade — Maske pro Wort für ein sauberes "baut sich auf"-Reveal */
.facts-value--text, .facts-unit { overflow: visible; }
.facts-word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.facts-word-inner { display: inline-block; }

.facts-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.facts-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  justify-content: center;
  white-space: nowrap;
}
.facts-value--text { font-size: clamp(1.1rem, 1.7vw, 1.3rem); white-space: normal; }
.facts-unit { font-size: 0.7em; font-weight: 600; color: var(--accent-brand); }
.facts-label {
  font-size: 0.86rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services {
  position: relative;
  padding: var(--section-padding) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--surface-alt);
  overflow: hidden;
}

/* Ambiente-Glow — langsam driftend statt statisch, damit die Fläche
   nie ganz still steht, auch ohne Interaktion */
.services-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(80, 173, 230, 0.12), transparent 70%);
  animation: services-glow-drift 20s ease-in-out infinite alternate;
}
.services-glow--1 { width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; top: -14%; left: -12%; }
.services-glow--2 {
  width: 38vw; height: 38vw; max-width: 540px; max-height: 540px;
  bottom: -16%; right: -10%;
  animation-delay: -9s;
  animation-direction: alternate-reverse;
}
@keyframes services-glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 4%) scale(1.1); }
}

.services-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.service-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
}
.service-card:hover { box-shadow: var(--shadow-lg); }

/* Licht-Spot folgt der Maus — nur Desktop, per JS über --mx/--my gesetzt */
.service-card-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(80, 173, 230, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .service-card:hover .service-card-spotlight { opacity: 1; }
}
@media (hover: none) {
  .service-card:active { transform: scale(0.98) !important; }
}

.service-card-head, .service-card-body { position: relative; z-index: 1; }

.service-card-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
}

.service-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(80, 173, 230, 0.1);
  color: var(--accent-brand);
}
.service-icon svg { width: 24px; height: 24px; }

.service-head-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.service-teaser {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.4;
  min-height: 2.4em;
}

.service-count {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
  white-space: nowrap;
}

.service-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: transform var(--transition);
}
.service-chevron svg { width: 18px; height: 18px; }
.service-card.is-open .service-chevron { transform: rotate(180deg); }

/* Höhen-Animation über CSS Grid statt JS-Höhenmessung — robust und
   ruckelfrei, weil der Browser die Interpolation selbst übernimmt. */
.service-card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.service-card.is-open .service-card-body { grid-template-rows: 1fr; }
.service-card-body-inner { overflow: hidden; min-height: 0; }

.service-list {
  padding: 0 1.5rem 1.5rem calc(52px + 1.1rem + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.service-list svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: var(--accent-brand);
}

.services-note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.services-note p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.services-note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   VORHER / NACHHER — dunkles Galerie-Setting als bewusster
   Kontrast zu den hellen Sektionen davor
   ============================================================ */
.compare {
  position: relative;
  padding: var(--section-padding) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--dark);
  overflow: hidden;
}
.compare-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Section-Header auf dunklem Grund */
.compare .section-tag {
  color: var(--accent-brand);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.compare .section-title { color: #fff; }
.compare .section-subtitle { color: rgba(255, 255, 255, 0.62); }

/* Kategorie-Tabs */
.compare-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 2.6rem);
}
.compare-tab {
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
@media (hover: hover) {
  .compare-tab:hover { background: rgba(255, 255, 255, 0.1); color: #fff; transform: translateY(-1px); }
}
.compare-tab.is-active {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

/* Slider */
.compare-slider { max-width: 920px; margin: 0 auto; }
.compare-media {
  --pos: 50%;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  cursor: ew-resize;
  user-select: none;
}

.compare-pane { position: absolute; inset: 0; background: var(--dark); }
.compare-pane--after { clip-path: inset(0 0 0 var(--pos)); }

.compare-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-badge {
  position: absolute;
  top: 1.1rem;
  z-index: 3;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.compare-badge--before { left: 1.1rem; background: rgba(0, 0, 0, 0.45); color: #fff; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.compare-badge--after { right: 1.1rem; background: rgba(255, 255, 255, 0.88); color: var(--ink); }

.compare-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
}
.compare-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.compare-handle svg { width: 20px; height: 20px; }

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}
.compare-range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100%; }
.compare-range::-moz-range-thumb { width: 46px; height: 100%; border: none; background: transparent; }
.compare-range::-moz-range-track { background: transparent; border: none; }

.compare-category-label {
  text-align: center;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.compare-cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.compare-cta p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about {
  padding: var(--section-padding) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg);
}
.about-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Linksbündige Variante des Section-Headers — redaktioneller Charakter
   statt des zentrierten Feature-Musters von Fakten/Leistungen */
.about .section-header {
  text-align: left;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  max-width: 640px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1.4rem;
}
.about-highlight { font-weight: 600; }
.about-highlight--reinigung { color: var(--accent-brand); }
.about-highlight--garten { color: #1B5E20; }
.about-story p:last-child { margin-bottom: 0; }

.about-perks {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.about-perks-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.about-perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.about-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink);
}
.about-perks-list svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--accent-brand);
}

/* Zwei-Marken-Streifen */
.brand-strip { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.brand-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 5vw, 3rem);
  overflow: hidden;
}

/* Zwei echte Marken-Medaillons statt erfundener Farbflächen —
   die Logos tragen die Identität, wir geben ihnen nur die Bühne */
.brand-medal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.brand-medal-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.brand-medal-glow--garten { background: radial-gradient(circle, rgba(27, 94, 32, 0.4), transparent 70%); }
.brand-medal-glow--reinigung { background: radial-gradient(circle, rgba(80, 173, 230, 0.4), transparent 70%); }

.brand-medal-img {
  position: relative;
  z-index: 1;
  height: clamp(92px, 13vw, 148px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(15, 33, 54, 0.14));
}
.brand-medal-sub {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
  max-width: 210px;
}

.brand-connector {
  position: relative;
  flex: 1;
  min-width: 32px;
  max-width: 140px;
  height: 2px;
}
.brand-connector-line {
  position: absolute;
  inset: 0;
  background: var(--line);
  transform-origin: left;
}
.brand-connector-spark {
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-brand);
  box-shadow: 0 0 12px 3px rgba(80, 173, 230, 0.55);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.brand-connector-spark.is-active {
  animation: brand-spark-pulse 0.9s ease-out;
}
@keyframes brand-spark-pulse {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  45%  { transform: translate(-50%, -50%) scale(1.7); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
}

.brand-strip-caption {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.98rem;
  color: var(--ink-muted);
  font-style: italic;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.about-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-muted);
  transition: color var(--transition);
}
.about-secondary-link svg { transition: transform var(--transition); }
.about-secondary-link:hover { color: var(--accent); }
.about-secondary-link:hover svg { transform: translateX(3px); }

/* ============================================================
   ABLAUF
   ============================================================ */
.process {
  padding: var(--section-padding) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--surface-alt);
}
.process-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.process-timeline {
  position: relative;
  display: flex;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* Scroll-gekoppelte Fortschrittslinie — füllt sich parallel zum
   Scrollen durch die Sektion, statt einmalig einzufliegen */
.process-track {
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.process-track-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
}

.process-step {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}

.process-number {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  transition: background 0.4s, border-color 0.4s, color 0.4s, box-shadow 0.4s;
}
.process-number.is-active {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.process-step-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.process-step-text p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 240px;
}

.process-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.process-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.94rem;
  color: var(--ink-muted);
  transition: color var(--transition);
}
.process-secondary-link span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}
.process-secondary-link:hover { color: var(--ink); }
.process-trust {
  font-size: 0.84rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-padding) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg);
}
.faq-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.faq-tab {
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
@media (hover: hover) {
  .faq-tab:hover { border-color: rgba(80, 173, 230, 0.35); color: var(--ink); transform: translateY(-1px); }
}
.faq-tab.is-active {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.faq-panels { position: relative; }
.faq-panel {
  max-width: 760px;
  margin: 0 auto;
}
.faq-panel:not(.is-active) { display: none; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0.25rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-item-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-brand);
  transition: transform var(--transition);
}
.faq-item.is-open .faq-item-icon { transform: rotate(45deg); }

.faq-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-item.is-open .faq-item-body { grid-template-rows: 1fr; }
.faq-item-body-inner { overflow: hidden; min-height: 0; }
.faq-item-body p {
  padding: 0 1.75rem 1.35rem 0.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
}
.faq-item-body p a { color: var(--accent); font-weight: 600; text-decoration: none; }
.faq-item-body p a:hover { text-decoration: underline; }

.faq-note {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.faq-note p { font-size: 1.02rem; color: var(--ink-muted); }

/* ============================================================
   ANFRAGE — dunkler Bookend zum Hero, verlinkt auf anfragen.html
   ============================================================ */
.closing {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-padding) clamp(1.25rem, 4vw, 2.5rem);
}

.closing-media { position: absolute; inset: 0; z-index: -4; overflow: hidden; }
.closing-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 88%;
  filter: saturate(0.88) brightness(0.98) contrast(1.03);
}

/* Gleiche Blau-Grade-Technik wie im Hero — bewusster Bookend */
.closing-grade {
  position: absolute; inset: 0; z-index: -3;
  background: linear-gradient(150deg, #1D6FB0 0%, #2E86D6 45%, #0A1628 100%);
  mix-blend-mode: color;
  opacity: 0.3;
  pointer-events: none;
}
.closing-overlay {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(6, 15, 28, 0.72) 0%, rgba(6, 15, 28, 0.58) 40%, rgba(5, 13, 28, 0.86) 100%);
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing .section-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}
.closing-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.closing-text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.closing-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.closing-secondary-link span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-brand);
}
.closing-secondary-link:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.75rem, 3vw, 2.25rem);
}
.footer-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent-brand); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent-brand); }

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

/* Externes Vertrauenssiegel (MyHammer) — dezent, eigene Zeile über dem
   Copyright, statt in footer-bottom mit hineingequetscht */
.footer-trust { display: flex; justify-content: center; padding-top: clamp(1.5rem, 3vw, 2rem); }
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-trust-badge svg { width: 15px; height: 15px; color: var(--accent-brand); flex-shrink: 0; }
@media (hover: hover) {
  .footer-trust-badge:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.22); color: #fff; }
}

.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}
.footer-credit span { font-weight: 700; color: rgba(255, 255, 255, 0.65); transition: color var(--transition); }
.footer-credit:hover { color: rgba(255, 255, 255, 0.7); }
.footer-credit:hover span { color: var(--accent-brand); }

/* ============================================================
   RECHTLICHE SEITEN — Impressum, Datenschutz, AGB
   Gemeinsames, schlichtes Textlayout — geteilt von allen
   Legal-Unterseiten.
   ============================================================ */
.legal-page {
  min-height: 100vh;
  background: var(--bg);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: opacity var(--transition);
}
.legal-back:hover { opacity: 0.75; }
.legal-back svg { width: 16px; height: 16px; }
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.legal-updated {
  color: var(--ink-faint);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.25rem 0 0.5rem;
}
.legal-section p,
.legal-section address,
.legal-section li {
  color: var(--ink-muted);
  line-height: 1.8;
  font-style: normal;
  font-size: 0.95rem;
}
.legal-section ul { padding-left: 1.25rem; margin: 0.5rem 0; }
.legal-section li { margin-bottom: 0.35rem; }
.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}
