/* =============================================================
   Eine-Reinigung — style.css
   Mobile-First · Klar & Modern (Blau)
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --color-primary: #0a5fa8;
  --color-primary-dark: #063968;
  --color-primary-light: #e8f5ff;
  --color-accent: #f47a2a;
  --color-accent-dark: #d85b14;
  --color-accent-light: #fff0e6;

  --color-dark: #04172b;
  --color-dark-soft: #082b4b;

  --color-white: #ffffff;
  --color-light: #f7faff;
  --color-border: #dce6f2;
  --color-text: #101828;
  --color-muted: #667085;

  --color-success: #18a84a;
  --color-success-dark: #12833a;
  --color-danger: #d92d20;

  /* Abstände */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 56px;

  /* Rundungen */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Schatten */
  --shadow-card: 0 12px 30px rgba(15, 35, 65, 0.08);
  --shadow-soft: 0 4px 14px rgba(15, 35, 65, 0.06);
  --shadow-strong: 0 20px 50px rgba(6, 17, 31, 0.25);

  /* Layout */
  --header-h: 82px;
  --maxw: 1140px;

  /* Fonts */
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Manrope', 'Inter', system-ui, sans-serif;

  /* Intro Animation */
  --intro-wipe-duration: 1.45s;
  --intro-wipe-delay: .05s;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* Sichtbarer Fokus für Tastaturbedienung */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  --btn-bg: var(--color-primary);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { min-height: 56px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  --btn-bg: var(--color-accent);
  box-shadow: 0 10px 24px rgba(244, 122, 42, 0.32);
}
.btn--primary:hover { --btn-bg: var(--color-accent-dark); }

.btn--whatsapp {
  --btn-bg: var(--color-success);
  box-shadow: 0 10px 24px rgba(24, 168, 74, 0.3);
}
.btn--whatsapp:hover { --btn-bg: var(--color-success-dark); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

/* =============================================================
   BRAND / LOGO
   ============================================================= */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  color: var(--color-accent);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand__mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: none;
}
.brand__name {
  color: var(--color-accent);
}
.brand--light .brand__name { color: #fff; }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--header-h);
  transition: background .3s ease, box-shadow .3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .brand {
  gap: 12px;
}
.header .brand__mark {
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid rgba(244, 122, 42, .26);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(244, 122, 42, .14), rgba(244, 122, 42, .035));
}
.header .brand__name {
  font-size: clamp(23px, 2.2vw, 26px);
  line-height: 1;
  letter-spacing: -.025em;
  text-shadow: 0 2px 16px rgba(244, 122, 42, .16);
}

/* transparent auf dem dunklen Hero */
.header--transparent { background: transparent; }
.header--transparent .brand { filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .34)); }
.header--transparent .hamburger span { background: #fff; }

/* weiß mit Schatten auf hellen Sektionen */
.header--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.header--solid .brand { filter: drop-shadow(0 2px 4px rgba(4, 23, 43, .1)); }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--color-text);
  transition: background .3s ease;
}

/* =============================================================
   MOBILE NAVIGATION (Screen 3)
   ============================================================= */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(6, 17, 31, 0.55);
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-backdrop.is-open { opacity: 1; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  height: 100dvh;
  width: min(84vw, 360px);
  padding: 20px 22px calc(20px + env(safe-area-inset-bottom));
  background: var(--color-dark);
  color: #fff;
  box-shadow: var(--shadow-strong);
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.nav-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.nav-close:hover { background: rgba(255, 255, 255, 0.16); }

.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: #e7eef8;
  transition: background .2s ease, color .2s ease;
}
.mobile-nav__list a svg { color: var(--color-accent); flex: none; }
.mobile-nav__list a:hover,
.mobile-nav__list a.is-active {
  background: rgba(10, 95, 168, 0.28);
  color: #fff;
}

.mobile-nav__contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mnc__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  font-size: 15px;
  color: #c5d3e6;
  border-radius: 10px;
}
.mnc__item svg { color: var(--color-accent); flex: none; }
a.mnc__item:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.mnc__item--static { cursor: default; }

/* =============================================================
   HERO (Screen 2)
   ============================================================= */
.hero {
  position: relative;
  min-height: 82svh;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 72px;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% 0%, #123a63 0%, rgba(18, 58, 99, 0) 55%),
    linear-gradient(160deg, #0c1b2d 0%, #06111f 60%, #040b14 100%);
}
/* nasse-Glas / Licht-Streifen Optik */
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 15%, rgba(255,255,255,.06) 0 3px, transparent 4px),
    radial-gradient(circle at 85% 60%, rgba(255,255,255,.05) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 75%, rgba(255,255,255,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 88%, rgba(255,255,255,.05) 0 3px, transparent 4px);
  background-size: 180px 180px, 220px 220px, 160px 160px, 200px 200px, 240px 240px;
  opacity: .8;
}
.hero__streak {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .5;
}
.hero__streak--1 { top: -10%; right: -5%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(10,95,168,.62), transparent 70%); }
.hero__streak--2 { bottom: 5%; left: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(10,95,168,.42), transparent 70%); }
.hero__streak--3 { top: 35%; right: 15%; width: 190px; height: 500px; transform: rotate(24deg); background: linear-gradient(rgba(244,122,42,.28), transparent); filter: blur(24px); }

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(82svh - var(--header-h) - 96px);
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 28px;
}

