/* =======================================================================
   Hausmeister Service Huck — Style System
   Neuwied · Gegründet 2025 · Dennis Huck
   ======================================================================= */

/* ── ROOT ─────────────────────────────────────────────────────────────── */
:root {
  /* Brand: Navy-Palette */
  --deep:        #030E22;
  --navy:        #071838;
  --navy-2:      #0A2050;
  --navy-elev:   #0D2460;
  --navy-card:   #0A1D4F;

  /* Akzente */
  --electric:    #2B6BFA;
  --electric-2:  #4F88FF;
  --cyan:        #36C5F0;
  --cyan-soft:   #9DE7FF;
  --cyan-pale:   rgba(54,197,240,.12);
  --green:       #2ECC71;
  --green-soft:  #9DEACB;
  --green-pale:  rgba(46,204,113,.12);
  --gold:        #F5B544;
  --gold-pale:   rgba(245,181,68,.14);
  --ice:         #60A5FA;
  --whatsapp:    #25D366;

  /* Text */
  --ink:         #0F1A33;
  --muted:       rgba(255,255,255,.65);
  --soft:        rgba(255,255,255,.85);

  /* Shadows */
  /* Navy-getönte Schatten statt reinem Schwarz — kohärent mit der Bühne */
  --shadow-sm:   0 10px 30px -12px rgba(2,8,24,.5);
  --shadow-md:   0 26px 60px -24px rgba(2,8,24,.62);
  --shadow-lg:   0 56px 110px -38px rgba(2,8,24,.78);

  /* Geometry — gestraffte, ruhigere Radien (architektonischer, weniger SaaS) */
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   22px;
  --content:     1280px;
  --header-h:    88px;
}

/* ── RESET ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; color: #fff; overflow-x: hidden; }
/* Kein horizontaler Scroll auf iOS — clip statt hidden für bessere Kompatibilität */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* ── SMOOTH ANCHOR SCROLLING ──────────────────────────────────────────── */
/* Weiches Scrollen für Anker-Links; Header-Höhe als scroll-padding, damit
   Abschnitte nicht unter dem fixierten Header verschwinden. JS ergänzt das
   für ältere/iOS-Browser, scroll-padding greift bei nativen #-Sprüngen. */
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (min-width: 1024px) { html { scroll-padding-top: 88px; } }
/* html liefert den sichtbaren Basisfarbe (body.page-index ist transparent → html scheint durch) */
html { background: var(--deep); }
/* Reicher Dunkel-Gradient als Bühnen-Basis auf page-index */
html:has(body.page-index) {
  background:
    radial-gradient(ellipse 140vw 65vh at 18%  0%,  rgba(43,107,250,.20) 0%, transparent 52%),
    radial-gradient(ellipse 120vw 55vh at 85%  8%,  rgba(54,197,240,.16) 0%, transparent 50%),
    radial-gradient(ellipse  90vw 80vh at 50% 100%,  rgba(2,6,18,1) 0%, transparent 65%),
    linear-gradient(175deg, #061845 0%, #041028 42%, #030C1E 72%, #020916 100%);
}
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.008em;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--electric); color: #fff; }

/* ── PREMIUM POLISH ───────────────────────────────────────────────────────
   Feiner Film-Grain über der ganzen Seite (killt Verlaufs-Banding, gibt eine
   analoge, hochwertige Textur) + konsistente Interaktions-/A11y-Details. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* Einheitlicher, sofort sichtbarer Fokus-Ring (Tastatur-Bedienung) */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Telefonnummern mit tabellarischen Ziffern — ruhiger, präziser Satz */
a[href^="tel:"] { font-variant-numeric: tabular-nums; letter-spacing: .01em; }
/* Weniger Schusterjungen/Witwen im Fließtext */
p { text-wrap: pretty; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.06;
  margin: 0;
}

.h-hero    { font-size: clamp(38px, 5.8vw, 88px); font-weight: 800; letter-spacing: -.038em; }
.h-section { font-size: clamp(28px, 3.8vw, 56px); font-weight: 700; letter-spacing: -.032em; }
.h-card    { font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; letter-spacing: -.018em; }

/* Editorial accent — Fraunces italic, gradient */
.accent-word {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--cyan) 0%, #B8E8FF 65%, #E6F4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -.03em;
}

/* Gradient text utility — helleres Spektrum für Kontrast auf dunklem BG */
.text-gradient {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--cyan-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
}

/* ── LAYOUT ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px)  { .container { padding: 0 36px; } }
@media (min-width: 1200px) { .container { padding: 0 48px; } }

.section {
  position: relative;
  padding: 68px 0;
  overflow: hidden;
  scroll-margin-top: 96px; /* Sticky-Header-Höhe für Anker berücksichtigen */
}
@media (min-width: 768px)  { .section { padding: 100px 0; } }
@media (min-width: 1280px) { .section { padding: 112px 0; } }

