﻿@charset "UTF-8";
/* ============================================================
   reinigung.nrw -- Design System
   Rheinland Dienstleistungen
   ============================================================ */

/* === FONTS (DSGVO-konform via bunny.net) =================== */
@import url('https://fonts.bunny.net/css?family=manrope:400,500,600,700,800|inter:400,500,600&display=swap');

/* === DESIGN TOKENS ========================================= */
:root {
  /* Primaerfarbe: Premium Navy */
  --navy:         #123B6A;
  --navy-dark:    #0D2D52;
  --navy-mid:     #1E5799;
  --navy-light:   #EAF4FF;

  /* Akzentfarbe — ausschließlich CTAs */
  --orange:       #E8620A;
  --orange-dark:  #C4510A;
  --orange-light: #FFF3E8;

  /* Oberflaechen */
  --white:        #FFFFFF;
  --surface:      #F7F9FC;
  --surface-blue: #EAF4FF;

  /* Grenzen */
  --border:       #D0DBE8;
  --border-light: #E8F0F8;

  /* Text */
  --text-dark:    #1B1F24;
  --text-body:    #374151;
  --text-muted:   #6B7A8D;
  --text-light:   #94A3B8;

  /* Dark Section */
  --dark-section: #0F2340;

  /* Schatten: blau-getoent */
  --shadow-xs: 0 1px 2px rgba(18, 59, 106, 0.05);
  --shadow-sm: 0 2px 6px rgba(18, 59, 106, 0.07);
  --shadow-md: 0 4px 16px rgba(18, 59, 106, 0.09);
  --shadow-lg: 0 8px 32px rgba(18, 59, 106, 0.11);
  --shadow-xl: 0 16px 48px rgba(18, 59, 106, 0.13);

  /* Typografie */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* CTA-Blau (Premium-Button) */
  --cta-blue:        #2563EB;
  --cta-blue-dark:   #1D4ED8;
  --cta-blue-light:  #DBEAFE;

  --text-display: clamp(2.75rem, 5.5vw, 5rem);
  --text-h1:      clamp(2.5rem,  5vw,  4.5rem);
  --text-h2:      clamp(1.75rem, 3.5vw, 2.75rem);
  --text-h3:      clamp(1.25rem, 2.5vw, 1.75rem);
  --text-h4:      1.125rem;
  --text-body-lg: 1.125rem;
  --text-body-sz: 1rem;
  --text-sm:      0.875rem;
  --text-xs:      0.75rem;

  --weight-regular:   400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;
  --weight-extrabold: 800;

  --tracking-tight:  -0.03em;
  --tracking-normal: -0.01em;
  --tracking-wide:    0.06em;

  --leading-tight:   1.1;
  --leading-snug:    1.3;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32:  128px;

  --container:      1280px;
  --container-text: 760px;
  --section-pad:    clamp(56px, 7vw, 96px);
  --gap-cards:      clamp(16px, 3vw, 32px);

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition:      0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.18s ease;
  --transition-slow: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET ================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-sz);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* === LAYOUT UTILITIES ====================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.container--text {
  max-width: var(--container-text);
}

.section {
  padding: var(--section-pad) 0;
}

.section--surface {
  background-color: var(--surface);
}

/* First section directly after trust-bridge: no top padding needed */
.section--bridge-flush {
  padding-top: clamp(40px, 5vw, 64px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Compact section -- for stat-card rows, price-hints, and other single-element rows */
.section--compact {
  padding: clamp(40px, 5vw, 64px) 0;
}

.section--surface-blue {
  background-color: var(--surface-blue);
}

.section--dark {
  background-color: var(--dark-section);
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: var(--navy-light);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-snug);
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  max-width: 600px;
}

.section--dark .section-header h2 {
  color: var(--white);
}

/* === SECTION INTRO SPLIT -- Editorial two-column intro ======= */
.section-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: var(--space-16);
}

.section-intro-split--wide {
  grid-template-columns: 1.2fr 1fr;
  align-items: start; /* right col aligns to H2 start, not label top */
}

/* Push right column down to align with H2 start on left:
   section-label height (~29px) + margin-bottom (20px) + h2 margin-top (12px) */
.section-intro-split--wide .section-intro-split__right {
  padding-top: 60px;
  padding-bottom: 0;
}

.section-intro-split__left h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-snug);
  color: var(--text-dark);
  margin-top: var(--space-3);
  margin-bottom: 0;
}

.section-intro-split__right {
  padding-bottom: 6px;
}

.section-intro-split__right p {
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.section-intro-split__right p:last-child {
  margin-bottom: 0;
}

.section--dark .section-intro-split__left h2,
.section--dark .section-intro-split__right p {
  color: var(--white);
}

/* === TYPOGRAPHY ============================================ */
h1 {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  color: var(--text-dark);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-snug);
  color: var(--text-dark);
}

h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  color: var(--text-dark);
}

h4 {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
}

p {
  line-height: var(--leading-normal);
}

/* === BUTTONS =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1;
  min-height: 44px;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

/* Primary -- Premium Blue Gradient */
.btn--primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow:
    0 1px 2px rgba(18, 59, 106, 0.15),
    0 4px 16px rgba(18, 59, 106, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn--primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 2px 6px rgba(18, 59, 106, 0.18),
    0 10px 28px rgba(18, 59, 106, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* White glassmorphism -- for dark overlays and dark sections */
.btn--secondary-white {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.btn--secondary-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

/* Outline -- navy */
.btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(18, 59, 106, 0.22);
  color: var(--navy);
  padding: 12px 24px;
}

.btn--secondary:hover {
  background: rgba(18, 59, 106, 0.04);
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* Ghost white -- for hero/dark areas */
.btn--ghost-white {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 13px 26px;
}

.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.50);
  transform: translateY(-1px);
}

/* Text ghost */
.btn--ghost {
  color: var(--navy);
  font-weight: var(--weight-medium);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.btn--ghost:hover {
  border-bottom-color: var(--navy);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 0.9375rem;
}

/* === NAVIGATION -- Floating Pill ============================= */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 200;
  /* Premium architectural glass -- translucent, not milky white */
  background: rgba(248, 251, 255, 0.58);
  backdrop-filter: blur(26px) saturate(160%) brightness(1.06);
  -webkit-backdrop-filter: blur(26px) saturate(160%) brightness(1.06);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 9999px;
  padding: 8px 8px 8px 22px;
  box-shadow:
    0 2px 8px rgba(18, 59, 106, 0.05),
    0 8px 32px rgba(18, 59, 106, 0.07),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.92);   /* Lichtkante */
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav .container {
  max-width: 100%;
  padding: 0;
}

.nav.scrolled {
  background: rgba(250, 253, 255, 0.82);
  box-shadow:
    0 4px 16px rgba(18, 59, 106, 0.08),
    0 16px 48px rgba(18, 59, 106, 0.10),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95);
}

.nav.nav--transparent {
  /* kept for backwards compat -- no visual effect on pill nav */
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: 1rem;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: color 0.4s ease;
}

.nav__logo-domain {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: color 0.4s ease;
}

/* Logo als <img> — Bildgrösse in Nav und Footer */
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 180px;
}

/* On transparent/dark hero: add a subtle white pill behind the logo so it stays readable */
.nav.nav--transparent .nav__logo img {
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 3px 8px;
}

.footer__brand .nav__logo {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
}

.footer__brand .nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  font-size: 1rem;
  transition: background 0.4s ease;
}

/* Transparent variant — hero overlay state */
.nav.nav--transparent .nav__logo-name { color: var(--white); }
.nav.nav--transparent .nav__logo-domain { color: rgba(255,255,255,0.75); }
.nav.nav--transparent .nav__logo-mark { background: var(--navy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-body);
  transition: color 0.4s ease;
}

.nav__link:hover { color: var(--navy); }

/* White links on dark hero */
.nav.nav--transparent .nav__link { color: rgba(255,255,255,0.90); }
.nav.nav--transparent .nav__link:hover { color: #ffffff; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__tel {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  transition: color 0.4s ease;
}

.nav__tel:hover { color: var(--navy-dark); }

.nav.nav--transparent .nav__tel { color: rgba(255,255,255,0.95); }
.nav.nav--transparent .nav__tel:hover { color: #ffffff; }

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background 0.4s ease;
}

.nav.nav--transparent .nav__hamburger span { background: rgba(255,255,255,0.95); }

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: var(--weight-bold);
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.nav__mobile-link:hover {
  color: var(--navy);
}

.nav__mobile-cta {
  margin-top: var(--space-4);
}

.nav__mobile-tel {
  margin-top: var(--space-2);
  font-size: var(--text-body-sz);
  color: var(--text-muted);
}

/* === HERO -- Fog over Full Image (partially-cleaned window) === */
.hero {
  position: relative;
  min-height: 108vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-bleed background image -- the single source of truth */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  display: block;
  filter: contrast(1.08) saturate(1.10) brightness(0.86);
}

/*
 * Fog layer -- satiniertes Glas (satin glass), not mist.
 * blur(4px) = barely-there diffusion, building fully legible through it.
 * brightness(1.03) = real satin glass lets diffused light through (slightly brighter).
 * 103deg angle = organic, hand-crafted boundary, not geometric.
 * S-curve stops: slow-start -> fast-middle -> slow-end = natural glass edge.
 */