/* Isolierte Standort-Komponente */
.location-card__section {
  display: flex;
  width: min(100%, 320px);
  min-width: 0;
  max-width: 100%;
  align-self: flex-end;
  justify-content: center;
  margin: 8px 0 48px;
}
.location-card__link {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  color: #10233f;
  text-decoration: none;
  transition: transform 180ms ease;
}
.location-card__map-image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(90%, 280px);
  max-width: 100%;
  height: auto;
  margin: 0 auto -12px;
  object-fit: contain;
  box-shadow: none;
  filter: none;
}
.location-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 305px);
  max-width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  padding: 22px 18px 16px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(16, 35, 63, .12);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(4, 17, 31, .14);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.location-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 4.8vw, 1.4rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.025em;
  color: #10233f;
}
.location-card__address {
  margin-top: 7px;
  font-size: clamp(.8rem, 3.5vw, .94rem);
  line-height: 1.45;
  color: #40516b;
}
.location-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 16px 0 13px;
  background: rgba(16, 35, 63, .12);
}
.location-card__action {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 9px;
  font-size: .86rem;
  line-height: 1.4;
  font-weight: 600;
  color: #0a5fa8;
}
.location-card__arrow {
  display: inline-block;
  font-size: 1.25em;
  line-height: 1;
  transition: transform 180ms ease;
}
.location-card__link:hover {
  transform: translateY(-3px);
}
.location-card__link:hover .location-card__content {
  border-color: rgba(10, 95, 168, .24);
  box-shadow: 0 16px 40px rgba(4, 17, 31, .2);
}
.location-card__link:hover .location-card__arrow {
  transform: translateX(4px);
}
.location-card__link:focus-visible {
  outline: 3px solid #56aef5;
  outline-offset: 7px;
  border-radius: 22px;
}
.location-card__link:focus-visible .location-card__content {
  border-color: rgba(10, 95, 168, .32);
  box-shadow: 0 16px 40px rgba(4, 17, 31, .2);
}
.location-card__link:focus-visible .location-card__arrow {
  transform: translateX(4px);
}
@media (max-width: 639px) {
  .hero {
    min-height: 86svh;
    padding-top: calc(var(--header-h) + 12px);
    padding-bottom: 28px;
  }
  .hero__inner {
    padding-top: 20px;
    transform: translateY(14px);
  }
  .hero .hero__copy {
    order: 2;
    position: relative;
    width: min(100%, 340px);
    padding-left: 18px;
    transform: translateY(36px);
  }
  .hero .hero__copy::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff9a52 0%, #f47a2a 48%, rgba(244, 122, 42, .08) 100%);
  }
  .hero .hero__title {
    margin-bottom: 16px;
    font-size: clamp(31px, 8.4vw, 35px);
    line-height: 1.08;
    letter-spacing: -.045em;
    color: #ffffff;
    text-wrap: balance;
  }
  .hero .hero__subtitle {
    max-width: 31ch;
    font-size: 16px;
    line-height: 1.52;
    color: #d9e5f2;
  }
  .hero .hero__scroll {
    bottom: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .header .brand {
    gap: 10px;
  }
  .header .brand__mark {
    width: 49px;
    height: 49px;
  }
  .header .brand__name {
    font-size: 22px;
  }
  .location-card__section {
    order: 1;
    width: min(100%, 260px);
    align-self: flex-end;
    margin: 8px 2px 24px 0;
  }
  .location-card__map-image {
    width: min(90%, 225px);
  }
  .location-card__content {
    width: min(100%, 250px);
    padding: 18px 14px 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-color: rgba(10, 95, 168, .16);
    box-shadow: 0 14px 34px rgba(4, 17, 31, .18);
  }
  .location-card__title {
    font-size: 1.1rem;
  }
  .location-card__address {
    font-size: .78rem;
  }
  .location-card__divider {
    width: 78%;
    align-self: center;
    margin: 13px 0 11px;
  }
  .location-card__action {
    padding: 6px 10px;
    font-size: .82rem;
    background: #edf7ff;
    border-radius: 999px;
  }
  #entdecken {
    padding-top: 44px;
  }
}
@media (min-width: 640px) {
  .location-card__section {
    width: min(100%, 430px);
    margin-bottom: 56px;
  }
  .location-card__map-image {
    width: min(92%, 370px);
    margin-bottom: -14px;
  }
  .location-card__content {
    width: min(100%, 400px);
    padding: 28px 28px 21px;
    border-radius: 22px;
  }
  .location-card__title {
    font-size: 1.55rem;
  }
  .location-card__address {
    font-size: 1rem;
  }
  .location-card__divider {
    margin: 18px 0 15px;
  }
  .location-card__action {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .location-card__link,
  .location-card__content,
  .location-card__arrow {
    transition: none;
  }
  .location-card__link:hover {
    transform: none;
  }
}
.hero__copy {
  align-self: flex-start;
  margin-bottom: 0;
}
.hero__title {
  font-size: clamp(34px, 9vw, 60px);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}
.hero__subtitle {
  font-size: clamp(17px, 4.4vw, 20px);
  color: #c9d8ea;
  max-width: 30ch;
  margin-bottom: 0;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}
.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, .7);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* =============================================================
   SECTIONS (allgemein)
   ============================================================= */
.section { padding: var(--space-xl) 0; }
.section--alt { background: var(--color-light); }
#entdecken {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 38px;
  background: #fff;
  box-shadow: 0 -8px 24px rgba(6, 17, 31, .08);
}

.section__eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 6px;
}
.section__title {
  font-size: clamp(27px, 6.5vw, 38px);
  font-weight: 800;
  margin-bottom: 10px;
}
.section__lead {
  color: var(--color-muted);
  font-size: 17px;
  max-width: 54ch;
  margin-bottom: var(--space-lg);
}

/* Karten-Basis (Glassmorphism) */
.card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* =============================================================
   LEISTUNGEN (Screen 4)
   ============================================================= */
.services-grid {
  display: grid;
  gap: 14px;
  margin-bottom: var(--space-lg);
}
.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #bcd4f2;
  box-shadow: 0 18px 40px rgba(15, 35, 65, 0.12);
}
.service-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.service-card__body { flex: 1; }
.service-card__body h3 { font-size: 20px; margin-bottom: 3px; }
.service-card__body p { color: var(--color-muted); font-size: 15.5px; line-height: 1.45; }
.service-card__arrow { flex: none; color: var(--color-primary); opacity: .55; }

