/* ============================================================
   TOBA SCHRIFTEN — Redesign v2
   Font: League Spartan (wie tobaschriften.ch, Google Fonts)
   Palette: OKLCH — near-black base, gold primary, petrol accent
   Strategy: Committed/Drenched dark — craft precision studio
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.68;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* Globaler Ambient-Hintergrund — langsam driftende Glows für alle Sektionen */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 55% at 90% 12%, oklch(0.48 0.12 27 / 0.07) 0%, transparent 62%),
    radial-gradient(ellipse 32% 48% at 10% 88%, oklch(0.26 0.11 27 / 0.09) 0%, transparent 58%);
  animation: body-ambient 42s ease-in-out infinite;
  will-change: transform;
}
@keyframes body-ambient {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-18px, -24px) scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

/* Globale Grain-Textur — gibt Tiefe, wirkt gedruckt/materiell */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.028;
  mix-blend-mode: overlay;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Sichtbarer Tastatur-Fokus (WCAG 2.4.7 / 2.4.11) — weiss, trägt auf dunkel & rot */
:where(a, button, summary, [tabindex], input, select, textarea):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Skip-Link (WCAG 2.4.1) */
.skip-link {
  position: fixed;
  top: 0; left: 0;
  z-index: 2000;
  background: var(--red-btn);
  color: var(--ink);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-md) 0;
  transform: translateY(-130%);
  transition: transform 0.18s var(--ease-out);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

/* ============================================================
   DESIGN TOKENS (OKLCH)
   ============================================================ */
:root {
  /* --- Dark bg palette --- */
  --bg:           oklch(0.07 0.000 0);        /* near-pure black */
  --surface-1:    oklch(0.11 0 0);      /* dark petrol card/panel */
  --surface-2:    oklch(0.16 0 0);      /* slightly lighter dark panel */
  --surface-3:    oklch(0.21 0 0);      /* border / raised element */

  /* --- Light section palette --- */
  --surface-lt:   oklch(0.98 0.000 0);        /* near-pure white */
  --surface-lt-2: oklch(0.95 0 0);      /* very subtle petrol tint card */
  --surface-lt-3: oklch(0.91 0 0);      /* panel on light bg */

  /* --- Brand colors: ROT / SCHWARZ / WEISS --- */
  --gold:         oklch(0.62 0.19 27);        /* SIGNALROT — Akzent/Text (≥4.5 auf Schwarz) */
  --gold-dark:    oklch(0.47 0.20 27);        /* dunkleres Rot — Button-Hover */
  --gold-pale:    oklch(0.80 0.13 27);        /* helles Rot — Tints auf hell */
  --petrol:       oklch(0.30 0.13 27);        /* tiefes Rot — selten genutzt */
  --red-btn:      oklch(0.52 0.21 27);        /* gefüllte Buttons (weisser Text) */

  /* --- Text on dark --- */
  --ink:          oklch(0.97 0.000 0);        /* near-white, primary on dark */
  --ink-muted:    oklch(0.62 0 0);      /* muted on dark ≥ 4.5:1 vs --bg */

  /* --- Text on light --- */
  --ink-dark:     oklch(0.10 0.000 0);        /* near-black, primary on light */
  --ink-dark-2:   oklch(0.2 0 0);      /* headings on light, petrol-tinted */
  --ink-muted-lt: oklch(0.38 0 0);      /* muted on light ≥ 4.5:1 vs white */

  /* --- Borders --- */
  --border-dark:  oklch(0.2 0 0);      /* on dark sections */
  --border-lt:    oklch(0.88 0 0);      /* on light sections */

  /* --- WhatsApp --- */
  --wa:           oklch(0.72 0.18 148);

  /* --- Font --- */
  --font: 'League Spartan', system-ui, -apple-system, sans-serif;

  /* --- Type scale (fluid) --- */
  --text-xs:    clamp(0.6875rem, 1.4vw,  0.75rem);
  --text-sm:    clamp(0.8125rem, 1.7vw,  0.875rem);
  --text-base:  clamp(0.9375rem, 1.9vw,  1.0625rem);
  --text-lg:    clamp(1.0625rem, 2.2vw,  1.25rem);
  --text-xl:    clamp(1.25rem,   2.8vw,  1.625rem);
  --text-2xl:   clamp(1.625rem,  3.5vw,  2.25rem);
  --text-3xl:   clamp(2rem,      4.5vw,  3.25rem);
  --text-hero:  clamp(3rem, 9vw, 6.5rem);

  /* --- Spacing --- */
  --section-py:   clamp(4.5rem, 9vw, 8rem);
  --container-px: clamp(1.25rem, 5vw, 2rem);
  --max-width:    1100px;

  /* --- Radius --- */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 4px oklch(0 0 0 / 0.25);
  --shadow-md: 0 4px 20px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 12px 48px oklch(0 0 0 / 0.45);

  /* --- Easing curves (Emil / animations.dev) --- */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);        /* strong ease-out for entries */
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);       /* strong ease-in-out for on-screen movement */
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);        /* iOS-like for drawers / banners */
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Kicker — rare, used only in hero and CTA section */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.section { padding-block: var(--section-py); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  min-height: 44px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.18s var(--ease-out), color 0.18s, box-shadow 0.2s var(--ease-out), border-color 0.18s, transform 0.12s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  border: 1.5px solid transparent;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
}
.btn:active { transform: scale(0.97); transition-duration: 0.08s; }

