/* Zaki Facility Services — build 202605251448 */
:root {
  --navy: #0a1628;
  --navy-mid: #12243d;
  --navy-soft: #1a3354;
  --cyan: #00c2d9;
  --cyan-glow: #5ee7f7;
  --cyan-dark: #0099ad;
  --gold: #d4a72c;
  --gold-light: #f0d078;
  --gold-dark: #a67c00;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #eef2f7;
  --gray-200: #dce4ed;
  --gray-500: #6b7c8f;
  --gray-700: #3d4f63;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-offset: 88px;
  --logo-height: 58px;
  --logo-height-hero: 174px;
  --logo-aspect: 1.57;
  --logo-aspect-text: 3.16;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --header-scroll-p: 0;
  --shadow-soft: 0 4px 24px rgba(10, 22, 40, 0.06);
  --shadow-medium: 0 12px 40px rgba(10, 22, 40, 0.12);
  --shadow-strong: 0 24px 60px rgba(10, 22, 40, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

html.is-loading {
  scroll-behavior: auto;
}

html,
body,
main {
  width: 100%;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 10002;
  padding: 0.65rem 1rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

.skip-link:focus-visible {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-panel.reveal,
.hero-panel.reveal.is-visible {
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-left {
  transform: translate3d(-44px, 28px, 0);
}

.reveal-left.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal-right {
  transform: translate3d(44px, 28px, 0);
}

.reveal-right.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal-scale {
  transform: translateY(28px) scale(0.97);
}

.reveal-scale.is-visible {
  transform: translateY(0) scale(1);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.06s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.more-card.reveal {
  transform: translateY(28px) scale(0.98);
}

.more-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.review-card.reveal {
  transform: translateY(24px) scale(0.98);
}

.review-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.55s var(--header-ease),
    border-color 0.55s var(--header-ease),
    box-shadow 0.55s var(--header-ease),
    backdrop-filter 0.55s var(--header-ease),
    -webkit-backdrop-filter 0.55s var(--header-ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

/* Desktop + Hero: Header folgt dem Scroll (weicher als harter Klassen-Umschalt) */
@media (min-width: 769px) {
  body:has(.hero) .site-header {
    background: rgba(255, 255, 255, calc(var(--header-scroll-p) * 0.52));
    border-bottom-color: rgba(10, 22, 40, calc(var(--header-scroll-p) * 0.08));
    box-shadow: 0 4px 24px rgba(10, 22, 40, calc(var(--header-scroll-p) * 0.07));
    backdrop-filter: blur(calc(var(--header-scroll-p) * 16px));
    -webkit-backdrop-filter: blur(calc(var(--header-scroll-p) * 16px));
  }

  body:has(.hero) .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.5);
  }

  body:has(.hero) .site-header .header-inner {
    padding-top: calc(0.65rem + (1 - var(--header-scroll-p)) * 0.35rem);
    padding-bottom: calc(0.65rem + (1 - var(--header-scroll-p)) * 0.7rem);
    transition: padding 0.12s linear;
  }

  body:has(.hero) .site-header .logo {
    max-width: min(
      58%,
      calc((var(--logo-height) + (var(--logo-height-hero) - var(--logo-height)) * (1 - var(--header-scroll-p))) * var(--logo-aspect))
    );
    transition: max-width 0.12s linear;
  }

  body:has(.hero) .site-header:not(.is-scrolled) .logo-img--full {
    height: calc(
      var(--logo-height) +
      (var(--logo-height-hero) - var(--logo-height)) *
      (1 - var(--header-scroll-p))
    );
    max-width: calc(
      (var(--logo-height) + (var(--logo-height-hero) - var(--logo-height)) * (1 - var(--header-scroll-p))) * var(--logo-aspect)
    );
    filter: drop-shadow(0 2px 14px rgba(10, 22, 40, calc((1 - var(--header-scroll-p)) * 0.45)));
    transition: filter 0.35s var(--header-ease);
  }

  body:has(.hero) .site-header .nav-desktop > a {
    color: color-mix(
      in srgb,
      var(--navy) calc(var(--header-scroll-p) * 100%),
      rgba(255, 255, 255, 0.95) calc((1 - var(--header-scroll-p)) * 100%)
    );
    text-shadow: 0 1px 10px rgba(10, 22, 40, calc((1 - var(--header-scroll-p)) * 0.4));
    transition: color 0.12s linear, text-shadow 0.12s linear;
  }

  body:has(.hero) .site-header .nav-desktop > a:hover {
    color: color-mix(
      in srgb,
      var(--cyan-dark) calc(var(--header-scroll-p) * 100%),
      var(--cyan-glow) calc((1 - var(--header-scroll-p)) * 100%)
    );
  }

}

/* Helle Navigation über dem dunklen Hero */
.site-header:not(.is-scrolled) .nav-desktop > a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(10, 22, 40, 0.4);
}

.site-header:not(.is-scrolled) .nav-desktop > a:hover {
  color: var(--cyan-glow);
}

.site-header:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--white);
}

.site-header:not(.is-scrolled) .logo-img--full {
  filter: drop-shadow(0 2px 14px rgba(10, 22, 40, 0.45));
}

/* Unterseiten ohne Hero: Navigation von Anfang an dunkel */
body:not(:has(.hero)) .site-header:not(.is-scrolled) .nav-desktop > a {
  color: var(--navy);
  text-shadow: none;
}

body:not(:has(.hero)) .site-header:not(.is-scrolled) .menu-toggle {
  background: var(--gray-100);
  border: none;
}

body:not(:has(.hero)) .site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--navy);
}