/* ── BACKGROUNDS ─────────────────────────────────────────────────────── */
.bg-dark {
  background:
    radial-gradient(1100px 600px at 90% 0%, rgba(43,107,250,.28), transparent 62%),
    radial-gradient(900px 700px at 0% 110%, rgba(54,197,240,.22), transparent 60%),
    linear-gradient(180deg, #071840 0%, #081E48 50%, #061436 100%);
}
.bg-darker {
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(43,107,250,.22), transparent 60%),
    linear-gradient(180deg, #04112E 0%, #06163A 100%);
}

/* Unterseiten (ohne stage.js Three.js): harmonisierte Hintergründe ohne harte Farbsprünge.
   bg-dark und bg-darker werden näher aneinander angeglichen, damit Übergänge weich bleiben. */
body:not(.page-index) .bg-dark {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(43,107,250,.16), transparent 58%),
    radial-gradient(700px 450px at 8% 100%, rgba(54,197,240,.10), transparent 55%),
    linear-gradient(180deg, #07102E 0%, #070E2A 100%);
}
body:not(.page-index) .bg-darker {
  background:
    radial-gradient(700px 400px at 95% 0%, rgba(43,107,250,.12), transparent 55%),
    linear-gradient(180deg, #060D28 0%, #070F2C 100%);
}
/* Weiche Überlappung: jede Section bekommt an Ober- und Unterkante einen subtilen Verlauf */
body:not(.page-index) .section::before,
body:not(.page-index) .section::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  pointer-events: none;
  z-index: 0;
}
body:not(.page-index) .section::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(6,13,38,.45), transparent);
}
body:not(.page-index) .section::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(6,13,38,.45), transparent);
}
/* Contact-Section und Saison behalten eigene Akzente */
body:not(.page-index) .bg-contact {
  background:
    radial-gradient(1000px 500px at 50% -10%, rgba(43,107,250,.22), transparent 52%),
    linear-gradient(180deg, #060E28 0%, #040A1E 100%);
}
body:not(.page-index) .bg-accent-green {
  background:
    radial-gradient(800px 400px at 75% 0%, rgba(46,204,113,.14), transparent 55%),
    linear-gradient(180deg, #060E28 0%, #070F2C 100%);
}
.bg-accent-green {
  background:
    radial-gradient(1000px 500px at 80% 0%, rgba(46,204,113,.18), transparent 60%),
    radial-gradient(600px 400px at 10% 100%, rgba(54,197,240,.12), transparent 60%),
    linear-gradient(180deg, #040F26 0%, #061634 100%);
}
.bg-contact {
  background:
    radial-gradient(1200px 600px at 50% -20%, rgba(43,107,250,.35), transparent 55%),
    radial-gradient(800px 500px at 80% 100%, rgba(54,197,240,.22), transparent 55%),
    linear-gradient(180deg, #050E28 0%, #030C1E 100%);
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Ruhiges Hover statt verspieltem Glanz-Sweep (Template-Tell entfernt) */
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--electric);
  color: #fff;
  box-shadow: 0 10px 26px -14px rgba(43,107,250,.55);
}
.btn--primary:hover { background: var(--electric-2); box-shadow: 0 14px 32px -14px rgba(43,107,250,.7); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(37,211,102,.5);
}
.btn--whatsapp:hover { background: #1FBF5A; box-shadow: 0 20px 40px -10px rgba(37,211,102,.7); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15,26,51,.2);
}
.btn--ghost-light:hover { background: var(--ink); color: #fff; }

/* ── HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  pointer-events: none;
  /* WICHTIG: KEIN fill-mode "both"/"forwards" — sonst bleibt der End-Keyframe
     transform:translateY(0) dauerhaft bestehen und erzeugt einen Containing-Block.
     Das würde das position:fixed Mobile-Menü (inset:0) am Header statt am Viewport
     verankern (Menü nur header-hoch, Inhalt scheint durch). */
  animation: fadeDown .7s cubic-bezier(.22,1,.36,1);
  /* Flush, randlose Leiste mit dezenter optischer Basis: schon im Ruhezustand
     ein sehr leichter, nach unten auslaufender Scrim + feine Haarlinie, damit
     der Header verankert wirkt und nicht „leer oben schwebt". Kein Pill, kein
     UI-Card-Look, kein starker Glow. Beim Scrollen wird der Scrim ruhig fester. */
  /* Ruhige, architektonische Leiste: anfangs nur ein sehr sanfter, gleich-
     mäßiger Schutz-Scrim oben (keine Glas-Spielerei, kein Blur), beim Scrollen
     eine fast deckende, flache Markenleiste mit feiner neutraler Haarlinie —
     kein Glow, keine Transparenz-Effekte. */
  background: linear-gradient(180deg, rgba(4,11,28,.46) 0%, rgba(4,11,28,0) 100%);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(5,12,30,.97);
  border-bottom-color: rgba(255,255,255,.08);
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-header__wrap { pointer-events: auto; }

.site-header .container.site-header__wrap {
  max-width: 1440px;
}

/* Panel ist nur noch ein transparenter, sauber ausgerichteter Flex-Aufbau —
   die horizontale Rhythmik liefert der Container, nicht ein Karten-Rahmen. */
.site-header__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 8px 0;
  transition: min-height .28s ease;
}

@media (min-width: 768px) {
  .site-header__panel { min-height: 78px; gap: 32px; }
}
@media (min-width: 1024px) {
  .site-header__panel { min-height: 88px; gap: 44px; }
}

.site-header.is-scrolled .site-header__panel { min-height: 56px; }
@media (min-width: 768px)  { .site-header.is-scrolled .site-header__panel { min-height: 62px; } }
@media (min-width: 1024px) { .site-header.is-scrolled .site-header__panel { min-height: 68px; } }

/* Logo — schlanker, ruhiger eingebunden für eine elegante Leiste */
.site-header__logo { display: inline-flex; align-items: center; flex: none; }
.site-header__logo img {
  height: 52px; width: auto;
  transition: height .28s ease;
}
@media (min-width: 768px)  { .site-header__logo img { height: 62px; } }
@media (min-width: 1024px) { .site-header__logo img { height: 70px; } }
.site-header.is-scrolled .site-header__logo img { height: 46px; }
@media (min-width: 768px)  { .site-header.is-scrolled .site-header__logo img { height: 52px; } }
@media (min-width: 1024px) { .site-header.is-scrolled .site-header__logo img { height: 58px; } }

/* Nav — ruhig, edel; aktiver Punkt nur durch dezenten Punkt markiert */
.site-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .012em;
}
.site-header__nav a {
  position: relative;
  color: rgba(255,255,255,.74);
  padding: 10px 18px;
  transition: color .2s ease;
  white-space: nowrap;
}
/* feine Hover-Linie, mittig wachsend — ruhig, hochwertig */
.site-header__nav a::before {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 3px;
  height: 1px;
  background: rgba(255,255,255,.55);
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: center;
  transition: opacity .22s ease, transform .22s ease;
}
.site-header__nav a:hover { color: #fff; }
.site-header__nav a:hover::before { opacity: .5; transform: scaleX(1); }
.site-header__nav a.active { color: #fff; }
.site-header__nav a.active::before { opacity: 0 !important; }
.site-header__nav a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 1px;
  width: 4px; height: 4px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
}

/* Header CTAs — bewusst zurückhaltend integriert, kein Standard-Template-Button.
   E-Mail = ruhiger Textlink-Charakter, Anrufen = flacher, fester Akzent. */
.site-header__cta { display: none; align-items: center; gap: 16px; flex-shrink: 0; }
.site-header__cta .btn {
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 8px;
}
/* Anrufen = die eine klare Aktion, flach und ruhig (kein Glow) */
.site-header__cta .btn--primary { background: var(--electric); box-shadow: none; }
.site-header__cta .btn--primary:hover { background: var(--electric-2); box-shadow: none; }
/* E-Mail = ruhiger Textlink statt Template-Button */
.site-header__cta .btn--ghost {
  border-color: transparent;
  color: rgba(255,255,255,.8);
  padding-left: 4px; padding-right: 4px;
}
.site-header__cta .btn--ghost:hover { background: transparent; color: #fff; border-color: transparent; }
.site-header.is-scrolled .site-header__cta .btn { padding-top: 9px; padding-bottom: 9px; }
/* Feine vertikale Haarlinie trennt Navigation und CTA — bewusste, ruhige
   Struktur wie bei einer maßgeschneiderten Markenführung (nur Desktop). */
@media (min-width: 1024px) {
  .site-header__cta { position: relative; padding-left: 26px; }
  .site-header__cta::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 24px;
    background: rgba(255,255,255,.13);
  }
}

/* Mobile toggle — z-index above mobile menu overlay (8500) */
.site-header__toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 9000;
  transition: background .2s ease, border-color .2s ease;
}
.site-header__toggle:hover { background: rgba(54,197,240,.14); border-color: rgba(54,197,240,.35); }
.site-header__toggle svg { width: 20px; height: 20px; }

@media (min-width: 768px) and (max-width: 1023.98px) { .site-header__cta { display: flex; } }
@media (min-width: 1024px) {
  .site-header__nav    { display: flex; }
  .site-header__cta    { display: flex; }
  .site-header__toggle { display: none; }
}

/* Mobile menu overlay */
.site-header__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8500;
  padding: 96px 28px 36px;
  background: linear-gradient(180deg, rgba(3,10,30,.97) 0%, rgba(5,14,38,.99) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  overflow-y: auto;
}
.site-header__mobile.is-open { display: block; animation: menuIn .24s cubic-bezier(.22,1,.36,1); }
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-header__mobile > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.02em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s ease, padding-left .2s ease;
}
.site-header__mobile > a::after { content: "›"; color: rgba(255,255,255,.3); font-size: 24px; }
.site-header__mobile > a:hover  { color: var(--cyan); padding-left: 6px; }

.site-header__mobile-cta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.site-header__mobile-cta .btn {
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14.5px;
}

.site-header__mobile-info {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.site-header__mobile-info strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 10px;
}
.site-header__mobile-info a { color: var(--cyan); }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 112px;
  padding-bottom: 72px;
  overflow: hidden;
  background:
    radial-gradient(1400px 900px at 85% -5%, rgba(54,197,240,.32), transparent 60%),
    radial-gradient(1100px 800px at -8% 65%, rgba(43,107,250,.28), transparent 65%),
    radial-gradient(700px 500px at 50% 110%, rgba(46,204,113,.08), transparent 65%),
    linear-gradient(180deg, #091840 0%, #061430 65%, #040E26 100%);
}
/* Desktop: Hero + Trust Strip gemeinsam als erste Bühne */
@media (min-width: 768px) {
  .hero {
    padding-top: 124px;
    min-height: calc(100vh - 56px);
    min-height: calc(100svh - 56px);
    display: flex;
    align-items: center;
  }
  .hero .container { width: 100%; }
}
@media (min-width: 1024px) { .hero { padding-top: 136px; padding-bottom: 80px; } }

/* Canvas particles */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 55fr 45fr;
    gap: 54px;
  }
}
@media (min-width: 1200px) { .hero__inner { gap: 68px; } }

