/* ══════════════════════════════════════════════════════════════
   ATS Landing Page — Jony Ive / Apple-Inspired Design
   Warm. Einladend. Bildreich. Animiert.
   ══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --primary: #1d1d1f;
  --accent: #1a3050;
  --accent-hover: #243d5f;
  --text: #1d1d1f;
  --text-muted: #86868b;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-dark: #1d1d1f;
  --bg-dark-card: #2c2c2e;
  --card-bg: #ffffff;
  --border: #d2d2d7;
  --success: #34c759;
  --radius: 20px;
  --radius-sm: 12px;

  /* Service Gradients */
  --svc-aussenwaesche: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  --svc-innenreinigung: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  --svc-komplett: linear-gradient(135deg, #1e0533, #3a1078, #6c2bd9);
  --svc-keramik: linear-gradient(135deg, #0c1445, #1a237e, #283593);
  --svc-leder: linear-gradient(135deg, #3e2723, #5d4037, #795548);
  --svc-spezial: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700; letter-spacing: -0.03em;
  text-align: center; color: var(--primary);
  margin-bottom: 16px; line-height: 1.15;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  text-align: center; max-width: 600px;
  margin: 0 auto 64px; line-height: 1.6;
}
.section-subtitle {
  font-size: 17px; color: var(--text-muted);
  text-align: center; max-width: 600px;
  margin: 0 auto 64px; line-height: 1.6;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 52px; z-index: 100;
  background: transparent;
  transition: background 400ms, backdrop-filter 400ms, border-color 400ms;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(0,0,0,0.1);
}
.navbar.scrolled .nav-links a { color: #1d1d1f; }
.navbar.scrolled .nav-links a:hover { color: var(--accent); }
.navbar.scrolled .nav-search { color: #1d1d1f; }
.navbar.scrolled .nav-toggle { color: #1d1d1f; }
.navbar .container {
  display: flex; align-items: center; height: 100%;
  position: relative;
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
  z-index: 2;
}
.nav-logo-img {
  height: 36px; width: 36px;
  object-fit: contain;
  transition: filter 300ms;
}
/* White logo visible on dark hero, inverted to dark when scrolled */
.navbar.scrolled .nav-logo-img {
  filter: brightness(0);
}
.nav-spacer { flex: 1; }
.nav-right {
  display: flex; align-items: center; gap: 24px;
  z-index: 2;
}
.nav-links {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 28px;
  transition: opacity 300ms;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color 200ms;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }

/* Search wrap */
.nav-search-wrap {
  display: flex; align-items: center; gap: 8px;
}
.nav-search-input {
  width: 0; opacity: 0;
  padding: 0; border: none;
  font-size: 13px; font-family: inherit;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 8px;
  outline: none;
  transition: width 300ms cubic-bezier(.2,.8,.2,1), opacity 300ms, padding 300ms;
}
.nav-search-wrap.open .nav-search-input {
  width: 180px; opacity: 1;
  padding: 6px 12px;
}
.navbar.scrolled .nav-search-input {
  background: rgba(0,0,0,0.06);
  color: var(--text);
}
.nav-search {
  background: none; border: none;
  cursor: pointer; padding: 6px;
  color: var(--text);
  transition: color 200ms, opacity 200ms;
  opacity: 0.6;
  flex-shrink: 0;
}
.nav-search:hover { opacity: 1; }

/* When search is open, fade nav-links slightly */
.nav-search-wrap.open ~ .nav-links,
.nav-right:has(.nav-search-wrap.open) .nav-links {
  opacity: 0.5;
}
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; font-size: 22px; color: var(--text);
}

/* Navbar on dark hero */
.navbar--hero-visible .nav-links a { color: rgba(255,255,255,.7); }
.navbar--hero-visible .nav-links a:hover { color: #fff; }
.navbar--hero-visible .nav-search { color: #fff; }
.navbar--hero-visible .nav-search-input {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.navbar--hero-visible .nav-search-input::placeholder { color: rgba(255,255,255,0.5); }
.navbar--hero-visible .nav-toggle { color: #fff; }
.navbar.scrolled.navbar--hero-visible .nav-links a { color: #1d1d1f; }
.navbar.scrolled.navbar--hero-visible .nav-links a:hover { color: var(--accent); }
.navbar.scrolled.navbar--hero-visible .nav-search { color: #1d1d1f; }
.navbar.scrolled.navbar--hero-visible .nav-search-input {
  background: rgba(0,0,0,0.06);
  color: #1d1d1f;
}
.navbar.scrolled.navbar--hero-visible .nav-search-input::placeholder { color: var(--text-muted); }
.navbar.scrolled.navbar--hero-visible .nav-toggle { color: #1d1d1f; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0a0a1a 0%, #141428 30%, #1a1a3e 60%, #0d0d20 100%);
}

/* Glow Orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,48,80,0.4), transparent 70%);
  top: -10%; right: -5%;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(52,152,219,0.35), transparent 70%);
  bottom: -10%; left: -5%;
  animation: heroGlow2 10s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(-40px, 30px) scale(1.15); opacity: 0.5; }
}
@keyframes heroGlow2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.25; }
  100% { transform: translate(30px, -40px) scale(1.1); opacity: 0.45; }
}

/* Hero light sweep */
.hero .container::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  animation: heroLightSweep 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroLightSweep {
  0%, 100% { transform: translateX(-30%); }
  50% { transform: translateX(30%); }
}

/* Film grain overlay */
.hero > .container::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.hero .container {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  padding-top: 15vh;
}
.hero h1 {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.05;
  color: #ffffff;
  max-width: 900px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.6);
  margin-top: 20px; max-width: 580px;
  line-height: 1.6; font-weight: 400;
}

.hero-stats {
  display: none; gap: 56px;
  margin-top: 48px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 32px; font-weight: 700;
  color: #ffffff; letter-spacing: -0.5px;
}
.hero-stat span:last-child {
  display: block; font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 2px; margin-top: 6px;
  font-weight: 500;
}

.hero-buttons {
  display: flex; gap: 16px; margin-top: 40px;
}
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  font-size: 15px; font-weight: 600;
  color: #fff; background: var(--accent);
  border-radius: var(--radius); text-decoration: none;
  transition: all 300ms cubic-bezier(.2,.8,.2,1);
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,48,80,0.4);
}
.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,48,80,0.5);
}
.btn-cta-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); text-decoration: none;
  transition: all 300ms cubic-bezier(.2,.8,.2,1);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll, .hero-scroll-link {
  position: absolute; bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
  text-decoration: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero-scroll-text {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 300ms ease;
}
.hero-scroll-link:hover .hero-scroll-text {
  color: #ffffff;
}
.hero-scroll svg, .hero-scroll-link svg {
  width: 24px; height: 24px;
  stroke: rgba(255,255,255,0.3);
  stroke-width: 2; fill: none;
  transition: stroke 300ms ease;
}
.hero-scroll-link:hover svg {
  stroke: #ffffff;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero with background video */
.hero.hero--has-video {
  background: #000;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero.hero--has-video::before,
.hero.hero--has-video::after {
  z-index: 2;
  opacity: 0.25;
}
.hero.hero--has-video .container {
  z-index: 3;
}
.hero.hero--has-video .hero-scroll,
.hero.hero--has-video .hero-scroll-link {
  z-index: 3;
}
.hero.hero--has-video .hero-particles {
  z-index: 2;
}
/* Dark overlay for video readability */
.hero.hero--has-video > .container::before {
  display: none;
}
.hero.hero--has-video::after {
  content: '';
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 0;
  filter: none;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.4) 65%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
  animation: none;
  opacity: 1;
}

/* Hero with uploaded background image */
.hero.hero--has-bg {
  background: #000;
}
.hero.hero--has-bg::before,
.hero.hero--has-bg::after {
  /* Keep glow orbs but reduce opacity for image visibility */
  opacity: 0.2;
}
.hero.hero--has-bg .hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: kenBurns 25s ease-in-out infinite alternate;
  transform-origin: 30% 40%;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Dark gradient overlay on hero image */
.hero.hero--has-bg > .container::before {
  display: none; /* hide light sweep on image hero */
}
.hero.hero--has-bg > .container ~ .hero-scroll ~ .hero-particles,
.hero.hero--has-bg .hero-particles {
  z-index: 2;
}

/* Extra overlay for image readability */
.hero.hero--has-bg .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.1) 65%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Hero Particles ──────────────────────────────────────── */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 18s; animation-delay: 0s; width: 2px; height: 2px; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 22s; animation-delay: -3s; width: 4px; height: 4px; opacity: 0.15; }
.hero-particle:nth-child(3) { left: 45%; top: 35%; animation-duration: 16s; animation-delay: -6s; }
.hero-particle:nth-child(4) { left: 65%; top: 75%; animation-duration: 20s; animation-delay: -2s; width: 2px; height: 2px; }
.hero-particle:nth-child(5) { left: 80%; top: 15%; animation-duration: 24s; animation-delay: -8s; width: 4px; height: 4px; opacity: 0.12; }
.hero-particle:nth-child(6) { left: 55%; top: 85%; animation-duration: 19s; animation-delay: -4s; }
.hero-particle:nth-child(7) { left: 90%; top: 45%; animation-duration: 21s; animation-delay: -7s; width: 2px; height: 2px; }
.hero-particle:nth-child(8) { left: 35%; top: 10%; animation-duration: 17s; animation-delay: -1s; width: 3px; height: 3px; opacity: 0.2; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.3; }
  50% { opacity: 0.15; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* ── Audience Cards ───────────────────────────────────────── */
#audiences { background: var(--bg); }
.audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.audience-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 40px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: all 400ms cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
/* Colored top accent bar */
.audience-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
  transform-origin: left;
}
.audience-card:hover::before { transform: scaleX(1); }
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.audience-icon {
  font-size: 48px; margin-bottom: 20px;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.audience-card:hover .audience-icon { transform: scale(1.1); }
.audience-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6;
}

/* Audience card with image */
.audience-card--has-img {
  padding: 0; min-height: 280px;
  justify-content: flex-end;
  color: #fff;
}
.audience-card--has-img .audience-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.audience-card--has-img:hover .audience-bg-img { transform: scale(1.05); }
.audience-card--has-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.audience-card--has-img .audience-icon,
.audience-card--has-img h3,
.audience-card--has-img p {
  position: relative; z-index: 2;
}
.audience-card--has-img h3 { color: #fff; }
.audience-card--has-img p { color: rgba(255,255,255,0.75); }
.audience-card--has-img .audience-icon { display: none; }
.audience-card--has-img .audience-card-content {
  position: relative; z-index: 2;
  padding: 24px;
}

/* ── Seasonal Banner ──────────────────────────────────────── */
.seasonal-banner {
  padding: 0;
}
.seasonal-content {
  display: flex; align-items: center;
  gap: 24px; padding: 32px 40px;
  border-radius: var(--radius);
  color: #fff;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a3e, #2d1b69);
}
/* Per-season gradients */
.seasonal-banner[data-season="winter"] .seasonal-content {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.seasonal-banner[data-season="fruehling"] .seasonal-content {
  background: linear-gradient(135deg, #134e5e, #2ecc71, #27ae60);
}
.seasonal-banner[data-season="sommer"] .seasonal-content {
  background: linear-gradient(135deg, #f2994a, #f2c94c);
}
.seasonal-banner[data-season="herbst"] .seasonal-content {
  background: linear-gradient(135deg, #e67e22, #d35400, #c0392b);
}

.seasonal-icon { font-size: 48px; flex-shrink: 0; }
.seasonal-text { flex: 1; }
.seasonal-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.seasonal-desc { font-size: 14px; opacity: 0.85; }

.seasonal-countdown {
  display: flex; gap: 8px; margin-top: 12px;
}
.seasonal-countdown-box {
  background: rgba(0,0,0,0.25);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 48px;
  backdrop-filter: blur(4px);
}
.seasonal-countdown-num {
  font-size: 20px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}
.seasonal-countdown-label {
  font-size: 9px; text-transform: uppercase;
  letter-spacing: 1px; opacity: 0.6;
}

.btn-seasonal {
  flex-shrink: 0;
  background: rgba(255,255,255,0.2) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  backdrop-filter: blur(4px);
}
.btn-seasonal:hover {
  background: rgba(255,255,255,0.3) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ── Services — Cinematic Full-Screen Mosaic ─────────────── */
#services {
  background: #ffffff;
  height: 100vh;
}
.services-grid-wrap {
  height: 100%;
  padding: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 100%;
}
.service-card {
  position: relative;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--accent);
}

/* Video / image background */
.service-video,
.service-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(1) brightness(0.8);
  mix-blend-mode: screen;
  transition: filter 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1), mix-blend-mode 600ms;
}
.service-card:hover .service-video,
.service-card:hover .service-bg-img {
  filter: grayscale(0) brightness(1);
  mix-blend-mode: normal;
  transform: scale(1.05);
}

/* Dark gradient overlay for text readability */
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Content layer — positioned at bottom */
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 16px;
  z-index: 2;
  display: flex; flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-icon-wrap {
  width: 48px; height: 48px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-icon-wrap { transform: scale(1.1); }
.service-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: #ffffff; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.service-icon { font-size: 28px; }

.service-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 6px; color: #fff;
  line-height: 1.2;
}
.service-card p {
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
  height: 2.95em;
  overflow: hidden;
}
.service-price {
  margin-top: 10px;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.2px;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px; text-align: center;
  position: relative;
  transition: all 400ms cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.pricing-card .pricing-features { flex: 1; }
.pricing-card .btn-cta { margin-top: auto !important; }
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.pricing-card.popular {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 8px 32px rgba(26,48,80,0.2);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; font-size: 11px; font-weight: 700;
  background: var(--accent); color: white;
  border-radius: 980px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing-price {
  font-size: 40px; font-weight: 800; color: var(--primary);
  margin: 20px 0; letter-spacing: -1.5px;
}
.pricing-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.pricing-features {
  list-style: none; text-align: left;
  margin: 28px 0; padding: 0;
}
.pricing-features li {
  font-size: 14px; color: var(--text-muted);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--success); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── Washbox — Dark Section ───────────────────────────────── */
.section-dark {
  background: var(--bg-dark) !important;
  color: #f5f5f7;
}
.section-dark .section-title { color: #ffffff; }
.section-dark .section-sub { color: rgba(255,255,255,0.5); }
.section-dark .section-eyebrow { color: var(--accent); }

.washbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.washbox-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 400ms cubic-bezier(.2,.8,.2,1);
}
.washbox-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.12);
}
.washbox-size {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent); margin-bottom: 10px;
}
.washbox-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.washbox-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.washbox-feat {
  font-size: 12px; color: rgba(255,255,255,0.6);
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.08);
}
.washbox-price {
  font-size: 28px; font-weight: 800;
  color: var(--accent); margin-top: 20px;
  letter-spacing: -0.5px;
}

/* Washbox pricing table dark */
.washbox-pricing-table table {
  width: 100%; border-collapse: collapse;
}
.washbox-pricing-table th {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.4); text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.washbox-pricing-table td {
  font-size: 14px; padding: 14px 16px; color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.washbox-pricing-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}
.washbox-pricing-table tr:hover td { background: rgba(255,255,255,0.04); }

/* ── Fleet — Dark Section ─────────────────────────────────── */
#fleet.section-dark .fleet-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.fleet-text h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 16px;
  color: #fff; line-height: 1.1;
}
.fleet-highlight {
  font-size: 20px; color: var(--accent);
  font-weight: 700; margin-bottom: 28px;
}
.fleet-benefits { list-style: none; padding: 0; }
.fleet-benefits li {
  font-size: 16px; color: rgba(255,255,255,0.75);
  padding: 10px 0;
  display: flex; align-items: center; gap: 14px;
}
.fleet-benefits li .fleet-check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(52,199,89,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.fleet-benefits li .fleet-check svg {
  width: 12px; height: 12px;
  stroke: var(--success); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.fleet-visual {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 64px;
  background: var(--bg-dark-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
/* Fleet with image */
.fleet-visual--has-img {
  padding: 0; min-height: 400px;
}
.fleet-visual--has-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.fleet-card { margin-bottom: 16px; }
.fleet-card-icon {
  font-size: 72px; display: block; margin-bottom: 12px;
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fleet-card-label {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.4);
}

/* ── Reviews + Social Proof ───────────────────────────────── */
#reviews { background: var(--bg-alt); }
.reviews-badge {
  text-align: center; margin-bottom: 48px;
}
.reviews-badge .reviews-stars {
  font-size: 24px; letter-spacing: 4px;
  display: block; margin-bottom: 12px;
}
.reviews-badge-text {
  font-size: 16px; color: var(--text-muted);
}
#reviews-avg {
  font-size: 56px; font-weight: 800;
  color: var(--primary); letter-spacing: -3px;
  display: block; line-height: 1;
  margin-bottom: 4px;
}

.reviews-carousel {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 360px; scroll-snap-align: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 400ms cubic-bezier(.2,.8,.2,1);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.review-stars { font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 15px; color: var(--text);
  line-height: 1.6; margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-size: 13px; color: var(--text-muted);
  font-weight: 600;
}
.reviews-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 24px;
}
.reviews-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: all 300ms;
}
.reviews-dot.active {
  background: var(--accent);
  width: 24px; border-radius: 4px;
}

/* ── Gallery (Before/After) ───────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm);
  overflow: hidden; aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute; bottom: 12px; left: 12px;
  padding: 5px 14px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: white; border-radius: 8px;
}
.gallery-label.before { background: rgba(0,0,0,.5); backdrop-filter: blur(4px); }
.gallery-label.after { background: var(--accent); }

/* ── Portfolio Gallery ────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 300ms;
}
.portfolio-item:hover::after { background: rgba(0,0,0,0.08); }

/* Lightbox */
.portfolio-lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 400ms;
}
.portfolio-lightbox.active { opacity: 1; pointer-events: auto; }
.portfolio-lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.portfolio-lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: none; background: rgba(255,255,255,0.1);
  color: white; font-size: 24px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 200ms;
  backdrop-filter: blur(4px);
}
.portfolio-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* ── Stats ─────────────────────────────────────────────────── */
.stats-section {
  background: var(--primary); color: white;
  text-align: center;
  position: relative; overflow: hidden;
}
/* Stats glow effect */
.stats-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,48,80,0.25), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: statGlow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes statGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative; z-index: 1;
}
.stat-item { position: relative; }
.stat-number, .stats-grid .stat-num {
  font-size: 52px; font-weight: 800;
  letter-spacing: -2px; line-height: 1;
}
.stat-label, .stats-grid .stat-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 2px; opacity: .35;
  margin-top: 8px; font-weight: 500;
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--accent); color: white;
  text-align: center;
  position: relative; overflow: hidden;
}
/* CTA pulse glow */
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.3); }
}