body:not(:has(.hero)) .site-header:not(.is-scrolled) .logo-img--full {
  filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.65rem 0;
  gap: 1rem;
  transition: padding 0.55s var(--header-ease);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-shrink: 0;
}

.logo {
  flex-shrink: 0;
  line-height: 0;
  width: fit-content;
  max-width: min(72%, 360px);
}

.logo picture,
.about-visual picture {
  display: contents;
}

.logo-img {
  height: var(--logo-height);
  width: auto;
  object-fit: contain;
  object-position: left center;
  aspect-ratio: auto;
  transition:
    height 0.55s var(--header-ease),
    max-width 0.55s var(--header-ease),
    filter 0.45s var(--header-ease),
    opacity 0.35s var(--header-ease);
}

.logo-img--full {
  max-width: min(280px, calc(var(--logo-height) * var(--logo-aspect)));
}

.logo-img--compact {
  max-width: min(320px, calc(var(--logo-height) * var(--logo-aspect-text)));
}

.site-header:not(.is-scrolled) .logo-img--compact {
  display: none;
}

.site-header.is-scrolled .logo-img--full {
  display: none;
}

@media (max-width: 768px) {
  body:has(.hero) .site-header:not(.is-scrolled) .logo-img--full {
    height: var(--logo-height-hero);
    max-width: min(92vw, calc(var(--logo-height-hero) * var(--logo-aspect)));
  }

  body:has(.hero) .site-header:not(.is-scrolled) .logo {
    max-width: min(92vw, 360px);
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop > a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  position: relative;
  transition: color 0.45s var(--header-ease), text-shadow 0.45s var(--header-ease);
}

.nav-desktop > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}

.nav-desktop > a:hover {
  color: var(--cyan-dark);
}

.nav-desktop > a:hover::after {
  width: 60%;
  left: 20%;
}

.nav-social--desktop {
  display: grid;
  grid-template-columns: repeat(2, 32px);
  gap: 0.35rem;
  flex-shrink: 0;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(10, 22, 40, 0.12);
}

.nav-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(10, 22, 40, 0.1);
  color: var(--navy);
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}

.nav-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.nav-mobile .nav-social--mobile {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 1.15rem;
  border-bottom: none;
}

.nav-mobile .nav-social--mobile a {
  width: 40px;
  height: 40px;
  padding: 0;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
}

.nav-mobile .nav-social--mobile a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.nav-mobile .nav-social--mobile svg {
  width: 17px;
  height: 17px;
}

.nav-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.85rem 0 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.nav-mobile-contact a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.2rem 0;
  color: var(--navy);
  border-bottom: none;
}

.nav-mobile-contact a:hover {
  color: var(--cyan-dark);
}

.header-cta {
  display: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--navy);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(212, 167, 44, 0.35);
  transition: transform 0.3s, box-shadow 0.3s, background-position 0.4s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 167, 44, 0.45);
  background-position: right center;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--gray-100);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

@media (max-width: 959px) {
  .header-actions {
    display: none !important;
  }

  .menu-toggle {
    margin-left: auto;
    z-index: 3;
  }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: 0.5rem 0 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.nav-mobile.is-open { display: block; }

.nav-mobile a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 0;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}

@media (min-width: 960px) {
  .header-actions {
    display: flex;
  }

  .nav-desktop {
    display: flex;
    flex-wrap: nowrap;
  }

  .header-cta {
    display: inline-block;
    flex-shrink: 0;
  }

  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }

  .nav-social--desktop {
    display: none;
  }

  .site-header.is-scrolled .nav-social--desktop {
    display: grid;
  }
}

@media (max-width: 1199px) {
  :root {
    --logo-height-hero: 96px;
  }
}