.hero__fog {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(4px) brightness(1.03) saturate(102%);
  -webkit-backdrop-filter: blur(4px) brightness(1.03) saturate(102%);
  mask-image: linear-gradient(
    103deg,
    black            0%,
    black            20%,
    rgba(0,0,0,0.97) 27%,
    rgba(0,0,0,0.90) 33%,
    rgba(0,0,0,0.74) 40%,
    rgba(0,0,0,0.52) 47%,
    rgba(0,0,0,0.30) 54%,
    rgba(0,0,0,0.13) 61%,
    rgba(0,0,0,0.04) 68%,
    transparent      75%
  );
  -webkit-mask-image: linear-gradient(
    103deg,
    black            0%,
    black            20%,
    rgba(0,0,0,0.97) 27%,
    rgba(0,0,0,0.90) 33%,
    rgba(0,0,0,0.74) 40%,
    rgba(0,0,0,0.52) 47%,
    rgba(0,0,0,0.30) 54%,
    rgba(0,0,0,0.13) 61%,
    rgba(0,0,0,0.04) 68%,
    transparent      75%
  );
}

/*
 * Glass detail layer -- SVG droplets, streaks, specular highlights.
 * Sits above backdrop-filter fog, below content.
 * Uses same mask as fog so details dissolve toward the clean image.
 */
.hero__glass-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mask-image: linear-gradient(
    103deg,
    black            0%,
    black            20%,
    rgba(0,0,0,0.97) 27%,
    rgba(0,0,0,0.90) 33%,
    rgba(0,0,0,0.74) 40%,
    rgba(0,0,0,0.52) 47%,
    rgba(0,0,0,0.30) 54%,
    rgba(0,0,0,0.13) 61%,
    rgba(0,0,0,0.04) 68%,
    transparent      75%
  );
  -webkit-mask-image: linear-gradient(
    103deg,
    black            0%,
    black            20%,
    rgba(0,0,0,0.97) 27%,
    rgba(0,0,0,0.90) 33%,
    rgba(0,0,0,0.74) 40%,
    rgba(0,0,0,0.52) 47%,
    rgba(0,0,0,0.30) 54%,
    rgba(0,0,0,0.13) 61%,
    rgba(0,0,0,0.04) 68%,
    transparent      75%
  );
}

.hero__glass-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* All content floats freely over the full composition */
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  /* Trust-Bridge overlaps ~60px from below -- less bottom padding needed */
  padding: clamp(76px, 8vw, 118px) 0 clamp(80px, 9vw, 112px);
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 80px);
}

/* Eyebrow */
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: var(--space-5);
  display: block;
  text-shadow: 0 1px 4px rgba(0,0,0,0.30);
}

/*
 * H1 -- gradient from deep navy (fog side) to solid white (clear image side).
 * Dark portion: very deep to contrast beautifully against the frosted glass.
 * White portion: pure white, deliberately solid -- high contrast on photo.
 * The transition zone deliberately aligns with the fog edge (~40-60% of block).
 * drop-shadow creates reading comfort where white text crosses the building.
 */
.hero h1 {
  font-size: clamp(3.8rem, 7.2vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: var(--space-6);
  background-image: linear-gradient(
    to right,
    #d4d4d4  0%,
    #d5d5d5  18%,
    #d8d8d8  34%,
    #e2e2e2  52%,
    #f0f0f0  70%,
    #fafafa  86%,
    #ffffff  100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Strong drop-shadow: keeps white text readable on any photo area */
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.28)) drop-shadow(0 4px 24px rgba(0, 0, 0, 0.18));
}

/* Sub text */
.hero__sub {
  font-size: 1.05rem;
  color: rgba(232, 244, 255, 0.88);
  line-height: 1.92;
  max-width: 520px;
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18), 0 2px 14px rgba(0, 0, 0, 0.12);
}

/* CTA row */
.hero__ctas {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: clamp(40px, 5vw, 60px);
}

/* Glass-morphism secondary button -- premium frosted look in hero context */
.hero .btn--primary {
  color: #ffffff;
  font-weight: 700;
  box-shadow:
    0 2px 8px rgba(18, 59, 106, 0.22),
    0 8px 24px rgba(18, 59, 106, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero .btn--secondary {
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.52);
  color: #ffffff;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

.hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

/*
 * Trust strip -- SaaS-style horizontal trust indicators.
 * No backgrounds, no buttons. Pure typography with subtle dividers.
 * Value (large/bold) + Label (small/muted) per item.
 */
.hero__trust {
  display: flex;
  align-items: center;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 clamp(16px, 2vw, 30px);
  flex-shrink: 0;
}

.hero__trust-item:first-child {
  padding-left: 0;
}

.hero__trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.hero__trust-value {
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(238, 248, 255, 0.96);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.hero__trust-label {
  font-size: 0.67rem;
  font-weight: 500;
  color: rgba(210, 228, 244, 0.84);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.hero__trust-stars {
  color: #F5A623;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
}

/* === TRUST BRIDGE -- floats into hero bottom ================ */
.trust-bridge {
  position: relative;
  z-index: 20;
  margin-top: -88px;
  padding: 0 clamp(24px, 4vw, 48px);
}

.trust-bridge__card {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  box-shadow:
    0 -8px 0 rgba(255, 255, 255, 0.06),
    0 -16px 48px rgba(18, 59, 106, 0.10),
    0 -4px 16px rgba(18, 59, 106, 0.06),
    0 32px 64px rgba(18, 59, 106, 0.05);
  padding: clamp(32px, 4vw, 52px) clamp(48px, 6vw, 96px);
  display: flex;
  align-items: center;
  /* No justify-content: space-between -- use flex: 1 on items + gap */
  gap: 0;
}

.trust-bridge__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
  /* Subtle left border as separator -- invisible on first item */
  border-left: 1px solid transparent;
}

.trust-bridge__item + .trust-bridge__item {
  border-left-color: rgba(18, 59, 106, 0.06);
}

.trust-bridge__sep {
  display: none;
}

.trust-bridge__stars {
  color: #F5A623;
  font-size: 0.80rem;
  letter-spacing: 1.8px;
  line-height: 1;
  margin-bottom: 2px;
}

.trust-bridge__value {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.trust-bridge__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* === SERVICES SECTION ====================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(18, 59, 106, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.40s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.30s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(18, 59, 106, 0.14);
}

/* Image -- 65-70 % of card height */
.service-card__image {
  height: clamp(220px, 21vw, 268px);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.service-card:hover .service-card__image img {
  transform: scale(1.04); /* subtle: material zoom, not Instagram zoom */
}

/* Soft, multi-stop gradient -- no hard edge between image and body */
.service-card__image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(
    to top,
    var(--white)             0%,
    rgba(255,255,255,0.94)  18%,
    rgba(255,255,255,0.72)  38%,
    rgba(255,255,255,0.36)  62%,
    rgba(255,255,255,0.10)  82%,
    transparent            100%
  );
  pointer-events: none;
}

/* Card body */
.service-card__body {
  padding: var(--space-6) var(--space-8) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-grow: 1;
}

.service-card__body h3 {
  font-size: 1.20rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin-bottom: 0;
  transition: color 0.28s ease;
}

/* Title gets brand navy on card hover */
.service-card:hover .service-card__body h3 {
  color: var(--navy);
}

.service-card__body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.72;
  flex-grow: 1;
}

.service-card__body .btn--ghost {
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  align-self: flex-start;
  transition: transform 0.28s ease, border-color 0.18s ease;
}

/* Arrow slides right on card hover */
.service-card:hover .service-card__body .btn--ghost {
  transform: translateX(5px);
  border-bottom-color: var(--navy);
}

/* === BENEFITS BENTO -- Diagonal asymmetric editorial grid ===
   Row 1: [Cell 1 -- 60% wide] [Cell 2 -- 40% wide]
   Row 2: [Cell 3 -- 40% wide] [Cell 4 -- 60% wide]
   The large cells mirror diagonally -- Stripe / Vercel pattern.
   Photography fills each cell; text overlays on dark navy gradient.
   No icons -- images carry the visual weight.
   =========================================================== */

.benefits__bento {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: clamp(340px, 34vw, 460px) clamp(280px, 26vw, 360px);
  gap: 14px;
}

/* Explicit placement -- diagonal mirroring */
.benefit-cell:nth-child(1) { grid-column: 1 / 7;  grid-row: 1; }
.benefit-cell:nth-child(2) { grid-column: 7 / 11; grid-row: 1; }
.benefit-cell:nth-child(3) { grid-column: 1 / 5;  grid-row: 2; }
.benefit-cell:nth-child(4) { grid-column: 5 / 11; grid-row: 2; }

.benefit-cell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy-dark);
  /* Include opacity so fade-up animation works alongside hover transform */
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease;
}

/* Photography fills the cell */
.benefit-cell > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-cell:hover > img {
  transform: scale(1.04);
}

/* Deep navy gradient from bottom -- text legibility */
.benefit-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 21, 40, 0.96) 0%,
    rgba(9, 21, 40, 0.74) 22%,
    rgba(9, 21, 40, 0.36) 46%,
    rgba(9, 21, 40, 0.07) 66%,
    transparent 82%
  );
  z-index: 1;
  pointer-events: none;
}