/* Hero copy */
.hero__copy { color: #fff; }

/* Standort-Hinweis als ruhiges, flaches Editorial-Label statt leuchtender
   Pill: keine Kapsel, kein Hintergrund, kein Glow — nur ein dezentes Pin-Icon
   und getrackte Versalien. Wirkt wie ein hochwertiger Standortvermerk. */
.hero__region-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .17em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__region-tag .hero__region-pin {
  flex: none;
  color: var(--cyan);
  opacity: .9;
}

.hero__title { color: #fff; }

.hero__sub {
  margin-top: 26px;
  max-width: 524px;
  font-size: 17.5px;
  line-height: 1.78;
  color: rgba(255,255,255,.72);
}

.hero__cta-row {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Trust strip inside hero */
.hero__trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(54,197,240,.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
@media (min-width: 600px) { .hero__trust { grid-template-columns: repeat(4, 1fr); } }

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__trust-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: rgba(54,197,240,.16);
  color: var(--cyan);
}
.hero__trust-item h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.hero__trust-item p {
  font-size: 11px;
  color: var(--cyan-soft);
  margin: 2px 0 0;
  line-height: 1.3;
}

/* ── Hero visual — hochwertiges Marken-Visual statt App-UI-Karte ──────── */
.hero__visual { position: relative; }

/* Dezenter Tiefeneffekt: weiche, neutrale Penumbra hinter dem Foto, damit es
   plastisch vor der Bühne steht — kein farbiger Glow-Ring, statisch, ruhig. */
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% -5% -10% -5%;
  background: radial-gradient(62% 56% at 50% 42%, rgba(8,18,46,.62), transparent 72%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}
.hero__visual > * { position: relative; z-index: 1; }

/* Foto architektonisch und ikonisch gesetzt: knapper, präziser Radius, feine
   Rahmenkante, geschichteter erdender Pedestal-Schatten für Tiefe — keine
   Card-Rundung, kein Cyan-Glow. */
.hero__photo-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 4.35;
  box-shadow:
    0 1px 2px rgba(2,8,24,.55),
    0 22px 46px -20px rgba(2,8,24,.72),
    0 62px 112px -40px rgba(2,8,24,.92);
}
/* feine doppelte Kante (außen hell oben, innen dunkel) für echte Wertigkeit */
.hero__photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 0 0 1px rgba(255,255,255,.1),
    inset 0 0 0 2px rgba(2,8,24,.4);
  z-index: 3;
  pointer-events: none;
}
.hero__photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,10,28,.55) 70%, rgba(3,10,28,.94) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

/* Person als editoriale Bildunterschrift, integriert am unteren Bildrand —
   kein schwebendes weißes Kärtchen. */
.hero__badge { position: absolute; }
.hero__badge--rating,
.hero__verified { display: none !important; }

.hero__badge--person {
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}
.hero__badge--person .avatar {
  width: 46px; height: 46px;
  border-radius: 999px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,.35);
}
.hero__badge--person .avatar img { width:100%; height:100%; object-fit:cover; object-position: center 15%; }
.hero__badge--person h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -.012em;
  margin: 0;
  color: #fff;
}
.hero__badge--person span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__badge--person .arrow {
  margin-left: auto;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.hero__badge--person .arrow:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); }

/* ── STATS BAR ─────────────────────────────────────────────────────────── */
.stats-bar {
  padding: 0;
  background: var(--deep);
  position: relative;
  z-index: 2;
}
.stats-bar__inner {
  border-top: 1px solid rgba(54,197,240,.14);
  border-bottom: 1px solid rgba(54,197,240,.14);
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(54,197,240,.1);
}
@media (min-width: 640px)  { .stats-bar__inner { grid-template-columns: repeat(4, 1fr); } }

.stats-bar__item {
  background: var(--deep);
  padding: 22px 28px;
  text-align: center;
}
.stats-bar__item .v {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 44px);
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(120deg, var(--cyan), var(--electric-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-bar__item .l {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── INTRO SECTION ────────────────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 992px) {
  .intro-grid { grid-template-columns: 1fr minmax(300px, 400px); gap: 80px; }
}

/* Intro-Facts — von Widget-Look auf schlichte Fakten-Liste reduziert */
.intro-facts-card {
  padding: 36px 0 0;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.intro-facts-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.intro-facts-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.intro-facts-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.intro-facts-card__list li:last-child { border-bottom: none; }
.intro-facts-card__list .ico {
  width: 36px; height: 36px;
  flex: none;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.intro-facts-card__list h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.intro-facts-card__list p { font-size: 13.5px; color: var(--muted); margin: 0; }
.intro-facts-card__foot {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro-facts-card__foot .stars { display: flex; gap: 2px; }
.intro-facts-card__foot .score {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
}

/* ── SERVICES ─────────────────────────────────────────────────────────── */
.section__head { max-width: 820px; margin-bottom: 60px; }
.section__head h2 { margin-top: 16px; }
.section__head p { margin-top: 18px; font-size: 18px; line-height: 1.72; color: rgba(255,255,255,.76); max-width: 600px; }

/* Homepage: 2-column horizontal cards */
.services-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px)  { .services-home { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-home { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #122458 0%, #0D1E4F 100%);
  border: 1px solid rgba(54,197,240,.25);
  box-shadow: var(--shadow-sm), 0 0 0 0 transparent;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease, border-color .3s ease;
  position: relative;
  isolation: isolate;
  color: #fff;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--card-accent, rgba(54,197,240,.35));
  border-color: var(--card-accent, rgba(54,197,240,.32));
}

/* Category accent via CSS custom property */
.service-card[data-cat="clean"]  { --card-accent: rgba(54,197,240,.38); }
.service-card[data-cat="garden"] { --card-accent: rgba(46,204,113,.38); }
.service-card[data-cat="repair"] { --card-accent: rgba(245,181,68,.38); }
.service-card[data-cat="winter"] { --card-accent: rgba(96,165,250,.38); }
.service-card[data-cat="prop"]   { --card-accent: rgba(43,107,250,.38); }

/* Top accent strip */
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-stripe, linear-gradient(90deg, var(--electric), var(--cyan)));
  z-index: 1;
}
.service-card[data-cat="garden"]::before { background: linear-gradient(90deg, #1A9E55, var(--green)); }
.service-card[data-cat="repair"]::before { background: linear-gradient(90deg, #C98A20, var(--gold)); }
.service-card[data-cat="winter"]::before { background: linear-gradient(90deg, #3B82F6, var(--ice)); }

/* Glow on hover */
.service-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-accent, rgba(54,197,240,.3)), transparent 65%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,20,56,.65));
}
.service-card__num { display: none; }

.service-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.service-card__desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255,255,255,.7);
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  transition: gap .22s ease, color .2s ease;
}
.service-card[data-cat="garden"] .service-card__link { color: var(--green-soft); }
.service-card[data-cat="repair"] .service-card__link { color: var(--gold); }
.service-card__link:hover { gap: 10px; }
.service-card__link svg { transition: transform .22s ease; }
.service-card__link:hover svg { transform: translateX(3px); }

/* Full 15-card grid (leistungen.html) */
.services-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .services-full { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-full { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ── WHY US ──────────────────────────────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 768px)  { .why-layout { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-layout { grid-template-columns: 5fr 3fr 3fr 3fr; } }

/* Featured large "why" card — ohne dekorative Nummern und Glow-Tricks */
.why-card--featured {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #162B6E 0%, #0E1E55 100%);
  border: 1px solid rgba(54,197,240,.30);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow-md);
}
.why-card--featured::before { display: none; }
.why-card--featured .num    { display: none; }
.why-card--featured h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -.02em;
}
.why-card--featured p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.68;
  color: rgba(255,255,255,.72);
  position: relative;
  z-index: 1;
}

.why-card {
  padding: 30px 26px 32px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #122458 0%, #0D1E4F 100%);
  border: 1px solid rgba(54,197,240,.28);
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
  box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-5px); border-color: rgba(54,197,240,.3); }
.why-card .ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43,107,250,.22), rgba(54,197,240,.22));
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54,197,240,.28);
}
.why-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  color: #fff;
}
.why-card p { font-size: 14.5px; line-height: 1.68; color: rgba(255,255,255,.68); margin-top: 10px; }