/* Primary: Signalrot, weisser Text */
.btn-primary {
  background: var(--red-btn);
  color: var(--ink);
  border-color: var(--red-btn);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: 0 4px 18px oklch(0.73 0.12 27 / 0.35);
  }
}

/* Outline: white border on dark bg */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: oklch(1 0 0 / 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    border-color: oklch(1 0 0 / 0.75);
    background: oklch(1 0 0 / 0.05);
  }
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--wa);
  color: var(--ink);
  border-color: var(--wa);
}
@media (hover: hover) and (pointer: fine) {
  .btn-whatsapp:hover {
    background: oklch(0.62 0.18 148);
    box-shadow: 0 4px 16px oklch(0.72 0.18 148 / 0.4);
  }
}

.btn-lg { padding: 1.0625rem 2.25rem; font-size: var(--text-base); }

/* ============================================================
   IMAGE / LOGO PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: var(--surface-1);
  border: 1px dashed var(--surface-3);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--ink-muted);
  font-size: var(--text-xs);
  font-weight: 500;
  text-align: center;
  padding: 1.5rem;
  min-height: 200px;
}
.img-placeholder .ph-icon { font-size: 2rem; opacity: 0.3; }
.img-placeholder .ph-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.625rem;
  color: var(--ink-muted);
  max-width: 150px;
  line-height: 1.5;
}

/* Light-section variant */
.img-placeholder-lt {
  background: var(--surface-lt-2);
  border-color: var(--border-lt);
  color: var(--ink-muted-lt);
}
.img-placeholder-lt .ph-icon,
.img-placeholder-lt .ph-label { color: var(--ink-muted-lt); }

.logo-placeholder {
  height: 42px;
  padding: 0 1.125rem;
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: opacity 0.2s;
  white-space: nowrap;
  opacity: 0.55;
}
@media (hover: hover) and (pointer: fine) {
  .logo-placeholder:hover { opacity: 1; }
}

/* ============================================================
   CONSENT BANNER
   ============================================================ */
.consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: oklch(0.12 0 0);
  color: var(--ink);
  padding: 1rem var(--container-px);
  box-shadow: 0 -4px 24px oklch(0 0 0 / 0.5);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-dark);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-drawer);
}
.consent-banner.active {
  display: flex;
  transform: translateY(0);
}
@starting-style {
  .consent-banner.active { transform: translateY(100%); }
}

.consent-text {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  flex: 1;
  min-width: 200px;
  margin: 0;
  line-height: 1.55;
}
.consent-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.consent-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

.consent-btn-accept {
  background: var(--red-btn);
  color: var(--ink);
  border: none;
  padding: 0.5rem 1.25rem;
  min-height: 44px;
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.18s;
}
.consent-btn-accept:active { opacity: 0.85; }
@media (hover: hover) and (pointer: fine) {
  .consent-btn-accept:hover { background: var(--gold-dark); }
}

.consent-btn-decline {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid var(--border-dark);
  padding: 0.5rem 1.25rem;
  min-height: 44px;
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.18s, border-color 0.18s;
}
.consent-btn-decline:active { opacity: 0.7; }
@media (hover: hover) and (pointer: fine) {
  .consent-btn-decline:hover { color: var(--ink); border-color: var(--surface-3); }
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--gold); }

.header-cta { display: none; }
@media (min-width: 580px) {
  .header-cta { display: inline-flex; padding: 0.5625rem 1.375rem; font-size: var(--text-sm); min-height: 44px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg);
  color: var(--ink);
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

/* Consent banner hide animation */
.consent-banner.hiding {
  transform: translateY(100%);
}

/* Noise texture — above glow layer for grain-on-light effect */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.6;
}

/* Thin gold baseline divider */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, oklch(0.73 0.12 27 / 0.4), transparent);
}

/* ============================================================
   HERO — ANIMATED BACKGROUND GLOWS
   4 GPU-accelerated layers — different speeds, directions, radii
   prefers-reduced-motion: animations disabled
   ============================================================ */