/* =============================================================
   ÜBER UNS (Screen 5)
   ============================================================= */
.about { display: grid; gap: var(--space-md); }
.about__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__text { font-size: 18px; color: var(--color-text); }
.about__trust {
  margin-top: clamp(38px, 7vw, 64px);
}
.about__trust-title {
  margin: 0 auto 24px;
  text-align: center;
}
.about__trust-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), #51a9ec);
}

.trust-list { display: grid; gap: 12px; }
.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 17px;
}
.trust-list li svg { color: var(--color-success); flex: none; }
.trust-list li small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-muted);
}

/* =============================================================
   VORTEILE (Screen 6)
   ============================================================= */
.benefits-grid {
  display: grid;
  gap: 14px;
  margin-bottom: var(--space-lg);
}
.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.benefit-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.benefit-card__body h3 { font-size: 18px; margin-bottom: 2px; }
.benefit-card__body p { color: var(--color-muted); font-size: 15px; }

/* =============================================================
   KONTAKT (Screen 7)
   ============================================================= */
.quick-contact {
  display: grid;
  gap: 12px;
  margin-bottom: var(--space-lg);
}
.qc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.qc-card:hover { transform: translateY(-3px); border-color: #bcd4f2; box-shadow: var(--shadow-card); }
.qc-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.qc-card--whatsapp .qc-card__icon { background: #e4f7eb; color: var(--color-success); }
.qc-card__body { display: flex; flex-direction: column; }
.qc-card__body strong { font-family: var(--font-head); font-size: 17px; }
.qc-card__body small { color: var(--color-muted); font-size: 14px; }
.qc-card--static { cursor: default; }

/* Formular */
.form-intro {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
}
.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: auto; resize: vertical; line-height: 1.5; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(15, 99, 216, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: #9aa7b8; }

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}
.field__error {
  display: none;
  font-size: 13.5px;
  color: var(--color-danger);
}
.field.is-invalid .field__error { display: block; }

.form-status {
  margin-top: 6px;
  font-weight: 600;
  font-size: 15px;
}
.form-status.is-success { color: var(--color-success); }
.form-status.is-error { color: var(--color-danger); }

/* =============================================================
   BUTTON — GHOST (auf hellen CTA-Bändern)
   ============================================================= */
.btn--ghost {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.btn--ghost:hover { border-color: var(--color-primary); background: var(--color-primary-light); }

/* =============================================================
   SEITENKOPF (Unterseiten)
   ============================================================= */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 44px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 0%, #123a63 0%, rgba(18, 58, 99, 0) 55%),
    linear-gradient(160deg, #0c1b2d 0%, #06111f 70%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-size: clamp(30px, 7.5vw, 46px);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero__subtitle {
  font-size: clamp(16px, 4.2vw, 19px);
  color: #c9d8ea;
  max-width: 52ch;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #9fb2c9;
  margin-bottom: 14px;
}
.breadcrumb a { color: #c9d8ea; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span[aria-hidden] { opacity: .5; }

/* Sekundäre Überschrift innerhalb einer Sektion */
.section__subtitle {
  font-family: var(--font-head);
  font-size: clamp(21px, 5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 8px 0 14px;
}
.section__lead--center { text-align: center; margin: 24px auto 0; }

/* =============================================================
   EINLADENDE TEASER-KARTEN (Startseite)
   ============================================================= */
.teaser-grid {
  display: grid;
  gap: 16px;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.teaser-card:hover {
  transform: translateY(-4px);
  border-color: #bcd4f2;
  box-shadow: 0 22px 46px rgba(15, 35, 65, 0.14);
}
.teaser-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.teaser-card__body { flex: 1; }
.teaser-card__body h3 { font-size: 21px; margin-bottom: 6px; }
.teaser-card__body p { color: var(--color-muted); font-size: 16px; line-height: 1.5; }
.teaser-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
}
.teaser-card__more svg { transition: transform .2s ease; }
.teaser-card:hover .teaser-card__more svg { transform: translateX(4px); }

/* Hervorgehobene Karte (Kontakt) */
.teaser-card--featured {
  background: linear-gradient(155deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: rgba(244, 122, 42, .8);
  color: #fff;
  box-shadow: 0 20px 44px rgba(6, 57, 104, 0.34);
}
.teaser-card--featured .teaser-card__icon { background: rgba(255, 255, 255, 0.16); color: #fff; }
.teaser-card--featured .teaser-card__body p { color: #dbe8fb; }
.teaser-card--featured .teaser-card__more { color: #fff; }

/* =============================================================
   CTA-BAND
   ============================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--color-accent-light), #fff 70%);
  border-block: 1px solid rgba(244, 122, 42, .2);
  padding: 44px 0;
}
.cta-band__inner { display: grid; gap: 20px; text-align: center; justify-items: center; }
.cta-band__title { font-size: clamp(23px, 5.5vw, 30px); font-weight: 800; }
.cta-band__text { color: #3f5570; max-width: 46ch; }
.cta-band--about .cta-band__text { max-width: 50ch; }
.cta-band__actions { display: grid; gap: 10px; width: 100%; max-width: 420px; }
.cta-band__actions .btn {
  width: 100%;
  min-height: 56px;
  border-radius: 10px;
  font-size: 17px;
}
.cta-band__actions .btn--outline {
  color: var(--color-dark);
  border-color: rgba(6, 17, 31, .45);
  background: rgba(255, 255, 255, .35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}
.cta-band__actions .btn--outline:hover {
  background: rgba(255, 255, 255, .6);
  border-color: rgba(6, 17, 31, .68);
}

/* =============================================================
   LEISTUNGEN — DETAILKARTEN MIT PREIS
   ============================================================= */
.services-grid--detailed { gap: 18px; margin-bottom: 24px; }
.service-card--detailed {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 24px;
}
.service-card__head { display: flex; align-items: center; gap: 16px; }
.service-card__features { display: grid; gap: 10px; }
.service-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  color: var(--color-text);
}
.service-card__features li svg { color: var(--color-success); flex: none; width: 20px; height: 20px; }
.service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.price {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-primary);
  line-height: 1.1;
}
.price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.service-card__foot .btn { min-height: 46px; padding: 0 20px; font-size: 16px; }

.price-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: #3f5570;
  font-size: 14.5px;
  line-height: 1.5;
}
.price-note svg { color: var(--color-primary); flex: none; margin-top: 2px; }

/* Vorteile — große Variante */
.benefits-grid--lg .benefit-card { padding: 22px 24px; }
.benefits-grid--lg .benefit-card__body h3 { font-size: 19px; }

/* Über uns — Textspalte + Vertrauens-Cards */
.about__content .section__title { font-size: clamp(24px, 5.5vw, 32px); margin-bottom: 14px; }
.about__content .about__text + .about__text { margin-top: 12px; }
.trust-list--cards { grid-template-columns: 1fr; gap: 12px; margin-top: 0; }
.trust-list--cards li {
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* =============================================================
   KONTAKTSEITE — Layout
   ============================================================= */
.contact-layout { display: grid; gap: 24px; }
.contact-aside { padding: 24px; align-self: start; }
.contact-info { display: grid; gap: 18px; margin-bottom: 20px; }
.contact-info li { display: flex; align-items: flex-start; gap: 14px; }
.contact-info li svg { color: var(--color-primary); flex: none; margin-top: 2px; }
.contact-info li span { display: flex; flex-direction: column; }
.contact-info li strong { font-family: var(--font-head); font-size: 16px; }
.contact-info li a { color: var(--color-primary); }
.contact-info li a:hover { text-decoration: underline; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  background: var(--color-dark);
  color: #c5d3e6;
  padding: 34px 0 28px;
  isolation: isolate;
}
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 52%;
  width: 32vw;
  height: 86px;
  border-top: 1px solid rgba(53, 156, 255, .32);
  border-radius: 50%;
  opacity: .55;
  filter: drop-shadow(0 -4px 12px rgba(18, 118, 230, .28));
  pointer-events: none;
}
.footer::before {
  left: -16vw;
  transform: rotate(8deg);
}
.footer::after {
  right: -16vw;
  transform: rotate(-8deg);
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1250px;
  text-align: center;
}
.footer__logo-link {
  display: inline-flex;
  justify-content: center;
  flex: none;
  transition: opacity .2s ease;
}
.footer__logo-link:hover {
  opacity: .92;
}
.footer__logo {
  display: block;
  width: 176px;
  height: auto;
}
.footer__claim {
  width: 100%;
  max-width: 30ch;
  min-width: 0;
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.45;
  color: #aec7e2;
}
.footer__accent-line {
  --footer-accent-width: min(220px, 68vw);
  position: relative;
  display: block;
  width: var(--footer-accent-width);
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, transparent, rgba(53, 169, 255, .82), transparent);
}
.footer__accent-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bde7ff;
  box-shadow: 0 0 9px 2px rgba(92, 191, 255, .8);
  transform: translateY(-50%);
  animation: footer-dot-glide 3.2s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes footer-dot-glide {
  from { transform: translate(0, -50%); }
  to { transform: translate(calc(var(--footer-accent-width) - 5px), -50%); }
}
@media (prefers-reduced-motion: reduce) {
  .footer__accent-line::after {
    left: 50%;
    animation: none !important;
    transform: translate(-50%, -50%);
    will-change: auto;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 23px;
  font-style: normal;
}
.footer__contact-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: min(100%, 350px);
  min-height: 52px;
  padding: 5px 14px;
  color: #dbe9f7;
  font-size: 15px;
  line-height: 1.35;
  transition: color .2s ease;
}
.footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(64, 170, 255, .72);
  border-radius: 50%;
  color: #bfe5ff;
  box-shadow: 0 0 12px rgba(18, 118, 230, .12);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.footer__contact-text {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer__contact-item:hover {
  color: #fff;
}
.footer__contact-item:hover .footer__contact-icon {
  border-color: #8dd2ff;
  background: rgba(49, 149, 238, .1);
  color: #fff;
}
.footer__rule {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 19px;
  background: linear-gradient(90deg, transparent, rgba(87, 164, 231, .38) 14%, rgba(87, 164, 231, .38) 86%, transparent);
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 40px;
  margin-top: 9px;
}
.footer__legal a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: #9db7d2;
  font-size: 14px;
  transition: color .2s ease;
}
.footer__legal a:hover {
  color: #fff;
}
.footer__legal-divider {
  color: rgba(124, 178, 225, .52);
}
.footer__copy {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #7892ad;
  overflow-wrap: anywhere;
}
.footer a:focus-visible {
  outline-color: #7ccaff;
  outline-offset: 4px;
}

/* =============================================================
   INTRO ANIMATION (Screen 1)
   ============================================================= */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-dark);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.intro.is-hidden { opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }

/* schmutzige / nasse Glasscheibe, die weggewischt wird */
.intro__glass {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(120,140,160,.28), rgba(90,110,130,.14)),
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.10) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 45%, rgba(255,255,255,.08) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.09) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 80%, rgba(255,255,255,.08) 0 3px, transparent 4px),
    radial-gradient(circle at 15% 60%, rgba(255,255,255,.07) 0 2px, transparent 3px);
  background-size: cover, 140px 140px, 180px 180px, 150px 150px, 170px 170px, 120px 120px;
  backdrop-filter: blur(4px);
  /* horizontaler Wisch: Maske öffnet sich */
  animation: glass-wipe var(--intro-wipe-duration) ease-in-out var(--intro-wipe-delay) forwards;
  will-change: clip-path;
}
@keyframes glass-wipe {
  0%   { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 0 100%); }
}