/* CTA with background image */
.cta-band--has-img {
  background: #000;
}
.cta-band--has-img .cta-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}

.cta-band h2 {
  font-size: clamp(24px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 12px;
  position: relative;
}
.cta-band p {
  font-size: 17px; opacity: .8;
  margin-bottom: 36px;
  position: relative;
}
.cta-band .hero-buttons { justify-content: center; position: relative; }
.cta-band .btn-cta {
  background: #fff; color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-band .btn-cta:hover {
  background: #f5f5f7; color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-band .btn-cta-outline {
  border-color: rgba(255,255,255,0.4);
  color: white;
  background: rgba(255,255,255,0.1);
}
.cta-band .btn-cta-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.2);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { height: 32px; width: auto; }
.footer-about {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; max-width: 280px;
}
.footer h4 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px; color: var(--text);
}
.footer p, .footer a {
  font-size: 14px; color: var(--text-muted);
  text-decoration: none; line-height: 2;
}
.footer a { transition: color 200ms; }
.footer a:hover { color: var(--accent); }
.footer-col a { display: block; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  font-size: 14px; color: var(--text-muted);
  font-weight: 500;
}
.footer-social a:hover { color: var(--accent); }

/* ── Scroll Reveal System ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 500ms; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 600ms; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 700ms; }
.reveal-stagger > .reveal:nth-child(9) { transition-delay: 800ms; }
.reveal-stagger > .reveal:nth-child(10) { transition-delay: 900ms; }
.reveal-stagger > .reveal:nth-child(11) { transition-delay: 1000ms; }
.reveal-stagger > .reveal:nth-child(12) { transition-delay: 1100ms; }

/* ── Mobile CTA Bar ───────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(0,0,0,0.08);
  z-index: 99;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.mobile-cta-bar.visible {
  transform: translateY(0);
}
.mobile-cta-bar .mobile-cta-btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px; font-weight: 600;
  color: #fff; background: var(--accent);
  border-radius: var(--radius-sm); text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(26,48,80,0.4);
}
.mobile-cta-bar .mobile-cta-call {
  padding: 12px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--accent); background: rgba(26,48,80,0.08);
  border-radius: var(--radius-sm); text-decoration: none;
  text-align: center; white-space: nowrap;
}

/* ── Mobile Bottom Sheet Nav ──────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 400ms;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-sheet {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-radius: 20px 20px 0 0;
  padding: 12px 24px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  z-index: 201;
  transform: translateY(100%);
  transition: transform 500ms cubic-bezier(.32,.72,0,1);
}
.nav-overlay.open + .nav-sheet,
.nav-sheet.open { transform: translateY(0); }
.nav-sheet-handle {
  width: 36px; height: 4px;
  background: var(--border); border-radius: 2px;
  margin: 0 auto 20px;
}
.nav-sheet a {
  display: block;
  padding: 16px 0;
  font-size: 16px; font-weight: 500;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-sheet a:last-child { border-bottom: none; }
.nav-sheet a:active { color: var(--accent); }

/* ══ Responsive ═══════════════════════════════════════════ */

