/* ==========================================================================
   CLX – Clenix Berlin · Mobile Auto-Innenreinigung
   Design-System: Navy #001439 · Cyan #14B4DF · Weiß
   ========================================================================== */

:root {
  /* CI-Farben */
  --navy-950: #000D26;
  --navy-900: #001439;
  --navy-800: #04204F;
  --navy-700: #0A2C63;
  --navy-600: #123A7A;
  --cyan-500: #14B4DF;
  --cyan-400: #3DC6EC;
  --cyan-300: #7FDCF5;
  /* Komplementär-Akzent (warmes Orange als Gegenpol zum Cyan) */
  --amber-500: #FF9142;
  --amber-400: #FFAD6B;
  --amber-300: #FFC694;
  --white: #FFFFFF;
  --ice: #EAF6FB;
  --slate-300: #B9C6D8;
  --slate-400: #8FA1B8;

  /* Semantische Tokens */
  --color-bg: var(--navy-900);
  --color-bg-deep: var(--navy-950);
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-surface-strong: rgba(255, 255, 255, 0.09);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-text: var(--white);
  --color-text-muted: var(--slate-300);
  --color-accent: var(--cyan-500);
  --color-accent-strong: #0E9DC4;
  --color-accent-warm: var(--amber-500);

  /* Typografie */
  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Abstände */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.5rem;
  --radius-full: 999px;

  --shadow-lg: 0 24px 60px -20px rgba(0, 5, 20, 0.65);
  --shadow-glow: 0 0 40px rgba(20, 180, 223, 0.35);

  --container: 74rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(20, 180, 223, 0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(18, 58, 122, 0.5), transparent 60%),
    radial-gradient(900px 600px at 110% 75%, rgba(255, 145, 66, 0.07), transparent 60%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }

::selection { background: var(--cyan-500); color: var(--navy-950); }

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

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { max-width: 65ch; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--color-text-muted); }
.text-muted { color: var(--color-text-muted); }
.accent { color: var(--cyan-400); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 2px;
  background: linear-gradient(90deg, var(--amber-500), var(--cyan-500));
  border-radius: 2px;
}
.accent-warm { color: var(--amber-400); }

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p { margin-inline: auto; }
.section-head p { margin-top: var(--space-4); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(19.5rem, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(13.5rem, 100%), 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  min-height: 44px;
}
.btn:focus-visible { outline: 3px solid var(--cyan-300); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-500) 60%, var(--color-accent-strong));
  color: var(--navy-950);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(20, 180, 223, 0.5); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--color-surface-strong); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0, 13, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 0.9rem;
}
.brand { display: inline-flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.brand img { height: 3.4rem; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-300);
  padding: 0.4rem 0.15rem;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--cyan-400);
  transition: right 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-cta { display: inline-flex; }
.nav-toggle {
  display: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 13, 38, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 90;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.4rem; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { position: relative; z-index: 95; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 13, 38, 0.94) 25%, rgba(0, 20, 57, 0.72) 55%, rgba(0, 20, 57, 0.35) 100%),
    linear-gradient(to top, var(--navy-900) 0%, transparent 30%);
}
.hero-inner { display: grid; gap: var(--space-8); max-width: 44rem; }
.hero .lead { color: #D4E2EF; }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ice);
}
.badge svg { width: 1rem; height: 1rem; color: var(--cyan-400); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero-note { font-size: 0.9rem; color: var(--slate-400); }
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--slate-400);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 2.4rem;
  background: linear-gradient(to bottom, var(--cyan-400), transparent);
  animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- Trust bar ---------- */
.trust-bar {
  border-block: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  padding-block: var(--space-8);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: var(--space-6);
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
}
.stat-value .accent { color: var(--cyan-400); }
.stat-label { font-size: 0.85rem; color: var(--slate-400); margin-top: 0.15rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(20, 180, 223, 0.4); background: var(--color-surface-strong); }
.card h3 { margin-bottom: var(--space-2); }
.card p { font-size: 0.95rem; color: var(--color-text-muted); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(20, 180, 223, 0.14);
  border: 1px solid rgba(20, 180, 223, 0.35);
  color: var(--cyan-400);
  margin-bottom: var(--space-4);
}
.card-icon svg { width: 1.5rem; height: 1.5rem; }