.intro__squeegee {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .42));
  animation: squeegee-move var(--intro-wipe-duration) ease-in-out var(--intro-wipe-delay) forwards;
  will-change: transform, left;
}
@keyframes squeegee-move {
  0%   { left: 0; opacity: 1; }
  96%  { left: 100%; opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.intro__squeegee svg {
  width: 180px;
  height: auto;
}

.intro__brand {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}
.intro__logo { display: block; }
.intro__logo img {
  width: auto;
  height: auto;
  max-width: min(670px, calc(90vw - 28px));
  max-height: calc(100svh - 64px);
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .34));
}

.intro__skip {
  position: absolute;
  bottom: calc(24px + env(safe-area-inset-bottom));
  right: 20px;
  z-index: 3;
  padding: 8px 16px;
  font-size: 14px;
  color: #c5d3e6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
}
.intro__skip:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

/* Wenn keine Intro nötig ist, direkt ausblenden */
@media (max-width: 639px) {
  .intro .intro__squeegee {
    transform: translate(calc(-50% + 34px), -50%) rotate(-90deg);
  }
}

.intro--off { display: none; }

/* =============================================================
   RESPONSIVE — Tablet
   ============================================================= */
@media (min-width: 640px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__cta .btn--outline { flex-basis: 100%; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-contact { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-list--cards { grid-template-columns: repeat(2, 1fr); }

  /* CTA-Band: Text links, Buttons rechts */
  .cta-band__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    justify-items: start;
    align-items: center;
  }
  .cta-band__actions { width: 100%; max-width: 420px; }
  .cta-band__actions .btn { min-width: 0; }

  .about {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: var(--space-lg);
  }
  .about__media { aspect-ratio: 4 / 3; }
}

/* =============================================================
   RESPONSIVE — Desktop
   ============================================================= */
@media (min-width: 960px) {
  body { font-size: 18px; }
  .section { padding: 84px 0; }
  #entdecken { scroll-margin-top: 28px; }

  .hero {
    min-height: 100svh;
  }
  .hero__inner {
    min-height: calc(100svh - var(--header-h) - 96px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    grid-template-areas: "copy location";
    align-items: stretch;
    gap: clamp(40px, 7vw, 96px);
    padding-top: 0;
  }
  .hero__copy {
    grid-area: copy;
    align-self: end;
    margin-bottom: clamp(56px, 8vh, 96px);
  }
  .location-card__section {
    grid-area: location;
    width: 360px;
    align-self: start;
    justify-self: end;
    margin: clamp(32px, 6vh, 68px) 0 0;
  }
  .location-card__map-image {
    width: 310px;
    margin-bottom: -12px;
  }
  .location-card__content {
    width: 340px;
    padding: 24px 22px 18px;
    border-radius: 20px;
  }
  .location-card__title {
    font-size: 1.35rem;
  }
  .location-card__address,
  .location-card__action {
    font-size: .9rem;
  }
  .location-card__divider {
    margin: 16px 0 13px;
  }

  .hero__cta { max-width: 560px; }
  .hero__cta .btn--outline { flex-basis: auto; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { flex-direction: column; align-items: flex-start; text-align: left; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-contact { grid-template-columns: repeat(4, 1fr); }
  .qc-card { flex-direction: column; align-items: flex-start; }

  /* Kontaktseite: Formular + Info nebeneinander */
  .contact-layout { grid-template-columns: 1.35fr 1fr; align-items: start; gap: 32px; }
  .contact-aside .btn--block { max-width: none; margin-inline: 0; }

  /* CTA-Band etwas luftiger */
  .cta-band { padding: 56px 0; }

  .footer {
    padding: 38px 0 30px;
  }
  .footer__logo { width: 210px; }
  .footer__claim {
    width: auto;
    max-width: none;
    margin-top: 15px;
    font-size: 18px;
    white-space: nowrap;
  }
  .footer__accent-line {
    --footer-accent-width: 290px;
    margin-top: 15px;
  }
  .footer__contact {
    flex-direction: row;
    justify-content: center;
    max-width: 1040px;
    margin-top: 25px;
  }
  .footer__contact-item {
    justify-content: center;
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding: 5px 28px;
    font-size: 16px;
  }
  .footer__contact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 9px;
    right: 0;
    width: 1px;
    height: 34px;
    background: rgba(112, 174, 224, .32);
  }
  .footer__rule { margin-top: 21px; }
  .footer__legal { margin-top: 10px; }
  .footer__copy { font-size: 13px; }
}

@media (max-width: 639px) and (max-height: 700px) {
  .hero .hero__copy {
    transform: translateY(14px);
  }
  .hero .hero__scroll {
    right: 12px;
    left: auto;
    transform: none;
    animation: none;
  }
}

/* =============================================================
   PREMIUM REDESIGN — Branding, Hero und Startseiten-Einstieg
   ============================================================= */
:root {
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --premium-navy: #041426;
  --premium-navy-light: #0b3458;
  --premium-orange: #f47a2a;
  --premium-cream: #fffaf5;
}

.header .brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 1px;
}
.header .brand::after {
  content: "KLARE SICHT. SAUBER. ZUVERLÄSSIG.";
  grid-column: 2;
  grid-row: 2;
  color: var(--premium-orange);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2em;
  white-space: nowrap;
  transform: translateY(-5px);
}
.header .brand__mark {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}
.header .brand__name {
  grid-column: 2;
  grid-row: 1;
  color: #f7fbff;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .28);
}
.header--solid .brand__name {
  color: var(--premium-navy);
  text-shadow: none;
}
.header--solid .brand::after {
  color: var(--color-accent-dark);
}
.hamburger {
  gap: 6px;
  width: 52px;
  height: 52px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hamburger:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  transform: translateY(-1px);
}
.header--solid .hamburger:hover {
  background: rgba(4, 23, 43, .05);
  border-color: rgba(4, 23, 43, .12);
}
.hamburger span {
  width: 30px;
  height: 2px;
  border-radius: 999px;
}

.hero {
  background:
    radial-gradient(80% 65% at 78% 8%, rgba(18, 86, 140, .62) 0%, rgba(18, 86, 140, 0) 62%),
    radial-gradient(55% 40% at 12% 82%, rgba(6, 74, 126, .32) 0%, rgba(6, 74, 126, 0) 72%),
    linear-gradient(155deg, #071c31 0%, var(--premium-navy) 60%, #020b14 100%);
  box-shadow: inset 0 -100px 120px rgba(0, 0, 0, .16);
}
.hero__bg::before {
  opacity: .46;
}
.hero__streak--3 {
  background: linear-gradient(rgba(244, 122, 42, .16), transparent);
}
.hero__copy {
  position: relative;
}
.hero__copy::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--premium-orange), rgba(244, 122, 42, .08));
  box-shadow: 0 0 18px rgba(244, 122, 42, .25);
}
.hero__kicker {
  margin: 0 0 14px;
  color: var(--premium-orange);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero__title {
  color: #f8fbff;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.035em;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .28);
  text-wrap: balance;
}
.hero__title-accent {
  color: var(--premium-orange);
}
.hero__subtitle {
  color: #b9c9dc;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -.01em;
}

.location-card__link {
  isolation: isolate;
}
.location-card__map-image {
  box-shadow: none;
  filter: none;
}
.location-card__content {
  background:
    radial-gradient(120% 130% at 10% 0%, #ffffff 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(145deg, #ffffff 0%, #f7faff 100%);
  border-color: rgba(7, 35, 63, .1);
  box-shadow:
    0 22px 52px rgba(0, 9, 20, .22),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}
.location-card__title {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 9px;
  color: #0b2039;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
}
.location-card__title-icon {
  flex: none;
  color: var(--premium-orange);
}
.location-card__address {
  color: #69788d;
  letter-spacing: -.01em;
}
.location-card__divider {
  background: linear-gradient(90deg, transparent, rgba(7, 35, 63, .18) 18%, rgba(7, 35, 63, .18) 82%, transparent);
}
.location-card__action {
  color: #075fae;
  background: #edf7ff;
  border: 1px solid rgba(7, 95, 174, .08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 #ffffff;
}
.location-card__link:hover .location-card__content {
  border-color: rgba(244, 122, 42, .24);
  box-shadow:
    0 26px 60px rgba(0, 9, 20, .28),
    inset 0 1px 0 rgba(255, 255, 255, .94);
}

.hero__scroll {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .14), transparent 48%),
    rgba(5, 20, 37, .9);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .32),
    0 0 24px rgba(244, 122, 42, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero__scroll:hover {
  border-color: rgba(244, 122, 42, .65);
  background-color: rgba(9, 36, 61, .96);
}

#entdecken {
  margin-top: -16px;
  padding-top: 56px;
  background:
    radial-gradient(70% 45% at 50% 0%, #ffffff 0%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 36%);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -18px 48px rgba(0, 9, 20, .13);
}
#entdecken .section__eyebrow {
  margin-bottom: 10px;
  color: var(--premium-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}
#entdecken .section__title {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  color: #0a1c32;
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.035em;
}
#entdecken .section__title-nowrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
/* Die Akzentlinie liegt am Wort "Eine-Reinigung" und ist damit exakt darunter
   zentriert. Die transform-origin steht bereits hier, weil die Reveal-Regeln
   dieselbe Origin nutzen -- sonst rotiert die Linie um einen anderen Punkt,
   sobald das Skript die Reveal-Attribute wieder entfernt (sichtbarer Sprung). */
#entdecken .section__title-nowrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--premium-orange), rgba(244, 122, 42, .18));
  transform: rotate(-2deg);
  transform-origin: left center;
}
#entdecken .section__lead {
  color: #65748a;
  line-height: 1.65;
}
.teaser-grid {
  gap: 18px;
}
.teaser-card {
  padding: 26px;
  border-color: rgba(7, 35, 63, .1);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(12, 40, 72, .09);
}
.teaser-card__icon {
  border-radius: 20px;
  background: linear-gradient(145deg, #edf7ff, #e4f2ff);
  box-shadow: inset 0 1px 0 #ffffff;
}
.teaser-card__body h3 {
  color: #0c1c31;
  letter-spacing: -.035em;
}
.teaser-card--featured {
  background:
    radial-gradient(100% 120% at 100% 0%, rgba(35, 116, 180, .45), transparent 58%),
    linear-gradient(145deg, #0b3760 0%, #075692 100%);
  box-shadow: 0 24px 54px rgba(4, 47, 84, .25);
}
.teaser-card--featured .teaser-card__body h3 {
  color: #fff;
}

@media (max-width: 639px) {
  .header .brand {
    column-gap: 11px;
    row-gap: 0;
  }
  .header .brand__mark {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  .header .brand__name {
    font-size: 17px;
    letter-spacing: .13em;
  }
  .header .brand::after {
    font-size: 7.5px;
    letter-spacing: .14em;
  }
  .hamburger {
    width: 46px;
    height: 46px;
    padding-inline: 8px;
  }
  .hamburger span {
    width: 28px;
  }

  .hero {
    min-height: 92svh;
    padding-top: calc(var(--header-h) + 14px);
    padding-bottom: 44px;
  }
  .hero__inner {
    min-height: 0;
    padding-top: 24px;
    transform: none;
  }
  .location-card__section {
    order: 1;
    width: min(100%, 286px);
    align-self: flex-end;
    margin: 4px 0 34px;
  }
  .location-card__map-image {
    width: min(92%, 258px);
    margin-bottom: -12px;
  }
  .location-card__content {
    width: min(100%, 274px);
    padding: 22px 18px 16px;
    border-radius: 24px;
  }
  .location-card__title {
    font-size: 1.35rem;
  }
  .location-card__title-icon {
    width: 18px;
    height: 18px;
  }
  .location-card__address {
    margin-top: 7px;
    font-size: .86rem;
  }
  .location-card__divider {
    width: 84%;
    margin: 16px 0 13px;
  }
  .location-card__action {
    padding: 7px 12px;
    font-size: .86rem;
  }

  .hero .hero__copy {
    order: 2;
    width: min(100%, 350px);
    padding-left: 24px;
    transform: none;
  }
  .hero .hero__copy::before {
    top: 0;
    bottom: 0;
    width: 2px;
  }
  .hero__kicker {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: .17em;
  }
  .hero .hero__title {
    margin-bottom: 18px;
    font-size: clamp(40px, 11vw, 44px);
    line-height: .98;
    letter-spacing: -.04em;
  }
  .hero .hero__subtitle {
    max-width: 31ch;
    font-size: 16px;
    line-height: 1.55;
  }
  .hero .hero__scroll {
    bottom: 8px;
    width: 42px;
    height: 42px;
  }
  #entdecken {
    margin-top: -14px;
    padding-top: 52px;
    border-radius: 26px 26px 0 0;
  }
  #entdecken::before,
  #entdecken::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 0;
    width: 26px;
    height: 26px;
    pointer-events: none;
  }
  #entdecken::before {
    left: 0;
    background: radial-gradient(
      circle at 100% 100%,
      transparent 0 25.5px,
      #020b14 26px
    );
  }
  #entdecken::after {
    right: 0;
    background: radial-gradient(
      circle at 0 100%,
      transparent 0 25.5px,
      #020b14 26px
    );
  }
  #entdecken .section__title {
    max-width: none;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .hero {
    min-height: 94svh;
    padding-top: calc(var(--header-h) + 12px);
    padding-bottom: 56px;
  }
  .hero__inner {
    min-height: 0;
    padding-top: 20px;
  }
  .location-card__section {
    width: 370px;
    align-self: center;
    margin: 0 0 32px;
  }
  .location-card__map-image {
    width: 324px;
  }
  .location-card__content {
    width: 350px;
    padding: 23px 26px 19px;
    border-radius: 26px;
  }
  .location-card__title {
    font-size: 1.55rem;
  }
  .hero__copy {
    width: min(100%, 630px);
    align-self: center;
    padding-left: 28px;
  }
  .hero__kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .hero__title {
    margin-bottom: 20px;
    font-size: clamp(49px, 7.2vw, 58px);
  }
  .hero__subtitle {
    font-size: 17px;
  }
}