/* ── 1200px ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
}

/* ── 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #fleet.section-dark .fleet-layout,
  .fleet-layout { grid-template-columns: 1fr; gap: 40px; }
  .fleet-visual { display: none; }
}

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { min-height: 90vh; }
  .hero-stats { gap: 32px; }
  .hero-stat-num { font-size: 24px; }
  .hero::before { width: 300px; height: 300px; }
  .hero::after { width: 250px; height: 250px; }
  .hero-buttons {
    flex-direction: column; align-items: center;
    width: 100%; padding: 0 20px;
  }
  .btn-cta, .btn-cta-outline {
    width: 100%; max-width: 320px;
  }

  /* Sections */
  .section { padding: 80px 0; }
  .section-sub, .section-subtitle { margin-bottom: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-number, .stats-grid .stat-num { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column; gap: 12px; text-align: center;
  }
  .seasonal-content {
    flex-direction: column; text-align: center;
    padding: 32px 24px;
  }
  .seasonal-countdown { justify-content: center; }
  .btn-seasonal { width: 100%; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }

  /* Fleet */
  .fleet-text h2 { font-size: 28px; }
}

/* ── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .audience-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 300px; }
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .hero-scroll, .hero-scroll-link { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 360px ──────────────────────────────────────────────── */
@media (max-width: 360px) {
  .btn-cta, .btn-cta-outline { padding: 12px 20px; font-size: 13px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   NEU (API-Port): SB-Waschbox Live-Status (Ampel)
   ══════════════════════════════════════════════════════════════ */
.washbox-suitable {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.washbox-status {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 20px;
  font-size: 14px; font-weight: 700;
  padding: 8px 16px;
  border-radius: 980px;
}
.washbox-dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
}
.washbox-status.free { color: #34c759; background: rgba(52,199,89,0.12); }
.washbox-status.free .washbox-dot { background: #34c759; box-shadow: 0 0 0 4px rgba(52,199,89,0.18); }
.washbox-status.busy { color: #ff453a; background: rgba(255,69,58,0.12); }
.washbox-status.busy .washbox-dot { background: #ff453a; box-shadow: 0 0 0 4px rgba(255,69,58,0.18); }
.washbox-status.oos { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.washbox-status.oos .washbox-dot { background: rgba(255,255,255,0.4); }