/* ── FOUNDER ─────────────────────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 992px) {
  .founder-grid { grid-template-columns: minmax(260px, 440px) 1fr; gap: 96px; }
  .founder__photo-col { transform: translateY(-20px); }
}
@media (min-width: 1200px) { .founder-grid { grid-template-columns: minmax(300px, 500px) 1fr; gap: 128px; } }

.founder__photo-col {
  position: relative;
}
.founder__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 70px 140px -40px rgba(3,14,40,.9),
    0 0 0 1px rgba(54,197,240,.22);
}
.founder__photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,14,40,.92));
  pointer-events: none;
}
.founder__photo-frame img { width:100%; height:100%; object-fit:cover; }
.founder__photo-meta {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  color: #fff;
}
.founder__photo-meta .role  { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.founder__photo-meta .name  { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 28px; margin-top: 4px; letter-spacing: -.02em; }
.founder__photo-meta .sub   { color: rgba(255,255,255,.78); font-size: 13.5px; margin-top: 6px; }
.founder__badge-wrap { display: none; }
.founder__badge-tag {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.founder__badge-tag--blue {
  background: linear-gradient(135deg, rgba(54,197,240,.96), rgba(43,107,250,.96));
  color: #fff;
}

.founder__copy { color: #fff; }
.founder__copy .lead {
  margin-top: 28px;
  font-family: "Fraunces", serif;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
}
.founder__copy .lead b { font-weight: 500; color: #fff; }
.founder__copy .body {
  margin-top: 22px;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
}
.founder__quote {
  margin-top: 40px;
  padding-left: 22px;
  border-left: 3px solid var(--cyan);
}
.founder__quote .q {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.4;
  color: #fff;
}
.founder__quote .author {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.founder__stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
}
@media (min-width: 480px) { .founder__stats { grid-template-columns: repeat(4, 1fr); } }
.founder__stats .v { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 20px; color: #fff; }
.founder__stats .l { font-size: 12px; color: var(--cyan-soft); margin-top: 4px; }

/* ── REVIEWS ─────────────────────────────────────────────────────────── */
.reviews-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 52px;
}
@media (min-width: 992px) { .reviews-head { grid-template-columns: 6fr 4fr; gap: 48px; } }

.reviews-score-card {
  background:
    radial-gradient(360px 200px at 100% 0%, rgba(245,181,68,.24), transparent 60%),
    linear-gradient(180deg, var(--navy-elev) 0%, #091F4C 100%);
  border: 1px solid rgba(245,181,68,.28);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
}
.reviews-score-card::before {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,181,68,.36), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  animation: goldPulse 6s ease-in-out infinite;
}
@keyframes goldPulse {
  0%,100% { opacity: .8; }
  50%      { opacity: 1.1; }
}
.reviews-score-card .label {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  position: relative;
}
.reviews-score-card .score-big {
  font-family: "Fraunces", serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #fff, #FFE0A0 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 8px;
  position: relative;
}
.reviews-score-card .stars-row { display: flex; gap: 4px; }
.reviews-score-card .of { font-size: 13px; color: var(--cyan-soft); margin-top: 4px; }
.reviews-score-card hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,181,68,.3), transparent); margin: 18px 0; }
.reviews-score-card .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.reviews-score-card .grid3 .v { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 20px; color: #fff; }
.reviews-score-card .grid3 .l { font-size: 12px; color: var(--cyan-soft); margin-top: 3px; }

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 992px) { .reviews-layout { grid-template-columns: 6fr 4fr; gap: 24px; } }