@media (min-width: 960px) {
  .header .brand__mark {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
  .header .brand::after {
    font-size: 9px;
  }

  .hero__inner {
    min-height: calc(100svh - var(--header-h) - 96px);
    grid-template-columns: minmax(0, 1.12fr) minmax(400px, 460px);
    align-items: stretch;
    gap: clamp(56px, 7vw, 108px);
  }
  .hero__copy {
    align-self: end;
    max-width: 680px;
    margin: 0 0 clamp(46px, 7vh, 78px);
    padding-left: 32px;
  }
  .hero__kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }
  .hero__title {
    margin-bottom: 28px;
    font-size: clamp(58px, 5.2vw, 76px);
  }
  .hero__subtitle {
    max-width: 39ch;
    font-size: 20px;
  }
  .location-card__section {
    width: 374px;
    align-self: start;
    justify-self: end;
    margin: clamp(18px, 3vh, 34px) 0 0;
  }
  .location-card__map-image {
    width: 332px;
    margin-bottom: -14px;
  }
  .location-card__content {
    width: 349px;
    padding: 25px 27px 20px;
    border-radius: 26px;
  }
  .location-card__title {
    font-size: 1.55rem;
  }
  .location-card__title-icon {
    width: 19px;
    height: 19px;
  }
  .location-card__address {
    font-size: .95rem;
  }
  .location-card__action {
    padding: 8px 15px;
    font-size: .9rem;
  }
  .hero__scroll {
    bottom: 22px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 639px) and (max-height: 700px) {
  .hero {
    padding-top: calc(var(--header-h) + 8px);
    padding-bottom: 34px;
  }
  .hero__inner {
    padding-top: 12px;
  }
  .location-card__section {
    width: 248px;
    margin-bottom: 20px;
  }
  .location-card__map-image {
    width: 218px;
  }
  .location-card__content {
    width: 238px;
    padding: 17px 14px 13px;
    border-radius: 20px;
  }
  .location-card__title {
    font-size: 1.15rem;
  }
  .location-card__address,
  .location-card__action {
    font-size: .78rem;
  }
  .location-card__divider {
    margin: 11px 0 9px;
  }
  .hero .hero__copy {
    padding-left: 18px;
    transform: none;
  }
  .hero__kicker {
    margin-bottom: 8px;
    font-size: 8.5px;
  }
  .hero .hero__title {
    margin-bottom: 11px;
    font-size: 36px;
    line-height: .95;
  }
  .hero .hero__subtitle {
    font-size: 14px;
    line-height: 1.45;
  }
  .hero .hero__scroll {
    right: 10px;
    bottom: 6px;
    left: auto;
    width: 34px;
    height: 34px;
    transform: none;
    animation: none;
  }
}

/* Desktop-Header: Menü ausblenden optional beibehalten (bleibt Hamburger für Konsistenz) */

/* =============================================================
   SCROLL REVEALS & MOTION LAYER
   Wird nur durch JavaScript aktiviert. Ohne JS bleibt alles sichtbar.
   ============================================================= */
.motion-enhanced [data-scroll-hero] .hero__bg {
  transform: translate3d(0, var(--hero-parallax, 0), 0) scale(1.1);
  transform-origin: center;
  will-change: transform;
}

/* Choreografierter Seitenauftritt nach dem Fensterwischer-Intro */
.reveal-ready [data-hero-reveal] {
  opacity: 0;
  filter: blur(13px) saturate(.78);
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 28px), 0)
    scale(var(--hero-scale, .97));
  transition:
    opacity .82s cubic-bezier(.2, .75, .25, 1) var(--hero-delay, 0ms),
    transform 1.12s cubic-bezier(.16, 1, .3, 1) var(--hero-delay, 0ms),
    filter .94s cubic-bezier(.2, .75, .25, 1) var(--hero-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal-ready .is-page-visible [data-hero-reveal] {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Gemeinsame Ausgangslage; Varianten liefern nur ihre Bewegungsrichtung. */
.reveal-ready [data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 48px;
  --reveal-scale: .965;
  --reveal-rotate-x: 0deg;
  --reveal-blur: 11px;
  opacity: 0;
  filter: blur(var(--reveal-blur)) saturate(.82);
  transform: perspective(1100px)
    translate3d(var(--reveal-x), var(--reveal-y), 0)
    scale(var(--reveal-scale))
    rotateX(var(--reveal-rotate-x));
  transition:
    opacity .78s cubic-bezier(.2, .75, .25, 1) var(--reveal-delay, 0ms),
    transform 1.02s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    filter .9s cubic-bezier(.2, .75, .25, 1) var(--reveal-delay, 0ms),
    clip-path 1.08s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}
.reveal-ready [data-reveal="blur"] {
  --reveal-y: 24px;
  --reveal-scale: .985;
  --reveal-blur: 16px;
}
.reveal-ready [data-reveal="left"] {
  --reveal-x: -58px;
  --reveal-y: 8px;
}
.reveal-ready [data-reveal="right"] {
  --reveal-x: 58px;
  --reveal-y: 8px;
}
.reveal-ready [data-reveal="zoom"] {
  --reveal-y: 16px;
  --reveal-scale: .82;
  --reveal-blur: 14px;
}
.reveal-ready [data-reveal="card"] {
  --reveal-y: 58px;
  --reveal-scale: .925;
  --reveal-rotate-x: 7deg;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform-origin: center bottom;
}
.reveal-ready [data-reveal="wipe"] {
  --reveal-y: 30px;
  --reveal-scale: 1.045;
  --reveal-blur: 8px;
  position: relative;
  clip-path: inset(0 100% 0 0 round var(--radius-lg));
}
.reveal-ready [data-reveal="line"] {
  --reveal-y: 0px;
  --reveal-scale: .12;
  --reveal-blur: 0px;
  transform-origin: center;
}
.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: perspective(1100px)
    translate3d(0, 0, 0)
    scale(1)
    rotateX(0deg);
  will-change: opacity, transform, filter;
}
.reveal-ready [data-reveal="wipe"].is-revealed {
  clip-path: inset(0 0 0 0 round var(--radius-lg));
}

/* Ein kurzer Lichtreflex macht Karten und Bild-Reveals glasig und hochwertig. */
.reveal-ready [data-reveal="card"]::after,
.reveal-ready [data-reveal="wipe"]::after {
  content: "";
  position: absolute;
  inset: -45% -65%;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, .08) 45%,
    rgba(255, 255, 255, .72) 50%,
    rgba(111, 199, 255, .18) 55%,
    transparent 62%
  );
  transform: translate3d(-55%, 0, 0) rotate(8deg);
}
.reveal-ready [data-reveal="card"].is-revealed::after,
.reveal-ready [data-reveal="wipe"].is-revealed::after {
  animation: reveal-glass-shine 1.18s cubic-bezier(.2, .7, .2, 1)
    calc(var(--reveal-delay, 0ms) + 180ms) both;
}
@keyframes reveal-glass-shine {
  0% { opacity: 0; transform: translate3d(-55%, 0, 0) rotate(8deg); }
  22% { opacity: .7; }
  75% { opacity: .35; }
  100% { opacity: 0; transform: translate3d(55%, 0, 0) rotate(8deg); }
}