/* Subtle top vignette for depth */
.benefit-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 21, 40, 0.22) 0%,
    transparent 30%
  );
  z-index: 1;
  pointer-events: none;
}

/* Text pinned to bottom-left */
.benefit-cell__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(22px, 3vw, 40px);
  z-index: 2;
}

.benefit-cell__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.75vw, 1.52rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefit-cell__content p {
  font-size: clamp(0.75rem, 0.92vw, 0.86rem);
  color: rgba(195, 220, 244, 0.80);
  line-height: 1.60;
  max-width: 400px;
  margin: 0;
}

/* Editorial number -- barely visible, top-right */
.benefit-cell__num {
  position: absolute;
  top: clamp(16px, 1.8vw, 24px);
  right: clamp(16px, 1.8vw, 24px);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.36);
  pointer-events: none;
  user-select: none;
}

/* Keep old benefit-card class for backward compat on subpages */
.benefit-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* === PROCESS -- 3 horizontale Karten (CSS Grid, pixelgetreu)
   Karte 1 + 3: [Foto 256px] [Kreis 56px] [Text 1fr] [Badge 90px]
   Karte 2:     [Badge 90px] [Text 1fr] [Kreis 56px] [Foto 256px]
   Connector sitzt exakt mittig auf der Kreisspalte von Karte 1 + 3.
   Formel: card-px + img-w + col-gap + circle/2 - 1px = 343px
   =========================================================== */

.steps__list {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin-inline: auto;
  gap: 18px;
  --si-img-w:   280px;
  --si-circle:  56px;
  --si-col-gap: 40px;
  --si-badge-w: 90px;
  --si-card-px: 20px;
}

/* Connector: zentriert auf Kreismitte von Karte 1 + 3
   = 20 + 280 + 40 + 28 - 1 = 367px */
.step-connector-wrap {
  padding-left: calc(
    var(--si-card-px) + var(--si-img-w) + var(--si-col-gap) + var(--si-circle) * 0.5 - 1px
  );
}

/* Verbindungslinie zwischen Karten -- ausgeblendet */
.step-connector-wrap {
  display: none;
}

.step-connector {
  width: 2px;
  height: 44px;
  background: transparent;
  border-radius: 1px;
  flex-shrink: 0;
  position: relative;
}

/* Fuell-Animation von oben nach unten */
.step-connector::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--navy-mid), var(--navy));
  border-radius: 1px;
  transition: height 0.88s cubic-bezier(0.42, 0, 0.18, 1);
}

.step-connector.connector--active::before { height: 100%; }

@keyframes wipe-shimmer {
  0%   { top: -6px; opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.9; }
  100% { top: calc(100% + 4px); opacity: 0; }
}

.step-connector::after {
  content: '';
  position: absolute;
  left: -3px;
  width: calc(100% + 6px);
  height: 8px;
  background: radial-gradient(
    ellipse 6px 3px at 50% 50%,
    rgba(180, 220, 255, 0.9) 0%,
    rgba(148, 200, 255, 0.4) 50%,
    transparent 70%
  );
  border-radius: 4px;
  top: -6px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.step-connector.connector--active::after {
  animation: wipe-shimmer 0.88s cubic-bezier(0.42, 0, 0.18, 1) both;
}

/* === KARTE ================================================= */
.step-card {
  display: grid;
  grid-template-columns: var(--si-img-w) var(--si-circle) 1fr var(--si-badge-w);
  column-gap: var(--si-col-gap);
  align-items: center;
  min-height: 200px;
  padding: 20px var(--si-card-px);
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 2px 10px rgba(18, 59, 106, 0.07),
              0 1px 3px  rgba(18, 59, 106, 0.04);
  position: relative;
  overflow: visible;
  transition: opacity 0.5s ease,
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

/* Karte hebt sich beim Einrollen -- sehr weich */
.step-card--active {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(18, 59, 106, 0.12),
              0 2px 8px  rgba(18, 59, 106, 0.07);
}

/* Karte 2: [Badge] [Text] [Kreis] [Foto] */
.step-card[data-step="02"] {
  grid-template-columns: var(--si-badge-w) 1fr var(--si-circle) var(--si-img-w);
}

.step-card::before { display: none; }
.step-card::after  { display: none; }

/* === FOTO-BEREICH ========================================== */
.step-card__img-area {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: none;
  transition: box-shadow 0.35s ease;
}

/* Bild im Pseudo-Element -- transformierbar ohne Layout-Einfluss */
.step-card__img-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-img-area--1::before {
  background-image: url('/svc-bueroreinigung.webp');
  background-position: center 30%;
}
.step-img-area--2::before {
  background-image: url('/benefit-ablaeufe.webp');
  background-position: center 35%;
}
.step-img-area--3::before {
  background-image: url('/Gemini_Generated_Image_hvm9amhvm9amhvm9.webp');
  background-position: center 40%;
}

/* Hover: nur das Bild skaliert, kein Layout-Springen */
.step-card__img-area:hover {
  box-shadow: 0 8px 24px rgba(18, 59, 106, 0.18);
}
.step-card__img-area:hover::before {
  transform: scale(1.04);
}

/* === KREIS + VERTIKALE LINIEN ============================= */
.step-card__circle {
  width: var(--si-circle);
  height: var(--si-circle);
  background: var(--white);
  border-radius: 50%;
  border: 1.5px solid rgba(18, 59, 106, 0.14);
  box-shadow: 0 2px 8px rgba(18, 59, 106, 0.13),
              0 1px 3px rgba(18, 59, 106, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

/* Linie ueber dem Kreis: duenn oben, breit am Kreis -- bleibt innerhalb der Karte */
.step-card__circle::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: calc(50% - 3px);
  width: 6px;
  height: 56px;
  clip-path: polygon(1.5px 0%, 4.5px 0%, 6px 100%, 0px 100%);
  background: linear-gradient(
    to top,
    rgba(18, 59, 106, 0.75) 0%,
    rgba(18, 59, 106, 0.25) 60%,
    transparent             100%
  );
  pointer-events: none;
  z-index: -1;
}

/* Linie unter dem Kreis: breit am Kreis, duenn unten -- bleibt innerhalb der Karte */
.step-card__circle::after {
  content: '';
  position: absolute;
  top: calc(100% + 4px);
  left: calc(50% - 3px);
  width: 6px;
  height: 56px;
  clip-path: polygon(0px 0%, 6px 0%, 4.5px 100%, 1.5px 100%);
  background: linear-gradient(
    to bottom,
    rgba(18, 59, 106, 0.75) 0%,
    rgba(18, 59, 106, 0.25) 60%,
    transparent             100%
  );
  pointer-events: none;
  z-index: -1;
}

/* === INHALT ================================================ */
.step-card__body {
  min-width: 0;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-card__desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* === BADGE ================================================= */
.step-card__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  background: var(--navy);
  border-radius: 10px;
  width: var(--si-badge-w);
  max-height: 50px;
  align-self: start;
  justify-self: center;
  box-shadow: 0 2px 8px rgba(18, 59, 106, 0.14),
              0 1px 3px rgba(18, 59, 106, 0.07);
  transform: translateY(-22px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}

/* Badge popt leicht beim Aktivieren (Bounce) */
.step-card--active .step-card__badge {
  transform: translateY(-26px) scale(1.06);
  box-shadow: 0 4px 14px rgba(18, 59, 106, 0.2),
              0 2px 5px rgba(18, 59, 106, 0.09);
}

.step-badge__value {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
}

.step-badge__label {
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
  line-height: 1.3;
}

/* === REVIEWS -- Screenshot-matched layout =================== */
.reviews {
  background: var(--surface);
}

.reviews__layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* Left column: sticky anchor */
.reviews__intro {
  position: sticky;
  top: clamp(100px, 12vw, 140px);
}

.reviews__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
  color: var(--text-dark);
  margin: var(--space-4) 0 var(--space-5);
}

.reviews__intro-text {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-5);
  max-width: 360px;
}

/* Trust line: checkmark + text */
.reviews__trust-line {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.reviews__trust-line svg {
  color: var(--navy-mid);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Google badge -- glass card */
.reviews__google-badge {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(18, 59, 106, 0.10);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow:
    0 4px 24px rgba(18, 59, 106, 0.08),
    0 1px 3px rgba(18, 59, 106, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.reviews__google-top {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.reviews__google-g {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.reviews__google-score-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews__google-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: var(--weight-extrabold);
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: -0.04em;
}

.reviews__google-stars-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.reviews__google-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 1px;
}

.reviews__google-platform {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
}

.reviews__google-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-snug);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(18, 59, 106, 0.07);
}

/* Full-width premium gradient CTA button */
.reviews__google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: 14px var(--space-5);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(18, 59, 106, 0.30);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.reviews__google-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 59, 106, 0.38);
}

/* 3 cards as direct grid children -- large card spans 2 rows */
.reviews__cards {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}

/* Large card: col 1, spans both rows */
.review-card--large {
  grid-row: span 2;
  padding: clamp(22px, 2.5vw, 30px);
  box-shadow:
    0 0 0 1px rgba(18, 59, 106, 0.04),
    0 4px 16px rgba(18, 59, 106, 0.07),
    0 16px 48px rgba(18, 59, 106, 0.09);
}

/* === REVIEW CARD =========================================== */
.review-card {
  background: var(--white);
  border: 1px solid #EEF2F7;
  border-radius: 24px;
  padding: clamp(18px, 2vw, 22px);
  box-shadow:
    0 2px 8px rgba(18, 59, 106, 0.05),
    0 6px 24px rgba(18, 59, 106, 0.06);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.50s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.012) !important;
  rotate: 0deg !important;
  box-shadow:
    0 0 0 1px rgba(18, 59, 106, 0.06),
    0 4px 16px rgba(18, 59, 106, 0.08),
    0 20px 60px rgba(18, 59, 106, 0.13);
}

/* Stars + Google G */
.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-card__google-mark {
  width: 18px;
  height: 18px;
  opacity: 0.65;
  flex-shrink: 0;
}

/* Decorative opening quote mark */
.review-card__quote-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  line-height: 0.8;
  color: var(--navy);
  opacity: 0.18;
  margin-bottom: -4px;
  user-select: none;
}