.media-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-card .media-body { padding: clamp(1.25rem, 2vw, 1.75rem); display: grid; gap: var(--space-2); }
.media-card .price-tag { margin-top: var(--space-2); font-weight: 800; color: var(--cyan-400); font-family: var(--font-display); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: var(--space-2); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 180, 223, 0.65);
  margin-bottom: var(--space-3);
}
.step:nth-child(even) .step-num { -webkit-text-stroke-color: rgba(255, 145, 66, 0.7); }
.step h3 { margin-bottom: var(--space-2); }
.step p { font-size: 0.95rem; color: var(--color-text-muted); }

/* ---------- Scroll-Story (Vorher/Nachher) ---------- */
.clean-story { position: relative; }
.clean-stage {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.clean-frame {
  position: relative;
  width: min(100% - 2.5rem, 68rem);
  aspect-ratio: 16 / 9;
  max-height: 74svh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.clean-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.clean-frame .img-after {
  clip-path: inset(0 100% 0 0);
}
.clean-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--cyan-400) 20%, var(--cyan-400) 80%, transparent);
  box-shadow: 0 0 24px rgba(20, 180, 223, 0.8);
  transform: translateX(-10px);
}
.clean-label {
  position: absolute;
  top: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.clean-label.before { left: 1.25rem; background: rgba(0, 13, 38, 0.72); color: #FFB4B4; border: 1px solid rgba(255, 120, 120, 0.4); }
.clean-label.after { right: 1.25rem; background: rgba(0, 13, 38, 0.72); color: var(--cyan-300); border: 1px solid rgba(20, 180, 223, 0.5); opacity: 0; }
.clean-steps {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 2rem);
}
.clean-step-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-full);
  background: rgba(0, 13, 38, 0.75);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-400);
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.clean-step-chip svg { width: 1rem; height: 1rem; }
.clean-step-chip.active {
  color: var(--white);
  border-color: var(--cyan-400);
  box-shadow: 0 0 20px rgba(20, 180, 223, 0.35);
}
.clean-step-chip.active svg { color: var(--cyan-400); }

/* Fallback ohne JS/GSAP: Nachher-Bild sichtbar */
.no-gsap .clean-frame .img-after { clip-path: inset(0 0 0 0); }
.no-gsap .clean-label.after { opacity: 1; }
.no-gsap .clean-stage { height: auto; padding-block: var(--space-12); }

/* ---------- Preistabellen ---------- */
.price-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
}
.price-toggle button {
  border: none;
  background: transparent;
  color: var(--slate-300);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
}
.price-toggle button.active {
  background: var(--cyan-500);
  color: var(--navy-950);
}
.price-card { position: relative; display: flex; flex-direction: column; gap: var(--space-4); }
.price-card.featured {
  border-color: rgba(20, 180, 223, 0.55);
  background: linear-gradient(180deg, rgba(20, 180, 223, 0.10), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-glow);
}
.price-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  translate: -50% 0;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--cyan-400);
}
.price-amount small { font-size: 1rem; font-weight: 600; color: var(--slate-400); }
.price-old {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-400);
  margin-bottom: 0.35rem;
}
.price-old s { text-decoration-color: rgba(255, 120, 120, 0.8); }
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 145, 66, 0.16);
  border: 1px solid rgba(255, 145, 66, 0.55);
  color: var(--amber-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.addon-table td .price-old-inline {
  color: var(--slate-400);
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 0.45rem;
}
.price-duration { font-size: 0.85rem; color: var(--slate-400); }
.price-features { display: grid; gap: 0.6rem; font-size: 0.93rem; color: var(--color-text-muted); }
.price-features li { display: flex; gap: 0.6rem; align-items: flex-start; }
.price-features svg { width: 1.1rem; height: 1.1rem; flex: none; color: var(--cyan-400); margin-top: 0.2rem; }
.price-features li.excluded { opacity: 0.45; }
.price-features li.excluded svg { color: var(--slate-400); }

/* Add-on Tabelle */
.addon-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.addon-table th, .addon-table td { text-align: left; padding: 0.9rem 1rem; border-bottom: 1px solid var(--color-border); }
.addon-table th { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); }
.addon-table td:last-child, .addon-table th:last-child { text-align: right; white-space: nowrap; font-weight: 700; }
.addon-table td:last-child { color: var(--cyan-400); }
.addon-table tr:hover td { background: rgba(255, 255, 255, 0.03); }
.table-scroll { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); }
.table-scroll .addon-table { min-width: 34rem; }