.hero-glows {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Gold orb — dominant, top-right, bleeds INTO viewport */
.hg-gold {
  width: clamp(600px, 90vw, 1100px);
  height: clamp(500px, 75vw, 900px);
  top: -15%;
  right: -8%;
  background: radial-gradient(ellipse at 38% 36%,
    oklch(0.68 0.14 27 / 0.52) 0%,
    oklch(0.58 0.12 27 / 0.28) 30%,
    oklch(0.48 0.12 27 / 0.10) 55%,
    transparent 72%);
  filter: blur(48px);
  animation: hg-drift-gold 26s ease-in-out infinite;
}

/* Petrol orb — bottom-left, rich deep teal */
.hg-petrol {
  width: clamp(500px, 75vw, 960px);
  height: clamp(420px, 65vw, 800px);
  bottom: -18%;
  left: -10%;
  background: radial-gradient(ellipse at 55% 50%,
    oklch(0.36 0.11 27 / 0.55) 0%,
    oklch(0.26 0.11 27 / 0.28) 40%,
    oklch(0.18 0.11 27 / 0.08) 62%,
    transparent 75%);
  filter: blur(60px);
  animation: hg-drift-petrol 34s ease-in-out infinite;
}

/* Warm centre accent — visible mid-screen */
.hg-accent {
  width: clamp(280px, 40vw, 560px);
  height: clamp(240px, 36vw, 480px);
  top: 25%;
  left: 20%;
  background: radial-gradient(ellipse at center,
    oklch(0.62 0.12 27 / 0.22) 0%,
    oklch(0.52 0.12 27 / 0.08) 50%,
    transparent 70%);
  filter: blur(40px);
  animation: hg-drift-accent 20s ease-in-out infinite;
  animation-delay: -6s;
}

/* Diagonal gold shimmer — sweeps across once every 18s */
.hg-shimmer {
  width: 200%;
  height: 3px;
  top: 42%;
  left: -50%;
  background: linear-gradient(90deg,
    transparent 0%,
    oklch(0.73 0.12 27 / 0.06) 35%,
    oklch(0.73 0.12 27 / 0.18) 50%,
    oklch(0.73 0.12 27 / 0.06) 65%,
    transparent 100%);
  filter: blur(22px);
  border-radius: 0;
  animation: hg-shimmer 22s linear infinite;
}

@keyframes hg-drift-gold {
  0%   { transform: translate(0, 0) scale(1); }
  22%  { transform: translate(-42px, 24px) scale(1.07); }
  47%  { transform: translate(-16px, 48px) scale(0.95); }
  72%  { transform: translate(30px, 16px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes hg-drift-petrol {
  0%   { transform: translate(0, 0) scale(1); }
  32%  { transform: translate(38px, -32px) scale(1.08); }
  64%  { transform: translate(-22px, -46px) scale(0.93); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes hg-drift-accent {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%       { transform: translate(28px, -28px) scale(1.25); opacity: 1; }
}

@keyframes hg-shimmer {
  0%   { transform: translateX(-5%) rotate(-10deg); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(60%) rotate(-10deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none !important; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero h1 {
  color: var(--ink);
  margin-bottom: 1.75rem;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.hero h1 .gold { color: var(--gold); }

/* Rotating service word — smaller than headline so long names fit */
.hero-rotate {
  display: block;
  font-size: clamp(1.75rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
  will-change: transform, opacity;
}
.hero-rotate.exiting {
  opacity: 0;
  transform: translateY(-0.22em);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.hero-rotate.entering {
  animation: hero-rotate-in 0.45s var(--ease-out) forwards;
}
@keyframes hero-rotate-in {
  from { opacity: 0; transform: translateY(0.28em); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotate { transition: none; will-change: auto; }
  .hero-rotate.entering { animation: none; opacity: 1; }
}

.hero-subline {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  margin-bottom: 2.75rem;
  max-width: 540px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0;
}

/* Trust strip in hero */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  max-width: 600px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  font-weight: 500;
}
.hero-trust-item strong {
  color: var(--ink);
  font-weight: 700;
}

@media (min-width: 900px) {
  .hero-content { max-width: 68%; }
}

/* ============================================================
   STATS SECTION — Animierte Kennzahlen (replaces proof-strip)
   ============================================================ */
.stats-section {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

/* Marquee strip — auf Content begrenzt, edler Border, Rand-Fade */
.marquee-wrap {
  position: relative;
  border: 1px solid oklch(0.73 0.12 27 / 0.28);
  border-radius: var(--r-lg);
  background: oklch(0.09 0 0);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 oklch(0.98 0 0 / 0.05),
    0 6px 22px oklch(0 0 0 / 0.30);
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}
.stats-marquee {
  display: flex;
  overflow: hidden;
  padding-block: 0.85rem;
  user-select: none;
  -webkit-user-select: none;
  /* beide Ränder laufen transparent aus */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.stats-marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
  animation: marquee-scroll 24s linear infinite;
  will-change: transform;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .stats-marquee-track { animation: none; }
  .stats-marquee { overflow: hidden; }
}
.smt-word {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.smt-dot {
  color: oklch(0.73 0.12 27 / 0.32);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Stats grid: 2-col mobile, 4-col desktop */
.stats-section > .container { padding-block: clamp(3rem, 6vw, 5rem); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

/* Stat card */
.stat-card {
  --mx: 50%; --my: 50%;
  --glow-h: 27;
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.375rem, 3vw, 2rem) clamp(1.125rem, 2.5vw, 1.75rem);
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease-out),
    transform    0.22s var(--ease-out),
    box-shadow   0.3s var(--ease-out);
  cursor: default;
}
/* Pro Karte eigener Farbton */
.stat-card:nth-child(4n+1) { --glow-h: 18; }   /* Rot */
.stat-card:nth-child(4n+2) { --glow-h: 27; }   /* Rot */
.stat-card:nth-child(4n+3) { --glow-h: 33; }   /* Rot-Orange */
.stat-card:nth-child(4n+4) { --glow-h: 22; }   /* Rot */

@media (hover: hover) and (pointer: fine) {
  .stat-card:hover {
    border-color: oklch(0.70 0.14 var(--glow-h) / 0.65);
    transform: translateY(-5px);
    box-shadow:
      0 12px 44px oklch(0.55 0.12 var(--glow-h) / 0.18),
      0 10px 30px oklch(0 0 0 / 0.28),
      0 0 0 1px oklch(0.70 0.14 var(--glow-h) / 0.10) inset;
  }
  .stat-card:hover .stat-num { color: oklch(0.82 0.14 var(--glow-h)); }
}
.stat-card .stat-num { transition: color 0.3s var(--ease-out); }

/* Cursor-folgender Farb-Glow */
.stat-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx) var(--my),
    oklch(0.72 0.15 var(--glow-h) / 0.28) 0%,
    oklch(0.55 0.11 var(--glow-h) / 0.08) 40%,
    transparent 64%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.stat-num-wrap, .stat-label, .stat-bar { position: relative; z-index: 1; }
@media (hover: hover) and (pointer: fine) {
  .stat-card:hover .stat-glow { opacity: 1; }
}

/* Number + suffix */
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.06rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: 'tnum';
}
.stat-sfx {
  font-size: clamp(1.25rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: oklch(0.73 0.12 27 / 0.60);
  line-height: 1;
}

/* Label */
.stat-label {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.48;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Bottom accent bar — grows left→right when card is visible */
.stat-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, oklch(0.74 0.14 var(--glow-h)), oklch(0.74 0.14 var(--glow-h) / 0.15));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.9s var(--ease-out);
  transition-delay: calc(var(--stagger, 0ms) + 80ms);
  pointer-events: none;
}
.stat-card.visible .stat-bar { transform: scaleX(1); }

/* Logos area */
.stats-logos-area {
  border-top: 1px solid var(--border-dark);
  padding-top: 2.5rem;
}

.proof-logos-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* ============================================================
   SERVICE CHIPS — interactive filter for solution section
   ============================================================ */
.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  min-height: 44px;
  background: var(--surface-1);
  border: 1.5px solid var(--border-dark);
  border-radius: 100px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background     0.18s var(--ease-out),
    border-color   0.18s var(--ease-out),
    color          0.18s,
    transform      0.1s  var(--ease-out);
  white-space: nowrap;
  user-select: none;
}
.svc-chip svg { flex-shrink: 0; transition: stroke 0.18s; }
.svc-chip:active { transform: scale(0.95); transition-duration: 0.06s; }

@media (hover: hover) and (pointer: fine) {
  .svc-chip:hover:not(.active) {
    border-color: oklch(0.73 0.12 27 / 0.35);
    color: var(--ink);
    background: var(--surface-2);
  }
}

.svc-chip.active {
  background: oklch(0.73 0.12 27 / 0.11);
  border-color: oklch(0.73 0.12 27 / 0.65);
  color: var(--gold);
}

/* Focused service item: gold glow + lift */
.service-featured.svc-focused,
.service-item.svc-focused {
  border-color: oklch(0.73 0.12 27 / 0.70);
  box-shadow:
    0 0 0 1px oklch(0.73 0.12 27 / 0.12) inset,
    0 6px 28px oklch(0 0 0 / 0.32);
  transform: translateY(-4px);
  transition:
    border-color 0.28s var(--ease-out),
    box-shadow   0.28s var(--ease-out),
    transform    0.28s var(--ease-out),
    opacity      0.25s var(--ease-out);
}

/* Non-focused items: dim when a chip is active */
.service-layout.has-focus .service-featured:not(.svc-focused),
.service-layout.has-focus .service-item:not(.svc-focused) {
  opacity: 0.38;
  transition: opacity 0.28s var(--ease-out);
}
.service-layout.has-focus .service-featured.svc-focused,
.service-layout.has-focus .service-item.svc-focused {
  opacity: 1;
}

/* ============================================================
   PAIN SECTION (dark)
   ============================================================ */
.pain-section {
  background: var(--bg);
  padding-block: var(--section-py);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.pain-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse 80% 80% at 100% 50%, oklch(0.22 0.11 27 / 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pain-inner {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.pain-inner h2 {
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.pain-inner > p {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.75;
}

.pain-checks {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2.5rem;
  text-align: left;
}
.pain-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.55;
}
.pain-check-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: oklch(0.65 0.16 25);
}

/* ============================================================
   SOLUTION SECTION (dark)
   ============================================================ */
.solution-section {
  background: var(--bg);
  padding-block: var(--section-py);
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 55%; height: 80%;
  background: radial-gradient(ellipse at center, oklch(0.22 0.11 27 / 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.solution-header {
  max-width: 580px;
  margin-bottom: 3.5rem;
}
.solution-header h2 { color: var(--ink); margin-bottom: 1rem; }
.solution-header p  { font-size: var(--text-lg); color: var(--ink-muted); }

/* Asymmetric service layout — breaks identical-card-grid pattern */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .service-layout {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }
  .service-featured { grid-row: 1 / 3; }
}

/* Featured card (Fahrzeug) — spans full left column */
.service-featured {
  background-color: var(--bg);
  background-image:
    linear-gradient(to top,
      oklch(0.1 0 0 / 0.97) 0%,
      oklch(0.12 0 0 / 0.82) 32%,
      oklch(0.14 0 0 / 0.46) 60%,
      oklch(0.16 0 0 / 0.12) 100%),
    url('img/fahrzeug-beschriftung.png');
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  transition: border-color 0.25s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-featured:hover { border-color: oklch(0.73 0.12 27 / 0.45); }
}
.service-featured::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70%; height: 80%;
  background: radial-gradient(ellipse at center, oklch(0.55 0.12 27 / 0.15) 0%, transparent 65%);
  pointer-events: none;
}

/* Precision-Crosshair — subtle craft mark, top-right corner */
.service-featured::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 260px; height: 260px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg' fill='none'%3E%3Ccircle cx='100' cy='100' r='88' stroke='%23d3302c' stroke-width='0.7'/%3E%3Ccircle cx='100' cy='100' r='55' stroke='%23d3302c' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='22' stroke='%23d3302c' stroke-width='0.5'/%3E%3Cline x1='100' y1='0' x2='100' y2='200' stroke='%23d3302c' stroke-width='0.4'/%3E%3Cline x1='0' y1='100' x2='200' y2='100' stroke='%23d3302c' stroke-width='0.4'/%3E%3Ccircle cx='100' cy='100' r='2.5' fill='%23d3302c'/%3E%3Cline x1='100' y1='0' x2='100' y2='18' stroke='%23d3302c' stroke-width='1.8'/%3E%3Cline x1='100' y1='182' x2='100' y2='200' stroke='%23d3302c' stroke-width='1.8'/%3E%3Cline x1='0' y1='100' x2='18' y2='100' stroke='%23d3302c' stroke-width='1.8'/%3E%3Cline x1='182' y1='100' x2='200' y2='100' stroke='%23d3302c' stroke-width='1.8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.service-featured-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.service-featured h3 {
  font-size: var(--text-2xl);
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.service-featured p {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 360px;
  margin: 0;
}

/* "Mehr erfahren" Link auf Cards mit eigener Service-Seite */
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: gap 0.18s var(--ease-out), color 0.18s;
}
.service-more svg {
  width: 15px; height: 15px;
  transition: transform 0.18s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-featured:hover .service-more,
  .service-item:hover .service-more { color: var(--gold-dark); }
  .service-featured:hover .service-more svg,
  .service-item:hover .service-more svg { transform: translateX(3px); }
}
.service-item .service-more { margin-top: 0.625rem; font-size: var(--text-xs); }

/* Standard service items — right column stacked */
.service-item {
  background: var(--surface-1);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .service-item:hover {
    border-color: oklch(0.73 0.12 27 / 0.4);
    background: var(--surface-2);
  }
}

.service-item-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-item-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item-body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.service-item-body p {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

/* Fünfter Dienst: volle Breite */
.service-item-full {
  grid-column: 1 / -1;
}

/* ============================================================
   DESIRE SECTION (dark, cinematic)
   ============================================================ */
.desire-section {
  background: var(--bg);
  color: var(--ink);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.desire-section::before {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 65%; height: 90%;
  background: radial-gradient(ellipse at center, oklch(0.55 0.12 27 / 0.13) 0%, transparent 65%);
  pointer-events: none;
}

/* Side-by-side layout: text left, photo right */
.desire-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 768px) {
  .desire-layout { grid-template-columns: 1fr 1.1fr; }
}

.desire-inner {
  position: relative;
  overflow: hidden;
}

/* Typografische Hintergrund-Dekoration — "25" als Poster-Element */
.desire-inner::before {
  content: '25';
  position: absolute;
  right: -5%;
  top: -10%;
  font-family: var(--font);
  font-size: clamp(180px, 28vw, 340px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px oklch(0.73 0.12 27 / 0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.desire-inner h2 { color: var(--ink); margin-bottom: 2rem; position: relative; z-index: 1; }
.desire-inner h2 .gold { color: var(--gold); }

.desire-body { display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 1; }
.desire-body p { color: var(--ink-muted); font-size: var(--text-lg); line-height: 1.75; }

/* Photo column */
.desire-visual {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
}
.desire-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 1px solid oklch(0.73 0.12 27 / 0.18);
  pointer-events: none;
  z-index: 2;
}
.desire-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md);
  transition: transform 0.6s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .desire-visual:hover .desire-photo { transform: scale(1.03); }
}

/* ============================================================
   TRUST SECTION (dark)
   ============================================================ */
.trust-section {
  background: var(--surface-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at center, oklch(0.55 0.12 27 / 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.trust-header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.trust-header h2 { color: var(--ink); margin-bottom: 1rem; }
.trust-header p  { color: var(--ink-muted); font-size: var(--text-lg); }

.trust-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .trust-pillars { grid-template-columns: repeat(3, 1fr); } }

.trust-pillar {
  border-top: 2px solid var(--border-dark);
  padding-top: 1.5rem;
}
.trust-pillar-gold-bar {
  width: 32px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.trust-pillar h3 {
  font-size: var(--text-xl);
  color: var(--ink);
  margin-bottom: 0.625rem;
  font-weight: 800;
}
.trust-pillar p { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.7; }

.trust-divider {
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 3.5rem;
}

.testimonials-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial-card {
  background: var(--surface-1);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 1.75rem;
}
.testimonial-text {
  font-size: var(--text-base);
  color: var(--ink);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px dashed var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5625rem;
  color: var(--ink-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: var(--text-sm); color: var(--ink); }
.testimonial-role { font-size: 0.8125rem; color: var(--ink-muted); }

/* ============================================================
   ABOUT / EXCLUSIVITY (dark tinted)
   ============================================================ */
.about-section {
  background: var(--surface-1);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding-block: var(--section-py);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .about-inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-text h2 { color: var(--ink); margin-bottom: 1.25rem; }
.about-text p  { font-size: var(--text-lg); color: var(--ink-muted); line-height: 1.75; }

.about-highlights {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-highlight-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  font-weight: 500;
}
.about-highlight-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.about-locations { display: flex; flex-direction: column; gap: 1.25rem; }

.location-card {
  background: var(--surface-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.location-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: oklch(0.73 0.12 27 / 0.12);
  border-radius: var(--r-sm);
  padding: 0.2rem 0.625rem;
  margin-bottom: 0.75rem;
}
.location-card h4 { color: var(--ink); margin-bottom: 0.375rem; }
.location-card p  { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   FAQ SECTION (dark)
   ============================================================ */
.faq-section {
  background: var(--bg);
  padding-block: var(--section-py);
  border-top: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: 45%; height: 80%;
  background: radial-gradient(ellipse at center, oklch(0.22 0.11 27 / 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.faq-header {
  max-width: 540px;
  margin-bottom: 3rem;
}
.faq-header h2 { color: var(--ink); margin-bottom: 0.75rem; }
.faq-header p  { color: var(--ink-muted); font-size: var(--text-base); }

.faq-list { max-width: 680px; }

.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-item:first-child { border-top: 1px solid var(--border-dark); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.375rem 0;
  cursor: pointer;
  touch-action: manipulation;
  list-style: none;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
@media (hover: hover) and (pointer: fine) {
  .faq-item summary:hover { color: var(--gold); }
}

.faq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.25s;
  color: var(--ink-muted);
}
.faq-item[open] .faq-icon {
  border-color: var(--red-btn);
  background: var(--red-btn);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 1.375rem;
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 600px;
  /* Fade in when details opens */
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
details[open] .faq-answer {
  opacity: 1;
  transform: none;
}
@starting-style {
  details[open] .faq-answer {
    opacity: 0;
    transform: translateY(-6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ACTION / FORM SECTION (dark)
   ============================================================ */
.action-section {
  background: var(--bg);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.action-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 60%;
  background: radial-gradient(ellipse 90% 80% at 100% 0%, oklch(0.55 0.12 27 / 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.action-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) { .action-inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.action-text h2 { color: var(--ink); margin-bottom: 1.25rem; }
.action-text h2 .gold { color: var(--gold); }
.action-text p { color: var(--ink-muted); font-size: var(--text-lg); line-height: 1.75; margin-bottom: 1.5rem; }

.action-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}
.action-contact-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.contact-group { margin-bottom: 1.5rem; }
.contact-group:last-child { margin-bottom: 0; }
.contact-location-name {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.5 0 0);
  margin-bottom: 0.375rem;
}
.contact-item { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.65; }
.contact-item a { color: oklch(0.80 0.000 0); transition: color 0.18s; }
.contact-item a:hover { color: var(--gold); }

/* WhatsApp CTA block */
.whatsapp-cta-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: oklch(0.72 0.18 148 / 0.10);
  border: 1px solid oklch(0.72 0.18 148 / 0.25);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  min-height: 44px;
  margin-top: 2rem;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.12s var(--ease-out);
  cursor: pointer;
  touch-action: manipulation;
}
@media (hover: hover) and (pointer: fine) {
  .whatsapp-cta-block:hover {
    background: oklch(0.72 0.18 148 / 0.18);
    border-color: oklch(0.72 0.18 148 / 0.45);
    transform: translateY(-1px);
  }
}
.whatsapp-cta-block:active { transform: scale(0.98); }
.wa-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.wa-text-title { font-weight: 700; font-size: var(--text-base); }
.wa-text-sub   { font-size: var(--text-sm); color: var(--ink-muted); }

/* ---- FORM ---- */
.contact-form-wrap {
  background: var(--surface-1);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border-dark);
}

.form-title    { font-size: var(--text-2xl); color: var(--ink); margin-bottom: 0.375rem; font-weight: 800; }
.form-subtitle { font-size: var(--text-sm); color: var(--ink-muted); margin-bottom: 1.75rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 440px) { .form-row { grid-template-columns: 1fr 1fr; } }

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

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.form-label .req { color: var(--gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--surface-2);
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px oklch(0.73 0.12 27 / 0.14);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-muted); opacity: 1; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath stroke='%23a0a8b0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 18px;
  padding-right: 2.75rem;
  cursor: pointer;
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: 1.25rem;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

/* Schlankes Formular: optional-Label + Datenschutz-Hinweis statt Pflicht-Häkchen */
.form-optional { color: var(--ink-muted); font-weight: 500; }
.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  line-height: 1.5;
  margin-top: 1rem;
  text-align: center;
}
.form-disclaimer a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   LEAD-SEGMENT-PICKER (Schritt 1: anklicken) + 2-Schritt-Reveal
   ============================================================ */
.seg-picker { border: none; padding: 0; margin: 0 0 1.5rem; min-inline-size: 0; }
.seg-picker legend {
  font-size: var(--text-sm); font-weight: 700; color: var(--ink);
  margin-bottom: 0.875rem; padding: 0;
}
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.seg-card {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem;
  padding: 0.95rem 1rem;
  min-height: 44px;
  background: var(--surface-2);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.18s var(--ease-out), background 0.18s, transform 0.1s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.seg-card input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.seg-card:active { transform: scale(0.98); }
@media (hover: hover) and (pointer: fine) {
  .seg-card:hover { border-color: oklch(0.73 0.12 27 / 0.40); background: oklch(0.16 0 0); }
}
.seg-ico {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: oklch(0.73 0.12 27 / 0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.seg-ico svg { width: 18px; height: 18px; color: var(--gold); }
.seg-label { font-size: var(--text-sm); font-weight: 600; color: var(--ink); line-height: 1.25; }

/* ausgewählt */
.seg-card:has(input:checked) { border-color: var(--gold); background: oklch(0.73 0.12 27 / 0.12); }
.seg-card:has(input:checked) .seg-ico { background: var(--red-btn); }
.seg-card:has(input:checked) .seg-ico svg { color: var(--ink); }
.seg-card:has(input:checked)::after {
  content: '✓';
  position: absolute; top: 0.45rem; right: 0.65rem;
  color: var(--gold); font-weight: 800; font-size: var(--text-sm);
}
.seg-card:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }

/* 2-Schritt-Reveal: Schritt 2 erst nach Auswahl (nur wenn JS aktiv) */
#contact-form.js-steps .form-step2 { display: none; }
#contact-form.js-steps.has-segment .form-step2 { display: block; animation: step2-in 0.42s var(--ease-out); }
@keyframes step2-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  #contact-form.js-steps.has-segment .form-step2 { animation: none; }
}

.form-submit-row { margin-top: 1.375rem; }
.form-submit-row .btn { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: var(--text-base); }

.btn-loading { display: none; }

.form-success {
  display: none;
  background: oklch(0.72 0.18 148 / 0.06);
  border: 1px solid oklch(0.72 0.18 148 / 0.2);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.form-success.active {
  display: block;
  opacity: 1;
  transform: none;
}
@starting-style {
  .form-success.active { opacity: 0; transform: translateY(10px); }
}
.form-success-icon  { font-size: 2.5rem; margin-bottom: 0.75rem; line-height: 1; }
.form-success h3    { font-size: var(--text-xl); color: var(--ink); margin-bottom: 0.5rem; }
.form-success p     { font-size: var(--text-sm); color: var(--ink-muted); margin: 0; }

.form-error-msg {
  display: none;
  background: oklch(0.55 0.15 25 / 0.08);
  border: 1px solid oklch(0.55 0.15 25 / 0.2);
  border-radius: var(--r-sm);
  padding: 0.875rem 1.125rem;
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: oklch(0.45 0.14 25);
}
.form-error-msg.active { display: block; }

/* ============================================================
   STICKY WHATSAPP (Mobile)
   ============================================================ */
.sticky-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.25rem;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px oklch(0.72 0.18 148 / 0.45);
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  color: var(--ink);
  touch-action: manipulation;
}
.sticky-wa svg   { width: 24px; height: 24px; fill: white; }
.sticky-wa:active { transform: scale(0.94); }
@media (hover: hover) and (pointer: fine) {
  .sticky-wa:hover { transform: scale(1.09); box-shadow: 0 6px 26px oklch(0.72 0.18 148 / 0.55); }
}
@media (min-width: 900px) { .sticky-wa { display: none; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border-dark);
  color: var(--ink-muted);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 580px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .site-logo { font-size: var(--text-lg); margin-bottom: 0.75rem; }
.footer-brand p { font-size: var(--text-sm); line-height: 1.65; max-width: 220px; }

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.footer-col p  { font-size: var(--text-sm); line-height: 1.7; color: var(--ink-muted); }
.footer-col a  { font-size: var(--text-sm); color: var(--ink-muted); display: block; margin-bottom: 0.375rem; transition: color 0.18s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: var(--text-xs);
  color: oklch(0.4 0 0);
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: oklch(0.4 0 0); transition: color 0.18s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   SCROLL REVEAL — Premium: fade + lift + subtle scale
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.984);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--stagger, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO ENTRANCE — clip-path word reveal for h1, stagger rest
   ============================================================ */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero elements: staggered fade+lift — kicker first, then h1 big lift, then rest */
@keyframes hero-lift {
  from { opacity: 0; transform: translateY(48px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.hero-content .kicker      { animation: hero-in   0.5s  var(--ease-out) both; animation-delay: 0.04s; }
.hero-content h1            { animation: hero-lift 0.75s var(--ease-out) both; animation-delay: 0.16s; }
.hero-content .hero-subline { animation: hero-in   0.55s var(--ease-out) both; animation-delay: 0.44s; }
.hero-content .hero-ctas   { animation: hero-in   0.5s  var(--ease-out) both; animation-delay: 0.58s; }

/* Subtle gold pulse on static accent words — NOT on the rotator */
@keyframes gold-breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.78; }
}
.hero h1 .gold:not(.hero-rotate) {
  animation: gold-breathe 4s ease-in-out infinite;
  animation-delay: 1.8s;
}
/* Rotator uses its own enter/exit keyframes — never gold-breathe */
.hero h1 .hero-rotate { animation: none; }
.hero h1 .hero-rotate.entering {
  animation: hero-rotate-in 0.45s var(--ease-out) forwards;
}

/* Gold bar entrance — scales in from left */
.trust-pillar-gold-bar {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s var(--ease-out);
  transition-delay: var(--stagger, 0ms);
}
.trust-pillar.visible .trust-pillar-gold-bar { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .hero-content .kicker,
  .hero-content h1,
  .hero-content .hero-subline,
  .hero-content .hero-ctas { animation: none; opacity: 1; }
  .trust-pillar-gold-bar { transform: none; transition: none; }
}