/* Review text */
.review-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
  font-style: normal;
  flex-grow: 0;
  margin: 0;
}

/* Author row */
.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(18, 59, 106, 0.05);
  margin-top: var(--space-1);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 0.7rem;
  color: var(--navy);
  flex-shrink: 0;
}

.review-card__name {
  font-weight: var(--weight-semibold);
  font-size: 0.83rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.review-card__role {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
  line-height: 1.4;
}

/* === REVIEWS TRUST BAR ==================================== */
.reviews__trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid rgba(18, 59, 106, 0.09);
}

.reviews__trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.reviews__trust-icon {
  width: 22px;
  height: 22px;
  color: var(--navy-mid);
  flex-shrink: 0;
  margin-top: 1px;
}

.reviews__trust-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  margin-bottom: 3px;
}

.reviews__trust-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* === COVERAGE AREA ========================================= */
.coverage__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.coverage__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.coverage__content h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-snug);
  color: var(--text-dark);
  margin-top: var(--space-3);
  margin-bottom: 0;
}

.coverage__content p {
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  max-width: 480px;
}

.coverage__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: clamp(320px, 40vw, 520px);
  box-shadow: var(--shadow-xl);
}

.coverage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coverage__image:hover img {
  transform: scale(1.04);
}

/* Subtle vignette on image edges */
.coverage__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 59, 106, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.coverage__city {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-body);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.coverage__city:hover {
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(18, 59, 106, 0.10);
}

.coverage__city svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
}

/* === FAQ ACCORDION ========================================= */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.faq__item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 59, 106, 0.22);
  border-left: 3px solid var(--navy);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-body-sz);
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
}

.faq__question:hover {
  color: var(--navy);
  background: var(--navy-light);
}

.faq__icon {
  width: 24px;
  height: 24px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
  transition: transform var(--transition-fast);
}

.faq__item.open .faq__icon {
  background: var(--navy);
  transform: rotate(180deg);
}

.faq__item.open .faq__icon svg {
  color: var(--white);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: var(--leading-relaxed);
}

.faq__item.open .faq__answer {
  max-height: 600px;
}

.faq__more {
  margin-top: var(--space-8);
  text-align: center;
}

/* === DARK CTA SECTION ====================================== */
.cta-section {
  background: var(--dark-section);
}

/* All direct headings and text on dark cta background */
.cta-section h2 {
  color: var(--white) !important;
}
.cta-section p {
  color: rgba(255,255,255,0.82) !important;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.cta-section__inner--simple {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__text h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--space-5);
}

.cta-section__text p {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 440px;
}

/* Light label variant for use on dark backgrounds */
.section-label--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
}

.cta-section__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cta-section__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
}

.cta-section__trust-item svg {
  width: 18px;
  height: 18px;
  color: #4ADE80;
  flex-shrink: 0;
}

/* === CONTACT FORM ========================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.78);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.form__label--dark {
  color: var(--text-muted);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-body-sz);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.form__select {
  appearance: none;
  cursor: pointer;
}

.form__select option {
  background: var(--dark-section);
  color: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Light form variant (Kontaktseite) */
.form--light .form__input,
.form--light .form__select,
.form--light .form__textarea {
  border-color: var(--border);
  background: var(--white);
  color: var(--text-dark);
}

.form--light .form__input::placeholder,
.form--light .form__textarea::placeholder {
  color: var(--text-light);
}

.form--light .form__input:focus,
.form--light .form__select:focus,
.form--light .form__textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(18, 59, 106, 0.08);
}

.form--light .form__select option {
  background: var(--white);
  color: var(--text-dark);
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.form__checkbox-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-relaxed);
}

.form__checkbox-label--dark {
  color: var(--text-muted);
}

.form__checkbox-label a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

.form__checkbox-label--dark a {
  color: var(--navy);
}

/* Multi-select service checkboxes */
.form__checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-3);
}
.form__checkbox-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-body);
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.form__checkbox-option:has(input:checked) {
  border-color: var(--navy);
  background: var(--navy-light);
  color: var(--navy);
  font-weight: 500;
}
.form__checkbox-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}
@media (max-width: 480px) {
  .form__checkboxes { grid-template-columns: 1fr; }
}

.form__submit {
  width: 100%;
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-8);
  color: #4ADE80;
  font-size: var(--text-body-lg);
  font-weight: var(--weight-semibold);
}

.form__success.visible {
  display: block;
}

/* === FOOTER ================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .nav__logo-mark {
  background: rgba(255,255,255,0.1);
}

.footer__brand .nav__logo-name {
  color: var(--white);
}

.footer__brand .nav__logo-domain {
  color: rgba(255,255,255,0.5);
}

.footer__tagline {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255,255,255,0.68);
  max-width: 260px;
}

.footer__col h3 {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--space-3);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: rgba(180, 210, 240, 0.85);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.58);
  flex-wrap: wrap;
}

.footer__bottom a {
  color: rgba(255,255,255,0.58);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: rgba(255,255,255,0.85);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-5);
}

/* === STICKY MOBILE CTA ===================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: var(--space-3) var(--space-5);
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(208, 219, 232, 0.5);
  box-shadow: 0 -4px 20px rgba(18, 59, 106, 0.10);
}

.mobile-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.mobile-cta__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 13px var(--space-4);
  background: transparent;
  border: 1.5px solid rgba(18, 59, 106, 0.30);
  border-radius: var(--radius-full);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.mobile-cta__call:hover {
  background: rgba(18, 59, 106, 0.04);
  border-color: var(--navy);
}

.mobile-cta__offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 13px var(--space-4);
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 55%, #1D4ED8 100%);
  border: none;
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.30);
  transition: opacity var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-cta__offer:hover {
  opacity: 0.92;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.38);
}

/* === ANIMATIONS ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }
.fade-up:nth-child(5) { transition-delay: 320ms; }
.fade-up:nth-child(6) { transition-delay: 400ms; }

/* === PAGE HERO (Unterseiten) ================================ */
.page-hero {
  padding: calc(80px + var(--section-pad)) 0 var(--section-pad);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: var(--text-h1);
  margin-bottom: var(--space-4);
}

.page-hero__sub {
  font-size: var(--text-body-lg);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Page Hero mit Bild */
.page-hero--image {
  padding: calc(80px + clamp(60px, 8vw, 100px)) 0 clamp(60px, 8vw, 100px);
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--image .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5, 8, 15, 0.82) 0%,
    rgba(5, 8, 15, 0.52) 50%,
    rgba(5, 8, 15, 0.10) 100%
  );
}

/* === PAGE HERO -- PHOTO VARIANT (Ueber uns, FAQ, Kontakt) ==== */
.page-hero--photo {
  min-height: clamp(440px, 52vh, 580px);
  padding: calc(80px + clamp(52px, 6vw, 80px)) 0 clamp(52px, 6vw, 80px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0d2d52;
}
/* Kein Kreuzmuster auf Photo-Heroes */
.page-hero--photo::after {
  display: none;
}
/* Sehr dezenter Gradient -- nur fuer Lesbarkeit des Textes unten */
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.00) 75%
  );
}
@media (max-width: 768px) {
  .page-hero--photo {
    min-height: clamp(360px, 55vw, 440px);
    padding: calc(72px + clamp(40px, 5vw, 56px)) 0 clamp(40px, 5vw, 56px);
  }
  .page-hero--photo::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.22) 45%,
      rgba(0, 0, 0, 0.00) 75%
    );
  }

  /* Leistungsseiten h1: reduce from 2.5rem->40px to fit multi-word headings comfortably */
  .page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .page-hero--image {
    padding: calc(72px + clamp(40px, 5vw, 56px)) 0 clamp(40px, 5vw, 56px);
  }
}