/* ---------- Testimonials ---------- */
.quote-card { display: flex; flex-direction: column; gap: var(--space-4); }
.stars { display: flex; gap: 0.2rem; color: #FFC531; }
.stars svg { width: 1.1rem; height: 1.1rem; }
.quote-card blockquote { font-size: 0.98rem; color: var(--ice); font-style: italic; }
.quote-meta { font-size: 0.85rem; color: var(--slate-400); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: var(--space-3); max-width: 50rem; margin-inline: auto; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.1rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 0.7rem; height: 0.7rem;
  border-right: 2px solid var(--cyan-400);
  border-bottom: 2px solid var(--cyan-400);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body { padding: 0 1.35rem 1.25rem; color: var(--color-text-muted); font-size: 0.95rem; }

/* ---------- Buchungs-Wizard ---------- */
.wizard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(12px);
  max-width: 54rem;
  margin-inline: auto;
  scroll-margin-top: 6.5rem;
}
.wizard-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: var(--space-8);
}
.wizard-progress span {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
}
.wizard-progress span.done { background: var(--cyan-500); }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: stepIn 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wizard-step h3 { margin-bottom: var(--space-2); }
.wizard-step > p { color: var(--color-text-muted); margin-bottom: var(--space-6); font-size: 0.95rem; }