.review-big {
  background: linear-gradient(180deg, var(--navy-elev) 0%, #091F4C 100%);
  border: 1px solid rgba(54,197,240,.12);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-big:hover { transform: translateY(-4px); border-color: rgba(245,181,68,.3); }
.review-big::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(54,197,240,.18), transparent 70%);
  pointer-events: none;
}
.review-big .quote-mark { color: var(--electric); opacity: .5; }
.review-big blockquote {
  margin: 22px 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  flex: 1;
  position: relative;
}
.review-big .meta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(54,197,240,.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}
.review-big .meta-name { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 15px; color: #fff; }
.review-big .meta-sub  { font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 3px; }
.review-big .verified  {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.reviews-side { display: flex; flex-direction: column; gap: 20px; }

.review-card {
  background: linear-gradient(180deg, var(--navy-elev) 0%, #091F4C 100%);
  border: 1px solid rgba(54,197,240,.1);
  border-radius: var(--radius);
  padding: 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(245,181,68,.28); }
.review-card .head { display: flex; align-items: center; gap: 10px; }
.review-card blockquote {
  margin: 16px 0 0;
  font-family: "Fraunces", serif;
  font-size: 16px;
  line-height: 1.62;
  color: rgba(255,255,255,.84);
  flex: 1;
}
.review-card .meta-sm { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(54,197,240,.12); }
.review-card .name { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
.review-card .sub  { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Stars shared */
.stars { display: flex; gap: 3px; }

/* ── SEASON RIBBON ────────────────────────────────────────────────────── */
.season-ribbon {
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46,204,113,.2), rgba(54,197,240,.14));
  border: 1px solid rgba(46,204,113,.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.season-ribbon::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(46,204,113,.22), transparent 70%);
  pointer-events: none;
}
.season-ribbon .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(46,204,113,.2);
  border: 1px solid rgba(46,204,113,.35);
  font-size: 12px;
  font-weight: 700;
  color: var(--green-soft);
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.season-ribbon h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  color: #fff;
}
.season-ribbon h3 .accent { color: var(--green-soft); }
.season-ribbon p { font-size: 15.5px; color: rgba(255,255,255,.72); margin-top: 6px; max-width: 480px; }

/* ── AREA / MAP ───────────────────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 992px) { .area-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.area-towns {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-towns span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(54,197,240,.1);
  border: 1px solid rgba(54,197,240,.2);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.area-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(54,197,240,.18);
  box-shadow: var(--shadow-md);
  background: var(--navy-2);
}
.area-map-wrap svg { display: block; width: 100%; }
.area-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(54,197,240,.08);
  border-top: 1px solid rgba(54,197,240,.14);
}
.area-map-caption h4 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 15px; color: #fff; margin: 0; }
.area-map-caption p  { font-size: 12.5px; color: rgba(255,255,255,.6); margin: 3px 0 0; }
.area-map-caption .right { font-size: 13px; color: var(--cyan-soft); font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(54,197,240,.14);
  background: linear-gradient(180deg, var(--navy-card) 0%, #091E4A 100%);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: rgba(54,197,240,.32); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 17px);
  color: #fff;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 22px; height: 22px;
  flex: none;
  background: rgba(54,197,240,.14);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2336C5F0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2336C5F0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  background-color: rgba(54,197,240,.25);
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}
.faq-answer a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* ── CONTACT ─────────────────────────────────────────────────────────── */
.contact-section { padding: 84px 0; scroll-margin-top: 96px; }
/* Anker-Ziele generell unter dem Sticky-Header freihalten */
[id] { scroll-margin-top: 88px; }
@media (min-width: 1024px) { [id] { scroll-margin-top: 100px; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.contact-copy p { margin-top: 22px; font-size: 18px; line-height: 1.72; color: rgba(255,255,255,.75); }
.contact-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.contact-meta span { display: flex; align-items: center; gap: 6px; }

.contact-channels { display: flex; flex-direction: column; gap: 14px; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-card), #091F4C);
  border: 1px solid rgba(54,197,240,.12);
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .25s ease, box-shadow .35s ease;
  cursor: pointer;
}
.contact-channel:hover {
  transform: translateX(6px);
  box-shadow: -6px 0 0 0 var(--ch-accent, var(--electric));
  border-color: rgba(54,197,240,.3);
}
.contact-channel.is-phone   { --ch-accent: var(--electric); }
.contact-channel.is-whatsapp { --ch-accent: var(--whatsapp); }
.contact-channel.is-mail    { --ch-accent: var(--cyan); }
.contact-channel.is-whatsapp:hover { box-shadow: -6px 0 0 0 var(--whatsapp); }

.contact-channel__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(54,197,240,.12);
  color: var(--cyan);
}
.contact-channel.is-whatsapp .contact-channel__icon { background: rgba(37,211,102,.14); color: var(--whatsapp); }
.contact-channel.is-phone   .contact-channel__icon { background: rgba(43,107,250,.14); color: var(--electric-2); }
.contact-channel__label { font-size: 12.5px; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .06em; }
.contact-channel__value { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 17px; color: #fff; margin-top: 2px; }
.contact-channel__arrow { margin-left: auto; color: rgba(255,255,255,.4); }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  padding: 72px 0 40px;
  border-top: 1px solid rgba(54,197,240,.1);
  background:
    radial-gradient(1000px 400px at 50% 0%, rgba(43,107,250,.1), transparent 60%),
    linear-gradient(180deg, #04102C 0%, #030C1E 100%);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px)  { .site-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__cols { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.site-footer__brand img { height: 72px; width: auto; }
.site-footer__brand p {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 320px;
}
.site-footer__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.chip--warm    { background: rgba(245,181,68,.14); color: var(--gold); border: 1px solid rgba(245,181,68,.28); }
.chip--cyan    { background: rgba(54,197,240,.12); color: var(--cyan); border: 1px solid rgba(54,197,240,.25); }
.chip--electric { background: rgba(43,107,250,.14); color: var(--electric-2); border: 1px solid rgba(43,107,250,.28); }

.site-footer__social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(24,119,242,.12);
  border: 1px solid rgba(24,119,242,.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4f9cf5;
  transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.site-footer__social a:hover {
  background: rgba(24,119,242,.22);
  color: #74b3ff;
  border-color: rgba(24,119,242,.55);
  box-shadow: 0 0 14px rgba(24,119,242,.35);
}

.site-footer__col h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col ul li a {
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  transition: color .2s ease;
}
.site-footer__col ul li a:hover { color: var(--cyan); }

.site-footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 14.5px;
}
.site-footer__contact-line svg { flex: none; margin-top: 3px; color: var(--cyan); }
.site-footer__contact-line a { color: rgba(255,255,255,.7); }
.site-footer__contact-line a:hover { color: var(--cyan); }

.site-footer__bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

.it-begleiter-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
  transition: color .2s ease;
}
.it-begleiter-credit img { height: 22px; width: auto; opacity: .7; transition: opacity .2s ease; }
.it-begleiter-credit:hover { color: #fff; }
.it-begleiter-credit:hover img { opacity: 1; }

/* ── FLOATING WHATSAPP ───────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 8000;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px -6px rgba(37,211,102,.7);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 18px 40px -8px rgba(37,211,102,.8);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: rgba(37,211,102,.25);
  animation: waPulse 2.5s ease-in-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.18); opacity: 0; }
}

/* Mobile sticky CTA bar — initial: off-screen, erscheint nach Scroll */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 7500;
  display: flex;
  padding: 12px 16px;
  gap: 10px;
  background: rgba(4,14,38,.97);
  border-top: 1px solid rgba(54,197,240,.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* Initial: unsichtbar unter dem Viewport */
  transform: translateY(110%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  /* Kein pointer-events solange versteckt */
  pointer-events: none;
}
/* Sichtbar nach Scroll-Trigger */
.mobile-cta-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-cta-bar .btn {
  flex: 1;
  height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 700;
}
@media (min-width: 768px) { .mobile-cta-bar { display: none !important; } }

/* Extra padding für sticky bar — immer aktiv um Layout-Sprung zu verhindern */
@media (max-width: 767.98px) {
  body { padding-bottom: 78px; }
  /* WA Float auf Mobile: versteckt, da CTA-Bar WhatsApp übernimmt */
  .wa-float { display: none; }
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────────── */
/* Dezent: nur Fade + leichte Bewegung. KEIN Blur — Inhalt bleibt immer scharf.
   Ruhezustand ist transform:none (kein Compositing-Layer → Text gestochen). */
.reveal       { opacity: 0; transform: translateY(34px); }
.reveal-left  { opacity: 0; transform: translate3d(-34px, 0, 0); }
.reveal-right { opacity: 0; transform: translate3d(34px, 0, 0); }
.reveal, .reveal-left, .reveal-right {
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { will-change: auto; }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.stagger-item.is-visible { opacity: 1; transform: none; }

/* Mobile: spürbarer Fade nach oben, aber keine Seitwärtsbewegung (performant) */
@media (max-width: 767px) {
  .reveal, .reveal-left, .reveal-right {
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { transform: none; }
}

/* AUSFALLSICHER: ohne JS oder bei JS-Fehler (kein html.js) ist jeder Inhalt
   sofort sichtbar — niemals dauerhaft unsichtbare Sektionen. */
html:not(.js) .reveal,
html:not(.js) .reveal-left,
html:not(.js) .reveal-right,
html:not(.js) .stagger-item {
  opacity: 1 !important;
  transform: none !important;
}

/* ── LEGAL PAGES ─────────────────────────────────────────────────────── */
.legal-hero {
  padding-top: 160px;
  padding-bottom: 60px;
}
@media (min-width: 768px)  { .legal-hero { padding-top: 190px; } }
@media (min-width: 1024px) { .legal-hero { padding-top: 210px; } }

.legal-content {
  padding: 72px 0 100px;
}
.legal-article {
  max-width: 800px;
}
.legal-article h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
  margin-top: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(54,197,240,.14);
}
.legal-article h2:first-child { margin-top: 0; }
.legal-article p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}
.legal-article a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-article strong { color: rgba(255,255,255,.9); font-weight: 600; }

.it-begleiter-impressum {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(54,197,240,.06);
  border: 1px solid rgba(54,197,240,.15);
}
.it-begleiter-impressum img { height: 36px; width: auto; }

/* ── SUBPAGE HEROES ─────────────────────────────────────────────────── */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(54,197,240,.28), transparent 60%),
    radial-gradient(900px 600px at -5% 70%, rgba(43,107,250,.22), transparent 65%),
    linear-gradient(180deg, #08183C 0%, #040F28 100%);
}
@media (min-width: 768px)  { .page-hero { padding-top: 190px; } }
@media (min-width: 1024px) { .page-hero { padding-top: 210px; } }

.page-hero__title { color: #fff; margin-top: 18px; }
.page-hero__sub {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.72;
  color: rgba(255,255,255,.78);
  max-width: 680px;
}

/* Über uns: ruhiger, persönlicher gesetzter Lead in zwei Absätzen */
.page-hero__lead {
  margin-top: 28px;
  max-width: 600px;
}
.page-hero__lead-1 {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.92);
}
.page-hero__lead-2 {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
}
@media (min-width: 768px) {
  .page-hero__lead { margin-top: 32px; }
  .page-hero__lead-1 { font-size: 24px; }
  .page-hero__lead-2 { margin-top: 30px; }
}

/* ── VALUES GRID (Über uns) ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.values-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--navy-card) 0%, #091F4C 100%);
  border: 1px solid rgba(54,197,240,.12);
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
  box-shadow: var(--shadow-sm);
}
.values-card:hover { transform: translateY(-5px); border-color: rgba(54,197,240,.3); }
.values-card .ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(54,197,240,.12);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54,197,240,.22);
}
.values-card h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; font-weight: 700; margin-top: 20px; color: #fff; }
.values-card p  { font-size: 14.5px; line-height: 1.68; color: rgba(255,255,255,.68); margin-top: 10px; }

/* Vehicle showcase */
.vehicle-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(54,197,240,.18);
}
.vehicle-showcase img { width:100%; height:100%; object-fit:cover; }
.vehicle-showcase__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,14,40,.75));
}
.vehicle-showcase__caption {
  position: absolute;
  left: 28px; right: 28px; bottom: 24px;
  color: #fff;
}
.vehicle-showcase__caption .eyebrow { color: var(--cyan); }
.vehicle-showcase__caption h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 28px);
  margin-top: 6px;
}

/* ── GALERIE ─────────────────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.gallery-filter-btn {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(54,197,240,.1);
  border: 1px solid rgba(54,197,240,.2);
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.gallery-filter-btn.is-active,
.gallery-filter-btn:hover { background: var(--electric); color: #fff; border-color: var(--electric); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.gallery-item.is-hidden { display: none; }
.gallery-item img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.gallery-item:hover img { transform: scale(1.06); }

/* <picture>-Wrapper layout-transparent halten: Höhenkette für object-fit
   bleibt erhalten, identisch zum direkten <img> davor. */
.gallery-item picture,
.svc-editorial__img picture,
.svc-world__img picture { display: block; width: 100%; height: 100%; }

/* ── SAISON PAGE ──────────────────────────────────────────────────────── */
.saison-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px)  { .saison-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .saison-services { grid-template-columns: repeat(4, 1fr); } }