/* === BREADCRUMB ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* === LEISTUNG CONTENT ====================================== */
.leistung-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.leistung-content__grid--reverse {
  direction: rtl;
}

.leistung-content__grid--reverse > * {
  direction: ltr;
}

.leistung-content__text h2 {
  margin-bottom: var(--space-5);
}

.leistung-content__text p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.leistung-content__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.leistung-content__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-body);
}

.leistung-content__list li svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 1px;
}

.leistung-content__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.leistung-content__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* === PREISHINWEIS ========================================== */
.price-hint {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.price-hint__text h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.price-hint__text p {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* === ABOUT CONTENT ========================================= */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about__text p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.about__value-icon {
  width: 40px;
  height: 40px;
  background: var(--navy-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.about__value-icon svg {
  width: 20px;
  height: 20px;
}

.about__value h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-1);
}

.about__value p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* === CONTACT PAGE ========================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: var(--space-4);
}

.contact__info p {
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
}

.contact__item-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact__item-value {
  font-weight: var(--weight-medium);
  color: var(--text-dark);
  font-size: var(--text-body-sz);
}

.contact__item-value a {
  color: var(--navy);
  transition: color var(--transition-fast);
}

.contact__item-value a:hover {
  color: var(--navy-dark);
}

/* === FAQ PAGE ============================================== */
.faq-page__categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.faq-page__cat-btn {
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
}

.faq-page__cat-btn:hover,
.faq-page__cat-btn.active {
  border-color: rgba(18, 59, 106, 0.30);
  color: var(--navy);
  background: rgba(18, 59, 106, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.faq-page__section {
  margin-bottom: var(--space-12);
}

.faq-page__section h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-5);
  color: var(--text-dark);
}

/* === GLOSSAR =============================================== */
.glossar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-cards);
}

.glossar-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.glossar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.08);
}

.glossar-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.glossar-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

/* === STANDORT PAGE ========================================= */
.standort__intro {
  max-width: var(--container-text);
  margin: 0 auto;
  text-align: center;
}

.standort__intro p {
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-5);
}

/* === IMPRESSUM / DATENSCHUTZ =============================== */
.legal-content {
  max-width: var(--container-text);
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--text-dark);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--text-dark);
}

.legal-content p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-content ul li {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
}

.legal-content a {
  color: var(--navy);
  text-decoration: underline;
}

/* === MEGA MENU ============================================= */
.nav__mega-trigger {
  position: relative;
}

.nav__mega-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-body);
  cursor: pointer;
  padding: 0;
  transition: color 0.4s ease;
}

.nav__mega-btn:hover,
.nav__mega-trigger:hover .nav__mega-btn { color: var(--navy); }

.nav.nav--transparent .nav__mega-btn { color: rgba(255,255,255,0.90); }
.nav.nav--transparent .nav__mega-trigger:hover .nav__mega-btn { color: #ffffff; }

.nav__mega-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.nav__mega-trigger:hover .nav__mega-chevron,
.nav__mega-trigger.is-open .nav__mega-chevron {
  transform: rotate(180deg);
}

.nav__mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.2s;
  width: 560px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(208, 219, 232, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 48px rgba(18, 59, 106, 0.13), 0 2px 8px rgba(18, 59, 106, 0.06);
  z-index: 200;
  overflow: hidden;
}

.nav__mega-trigger:hover .nav__mega-menu,
.nav__mega-trigger.is-open .nav__mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(208, 219, 232, 0.7);
  border-top: 1px solid rgba(208, 219, 232, 0.7);
}

.nav__mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: var(--space-3) var(--space-3) var(--space-2);
}

.nav__mega-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-3);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background var(--transition-fast);
}

.nav__mega-item:hover {
  background: var(--navy-light);
}

.nav__mega-icon {
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.nav__mega-item:hover .nav__mega-icon {
  background: var(--white);
  border-color: var(--border);
}

.nav__mega-icon svg {
  width: 18px;
  height: 18px;
}

.nav__mega-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__mega-name {
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  font-family: var(--font-display);
  transition: color var(--transition-fast);
  line-height: 1.3;
}

.nav__mega-item:hover .nav__mega-name {
  color: var(--navy);
}

.nav__mega-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.nav__mega-footer {
  border-top: 1px solid var(--border-light);
  padding: var(--space-3) var(--space-5);
  background: var(--surface);
}

.nav__mega-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--navy);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.nav__mega-all:hover {
  color: var(--navy-dark);
  gap: var(--space-3);
}

/* Mega menu -- service thumbnails via CSS attribute selectors */
.nav__mega-item[href*="bueroreinigung"] .nav__mega-icon,
.nav__mega-item[href*="unterhaltsreinigung"] .nav__mega-icon,
.nav__mega-item[href*="gebaeudereinigung"] .nav__mega-icon,
.nav__mega-item[href*="fensterreinigung"] .nav__mega-icon,
.nav__mega-item[href*="bauendreinigung"] .nav__mega-icon,
.nav__mega-item[href*="hausmeisterservice"] .nav__mega-icon {
  background-size: cover;
  background-position: center;
  color: transparent;
  border: none;
  flex-shrink: 0;
}

.nav__mega-item[href*="bueroreinigung"] .nav__mega-icon      { background-image: url('/svc-bueroreinigung.webp'); }
.nav__mega-item[href*="unterhaltsreinigung"] .nav__mega-icon { background-image: url('/svc-unterhaltsreinigung.webp'); }
.nav__mega-item[href*="gebaeudereinigung"] .nav__mega-icon   { background-image: url('/svc-gebaeudereinigung.webp'); }
.nav__mega-item[href*="fensterreinigung"] .nav__mega-icon    { background-image: url('/svc-fensterreinigung.webp'); }
.nav__mega-item[href*="bauendreinigung"] .nav__mega-icon     { background-image: url('/svc-bauendreinigung.webp'); }
.nav__mega-item[href*="hausmeisterservice"] .nav__mega-icon  { background-image: url('/svc-hausmeisterservice.webp'); }

/* Mobile nav leistungen group */
.nav__mobile-group-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
  padding: var(--space-3) var(--space-6) var(--space-1);
  margin-top: var(--space-3);
}

.nav__mobile-link--sub {
  font-size: 1rem !important;
  padding-left: calc(var(--space-6) + var(--space-5)) !important;
  color: var(--text-body) !important;
}

/* === CONTENT PROSE ========================================= */
.prose {
  max-width: var(--container-text);
}

.prose p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  font-size: var(--text-body-lg);
}

.prose h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
  color: var(--text-dark);
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--text-dark);
}

.prose ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.prose ul li {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  font-size: var(--text-body);
}

/* === INFO BOXES ============================================ */
.info-box {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
}

.info-box p {
  margin: 0;
  color: var(--text-body);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.info-box strong {
  color: var(--navy);
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* === TWO COL TEXT ========================================== */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.two-col-text p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  font-size: var(--text-body);
}

/* === FAQ ACCORDION (glossar/article) ====================== */
.faq-accordion .faq-item {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}
.faq-accordion .faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-accordion .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) var(--space-3);
  margin: 0 calc(-1 * var(--space-3));
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  border-radius: var(--radius);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.faq-accordion .faq-question:hover {
  color: var(--navy);
  background: var(--navy-light);
}

.faq-accordion .faq-question::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A8D' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-accordion .faq-item.open .faq-question {
  color: var(--navy);
}
.faq-accordion .faq-item.open .faq-question::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23123B6A' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.faq-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.22s ease;
}

.faq-accordion .faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: var(--space-5);
}

.faq-accordion .faq-answer p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
  margin: 0;
  padding-left: var(--space-3);
  border-left: 2px solid var(--navy-light);
}

/* ============================================================
   LEISTUNGSSEITEN -- EINZIGARTIGE LAYOUT-KOMPONENTEN
   Jede Leistungsseite verwendet andere Kombinationen
   ============================================================ */

/* 1. EDITORIAL INTRO -- grosser Stat + Prosatext nebeneinander */
.editorial-intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.editorial-intro__stat {
  position: sticky;
  top: 110px;
}
.editorial-intro__number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--navy);
  display: block;
}
.editorial-intro__unit {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-mid);
}
.editorial-intro__caption {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
  max-width: 140px;
  margin-top: var(--space-3);
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
}
.editorial-intro__prose h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: var(--space-6);
}
.editorial-intro__prose p {
  margin-bottom: var(--space-5);
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}

/* 2. BENTO GRID -- gemischte Kartengroessen */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}
.bento__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.bento__card--wide { grid-column: span 2; }
.bento__card--tall { grid-row: span 2; }
.bento__card--dark {
  background: var(--navy);
  border-color: var(--navy);
}
.bento__card--dark h3, .bento__card--dark p, .bento__card--dark li {
  color: rgba(255,255,255,0.92) !important;
}
.bento__card--accent {
  background: var(--navy-light);
  border-color: rgba(18,59,106,0.12);
}
.bento__card--image {
  padding: 0;
  overflow: hidden;
  min-height: 240px;
}
.bento__card--image img {
  width: 100%; height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-xl) - 1px);
}
.bento__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  display: block;
  margin-bottom: var(--space-2);
}
.bento__card--dark .bento__number { color: white; }
.bento__micro-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-mid);
  margin-bottom: var(--space-3);
  display: block;
}
.bento__card--dark .bento__micro-label { color: rgba(255,255,255,0.80); }
.bento__card h3 {
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--text-dark);
  margin: var(--space-3) 0 var(--space-2);
}
.bento__card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.bento__checklist {
  list-style: none;
  padding: 0; margin: var(--space-3) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.bento__checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.5;
}
.bento__checklist li::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5799' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.bento__card--dark .bento__checklist li { color: rgba(255,255,255,0.88) !important; }
.bento__card--dark .bento__checklist li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") !important; }