/* Vorhandene Akzentlinien werden beim Reveal sichtbar gezeichnet. */
.reveal-ready #entdecken .section__title[data-reveal] .section__title-nowrap::after {
  transform: scaleX(0) rotate(-2deg);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1)
    calc(var(--reveal-delay, 0ms) + 280ms);
}
.reveal-ready #entdecken .section__title[data-reveal].is-revealed .section__title-nowrap::after {
  transform: scaleX(1) rotate(-2deg);
}
.reveal-ready .about__trust-title[data-reveal]::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s cubic-bezier(.16, 1, .3, 1)
    calc(var(--reveal-delay, 0ms) + 260ms);
}
.reveal-ready .about__trust-title[data-reveal].is-revealed::after {
  transform: scaleX(1);
}

/* Seitliche Bewegungen sind auf kleinen Displays kompakter und ruhiger. */
@media (max-width: 639px) {
  .reveal-ready [data-reveal="left"],
  .reveal-ready [data-reveal="right"] {
    --reveal-x: 0px;
    --reveal-y: 38px;
  }
  .reveal-ready [data-reveal="card"] {
    --reveal-y: 44px;
    --reveal-scale: .945;
    --reveal-rotate-x: 5deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-enhanced [data-scroll-hero] .hero__bg,
  .reveal-ready [data-hero-reveal],
  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal].is-revealed {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
  .reveal-ready [data-reveal]::after {
    display: none !important;
  }
}