.saison-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(46,204,113,.2);
  background: linear-gradient(180deg, rgba(46,204,113,.1) 0%, var(--navy-card) 60%);
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}
.saison-card:hover { transform: translateY(-5px); border-color: rgba(46,204,113,.38); }
.saison-card .ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(46,204,113,.14);
  color: var(--green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(46,204,113,.25);
}
.saison-card h3 { font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; font-weight: 700; margin-top: 18px; color: #fff; }
.saison-card p  { font-size: 14.5px; line-height: 1.68; color: rgba(255,255,255,.68); margin-top: 9px; flex: 1; }

.saison-cta-box {
  margin-top: 56px;
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46,204,113,.18), rgba(54,197,240,.12));
  border: 1px solid rgba(46,204,113,.28);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.saison-cta-box::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(46,204,113,.22), transparent 70%);
  pointer-events: none;
}

/* ── HELPERS ─────────────────────────────────────────────────────────── */
.hide-mobile { display: none !important; }
@media (min-width: 640px) { .hide-mobile { display: inline-flex !important; } }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54,197,240,.35), transparent);
  max-width: 600px;
  margin: 0 auto;
}

/* ── REDUCED MOTION ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .stagger-item { opacity: 1 !important; transform: none !important; }
  /* Mobile CTA bar: bei reduced motion sofort zeigen, kein slide-in */
  .mobile-cta-bar { transform: none !important; }
  #hero-canvas { display: none; }
  #stage-bg    { display: none !important; }
  #mobile-stage { display: none !important; }
  .wa-float::before { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE PERFORMANCE & CROSS-BROWSER FIXES
   ═══════════════════════════════════════════════════════════════════ */

/* iOS Safari: min-height mit svh-Fallback */
@supports not (min-height: 100svh) {
  @media (min-width: 768px) { .hero { min-height: calc(100vh - 50px); } }
}

/* Touch-Geräte: tap targets groß genug */
@media (max-width: 767.98px) {
  .btn { min-height: 48px; }
  .contact-channel { min-height: 64px; }
  .site-header__nav a { min-height: 44px; display: flex; align-items: center; }
}

/* iOS Rubber-Band-Scroll: kein leerer Hintergrund */
@media (max-width: 767.98px) {
  html { background: #030E22; }
}

/* Mobile: backdrop-filter nur wenn unterstützt, Fallback opak */
@supports not (backdrop-filter: blur(1px)) {
  .site-header__panel { background: rgba(4,14,38,.99); }
  .mobile-cta-bar { background: rgba(4,14,38,.99); }
  .site-header__mobile { background: rgba(3,10,30,.99); }
}

/* Mobile font smoothing */
@media (max-width: 767.98px) {
  body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
}

/* Svc-world responsive: ensure images don't overflow on small screens */
@media (max-width: 599px) {
  .svc-world { gap: 32px; }
  .svc-world__img { aspect-ratio: 3/2; }
  .h-hero { font-size: clamp(30px, 10vw, 52px); }
  .h-section { font-size: clamp(24px, 7.5vw, 40px); }
}

/* ═══════════════════════════════════════════════════════════════════
   STAGE BACKGROUND SYSTEM — index.html (body.page-index)
   Ziel: EINE durchgehende visuelle Bühne.
   Three.js liefert den Hintergrund. Sections sind transparent.
   Content schwimmt auf der Bühne. Keine sichtbaren Blöcke.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Three.js Canvas (Desktop) ────────────────────────────────────── */
#stage-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  pointer-events: none;
  display: none;
}

/* ── Mobile Ambient Div (CSS-only, iOS-sicher) ────────────────────── */
#mobile-stage {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  display: none;
}

/* ── Geräte-Aktivierung ───────────────────────────────────────────── */
@media (min-width: 768px) {
  body.page-index #stage-bg { display: block; }
}

@media (max-width: 767.98px) {
  body.page-index #mobile-stage {
    display: block;
    background:
      radial-gradient(ellipse 160vw 80vh at 85% 2%,  rgba(54,197,240,.42), transparent 55%),
      radial-gradient(ellipse 140vw 90vh at  5% 48%, rgba(43,107,250,.38), transparent 52%),
      radial-gradient(ellipse 120vw 70vh at 50% 92%, rgba(46,204,113,.18), transparent 58%),
      radial-gradient(ellipse 100vw 50vh at 50% 50%, rgba(43,107,250,.14), transparent 65%),
      linear-gradient(180deg, #0A1E45 0%, #050F2A 55%, #030C1E 100%);
  }
}

/* ── STACKING-FIX: body transparent, damit der Canvas (z-index:-10) sichtbar ist.
   body background übermalt sonst den Canvas (kommt im Stacking nach dem Canvas).
   html liefert den dunklen Basis-Gradient — der Canvas-Glow liegt DARÜBER. ── */
body.page-index { background: transparent; }

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS — komplett transparent.
   Three.js / CSS-div liefert den Hintergrund.
   Nur ganz leichter dunkler Schimmer für Lesbarkeit.
   KEINE harten Farb-Blöcke. KEINE sichtbaren Sektionsgrenzen.
   ═══════════════════════════════════════════════════════════════════ */

/* Hero: transparent — Three.js sichtbar, aber Maske schützt Textzone */
body.page-index .hero { background: transparent !important; }

/* ── Hero-Lesbarkeitsmaske: soft-dunkles Scrim hinter dem linken Textbereich ─ */
/* Sanfter Gradient von links (dunkel/Textzone) nach rechts (offen/Foto) */
body.page-index .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Starker dunkler Kern hinter dem linken Textbereich */
    radial-gradient(ellipse 72% 115% at 14% 50%,
      rgba(3,6,22,0.92) 0%,
      rgba(3,6,22,0.80) 18%,
      rgba(3,6,22,0.52) 44%,
      rgba(3,6,22,0.18) 62%,
      transparent 76%),
    /* Linearer Gradient von links für die gesamte Hero-Breite */
    linear-gradient(105deg,
      rgba(3,6,22,0.88) 0%,
      rgba(3,6,22,0.65) 25%,
      rgba(3,6,22,0.25) 46%,
      transparent 62%),
    /* Leichte Verdunkelung oben für Header-Lesbarkeit */
    linear-gradient(180deg,
      rgba(3,6,22,0.45) 0%,
      transparent 16%);
  pointer-events: none;
  z-index: 0;
}
/* Hero-Inhalt über der Maske */
body.page-index .hero__inner { position: relative; z-index: 2; }

/* Sections: ausreichend dunkel damit Content lesbar bleibt, Three.js sichtbar */
body.page-index .section {
  background: rgba(2,6,20,0.42) !important;
}

/* Keine Trennlinie zwischen Sections */
body.page-index .section + .section { border-top: none !important; }

/* Stats-Bar: leicht dunkler damit Zahlen klar lesbar bleiben */
body.page-index .stats-bar         { background: rgba(2,6,20,0.50) !important; }
body.page-index .stats-bar__item   { background: transparent !important; }
body.page-index .stats-bar__inner  { background: transparent; }

/* Contact: etwas stärker abgedunkelt für maximale CTA-Lesbarkeit */
body.page-index .contact-section   { background: rgba(2,6,20,0.48) !important; }

/* Footer: identischer Look wie auf den Unterseiten (gleicher Basis-Gradient
   mit feinem blauem Glow). Die linear-Basis ist opak (#04102C/#030C1E) und
   verdeckt den Canvas vollständig — ankert die Seite weiterhin am unteren Ende. */
body.page-index .site-footer {
  background:
    radial-gradient(1000px 400px at 50% 0%, rgba(43,107,250,.1), transparent 60%),
    linear-gradient(180deg, #04102C 0%, #030C1E 100%) !important;
  border-top-color: rgba(54,197,240,.10) !important;
}

/* Season Ribbon: eigener Grün-Glaseffekt (kein Section-Block) */
body.page-index .season-ribbon {
  background: linear-gradient(135deg, rgba(46,204,113,.20), rgba(54,197,240,.12)) !important;
  border-color: rgba(46,204,113,.32) !important;
}

/* Textschwere Sections: etwas mehr Deckkraft für Lesbarkeit */
@media (min-width: 768px) {
  body.page-index #leistungen,
  body.page-index #bewertungen,
  body.page-index #faq {
    background: rgba(2,6,20,0.52) !important;
  }
}