@media (max-width: 768px) {
  :root {
    --logo-height: 48px;
    --logo-height-hero: 152px;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(212, 167, 44, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(212, 167, 44, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 194, 217, 0.35);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 194, 217, 0.45);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-anchor: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg picture {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  animation: none;
  transform: none;
}

@keyframes heroTextFadeIn {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.7) 45%, rgba(0, 153, 173, 0.25) 100%),
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(0, 194, 217, 0.15), transparent);
}

.hero-overlay::before {
  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");
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--logo-height-hero) + 2.5rem) 0 6rem;
  transition: padding-top 0.45s var(--ease-out);
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  margin-bottom: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 194, 217, 0.15);
  border: 1px solid rgba(0, 194, 217, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 6.2vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--cyan-glow) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.65;
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-actions .btn {
  font-size: 0.84rem;
  padding: 0.86rem 1.55rem;
}

/* Hero-Einstieg: Desktop & Mobile */
.hero-panel {
  opacity: 1;
}

/* Kein will-change am Hero — vermeidet Zoom-/Skalierungs-Artefakte auf Mobile */
/* Mobile: Text sofort sichtbar (LCP / PageSpeed). Desktop: sanfte Einstiegs-Animation. */

@media (max-width: 768px) {
  .hero-eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions .btn-gold,
  .hero-actions .btn-glass,
  .hero-stat,
  .hero-scroll {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .hero-eyebrow {
    transform: translateY(18px);
    animation: heroTextFadeIn 0.95s var(--ease-out) 0.12s forwards;
    will-change: transform;
  }

  .hero h1 {
    transform: translateY(18px);
    animation: heroTextFadeIn 1.05s var(--ease-out) 0.35s forwards;
    will-change: transform;
  }

  .hero-lead {
    transform: translateY(18px);
    animation: heroTextFadeIn 1s var(--ease-out) 0.58s forwards;
    will-change: transform;
  }

  .hero-actions .btn-gold {
    transform: translateY(18px);
    animation: heroTextFadeIn 0.9s var(--ease-out) 0.82s forwards;
    will-change: transform;
  }

  .hero-actions .btn-glass {
    transform: translateY(18px);
    animation: heroTextFadeIn 0.9s var(--ease-out) 1s forwards;
    will-change: transform;
  }

  .hero-stat {
    transform: translateY(18px);
    animation: heroTextFadeIn 0.85s var(--ease-out) forwards;
    will-change: transform;
  }

  .hero-stat:nth-child(1) { animation-delay: 1.12s; }
  .hero-stat:nth-child(2) { animation-delay: 1.24s; }
  .hero-stat:nth-child(3) { animation-delay: 1.36s; }

  .hero-scroll {
    transform: translateX(-50%) translateY(14px);
    animation: heroScrollFadeIn 1s var(--ease-out) 1.55s forwards;
    will-change: transform;
  }
}

@keyframes heroScrollFadeIn {
  from { transform: translateX(-50%) translateY(14px); }
  to { transform: translateX(-50%) translateY(0); }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-stat {
  flex: 1 1 140px;
  max-width: 200px;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.3s, background 0.3s;
}

.hero-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
}

.hero-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.hero-stat-icon svg {
  width: 2rem;
  height: 2rem;
}

.hero-stat--region {
  flex: 1 1 180px;
  max-width: 240px;
}

.hero-stat--region span {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.hero-stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}

/* ========== HIGHLIGHTS ========== */
.highlights {
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.highlights-grid {
  display: grid;
  gap: 1.25rem;
}

.highlight-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(10, 22, 40, 0.15);
}

.highlight-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.highlight-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--cyan-glow);
  fill: none;
  stroke-width: 1.75;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* ========== SECTIONS ========== */
section { padding: 5.5rem 0; }

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* ========== ABOUT ========== */
.about {
  background: var(--off-white);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(0, 194, 217, 0.06), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  width: 100%;
}

.about-visual-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  max-width: 220px;
}

.about-visual-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.about-visual-badge span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.35;
  opacity: 0.9;
  margin-top: 0.35rem;
}

.about-text p {
  margin-bottom: 1.15rem;
  color: var(--gray-500);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.about-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  color: var(--navy);
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 1fr; }
}

/* ========== STATEMENT ========== */
.statement-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-soft) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.statement-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 194, 217, 0.2), transparent 70%);
  top: -100px;
  right: -100px;
}

.statement-band::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 167, 44, 0.15), transparent 70%);
  bottom: -80px;
  left: -80px;
}

.statement-band .container { position: relative; z-index: 1; }

.statement-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
}

.statement-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 880px;
  margin: 0 auto;
  font-style: normal;
  letter-spacing: -0.01em;
}