/* Standalone checklist — Stadtseiten (grafschaft, sankt-augustin etc.) */
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: var(--text-body);
  line-height: 1.6;
}
.checklist li::before {
  content: '';
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5799' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 3. PULL QUOTE */
.pull-quote {
  border-left: 4px solid var(--navy);
  padding: clamp(20px, 3vw, 36px) clamp(24px, 4vw, 52px);
  background: var(--navy-light);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  max-width: 820px;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
  margin: 0 0 var(--space-3);
}
.pull-quote__source {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: normal;
}

/* 4. SPLIT PANEL -- 50/50 Bild + Dunkel-Text */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: clamp(420px, 50vw, 580px);
}
.split-panel__img {
  position: relative;
  overflow: hidden;
}
.split-panel__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.split-panel__text {
  background: var(--navy);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-panel__text .section-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-5);
}
.split-panel__text h2 {
  color: white;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: var(--space-5);
}
.split-panel__text p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-size: var(--text-body-lg);
}
.split-panel__text .btn--primary { align-self: flex-start; }

/* 5. VERGLEICH -- Ohne uns / Mit uns */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.comparison__col {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
}
.comparison__col--bad {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.comparison__col--good {
  background: var(--navy-light);
  border: 1px solid rgba(18,59,106,0.15);
}
.comparison__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h4);
  margin: 0 0 var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.comparison__col--bad .comparison__title { color: #B91C1C; }
.comparison__col--good .comparison__title { color: var(--navy); }
.comparison__list {
  list-style: disc;
  padding: 0 0 0 1.25em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.comparison__list li {
  font-size: var(--text-sm);
  line-height: 1.6;
}
.comparison__col--bad .comparison__list li { color: #7F1D1D; }
.comparison__col--good .comparison__list li { color: var(--navy); }
.comparison__col--bad .comparison__list li::before,
.comparison__col--good .comparison__list li::before { content: none; }

/* 6. VERTIKALE TIMELINE */
.vtimeline {
  position: relative;
  padding-left: clamp(44px, 6vw, 72px);
  max-width: 780px;
  --vtimeline-fill: 0%;
}
/* Track: subtle gray line in background */
.vtimeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
  z-index: 0;
}
/* Fill: navy line grows from top, height driven by JS */
.vtimeline::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  width: 2px;
  height: var(--vtimeline-fill);
  background: var(--navy);
  z-index: 0;
  transition: height 0.08s linear;
}
.vtimeline__item {
  position: relative;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.vtimeline__item:last-child { margin-bottom: 0; }
.vtimeline__dot {
  position: absolute;
  left: calc(-1 * clamp(44px, 6vw, 72px) + 2px);
  top: 2px;
  width: 26px; height: 26px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50%;
  z-index: 2;
  box-shadow: var(--shadow-xs);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}
.vtimeline__item--active .vtimeline__dot {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.25);
  box-shadow: 0 0 0 5px var(--navy-light), 0 0 0 8px rgba(18,59,106,0.10), var(--shadow-sm);
}
.vtimeline__item:first-child .vtimeline__dot { background: var(--navy); border-color: var(--navy); }
.vtimeline__step {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-mid);
  margin-bottom: var(--space-2);
}
.vtimeline__title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 var(--space-3);
  line-height: 1.3;
}
.vtimeline__body {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* 7. GLASS CARDS */
.glass-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(234,244,255,0.72) 100%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow:
    0 4px 24px rgba(18,59,106,0.07),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.glass-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  width: 28px; height: 28px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.glass-card h3 {
  font-size: var(--text-h4);
  font-weight: 700;
  margin: 0 0 var(--space-2);
}
.glass-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* 8. GROSSE ZAHL-SCHRITTE */
.number-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.number-step__digit {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--border);
  display: block;
  margin-bottom: var(--space-4);
}
.number-step h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 var(--space-3);
}
.number-step p {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* 9. OUTLINE CARDS (2-spaltig, nur Rahmen) */
.outline-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
}
.outline-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.outline-card:hover {
  border-color: var(--navy-mid);
  background: var(--navy-light);
  transform: translateY(-2px);
}
.outline-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-mid);
  margin-bottom: var(--space-2);
  display: block;
}
.outline-card h3 {
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 var(--space-2);
}
.outline-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
/* 3-column variant -- placed here (before media queries) so the 768px reset below wins on mobile */
.outline-cards--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* 10. PHASEN-KARTEN mit Checklisten */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.phase-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4vw, 44px) clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.phase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-mid);
}
.phase-card__badge {
  position: absolute;
  top: -16px;
  left: clamp(24px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px rgba(18,59,106,0.35);
  margin-bottom: 0;
}
.phase-card h3 {
  font-size: var(--text-h4);
  font-weight: 700;
  margin: 0 0 var(--space-1);
  color: var(--text-dark);
}
.phase-card__subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0 0 var(--space-5);
}
.phase-card__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-4);
}
.phase-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.5;
}
.phase-card__list li::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E5799' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* 11. IMAGE FEATURE -- Vollbild mit Overlay */
.img-feature {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: clamp(380px, 45vw, 560px);
  display: flex;
  align-items: flex-end;
}
.img-feature__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.img-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,64,0.1) 0%, rgba(15,35,64,0.85) 100%);
}
.img-feature__content {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 5vw, 64px);
  color: white;
  width: 100%;
}
.img-feature__content .section-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-4);
}
.img-feature__content h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  max-width: 680px;
  margin-bottom: var(--space-5);
}
.img-feature__content p {
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* 12. BILD mit schwebenden Stat-Karten */
.img-with-stats {
  position: relative;
  margin-bottom: clamp(40px, 7vw, 72px);
}
.img-with-stats__img {
  width: 100%;
  border-radius: var(--radius-2xl);
  display: block;
  height: clamp(300px, 40vw, 500px);
  object-fit: cover;
}
.img-with-stats__cards {
  position: absolute;
  bottom: -28px;
  right: clamp(16px, 5vw, 56px);
  display: flex;
  gap: 12px;
}
.img-stat-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 110px;
}
.img-stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.img-stat-card__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
  display: block;
}