/* Prozess-Section: dunkler overlay für Label/Text-Lesbarkeit */
body.page-index [aria-labelledby="how-h"] {
  background: rgba(2,6,20,0.58) !important;
}

/* Prozess-Labels und Steps: stärkerer Kontrast gegen Stage-Hintergrund */
.how-step-clean__label {
  text-shadow: 0 0 14px rgba(0,0,0,.9), 0 1px 2px rgba(0,0,0,.8);
}
.how-step-clean p {
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.how-clean-steps {
  position: relative;
  isolation: isolate;
}
/* Subtile Hintergrundplatte für Schritt-Inhalte auf Stage */
body.page-index .how-clean-steps::before {
  content: "";
  position: absolute;
  inset: -12px -18px;
  background: rgba(2,6,20,.28);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

/* ── Mobile: sections etwas stärker abgedunkelt (kein WebGL-Tiefenef.) */
@media (max-width: 767.98px) {
  body.page-index .hero            { background: transparent !important; }
  body.page-index .section         { background: rgba(2,6,20,0.38) !important; }
  body.page-index .trust-strip     { background: rgba(2,6,20,0.55) !important; }
  body.page-index .contact-section { background: rgba(2,6,20,0.48) !important; }
  body.page-index .site-footer     { background: radial-gradient(1000px 400px at 50% 0%, rgba(43,107,250,.1), transparent 60%), linear-gradient(180deg, #04102C 0%, #030C1E 100%) !important; }
}

/* Mobile Hero: kein min-height 100svh, aber gute Proportionen */
@media (max-width: 767.98px) {
  .hero { padding-top: 120px; padding-bottom: 60px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PREMIUM REDESIGN — Anti-AI-Slop Komponenten
   ═══════════════════════════════════════════════════════════════════ */

/* ── TRUST STRIP ─────────────────────────────────────────────────── */
/* Ruhiger Vertrauensanker des Hero: weicher Verlauf ohne harte Bandgrenze,
   feine neutrale Oberlinie, Trennung durch zarte vertikale Haarlinien.
   Liest sich als dezenter Abschluss, nicht als UI-Baustein. */
.trust-strip {
  position: relative;
  background: linear-gradient(180deg, rgba(4,10,30,.42) 0%, rgba(4,10,30,.85) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
body.page-index .trust-strip {
  background: linear-gradient(180deg, rgba(2,6,20,.36) 0%, rgba(2,6,20,.84) 100%);
}
.trust-strip__wrap {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 36px;
}
.trust-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-strip__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  padding: 23px 38px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.trust-strip__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: rgba(255,255,255,.12);
}
.trust-strip__icon {
  color: var(--cyan);
  flex: none;
  display: flex;
  align-items: center;
  opacity: .85;
}
.trust-strip__icon--star { color: #f5b544; opacity: 1; }

/* Mobile: kompakte horizontale Scroll-Leiste */
@media (max-width: 767.98px) {
  .trust-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-strip::-webkit-scrollbar { display: none; }
  .trust-strip::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 44px; height: 100%;
    background: linear-gradient(to right, transparent, rgba(2,6,20,.92));
    pointer-events: none;
    z-index: 1;
  }
  .trust-strip__wrap {
    max-width: none;
    padding: 0 16px;
  }
  .trust-strip__list {
    justify-content: flex-start;
    width: max-content;
  }
  .trust-strip__list li {
    font-size: 12px;
    padding: 12px 16px;
    gap: 6px;
  }
}

/* ── SERVICE WORLDS ──────────────────────────────────────────────── */
.section-intro { max-width: 760px; }
.section-intro__sub {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,.72);
  max-width: 640px;
}

.svc-world {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.svc-world:last-of-type { border-bottom: none; }
@media (min-width: 900px) {
  .svc-world { grid-template-columns: 1fr 1fr; gap: 72px; }
  .svc-world--alt .svc-world__img { order: 2; }
  .svc-world--alt .svc-world__content { order: 1; }
}
.svc-world__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-world__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.svc-world:hover .svc-world__img img { transform: scale(1.03); }

.svc-world__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 14px;
}
.svc-world__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -.022em;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
}
.svc-world__body {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin: 0 0 22px;
}
.svc-world__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.svc-world__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 15px;
  color: rgba(255,255,255,.82);
}
.svc-world__list li:last-child { border-bottom: none; }
.svc-world__list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  flex: none;
}

/* Service World Panel — dritte Welt, kein Bild */
.svc-world-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 900px) { .svc-world-panel { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; } }

.svc-world-panel__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) { .svc-world-panel__items { grid-template-columns: repeat(3, 1fr); } }

.svc-world-panel__item {
  padding: 0 28px 24px 0;
  border-right: 1px solid rgba(255,255,255,.07);
}
.svc-world-panel__item:last-child { border-right: none; padding-right: 0; }
@media (max-width: 599px) {
  .svc-world-panel__item { padding: 20px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .svc-world-panel__item:last-child { border-bottom: none; }
}
.svc-world-panel__name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0 0 8px;
}
.svc-world-panel__item > p {
  font-size: 14.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  margin: 0;
}

/* ── HOW WE WORK (clean, ohne Nummern) ──────────────────────────── */
.how-clean-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
@media (min-width: 992px) { .how-clean-grid { grid-template-columns: 1fr 1fr; } }

.how-clean-steps { display: flex; flex-direction: column; gap: 0; }
.how-step-clean {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: baseline;
}
.how-step-clean:last-child { border-bottom: none; }
.how-step-clean__label {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  padding-top: 2px;
}
.how-step-clean p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin: 0;
}

/* ── SAISON SERVICE MODULE ────────────────────────────────────────── */
.saison-service-module { display: none; } /* legacy, unused */

.saison-svc-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  margin-top: 52px;
}
@media (max-width: 767px) {
  .saison-svc-module {
    grid-template-columns: 1fr;
  }
}

.saison-svc-col-label {
  padding-bottom: 20px;
}
.saison-svc-col-label span {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-soft);
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(46,204,113,.09);
  border: 1px solid rgba(46,204,113,.22);
}

/* Mobile: flex-column + order, damit erst alle Grün-Einträge, dann alle Außen-Einträge */
@media (max-width: 767px) {
  .saison-svc-module { display: flex; flex-direction: column; }
  .saison-svc-module > :nth-child(1)  { order: 1; }
  .saison-svc-module > :nth-child(3)  { order: 2; }
  .saison-svc-module > :nth-child(5)  { order: 3; }
  .saison-svc-module > :nth-child(7)  { order: 4; }
  .saison-svc-module > :nth-child(9)  { order: 5; }
  .saison-svc-module > :nth-child(2)  { order: 6; padding-top: 24px; }
  .saison-svc-module > :nth-child(4)  { order: 7; }
  .saison-svc-module > :nth-child(6)  { order: 8; }
  .saison-svc-module > :nth-child(8)  { order: 9; }
  .saison-svc-module > :nth-child(10) { order: 10; }
}

.saison-svc-entry {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.saison-svc-entry__name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.saison-svc-entry__desc {
  font-size: 13.5px;
  line-height: 1.63;
  color: rgba(255,255,255,.55);
}

/* Saison CTA Band */
.saison-cta-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px; /* gleicher Rhythmus wie das Karten-Raster darüber */
  padding: 26px 30px;
  border-radius: 20px; /* identisch zu den Info-Karten */
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 2px solid rgba(46,204,113,.5); /* Grün dezent als Akzentkante */
}
@media (min-width: 768px) { .saison-cta-band { grid-template-columns: 1fr auto; gap: 36px; padding: 24px 34px; } }
.saison-cta-band__note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin: 0 0 8px;
}
.saison-cta-band h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.saison-cta-band p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.68);
  margin: 0;
  max-width: 540px;
}
.saison-cta-band__btns {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  flex: none;
  align-items: center;
}
.saison-cta-band__btns .btn { padding: 11px 18px; font-size: 13.5px; }

/* ── SAISON INFO GRID (Wann anfragen + Ablauf) ───────────────────── */
.saison-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch; /* beide Karten auf gleicher Höhe, gemeinsame Grundlinie */
}
@media (max-width: 767px) {
  .saison-info-grid { grid-template-columns: 1fr; gap: 16px; }
}