/* ========== LEISTUNGEN INTRO ========== */
.leistungen {
  padding: 0;
}

.leistungen-intro {
  padding: 3.25rem 0 2.5rem;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.leistungen-intro-inner {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.leistungen-intro-main .section-title {
  margin-bottom: 0;
}

.leistungen-intro-main .title-accent {
  color: var(--cyan-dark);
  font-weight: 700;
}

.leistungen-intro-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--cyan);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leistungen-intro-text {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.leistungen-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.leistungen-pills span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.leistungen-pills span:nth-child(2) {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
}

.leistungen-pills span:nth-child(3) {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
}

@media (min-width: 900px) {
  .leistungen-intro-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .leistungen-intro {
    padding: 3.75rem 0 2.75rem;
  }
}

/* ========== SERVICE BLOCKS ========== */

.service-block {
  display: grid;
  align-items: stretch;
  min-height: 420px;
}

.service-block-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.7s var(--ease-out);
}

.service-block:hover .service-block-image img {
  transform: scale(1.06);
}

.service-block-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.5), transparent 50%);
}

.service-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.service-block-content {
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-block:nth-child(even) .service-block-content {
  background: var(--off-white);
}

.service-block:nth-child(even) .service-block-image { order: 2; }
.service-block:nth-child(even) .service-block-content { order: 1; }

.service-block-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--cyan), var(--gold)) 1;
  display: inline-block;
}

.service-block-content p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

@media (min-width: 900px) {
  .service-block { grid-template-columns: 1fr 1fr; min-height: 480px; }
  .service-block-content { padding: 4rem 3.5rem; }
  .service-block-image { min-height: 100%; }
}

/* ========== MORE SERVICES ========== */
.more-services {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.more-services-grid {
  display: grid;
  gap: 1.5rem;
}

.more-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.more-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.more-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 194, 217, 0.12), rgba(212, 167, 44, 0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.more-card h3,
.more-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.more-card p { font-size: 0.95rem; color: var(--gray-500); }

.more-card:has(.more-card-media) {
  padding: 0;
  overflow: hidden;
}

.more-card:has(.more-card-media) .more-card-icon {
  margin: 1.35rem 2rem 1rem;
}

.more-card:has(.more-card-media) h3,
.more-card:has(.more-card-media) h4 {
  margin: 0 2rem 0.5rem;
}

.more-card:has(.more-card-media) p {
  margin: 0 2rem 2rem;
}

.more-card-media {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: var(--gray-100);
}

.more-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  filter: saturate(0.8) contrast(0.94);
  transition: transform 0.5s var(--ease-out), opacity 0.35s;
}

.more-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.06) 0%, rgba(10, 22, 40, 0.18) 100%);
  pointer-events: none;
}

.more-card:hover .more-card-media img {
  transform: scale(1.04);
  opacity: 0.92;
}

@media (min-width: 768px) {
  .more-services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.reviews .section-eyebrow { color: var(--cyan-glow); border-left-color: var(--gold); }
.reviews .section-title { color: var(--white); }

.reviews-grid {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform 0.35s, background 0.35s;
}

.review-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.review-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.review-stars {
  color: var(--gold-light);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.review-card blockquote {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
  opacity: 0.95;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-author span {
  display: block;
  font-weight: 400;
  opacity: 0.65;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.review-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== FAQ ========== */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.is-open {
  border-color: var(--cyan);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--cyan-dark);
  transition: transform 0.3s, background 0.3s;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--cyan);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.35rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer { max-height: 200px; }

/* ========== CTA BAND ========== */
.cta-band {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 217, 0.2), transparent 65%);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ========== CONTACT ========== */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-box {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.contact-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 194, 217, 0.4);
}

.contact-row { margin-bottom: 1.5rem; }

.contact-row strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  margin-bottom: 0.35rem;
}

.contact-row a {
  color: var(--white);
  transition: color 0.25s;
}

.contact-row a:hover { color: var(--gold-light); }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--gray-100);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 217, 0.15);
  background: var(--white);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group--checkbox { margin-bottom: 1rem; }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--gray-700);
}

.form-checkbox-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--cyan, #00b4d8);
  cursor: pointer;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-top: 0.9rem;
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--gray-500);
}

.form-status.is-success {
  color: #0a7f46;
}

.form-status.is-error {
  color: #b42318;
}

.form-turnstile {
  margin-bottom: 0.5rem;
  overflow: visible;
}

.form-turnstile .cf-turnstile {
  min-height: 65px;
  width: 100%;
  max-width: 100%;
}

.form-turnstile iframe {
  max-width: 100%;
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 3px solid var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.9fr 1.2fr; }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2.8rem;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: fit-content;
  max-width: 100%;
}