.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(11.5rem, 100%), 1fr)); gap: var(--space-3); }
.option-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  min-height: 44px;
}
.option-tile:hover { border-color: rgba(20, 180, 223, 0.5); transform: translateY(-2px); }
.option-tile input { position: absolute; opacity: 0; pointer-events: none; }
.option-tile { min-width: 0; overflow: hidden; }
.option-tile:has(input:checked) {
  border-color: var(--cyan-400);
  background: rgba(20, 180, 223, 0.12);
  box-shadow: 0 0 18px rgba(20, 180, 223, 0.25);
}
.option-tile:has(input:focus-visible) { outline: 3px solid var(--cyan-300); outline-offset: 2px; }
.option-title {
  font-weight: 800;
  font-size: 0.98rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.15rem 0.5rem;
  align-items: baseline;
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.option-title .opt-price { color: var(--cyan-400); font-size: 0.9rem; white-space: nowrap; }
.option-sub { font-size: 0.82rem; color: var(--slate-400); overflow-wrap: anywhere; }

.field { display: grid; gap: 0.45rem; margin-bottom: var(--space-4); }
.field label { font-weight: 700; font-size: 0.9rem; }
.field label .req { color: var(--cyan-400); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background: rgba(0, 13, 38, 0.55);
  color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(20, 180, 223, 0.22);
}
.field .field-error { color: #FF9D9D; font-size: 0.82rem; display: none; }
.field.invalid input, .field.invalid select { border-color: #FF7878; }
.field.invalid .field-error { display: block; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr)); gap: var(--space-4); }
.field select option { background: var(--navy-900); color: var(--white); }
input[type="date"] { color-scheme: dark; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.wizard-summary {
  background: rgba(0, 13, 38, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  margin-bottom: var(--space-6);
}
.wizard-summary .sum-row { display: flex; justify-content: space-between; gap: var(--space-4); }
.wizard-summary .sum-row span:first-child { color: var(--slate-400); }
.wizard-summary .sum-total {
  border-top: 1px solid var(--color-border);
  padding-top: 0.65rem;
  font-weight: 800;
  font-size: 1.1rem;
}
.wizard-summary .sum-total span:last-child { color: var(--cyan-400); }
.wizard-note { font-size: 0.85rem; color: var(--slate-400); }
.wizard-success { text-align: center; padding-block: var(--space-8); }
.wizard-success svg { width: 4rem; height: 4rem; color: var(--cyan-400); margin-inline: auto; margin-bottom: var(--space-4); }

/* ---------- CTA-Banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(20, 180, 223, 0.35), transparent 70%),
    radial-gradient(500px 280px at 90% 120%, rgba(255, 145, 66, 0.22), transparent 70%),
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(20, 180, 223, 0.3);
}
.cta-banner h2 { margin-bottom: var(--space-3); }
.cta-banner p { margin-inline: auto; margin-bottom: var(--space-6); color: var(--color-text-muted); }
.cta-banner .hero-actions { justify-content: center; }

/* ---------- Bezirke ---------- */
.district-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.district-cloud li {
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-300);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.district-cloud li:hover { border-color: var(--cyan-400); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--navy-950);
  padding-block: var(--space-16) var(--space-8);
  margin-top: var(--space-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-brand img { height: 4.5rem; margin-bottom: var(--space-4); }
.footer-brand p { font-size: 0.9rem; color: var(--slate-400); }
.site-footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-400); margin-bottom: var(--space-4); }
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--cyan-400); }
.footer-contact { display: grid; gap: 0.6rem; font-size: 0.93rem; color: var(--slate-300); }
.footer-contact a { color: var(--cyan-400); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: 0.85rem;
  color: var(--slate-400);
}
.footer-bottom a { color: var(--slate-300); text-decoration: none; }
.footer-bottom a:hover { color: var(--cyan-400); }
.footer-legal { display: flex; gap: var(--space-4); }

/* ---------- Unterseiten-Hero ---------- */
.page-hero {
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.page-hero .lead { margin-top: var(--space-4); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: var(--slate-400); margin-bottom: var(--space-6); }
.breadcrumbs a { color: var(--slate-300); text-decoration: none; }
.breadcrumbs a:hover { color: var(--cyan-400); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Legal / Prosa ---------- */
.prose { max-width: 50rem; }
.prose h2 { font-size: 1.5rem; margin-top: var(--space-12); margin-bottom: var(--space-3); }
.prose h3 { font-size: 1.15rem; margin-top: var(--space-8); margin-bottom: var(--space-2); }
.prose p, .prose li { color: var(--color-text-muted); font-size: 0.97rem; }
.prose p { margin-bottom: var(--space-4); }
.prose ul { padding-left: 1.2rem; margin-bottom: var(--space-4); }
.prose a { color: var(--cyan-400); }
.prose strong { color: var(--white); }
.prose address { font-style: normal; color: var(--color-text-muted); margin-bottom: var(--space-4); }

/* ---------- Bild-Text-Splits ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > .split-media { order: 2; }
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-body h2 { margin-bottom: var(--space-4); }
.split-body p { color: var(--color-text-muted); margin-bottom: var(--space-4); }
.check-list { display: grid; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--ice); font-size: 0.97rem; }
.check-list svg { width: 1.2rem; height: 1.2rem; flex: none; color: var(--cyan-400); margin-top: 0.15rem; }

/* ---------- Reveal-Animationen (GSAP setzt Werte, CSS nur Ausgangszustand via JS) ---------- */
.gsap-reveal { will-change: transform, opacity; }

/* ---------- WhatsApp-Float ---------- */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem; height: 3.4rem;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 1.7rem; height: 1.7rem; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--cyan-500);
  color: var(--navy-950);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }
