/* ===========================================================
   VHE Gebäudereinigung — Apple-style design system
   =========================================================== */

:root {
  /* Apple base palette (light) */
  --background: #ffffff;
  --foreground: #1d1d1f;
  --card: #ffffff;
  --primary: #1d1d1f;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f7;
  --secondary-foreground: #1d1d1f;
  --muted-foreground: #86868b;
  --accent: #0071e3;
  --accent-foreground: #ffffff;
  --destructive: #ff3b30;
  --border: #e8e8ed;
  --ring: #0071e3;
  --sidebar: #fafafa;

  /* Chart / feature accent colors */
  --chart-1: #0071e3;
  --chart-2: #34c759;
  --chart-3: #5856d6;
  --chart-4: #ff9500;
  --chart-5: #ff2d55;

  /* Header brand accent (sky palette) */
  --header-logo: #0ea5e9;
  --header-brand: #111827;
  --header-nav: #374151;
  --header-hover: #0ea5e9;
  --header-cta-hover: #0284c7;

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container: 1120px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4.2vw, 48px); line-height: 1.08; text-align: center; }
h3 { font-size: 22px; }

p { margin: 0 0 16px; color: var(--foreground); }
.lede { font-size: clamp(19px, 2.2vw, 24px); color: var(--muted-foreground); font-weight: 400; }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted-foreground); font-size: 18px; margin-top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  max-width: 100%;
}
@media (max-width: 480px) {
  .btn { font-size: 15px; padding: 13px 20px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #0077ed; }

.btn-secondary {
  background: var(--secondary);
  color: var(--foreground);
}
.btn-secondary:hover { background: #e8e8ed; }

.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover { text-decoration: underline; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--secondary); border-color: var(--muted-foreground); }

.btn .icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1120px;
  z-index: 1000;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: none;
  margin: 0;
  padding: 0 8px 0 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo .logo-accent { color: var(--header-logo); }
.logo .logo-rest { color: var(--header-brand); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--header-nav);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--header-hover); }

.header-right { display: flex; align-items: center; gap: 20px; }

.btn-cta {
  background: var(--header-logo);
  color: #fff;
  padding: 10px 22px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-cta:hover {
  background: var(--header-cta-hover);
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.45);
}
.btn-cta:active { transform: scale(0.97); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--header-nav);
  cursor: pointer;
  padding: 6px;
}
.menu-toggle:hover { color: var(--header-brand); }
.menu-toggle svg { width: 26px; height: 26px; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 84px; left: 16px; right: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  padding: 8px 24px 20px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--header-brand);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-right .btn-cta-desktop { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 176px 0 96px;
  text-align: center;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(0,113,227,0.07), transparent 70%),
    var(--background);
}
.hero .container { max-width: 780px; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { max-width: 620px; margin: 0 auto 36px; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust-bar { padding: 30px 0 64px; }
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 28px;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto;
  transition: box-shadow 0.2s ease;
}
.google-badge:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.google-badge .g-logo { width: 26px; height: 26px; flex-shrink: 0; }
.google-badge .g-stars { color: #ff9500; font-size: 16px; letter-spacing: 2px; }
.google-badge .g-text { font-size: 15px; color: var(--foreground); font-weight: 500; }
.google-badge .g-sub { color: var(--muted-foreground); font-weight: 400; }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--secondary);
  border: 1px solid var(--border);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--foreground); fill: none; stroke-width: 1.6; }
.service-card:hover .service-icon { background: var(--foreground); border-color: var(--foreground); }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card p { color: var(--muted-foreground); font-size: 15px; margin-bottom: 0; }
.service-card h3 { margin-bottom: 8px; }
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0,113,227,0.08);
  padding: 3px 10px;
  border-radius: 980px;
  margin-top: 14px;
}

/* ---------- Referenzen / Vorher-Nachher Vergleichsregler ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.compare-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--secondary);
  cursor: ew-resize;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.compare-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.compare-slider .compare-after { z-index: 1; }
.compare-slider .compare-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.compare-label {
  position: absolute;
  top: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 11px;
  border-radius: 980px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.compare-label.before { left: 12px; background: rgba(29, 29, 31, 0.55); }
.compare-label.after { right: 12px; background: rgba(52, 199, 89, 0.85); }

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.compare-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transform: translate(-50%, -50%);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
}
.compare-grip svg { width: 20px; height: 20px; }

.compare-caption { padding: 20px 22px 22px; }
.compare-caption h3 { font-size: 18px; margin-bottom: 4px; }
.compare-caption p { font-size: 14px; color: var(--muted-foreground); margin-bottom: 0; }

/* ---------- Vertraut von (Logo-Marquee) ---------- */
.marquee-section { padding: 8px 0 56px; }
.marquee-heading {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 26px;
}
.marquee-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 56px;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-mask:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  height: 40px;
  white-space: nowrap;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.marquee-item:hover { opacity: 1; filter: grayscale(0); }
.marquee-item img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Ansprechpartnerin ---------- */
.team-card {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.team-photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.team-info { flex: 1; }
.team-role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.team-info h3 { font-size: 24px; margin-bottom: 4px; }
.team-title { color: var(--muted-foreground); font-size: 15px; margin-bottom: 14px; }
.team-info p.team-bio { color: var(--muted-foreground); font-size: 15.5px; margin-bottom: 22px; }
.team-contact { display: flex; gap: 12px; flex-wrap: wrap; }
.team-contact .btn { padding: 11px 22px; font-size: 15px; }

@media (max-width: 700px) {
  .team-card { flex-direction: column; text-align: center; padding: 36px 28px; gap: 24px; }
  .team-contact { justify-content: center; }
}

/* ---------- Warum wir ---------- */
.why-us { background: var(--secondary); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--card);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.why-icon svg { width: 22px; height: 22px; stroke-width: 1.8; fill: none; stroke: var(--accent); }
.why-item h3 { font-size: 17px; margin-bottom: 4px; }
.why-item p { font-size: 15px; color: var(--muted-foreground); margin-bottom: 0; }

/* ---------- Vergleich (Pro/Contra) ---------- */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 760px) { .proscons-grid { grid-template-columns: 1fr; } }

.proscon-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid transparent;
}
.proscon-card h3 { font-size: 17px; margin-bottom: 20px; }
.proscon-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.proscon-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--foreground); }

.proscon-card.con { background: rgba(255, 59, 48, 0.05); border-color: rgba(255, 59, 48, 0.16); }
.proscon-card.pro { background: rgba(52, 199, 89, 0.07); border-color: rgba(52, 199, 89, 0.2); }

.proscon-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.proscon-card.con .proscon-icon { background: var(--destructive); }
.proscon-card.pro .proscon-icon { background: #34c759; }

/* ---------- Einzugsgebiet ---------- */
.area-section .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .area-section .container { grid-template-columns: 1fr; } }
.area-copy h2 { text-align: left; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-chips span {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 980px;
  background: var(--secondary);
  color: var(--foreground);
}
.area-visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 45%, rgba(0,113,227,0.14), rgba(0,113,227,0.02) 65%), var(--secondary);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.area-visual .pin {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,113,227,0.35);
}
.area-visual .pin svg { transform: rotate(45deg); width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; }
.area-visual .ring {
  position: absolute;
  border: 1px solid rgba(0,113,227,0.25);
  border-radius: 50%;
}
.area-visual .ring.r1 { width: 55%; height: 55%; }
.area-visual .ring.r2 { width: 78%; height: 78%; }
.area-visual .ring.r3 { width: 100%; height: 100%; }

/* ---------- Kundenstimmen ---------- */
.reviews-section { background: var(--secondary); }

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 10px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
@media (max-width: 480px) { .review-card { flex-basis: 82vw; } }

.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.g-logo-sm { width: 22px; height: 22px; flex-shrink: 0; }
.review-card .stars { color: #ff9500; font-size: 14px; letter-spacing: 2px; }
.review-card p { font-size: 15.5px; color: var(--foreground); margin-bottom: 16px; }
.review-card .author { font-size: 14px; font-weight: 600; color: var(--muted-foreground); }
.review-source {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--foreground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.carousel-arrow:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); }
.carousel-arrow:active { transform: scale(0.94); }
.carousel-arrow svg { width: 20px; height: 20px; }
@media (max-width: 700px) { .carousel-arrow { display: none; } }

.google-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Ablauf ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step { text-align: center; padding: 0 8px; }
.process-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  margin: 0 auto 18px;
}
.process-step h3 { font-size: 17px; }
.process-step p { font-size: 14.5px; color: var(--muted-foreground); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.25s ease;
}
.faq-question .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-question .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding-bottom: 22px; color: var(--muted-foreground); font-size: 15.5px; margin: 0; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- Kontaktformular ---------- */
.contact-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
@media (max-width: 600px) { .contact-form-card { padding: 32px 24px; } }

.form-row { margin-bottom: 22px; }
.form-row:last-of-type { margin-bottom: 28px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--secondary);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}
.form-row textarea { resize: vertical; min-height: 100px; font-family: inherit; }

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.chip-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 980px;
  border: 1.5px solid var(--border);
  background: var(--secondary);
  color: var(--foreground);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  user-select: none;
}
.chip::before {
  content: "";
  width: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.chip-group input[type="checkbox"]:checked + .chip {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.chip-group input[type="checkbox"]:checked + .chip::before { content: "✓"; opacity: 1; }
.chip-group input[type="checkbox"]:focus-visible + .chip {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.form-submit { width: 100%; margin-top: 6px; }

/* ---------- Kontakt CTA ---------- */
.contact-cta {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 72px 40px;
  text-align: center;
}
.contact-cta h2 { color: var(--primary-foreground); }
.contact-cta .lede { color: rgba(255,255,255,0.7); }
.contact-cta .hero-ctas { margin-top: 32px; }
.contact-cta .btn-secondary { background: rgba(255,255,255,0.12); color: #fff; }
.contact-cta .btn-secondary:hover { background: rgba(255,255,255,0.2); }
.contact-cta .btn-primary { background: var(--header-logo); }
.contact-cta .btn-primary:hover { background: var(--header-cta-hover); }
.contact-detail { margin-top: 28px; font-size: 14px; color: rgba(255,255,255,0.55); }
.contact-detail a { text-decoration: underline; }

/* ---------- Footer ---------- */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand p { color: var(--muted-foreground); font-size: 13.5px; max-width: 320px; margin-bottom: 0;}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--muted-foreground); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted-foreground);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 160px 0 96px; }
.legal-page h1 { font-size: 36px; margin-bottom: 32px; }
.legal-page h2 { text-align: left; font-size: 22px; margin-top: 32px; }
.legal-page p, .legal-page li { color: var(--muted-foreground); font-size: 15.5px; }
.legal-page a { color: var(--accent); }
.legal-page .back-link { display: inline-block; margin-bottom: 32px; color: var(--accent); font-weight: 500; }

/* ---------- Intro splash animation ---------- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: introFadeOut 0.4s ease forwards;
  animation-delay: 1.6s;
}

.intro-logo-wrap {
  position: relative;
  display: inline-block;
}

.intro-logo {
  position: relative;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(22px, 6.5vw, 50px);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: introReveal 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.intro-logo::after {
  content: "";
  position: absolute;
  inset: -6px -10px;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.95) 46%, transparent 62%);
  transform: translateX(-140%);
  animation: introShine 0.65s ease-in-out forwards;
  animation-delay: 1s;
  pointer-events: none;
}

.intro-vhe { color: var(--header-logo); }
.intro-rest { color: var(--header-brand); margin-left: 8px; }

.intro-mop {
  position: absolute;
  top: 50%;
  left: -18%;
  width: 42px;
  height: 42px;
  transform: translateY(-58%) rotate(-16deg);
  opacity: 0;
  animation: introMop 0.65s ease-in-out forwards;
  animation-delay: 1s;
}

@keyframes introReveal {
  to { clip-path: inset(0 0% 0 0); }
}
@keyframes introShine {
  to { transform: translateX(140%); }
}
@keyframes introMop {
  0%   { left: -18%; opacity: 0; transform: translateY(-58%) rotate(-20deg); }
  12%  { opacity: 1; }
  50%  { transform: translateY(-62%) rotate(10deg); }
  88%  { opacity: 1; }
  100% { left: 112%; opacity: 0; transform: translateY(-58%) rotate(-14deg); }
}
@keyframes introFadeOut {
  to { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