.footer-logo img {
  height: 62px;
  width: auto;
  max-width: min(280px, calc(62px * var(--logo-aspect-text)));
  object-fit: contain;
  object-position: left center;
  aspect-ratio: auto;
  margin-bottom: 0.85rem;
}

.footer-tagline {
  font-style: italic;
  color: var(--gold-light);
  margin-top: 0.6rem;
  font-size: 0.88rem;
  opacity: 0.9;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  line-height: 1.45;
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--cyan-glow); }

.footer-social {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.contact-social {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.footer-seo {
  display: grid;
  gap: 1.4rem;
  padding: 1.3rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-seo-block h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.footer-seo-block > p {
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-address {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.7rem !important;
}

.footer-seo-note {
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--gold-light) !important;
  opacity: 0.9;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-pills li {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.footer-pills--wide li {
  font-weight: 500;
}

.footer-bottom {
  padding: 1rem 0 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

.footer-bottom a { color: var(--cyan-glow); }

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-credit-image {
  display: block;
  height: 30px;
  width: auto;
}

.footer-credit-image--mobile {
  display: none;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-seo { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}

@media (max-width: 767px) {
  .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .footer-logo img {
    object-position: center center;
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal-row {
    justify-content: center;
  }

  .footer-seo {
    text-align: center;
  }

  .footer-seo-block {
    max-width: 580px;
    margin-inline: auto;
  }

  .footer-pills {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
  }

  .footer-credit-image--desktop,
  .footer-credit-image--desktop-alt {
    display: none;
  }

  .footer-credit-link {
    justify-content: center;
  }

  .footer-credit-image--mobile {
    display: block;
    height: 24px;
  }
}

/* ========== WHATSAPP ========== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out);
}

.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: waPulseRing 3s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes waPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.18); opacity: 0.12; }
}

.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab:hover::after { animation: none; opacity: 0; }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

.whatsapp-chat {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 1100;
  width: min(360px, calc(100vw - 2rem));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: scale(0.9) translateY(16px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out);
}

.whatsapp-chat.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.whatsapp-chat-header {
  background: linear-gradient(135deg, #075e54, #128c7e);
  color: var(--white);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-chat-header .avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-chat-header .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.whatsapp-chat-header-text {
  min-width: 0;
}

.whatsapp-chat-header-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
}

.whatsapp-chat-header-text .whatsapp-status {
  display: block;
  font-size: 0.8rem;
  opacity: 0.92;
  text-transform: none;
  font-weight: 400;
}

.whatsapp-chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
}

.whatsapp-chat-body { padding: 1.25rem; }

.whatsapp-bubble {
  background: #e7ffdb;
  padding: 1rem;
  border-radius: 12px 12px 12px 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.whatsapp-chat-body input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  margin-bottom: 0.75rem;
}

.whatsapp-chat-body button {
  width: 100%;
  padding: 0.85rem;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== LEGAL ========== */
.legal-page {
  padding: calc(var(--header-offset) + 2rem) 0 4rem;
  max-width: 720px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.legal-page p, .legal-page li { color: var(--gray-500); margin-bottom: 0.75rem; }
.legal-page ul { list-style: disc; padding-left: 1.5rem; }

/* ========== 404 ========== */
.error-page {
  text-align: center;
  max-width: 560px;
  padding-bottom: 5rem;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.error-page h1 {
  margin-bottom: 1rem;
}

.error-page__lead {
  font-size: 1.1rem;
  color: var(--gray-700);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
}

.error-page__links {
  font-size: 0.9rem;
}

.error-page__links a {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.error-page__links a:hover {
  color: var(--navy);
}

/* Nav mobile in container */
.nav-mobile.container { padding-left: 1rem; padding-right: 1rem; }

/* ========== PARALLAX-GUCKLOCH (banner / banner-image) ========== */
.banner {
  padding: 0;
  background: #f4fbff;
}

/* transform auf .reveal bricht background-attachment: fixed */
.banner.reveal,
.banner.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Nur position:relative — kein overflow:hidden (bricht background-attachment: fixed) */
.banner-stage {
  position: relative;
  min-height: 620px;
  overflow-anchor: none;
}

.banner-image {
  --banner-bg: url("../assets/images/reinigungsablauf-zuerich-guckloch-hintergrund.webp");
  height: 620px;
  min-height: 100%;
  border-radius: 40px;
  background:
    linear-gradient(rgba(10, 25, 40, 0.35), rgba(10, 25, 40, 0.35)),
    var(--banner-bg) center/cover fixed;
}

/* Mobile: JS-Parallax (fixed funktioniert auf iOS/Android nicht) */
.banner.is-parallax-mobile .banner-image {
  position: relative;
  overflow: hidden;
  background: none;
}

.banner.is-parallax-mobile .banner-image-layer {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100% + 45vh);
  top: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-image: var(--banner-bg);
  background-size: cover;
  background-position: center 72%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  pointer-events: none;
}

.banner.is-parallax-mobile .banner-image-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 25, 40, 0.35), rgba(10, 25, 40, 0.35));
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 40px;
  background: rgba(10, 22, 40, 0.62);
}

/* Ablauf im Guckloch */
.banner-overlay.banner-overlay--process {
  justify-content: center;
  gap: 1.75rem;
  padding: 2.25rem 1.75rem 2rem;
  background: rgba(10, 22, 40, 0.78);
}

.banner-process-head {
  width: 100%;
  max-width: 720px;
}

.banner-overlay .banner-eyebrow {
  color: color-mix(in srgb, var(--cyan-glow) 78%, #ffffff);
  border-left-color: var(--gold);
}

.banner-overlay--process .banner-eyebrow {
  color: #ffffff;
}

.banner-overlay--process .banner-process-intro,
.banner-overlay--process .banner-process-step p {
  color: rgba(255, 255, 255, 0.94);
}

.banner-overlay--process .banner-process-num {
  color: var(--gold-light);
}

.banner-process-title,
.banner-process-intro,
.banner-overlay--process .banner-process-step h3,
.banner-overlay--process .banner-process-step p {
  text-shadow:
    0 1px 3px rgba(10, 22, 40, 0.88),
    0 2px 14px rgba(10, 22, 40, 0.55);
}

.banner-process-num {
  text-shadow: 0 1px 4px rgba(10, 22, 40, 0.8);
}

.banner-process-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 0.65rem;
}

.banner-process-intro {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.55;
  margin: 0;
}

.banner-process-steps {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 1100px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.banner-process-step {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.banner-process-step:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.banner-process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.banner-process-step h3 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 0 0 0.4rem;
}

.banner-process-step p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (min-width: 900px) {
  .banner-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.about + .banner {
  margin-top: 0;
}

.about {
  padding-bottom: 3rem;
}

.banner + .leistungen .leistungen-intro {
  padding-top: 2.75rem;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  html,
  html.is-mobile-scroll-stable,
  html.is-mobile-scroll-stable body {
    scroll-behavior: auto !important;
    overflow-x: hidden;
    overflow-anchor: auto;
  }

  :root {
    --header-offset: 76px;
    --logo-height: 44px;
    --logo-height-hero: 152px;
    --fab-size: 54px;
    --fab-gutter: 1rem;
    --fab-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    --hero-actions-bottom: var(--fab-bottom);
  }

  .container {
    width: min(100% - 1.5rem, 1180px);
  }

  section {
    padding: 3.5rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }

  .header-inner {
    padding: 0.5rem 0;
    gap: 0.65rem;
  }

  /* Hero: Logo mittig, Hamburger rechts (auch nach Scroll mit Textlogo) */
  body:has(.hero) .site-header:not(.is-scrolled) .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(var(--logo-height-hero) + 1.25rem);
    padding: 0.75rem 0 1rem;
    gap: 0;
  }

  body:has(.hero) .site-header:not(.is-scrolled) .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: auto;
    max-width: min(92vw, 360px);
    transform: translate(-50%, -50%);
    transition: transform 0.45s var(--ease-out), max-width 0.45s var(--ease-out);
  }

  body:has(.hero) .site-header:not(.is-scrolled) .logo-img--full {
    height: var(--logo-height-hero);
    max-width: min(92vw, calc(var(--logo-height-hero) * var(--logo-aspect)));
    width: auto;
    margin-inline: auto;
    object-position: center center;
  }

  body:has(.hero) .site-header.is-scrolled .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(var(--logo-height) + 1rem);
    padding: 0.5rem 0;
    gap: 0;
  }

  body:has(.hero) .site-header.is-scrolled .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: auto;
    max-width: min(78%, calc(var(--logo-height) * var(--logo-aspect-text) + 8px));
    transform: translate(-50%, -50%);
    transition: transform 0.45s var(--ease-out), max-width 0.45s var(--ease-out);
  }

  body:has(.hero) .site-header.is-scrolled .logo-img--compact {
    height: var(--logo-height);
    max-width: min(92vw, calc(var(--logo-height) * var(--logo-aspect-text)));
    width: auto;
    margin-inline: auto;
    object-position: center center;
  }

  .menu-toggle {
    padding: 8px;
  }

  .nav-mobile {
    max-height: calc(100vh - var(--header-offset));
    overflow-y: auto;
  }

  /* Hero — Mobile */
  .hero {
    min-height: auto;
    align-items: flex-start;
    overflow: hidden;
    overflow-anchor: auto;
    width: 100%;
    max-width: 100%;
    background-color: var(--navy);
  }

  /*
   * Hero-Bild: feste px-Hoehe (--hero-bg-h) = ganzer Hero inkl. Stats-Karten.
   * Nur CSS-Background (kein img) → Cover bleibt beim Swipen stabil.
   */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--hero-bg-h, 100vh);
    overflow: hidden;
    background-color: var(--navy);
    background-image: url("../assets/images/reinigungsfirma-zuerich-hero-wohnung-mobile.webp");
    background-size: cover;
    background-position: 40% 36%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    pointer-events: none;
  }

  .hero-bg picture,
  .hero-bg-media,
  .hero-bg img {
    display: none !important;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--hero-bg-h, 100vh);
    background:
      linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.82) 100%),
      rgba(10, 22, 40, 0.4);
    pointer-events: none;
  }

  .hero-inner.container {
    width: calc(100% - 1.5rem);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .hero-inner {
    padding: calc(var(--logo-height-hero) + 1rem) 0 2rem;
    width: 100%;
    max-width: 100%;
    transition: none;
  }

  body:has(.hero) .site-header .logo-img {
    transition:
      height 0.45s var(--ease-out),
      max-width 0.45s var(--ease-out),
      filter 0.4s var(--ease-out);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }

  /* Fold-Hoehe wird einmal per JS gesetzt (--hero-fold-h) */
  .hero-fold {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: var(--hero-fold-h, calc(100vh - var(--logo-height-hero) - 1rem));
    flex: 1 1 auto;
  }

  .hero-panel {
    width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 14px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.6vw, 1.95rem);
    margin-bottom: 1rem;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 0 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    gap: 0.75rem;
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: calc(var(--hero-actions-bottom) + 30px);
    box-sizing: border-box;
  }

  .hero-actions .btn,
  .hero-actions .btn-gold,
  .hero-actions .btn-glass {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0.82rem 1.05rem;
    font-size: 0.74rem;
    text-align: center;
    justify-content: center;
    align-self: stretch;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
    flex-shrink: 0;
  }

  /* Kein negativer Margin — verhindert dunklen Blink-Balken unter dem Hero */
  .highlights {
    margin-top: 0;
    padding-top: 2rem;
    background: var(--white);
  }

  .hero-stat {
    flex: none;
    max-width: none;
    width: 100%;
    padding: 1rem 1.15rem;
  }

  .hero-stat--region {
    flex: none;
    max-width: none;
  }

  .hero-stat strong {
    font-size: 1.5rem;
  }

  .hero-stat--region span {
    font-size: 0.8125rem;
  }

  .hero-stat-icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .hero-scroll {
    bottom: 1rem;
    display: none;
  }

  /* Guckloch + Ablauf — Text im abgerundeten Fenster */
  .banner {
    padding: 2rem 0;
  }

  .banner-stage {
    position: relative;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    overflow-anchor: auto;
  }

  .banner-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background:
      linear-gradient(rgba(10, 25, 40, 0.35), rgba(10, 25, 40, 0.35)),
      var(--banner-bg) center / cover no-repeat scroll;
  }

  .banner.is-parallax-mobile .banner-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: none;
  }

  .banner.is-parallax-mobile .banner-image-layer {
    background-position: center 72%;
  }

  .banner-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    border-radius: 0;
    padding: 1.5rem 1rem 1.5rem;
    text-align: center;
    background: rgba(10, 22, 40, 0.58);
  }

  .banner-overlay.banner-overlay--process {
    gap: 1.15rem;
    justify-content: flex-start;
    /* Mobile: etwas dunkler als Standard-Overlay (0.58), Design bleibt heller als vorher */
    background: rgba(10, 22, 40, 0.84);
  }

  .banner-process-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .banner-process-steps {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .banner-process-step {
    padding: 1rem 1rem;
  }

  .banner-process-num {
    font-size: 1.5rem;
  }

  /* Service Blocks */
  .service-block {
    min-height: 0;
  }

  .service-block-image {
    min-height: 240px;
  }

  .service-block-image img {
    min-height: 240px;
  }

  .service-num {
    font-size: 2.5rem;
    top: 1rem;
    left: 1rem;
  }

  .service-block-content {
    padding: 2rem 1.25rem;
  }

  .service-block-content h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .service-block-content p {
    font-size: 1rem;
  }

  .service-block:nth-child(even) .service-block-image,
  .service-block:nth-child(even) .service-block-content {
    order: unset;
  }

  .contact-box {
    text-align: center;
  }

  .contact-box h3 {
    text-align: center;
  }

  .contact-box .contact-social {
    justify-content: center;
  }

  .whatsapp-fab {
    width: var(--fab-size);
    height: var(--fab-size);
    bottom: var(--fab-bottom);
    right: var(--fab-gutter);
  }

  .whatsapp-chat {
    left: 1rem;
    right: 1rem;
    bottom: calc(var(--fab-bottom) + var(--fab-size) + 0.5rem);
    width: auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  :root {
    --header-offset: 68px;
    --logo-height: 40px;
    --logo-height-hero: 120px;
  }

  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .hero h1 {
    font-size: clamp(1.32rem, 7vw, 1.72rem);
  }

  .hero-lead {
    font-size: 0.9375rem;
  }

  .hero-stat span {
    font-size: 0.6875rem;
  }

  .hero-stat--region span {
    font-size: 0.75rem;
  }

  .banner-image {
    min-height: 480px;
    border-radius: 16px;
  }

  .banner-overlay {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --header-scroll-p: 0;
  }

  body:has(.hero) .site-header:not(.is-scrolled) .logo-img--full {
    height: var(--logo-height-hero) !important;
  }

  body:has(.hero) .site-header.is-scrolled .logo-img--compact {
    height: var(--logo-height) !important;
  }

  .banner-image {
    background-attachment: scroll;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions .btn,
  .hero-stat,
  .hero-scroll,
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    animation: none;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .hero-scroll {
    transform: translateX(-50%);
  }
}

/* ========== COOKIE BANNER ========== */
html.cookie-consent-set .cookie-banner {
  display: none !important;
}

body.cookie-banner-open {
  padding-bottom: 0;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10000;
  contain: layout style;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.97) 0%, rgba(10, 22, 40, 0.99) 100%);
  color: var(--off-white);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(0, 194, 217, 0.35);
}