.saison-info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 36px 32px;
}
@media (max-width: 479px) {
  .saison-info-card { padding: 26px 22px; }
}

.saison-info-card__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  margin: 0 0 20px;
}

.saison-info-card__body {
  font-size: 15px;
  line-height: 1.76;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.saison-steps {
  display: flex;
  flex-direction: column;
}

.saison-step {
  position: relative;
  padding: 0 0 26px 22px;
  border-left: 1px solid rgba(255,255,255,.11);
}
.saison-step::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(157,234,203,.15);
}
.saison-step--last {
  border-left-color: transparent;
  padding-bottom: 0;
}

.saison-step__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 7px;
}

.saison-step__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.70);
  margin: 0;
}

/* ── PAKETE PATHWAY (verbessert) ─────────────────────────────────── */
.pakete-pathway {
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pakete-pathway:last-child { border-bottom: none; }
.pakete-pathway__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .pakete-pathway__grid { grid-template-columns: 2fr 3fr; gap: 80px; } }

.pakete-pathway__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 12px;
}
.pakete-pathway__label--green { color: var(--green-soft); }
.pakete-pathway__label--gold  { color: var(--gold); }
.pakete-pathway__grid > div > h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -.022em;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.pakete-pathway__intro {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,.72);
  margin: 0 0 24px;
}
.pakete-pathway__detail {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pakete-pathway__service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: baseline;
}
.pakete-pathway__service:last-of-type { border-bottom: none; }
.pakete-pathway__service-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}
.pakete-pathway__service-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.pakete-pathway__price {
  margin: 16px 0 0;
  font-size: 12.5px;
  font-style: italic;
  color: rgba(255,255,255,.38);
}

/* ── KUNDENTYPEN responsive ──────────────────────────────────────── */
@media (max-width: 767px) {
  [style*="grid-template-columns:1fr 1fr"][style*="gap:60px"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  [style*="grid-template-columns:200px 1fr"][style*="gap:40px"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* ── SAISON WANN-ANFRAGEN responsive ─────────────────────────────── */
@media (max-width: 767px) {
  [style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ── Hero-Canvas (alt) ausgeblendet — Three.js übernimmt alles ──── */
body.page-index #hero-canvas { display: none !important; }

/* ── Lesbarkeit: Text-Shadows NUR für Fliesstext, NICHT für Gradient-Text ─ */
@media (min-width: 768px) {
  /* Hero Headline: scharfer dunkler Halo */
  body.page-index .h-hero {
    text-shadow: 0 1px 3px rgba(0,0,0,0.90), 0 0 28px rgba(2,6,18,0.85);
  }
  /* Hero Sub-Text */
  body.page-index .hero__sub {
    text-shadow: 0 1px 3px rgba(0,0,0,0.80), 0 0 18px rgba(2,6,18,0.70);
  }
  /* Sections Überschriften — nur auf weissen Text, NICHT auf .text-gradient */
  body.page-index .h-section {
    text-shadow: 0 1px 3px rgba(0,0,0,0.75), 0 0 20px rgba(2,6,18,0.65);
  }
  /* Gradient-Text bekommt NIE einen Text-Shadow — der Shadow sickert durch
     text-fill-color:transparent durch und macht den Text fast schwarz */
  body.page-index .text-gradient,
  body.page-index .accent-word {
    text-shadow: none !important;
  }
  /* Sections Fliesstext */
  body.page-index .section p,
  body.page-index .section li,
  body.page-index .section blockquote {
    text-shadow: 0 1px 3px rgba(0,0,0,0.60);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   STARTSEITEN-DRAMATURGIE — redaktionelle Bausteine (nur index)
   Leistungen (Flagship + Index), Ablauf-Timeline, Dennis+Proof, Kontakt
   ═══════════════════════════════════════════════════════════════════ */

/* ── Leistungen: Kopf ─────────────────────────────────────────────── */
.lst-head { max-width: 720px; margin: 0 0 38px; }
.lst-head .eyebrow { margin-bottom: 16px; }
.lst-head__lead { margin-top: 18px; font-size: 17.5px; line-height: 1.75; color: rgba(255,255,255,.74); max-width: 580px; }

/* ── Leistungen: Flagship (Bild links, Text rechts) ───────────────── */
.lst-flag {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
@media (min-width: 900px) { .lst-flag { grid-template-columns: 1.04fr 1fr; gap: 56px; } }
.lst-flag__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-md);
}
.lst-flag__media img { width: 100%; height: 100%; object-fit: cover; }
.lst-flag__tag {
  position: absolute; left: 16px; top: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; padding: 7px 12px; border-radius: 6px;
  background: rgba(4,12,30,.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lst-flag__index { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }
.lst-flag__title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.02em; color: #fff; margin: 10px 0 0; }
.lst-flag__text { margin-top: 14px; font-size: 16px; line-height: 1.72; color: rgba(255,255,255,.74); max-width: 480px; }
.lst-flag__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 600; font-size: 14.5px; color: var(--cyan); }
.lst-flag__link svg { transition: transform .2s ease; }
.lst-flag__link:hover svg { transform: translateX(4px); }

/* ── Leistungen: Index-Zeilen (redaktionell, keine Cards) ─────────── */
.lst-rows { list-style: none; margin: 0; padding: 0; }
.lst-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.lst-row__num { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 15px; letter-spacing: .1em; color: rgba(255,255,255,.32); }
.lst-row__text h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: clamp(19px, 2vw, 23px); letter-spacing: -.015em; color: #fff; margin: 0; }
.lst-row__text p { margin: 5px 0 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.66); max-width: 640px; }
.lst-row__go { color: rgba(255,255,255,.32); display: inline-flex; flex: none; transition: color .2s ease, transform .2s ease; }
.lst-row:hover .lst-row__go { color: var(--cyan); transform: translateX(4px); }
.lst-cta { margin-top: 34px; }

/* ── Ablauf: Timeline ─────────────────────────────────────────────── */
.ablauf-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.ablauf-head .eyebrow { margin-bottom: 16px; }
.ablauf-head__lead { margin-top: 18px; font-size: 17.5px; line-height: 1.75; color: rgba(255,255,255,.76); }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; }
.timeline__step { position: relative; padding: 0 0 30px 56px; }
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step::before {
  content: ""; position: absolute; left: 18px; top: 40px; bottom: -2px; width: 2px;
  background: linear-gradient(180deg, rgba(54,197,240,.4), rgba(54,197,240,.06));
}
.timeline__step:last-child::before { display: none; }
.timeline__num {
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 15px; color: var(--cyan);
  background: rgba(54,197,240,.1); border: 1px solid rgba(54,197,240,.32);
}
.timeline__step h3 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 19px; color: #fff; margin: 5px 0 0; }
.timeline__step p { margin: 7px 0 0; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.7); }

@media (min-width: 860px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .timeline__step { padding: 56px 0 0; }
  .timeline__step::before {
    left: 50px; right: -14px; top: 18px; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, rgba(54,197,240,.4), rgba(54,197,240,.06));
  }
}
.ablauf-promise { margin: 42px auto 0; max-width: 720px; text-align: center; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.72); }

/* ── Dennis Huck: Eyebrow + Social-Proof-Block ────────────────────── */
.founder__copy .eyebrow { display: inline-flex; margin-bottom: 16px; }
.founder__proof {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 2px solid rgba(245,181,68,.55);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.founder__proof-stars { display: flex; align-items: center; gap: 3px; flex-wrap: wrap; }
.founder__proof-stars b { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 16px; color: #fff; margin: 0 6px 0 8px; }
.founder__proof-stars span { font-size: 13px; color: rgba(255,255,255,.55); }
.founder__proof-quote { margin: 13px 0 0; font-family: "Fraunces", serif; font-style: italic; font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.88); }
.founder__proof-cap { margin-top: 11px; font-size: 12.5px; color: rgba(255,255,255,.48); }
.founder__proof-cap a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.founder__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Kontakt: Kanäle als ruhige Zeilen statt generischer Cards ────── */
.contact-channel {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  padding: 20px 4px;
}
.contact-channel:hover {
  transform: translateX(6px);
  box-shadow: none;
  border-color: rgba(54,197,240,.4);
}
.contact-channel.is-whatsapp:hover { box-shadow: none; }
.contact-channel__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
}