/* 13. SAISONALES GRID */
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.seasonal-card {
  border-radius: var(--radius-xl);
  padding: clamp(22px, 2.8vw, 32px);
  position: relative;
}
.seasonal-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.seasonal-card--spring  { background: #F0FDF4; border: 1px solid #BBF7D0; }
.seasonal-card--spring::after  { background: #22C55E; }
.seasonal-card--summer  { background: #FFFBEB; border: 1px solid #FDE68A; }
.seasonal-card--summer::after  { background: #F59E0B; }
.seasonal-card--autumn  { background: #FFF7ED; border: 1px solid #FED7AA; }
.seasonal-card--autumn::after  { background: #EA580C; }
.seasonal-card--winter  { background: #EFF6FF; border: 1px solid #BFDBFE; }
.seasonal-card--winter::after  { background: #3B82F6; }
.seasonal-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-h4);
  margin: 0 0 var(--space-4);
  color: var(--text-dark);
}
.seasonal-card__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.seasonal-card__list li {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.5;
  padding-left: var(--space-4);
  position: relative;
}
.seasonal-card__list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* 14. DARK STATS BAR */
.dark-stats {
  background: var(--dark-section);
  border-radius: var(--radius-2xl);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  text-align: center;
}
.dark-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: white;
  display: block;
  margin-bottom: var(--space-2);
}
.dark-stat__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
}

/* 15a. STAT CARDS -- helle Alternative zu dark-stats */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 24px);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-mid);
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  display: block;
  margin-bottom: var(--space-2);
}
.stat-card__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* 15. SECTION BACKGROUNDS */
.section--gradient-cool {
  background: linear-gradient(160deg, #f7f9fc 0%, var(--surface-blue) 100%);
}
.section--off-white {
  background: #FAFBFD;
}

/* 16. CTA SECTION -- etwas weniger Abstand zur vorherigen Sektion */
.cta-section {
  padding-top: clamp(52px, 7vw, 84px);
}

/* 17. IMAGE HOVER ZOOM -- subtiles Vergroessern beim Hover */
.bento__card--image {
  overflow: hidden;
}
.bento__card--image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bento__card--image:hover img {
  transform: scale(1.04);
}
.split-panel__img img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.split-panel:hover .split-panel__img img {
  transform: scale(1.04);
}
.img-feature__bg {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-feature:hover .img-feature__bg {
  transform: scale(1.03);
}
/* img-with-stats zoom omitted -- no overflow wrapper, floating cards would clip */

/* 18. NUMBER STEP HOVER */
.number-step {
  transition: transform 0.3s ease;
}
.number-step:hover {
  transform: translateY(-4px);
}

/* 19. STAT CARDS RESPONSIVE -- inline before media queries */

/* 20. PROCESS STEPS -- horizontale Schritte (bueroreinigung, unterhaltsreinigung) */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  position: relative;
}
.process__connector {
  position: absolute;
  top: 26px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.process__step {
  cursor: default;
}
.process__step:hover .process__num {
  background: var(--navy);
  color: white;
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 var(--space-3);
}
.process__step p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  margin: 0;
}

/* RESPONSIVE -- neue Leistungsseiten-Komponenten */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }
  .bento__card--tall { grid-row: auto; }
  .glass-cards { grid-template-columns: repeat(2, 1fr); }
  .number-steps { grid-template-columns: 1fr 1fr; }
  .seasonal-grid { grid-template-columns: repeat(2, 1fr); }
  .split-panel { grid-template-columns: 1fr; min-height: auto; }
  .split-panel__img { min-height: 320px; }
  .dark-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .editorial-intro { grid-template-columns: 1fr; }
  .editorial-intro__stat { position: static; display: flex; align-items: baseline; gap: var(--space-4); margin-bottom: var(--space-6); }
  .editorial-intro__caption { border-top: none; padding-top: 0; max-width: none; }
  .phase-grid { grid-template-columns: 1fr 1fr; }
  .img-with-stats__cards { position: static; margin-top: var(--space-6); justify-content: center; display: flex; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide, .bento__card--tall { grid-column: auto; grid-row: auto; }
  .glass-cards { grid-template-columns: 1fr; }
  .number-steps { grid-template-columns: 1fr; }
  .outline-cards { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .seasonal-grid { grid-template-columns: 1fr 1fr; }
  .phase-grid { grid-template-columns: 1fr; }
  .dark-stats { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .pull-quote { padding: var(--space-6); }
}

/* === RESPONSIVE ============================================ */
/* Process section -- compact at mid-range viewport */
@media (max-width: 900px) {
  .steps__list {
    --si-img-w:   200px;
    --si-col-gap: 24px;
    --si-card-px: 16px;
  }
}

@media (max-width: 1024px) {
  /* Floating pill nav -- smaller margins on tablet */
  .nav {
    width: calc(100% - 32px);
  }

  /* Hero fog -- tablet: same diagonal, slightly wider fade zone */
  .hero__fog {
    mask-image: linear-gradient(
      104deg,
      black            0%,
      black            14%,
      rgba(0,0,0,0.90) 27%,
      rgba(0,0,0,0.60) 42%,
      rgba(0,0,0,0.28) 57%,
      rgba(0,0,0,0.05) 70%,
      transparent      82%
    );
    -webkit-mask-image: linear-gradient(
      104deg,
      black            0%,
      black            14%,
      rgba(0,0,0,0.90) 27%,
      rgba(0,0,0,0.60) 42%,
      rgba(0,0,0,0.28) 57%,
      rgba(0,0,0,0.05) 70%,
      transparent      82%
    );
  }

  .section-intro-split {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
  }

  /* Reset the 60px push-down that only makes sense in 2-column mode */
  .section-intro-split--wide .section-intro-split__right {
    padding-top: 0;
  }

  /* Reviews: collapse to single-column on tablet */
  .reviews__layout {
    grid-template-columns: 1fr;
  }

  .reviews__intro {
    position: static;
    max-width: 560px;
  }

  /* At tablet: cards grid 1-column, large card resets span */
  .review-card--large {
    grid-row: auto;
    padding: clamp(20px, 3vw, 28px);
    box-shadow:
      0 2px 8px rgba(18, 59, 106, 0.05),
      0 6px 24px rgba(18, 59, 106, 0.06);
  }

  /* Trust bar: 2-column on tablet */
  .reviews__trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 24px);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bento -- tablet: 2-column equal, reset diagonal placement */
  .benefits__bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .benefit-cell:nth-child(1),
  .benefit-cell:nth-child(2),
  .benefit-cell:nth-child(3),
  .benefit-cell:nth-child(4) {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 300px;
  }

  .coverage__layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .coverage__image {
    height: clamp(260px, 50vw, 380px);
    order: -1;
  }

  /* Reviews: cards grid collapses to single column at narrow tablet */
  .reviews__cards {
    grid-template-columns: 1fr;
  }

  /* Trust bridge at tablet: reduce padding */
  .trust-bridge {
    padding: 0 clamp(16px, 2vw, 24px);
  }

  .trust-bridge__value {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .cta-section__inner {
    grid-template-columns: 1fr;
  }

  .leistung-content__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .leistung-content__grid--reverse {
    direction: ltr;
  }

  .about__intro {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .glossar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Pill nav -- compact on mobile */
  .nav {
    width: calc(100% - 24px);
    top: 12px;
    padding: 7px 7px 7px 16px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero fog -- mobile: top-clear, bottom-full fog */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero__fog {
    /* On mobile: fog fades bottom->top (image clear at top, foggy behind text) */
    mask-image: linear-gradient(
      to top,
      black          0%,
      black          40%,
      rgba(0,0,0,0.8) 58%,
      rgba(0,0,0,0.3) 72%,
      transparent    85%
    );
    -webkit-mask-image: linear-gradient(
      to top,
      black          0%,
      black          40%,
      rgba(0,0,0,0.8) 58%,
      rgba(0,0,0,0.3) 72%,
      transparent    85%
    );
    background: rgba(250, 252, 255, 0.52);
  }

  .hero__content {
    padding: 0 0 calc(var(--space-16) + 72px);
  }

  .hero__inner {
    padding: 0 var(--space-6);
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
    letter-spacing: -0.03em;
    /* Solid dark text on mobile -- full fog covers bg */
    background-image: none;
    -webkit-text-fill-color: #0d1520;
    color: #0d1520;
    filter: none;
  }

  .hero__ctas {
    flex-wrap: wrap;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5) var(--space-4);
    border-top-color: rgba(255, 255, 255, 0.12);
    padding-top: var(--space-6);
  }

  .hero__trust-divider {
    display: none;
  }

  .hero__trust-item {
    padding: 0;
  }

  .hero__trust-item:first-child {
    padding-left: 0;
  }

  .hero__trust-value {
    font-size: 0.88rem;
  }

  .hero__trust-label {
    font-size: 0.62rem;
  }

  /* Bento -- mobile: single column stack */
  .benefits__bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .benefit-cell {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 260px;
  }

  /* =====================================================
     PROCESS -- Mobile: eigenstaendiges Layout <=768px
     Desktop (Grid + alternierende Badge/Kreis-Positionen)
     bleibt vollstaendig unveraendert.
     Mobile: vertikaler Card-Stack, Bild oben, fetter
     Schritt-Badge, Badge-Pill am unteren Ende der Card.
     ===================================================== */

  /* Etwas weniger Abstand zwischen Cards -- Connector wirkt verbindend */
  .steps__list {
    gap: 8px;
  }

  /* Card: flex column, kein Padding (Bild geht bis zum Rand) */
  .step-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    row-gap: 0;
    border-radius: 20px;
    overflow: hidden;
    min-height: auto;
    box-shadow: 0 2px 16px rgba(18, 59, 106, 0.09),
                0 1px 4px  rgba(18, 59, 106, 0.05);
  }

  /* Karte 2: gleicher Flex-Stack, Desktop-Grid aufheben */
  .step-card[data-step="02"] {
    display: flex;
  }

  /* Visuelle Reihenfolge: Bild -> Zahl -> Text -> Badge
     (gilt fuer alle Karten unabhaengig von DOM-Reihenfolge) */
  .step-card__img-area { order: 1; }
  .step-card__circle   { order: 2; }
  .step-card__body     { order: 3; }
  .step-card__badge    { order: 4; }

  /* Bild: volle Breite, 4:3 -- prominent und sauber gecroppt */
  .step-card__img-area {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    flex-shrink: 0;
  }

  /* Kein Hover-Zoom auf Mobile */
  .step-card__img-area:hover,
  .step-card__img-area:hover::before {
    box-shadow: none;
    transform: none;
  }

  /* Schritt-Kreis: groesser, Navy-Hintergrund, weisser Text,
     linksbuendig unterhalb des Bilds */
  .step-card__circle {
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: var(--navy);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 10px rgba(18, 59, 106, 0.28);
    margin: 20px 0 0 20px;
    justify-self: auto;
    align-self: auto;
    position: relative;
    z-index: auto;
  }

  /* Vertikale Linien am Kreis auf Mobile ausblenden */
  .step-card__circle::before,
  .step-card__circle::after {
    display: none;
  }

  /* Textbereich: konsistentes Padding, linksbuendig */
  .step-card__body {
    padding: 10px 20px 0 20px;
    min-width: 0;
  }

  .step-card__title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .step-card__desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* Badge: horizontale Pill innerhalb der Card, unten links */
  .step-card__badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    margin: 14px 20px 20px 20px;
    width: auto;
    max-height: none;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    background: var(--navy);
    transform: none;
    align-self: flex-start;
    justify-self: auto;
    box-shadow: 0 2px 8px rgba(18, 59, 106, 0.18);
  }

  /* Kein Bounce-Effekt auf Mobile */
  .step-card--active .step-card__badge {
    transform: none;
    box-shadow: 0 2px 8px rgba(18, 59, 106, 0.18);
  }

  .step-badge__value {
    font-size: 0.85rem;
    font-weight: 700;
  }

  .step-badge__label {
    margin-top: 0;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Connector: kurze zentrierte Linie zwischen den Cards */
  .step-connector-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    height: 32px;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(
      to bottom,
      rgba(18, 59, 106, 0.25) 0%,
      rgba(18, 59, 106, 0.08) 100%
    );
    border-radius: 1px;
  }

  /* Kein Lift-Effekt auf Mobile */
  .step-card--active {
    transform: none;
    box-shadow: 0 2px 16px rgba(18, 59, 106, 0.09),
                0 1px 4px  rgba(18, 59, 106, 0.05);
  }

  .coverage__layout {
    gap: var(--space-8);
  }

  /* Trust bridge mobile: 2Ã—2 grid */
  .trust-bridge {
    margin-top: -48px;
    padding: 0 16px;
  }

  .trust-bridge__card {
    flex-wrap: wrap;
    gap: var(--space-6) 0;
    border-radius: 20px 20px 0 0;
    padding: 28px 28px;
  }

  .trust-bridge__item {
    flex: 0 0 50%;
    align-items: flex-start;
    text-align: left;
    border-left: none !important;
    padding-left: 0;
  }

  /* Restore subtle left border only for right-column items */
  .trust-bridge__item:nth-child(even) {
    border-left: 1px solid rgba(18, 59, 106, 0.06) !important;
    padding-left: 20px;
  }

  .trust-bridge__value {
    font-size: 1.3rem;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .process__connector {
    display: none;
  }

  /* Reviews: fully single-column on mobile */
  .reviews__layout {
    gap: var(--space-10);
  }

  .reviews__cards {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .review-card {
    padding: clamp(20px, 5vw, 26px);
    box-shadow:
      0 2px 8px rgba(18, 59, 106, 0.05),
      0 1px 3px rgba(18, 59, 106, 0.04);
  }

  /* Trust bar: 2-column on mobile */
  .reviews__trust-bar {
    grid-template-columns: 1fr 1fr;
    padding-top: var(--space-8);
  }

  .review-card:hover {
    transform: none !important;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }

  .glossar__grid {
    grid-template-columns: 1fr;
  }

  .price-hint {
    flex-direction: column;
  }

  .page-hero__ctas {
    flex-direction: column;
  }

  .page-hero__ctas .btn {
    justify-content: center;
  }

  /* Hero sub-text: white text becomes unreadable over mobile white fog */
  .hero__sub {
    color: var(--text-body);
    text-shadow: none;
  }

  .hero__trust {
    border-top-color: rgba(18, 59, 106, 0.10);
  }

  .hero__trust-value {
    color: var(--text-dark);
    text-shadow: none;
  }

  .hero__trust-label {
    color: var(--text-muted);
    text-shadow: none;
  }

  /* Two-col text: single column on mobile */
  .two-col-text {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .coverage__cities {
    gap: var(--space-2);
  }

  .seasonal-grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* === ABOUT INTRO SPLIT (Portrait + Text) ================== */
.about-intro-split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-intro-split__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.about-intro-split__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin: 0;
}
.about-intro-split__text p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin: 0;
}
.about-intro-split__portrait {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-intro-split__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.about-trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.about-trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-trust-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.about-trust-card__label {
  display: block;
  font-size: 0.67rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

.about-wide-banner {
  position: relative;
  height: clamp(260px, 32vw, 460px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-wide-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,45,82,0.76) 0%, rgba(18,59,106,0.38) 55%, rgba(0,0,0,0) 100%);
}
.about-wide-banner__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.about-wide-banner__content h2 {
  color: white;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  max-width: 520px;
  line-height: var(--leading-snug);
  margin: 0;
}

/* === ABOUT PAGE REDESIGN =================================== */
.about-story-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-split__img {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.about-story-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-story-split:hover .about-story-split__img img { transform: scale(1.04); }
.about-story-split__text {
  padding: clamp(36px,6vw,72px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
.about-story-split__text p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.about-quote-dark {
  background: var(--dark-section);
  padding: clamp(56px,8vw,96px) 0;
  text-align: center;
}
.about-quote-dark blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,2.8vw,1.9rem);
  font-weight: 700;
  color: white;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto var(--space-5);
  position: relative;
}
.about-quote-dark blockquote::before {
  content: '"';
  position: absolute;
  top: -0.25em;
  left: -0.25em;
  font-size: 5em;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.about-quote-dark cite {
  color: rgba(255,255,255,0.70);
  font-style: normal;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px,6vw,72px);
  align-items: center;
  margin-bottom: clamp(48px,8vw,96px);
}
.about-value-row:last-child { margin-bottom: 0; }
.about-value-row--reverse .about-value-row__img { order: 2; }
.about-value-row__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-value-row__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-value-row:hover .about-value-row__img {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}
.about-value-row:hover .about-value-row__img img { transform: scale(1.05); }
.about-value-row__num {
  font-family: var(--font-display);
  font-size: clamp(3rem,5vw,4.5rem);
  font-weight: 800;
  color: var(--navy-light);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.04em;
}
.about-value-row__text h3 {
  font-size: clamp(1.15rem,2.2vw,1.5rem);
  margin-bottom: var(--space-4);
}
.about-value-row__text p {
  color: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}
.about-value-row__text p:last-child { margin-bottom: 0; }

.about-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 270px 270px;
  gap: var(--space-3);
}
.about-mosaic__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-mosaic__item:hover img { transform: scale(1.05); }
.about-mosaic__item--tall { grid-row: span 2; }
.about-mosaic__label {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.about-nassim {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px,4vw,48px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px,5vw,56px);
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}
.about-nassim__portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  flex-shrink: 0;
}
.about-nassim__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: var(--space-3);
  font-style: italic;
}
.about-nassim__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.about-nassim__role {
  color: var(--text-muted);
  font-size: var(--text-xs);
  margin-top: 2px;
}

/* === FAQ CATEGORY CARDS =================================== */
.faq-cat-intro {
  background: var(--surface);
  padding: var(--space-8) 0 var(--space-10);
}
.faq-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}
.faq-cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
}
.faq-cat-card:hover,
.faq-cat-card.faq-cat--active {
  border-color: var(--navy);
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.faq-cat-card__icon {
  width: 40px; height: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.faq-cat-card:hover .faq-cat-card__icon,
.faq-cat-card.faq-cat--active .faq-cat-card__icon {
  background: var(--navy);
}
.faq-cat-card__icon svg {
  width: 18px; height: 18px;
  color: var(--navy);
  transition: color var(--transition-fast);
}
.faq-cat-card:hover .faq-cat-card__icon svg,
.faq-cat-card.faq-cat--active .faq-cat-card__icon svg {
  color: white;
}
.faq-cat-card__label {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.faq-cat-card__count {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.faq-section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--border);
}
.faq-section-divider__icon {
  width: 40px; height: 40px;
  background: var(--navy-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-section-divider__icon svg {
  width: 18px; height: 18px;
  color: var(--navy);
}
.faq-section-divider h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.faq-bottom-cta {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(32px,5vw,56px);
  text-align: center;
  margin-top: var(--space-12);
}
.faq-bottom-cta h3 {
  font-size: clamp(1.2rem,2.5vw,1.5rem);
  margin-bottom: var(--space-3);
  color: var(--text-dark);
}
.faq-bottom-cta p {
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.faq-bottom-cta__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* === CONTACT PREMIUM =================================== */
.contact-person-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.contact-person-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.contact-person-card__body h3 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact-person-card__body p {
  color: rgba(255,255,255,0.58);
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.4;
}
.contact-person-card__tel {
  display: block;
  margin-top: var(--space-2);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-person-card__tel:hover { color: var(--navy-mid); }

/* === RESPONSIVE -- NEW SECTIONS ============================ */
@media (max-width: 1024px) {
  .faq-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .about-value-row { gap: clamp(24px,4vw,48px); }
}
@media (max-width: 768px) {
  .about-story-split {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }
  .about-story-split__img { min-height: 280px; }
  .about-value-row {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
  }
  .about-value-row--reverse .about-value-row__img { order: 0; }
  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .about-nassim {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .faq-cat-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
  .faq-bottom-cta__actions { flex-direction: column; align-items: center; }
  .about-intro-split { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-intro-split__portrait { aspect-ratio: 4/3; order: -1; }
  .about-trust-strip { grid-template-columns: repeat(3, 1fr); }
  .about-wide-banner { height: 220px; }
}
@media (max-width: 480px) {
  .about-mosaic { grid-template-rows: 150px 150px; }
  .faq-cat-grid { grid-template-columns: 1fr 1fr; }
  .about-trust-strip { grid-template-columns: 1fr; }
}

/* === REDUCED MOTION ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}