.cookie-banner__inner {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 0 1.5rem;
}

.cookie-banner__eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  margin-bottom: 0.35rem;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cookie-banner__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.85);
  max-width: 52rem;
}

.cookie-banner__desc a {
  color: var(--cyan-glow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cookie-banner__actions .btn {
  min-width: 10.5rem;
}

.cookie-banner__actions--single {
  justify-content: flex-end;
}

.cookie-banner__actions--single .btn {
  min-width: 12rem;
}

.cookie-banner__settings-toggle {
  background: none;
  border: none;
  color: var(--cyan-glow);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0.5rem 0.25rem;
  font-family: inherit;
}

.cookie-settings {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10001;
  background: var(--white);
  border-top: 3px solid var(--cyan);
  box-shadow: 0 -8px 32px rgba(10, 22, 40, 0.15);
}

.cookie-settings__inner {
  padding: 1.25rem 0 1.5rem;
}

.cookie-settings__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.cookie-settings__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.cookie-settings__row p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.cookie-settings__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--gray-100);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch__ui {
  width: 48px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 999px;
  transition: background 0.2s;
}

.cookie-switch__ui::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.cookie-switch input:checked + .cookie-switch__ui {
  background: var(--cyan);
}

.cookie-switch input:checked + .cookie-switch__ui::after {
  transform: translateX(20px);
}

.cookie-settings__actions {
  margin-top: 1rem;
}

.map-wrap--consent .map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 280px;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--gray-100);
  border-radius: var(--radius);
  border: 1px dashed var(--gray-200);
}

.map-wrap--consent .map-placeholder p {
  color: var(--gray-700);
  font-weight: 500;
}

.map-consent-link {
  display: inline-flex;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
}

.map-wrap--consent.map-wrap--loaded .map-placeholder {
  display: none;
}

.map-wrap--consent iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
}

.map-consent-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.form-turnstile-notice {
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  line-height: 1.5;
}

.form-turnstile-notice button {
  background: none;
  border: none;
  color: var(--cyan-dark);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

.footer-legal-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.footer-legal-row > a {
  margin-bottom: 0;
}

.footer-cookie-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.footer-cookie-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-cookie-icon:hover {
  color: var(--cyan-glow);
  border-color: rgba(0, 194, 217, 0.45);
  background: rgba(0, 194, 217, 0.12);
  transform: translateY(-1px);
}

.legal-page .footer-cookie-icon {
  border-color: var(--gray-200);
  background: var(--gray-100);
  color: var(--navy);
}

.legal-page .footer-cookie-icon:hover {
  color: var(--cyan-dark);
  border-color: var(--cyan);
  background: rgba(0, 194, 217, 0.1);
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
