/* =========================================================
   KI ASE — Brand Guide v1.0
   Premium · Minimalistisch · Monochrom · Apple-ruhig
   ========================================================= */

:root {
  /* Farbpalette */
  --black:       #0E0E10;   /* Midnight Black — Hintergrund, Nav, Footer, Hero */
  --black-2:     #141417;   /* leicht erhöhte Flächen / Cards */
  --black-3:     #191A1D;   /* Inputs / Hover-Flächen */
  --ivory:       #F7F7F5;   /* Überschriften, Logo, Icons */
  --graphite:    #9AA0AA;   /* Fließtext, sekundäre Texte — auf Lesbarkeit angehoben (WCAG AA) */
  --graphite-dim: #5F6368;  /* nur für sehr dezente Deko-Elemente */
  --champagne:   #C9C6BF;   /* Accent — Hover, Trennlinien, Rahmen (nie große Fläche) */

  /* Linien / Rahmen (Champagner mit niedriger Deckkraft) */
  --line:        rgba(201, 198, 191, 0.14);
  --line-2:      rgba(201, 198, 191, 0.26);
  --ivory-soft:  rgba(247, 247, 245, 0.72);

  /* Radius */
  --r-btn:  12px;
  --r-card: 16px;
  --r-img:  18px;

  /* Layout */
  --maxw: 1200px;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ivory);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}

/* Hintergrund bewusst absolut gleichmäßig (#0E0E10) — kein Lichtschein,
   damit das Hero-Video-Element exakt mit der Seite verschmilzt. */

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; margin: 0; }

.eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 600;
  font-size: .74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 22px;
}
.accent { color: var(--champagne); }
.muted  { color: var(--graphite); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --pad: 15px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad); border-radius: var(--r-btn); border: 1px solid transparent;
  font-family: var(--display); font-weight: 600; font-size: .82rem;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--sm { --pad: 11px 18px; font-size: .74rem; }
.btn--lg { --pad: 17px 30px; font-size: .84rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--ivory); color: var(--black); }
.btn--primary:hover { background: var(--champagne); }

.btn--secondary { background: transparent; color: var(--ivory); border-color: var(--line-2); }
.btn--secondary:hover { border-color: var(--champagne); color: var(--champagne); }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 22px 0; transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 13px 0; background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; }
.brand img { height: 64px; width: auto; transition: height .4s var(--ease);
  filter: drop-shadow(0 2px 14px rgba(201,198,191,.14)); }
.nav.scrolled .brand img { height: 50px; }

.nav__links { display: flex; gap: 38px; }
.nav__links a {
  font-family: var(--display); font-weight: 500; font-size: .9rem; color: var(--graphite);
  position: relative; transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 1px; width: 0;
  background: var(--champagne); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { width: 100%; }

.nav__burger { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 26px; height: 1.5px; background: var(--ivory); transition: .35s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: 200px 0 120px; }
.hero__inner { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  border: 1px solid var(--line-2); border-radius: 100px;
  font-family: var(--display); font-size: .76rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ivory-soft); margin-bottom: 30px;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); }

.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.05; letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.hero__sub { color: var(--graphite); font-size: clamp(1.02rem, 1.4vw, 1.18rem); max-width: 34em; margin: 0 0 38px; }
.hero__sub strong { color: var(--ivory); font-weight: 500; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__contacts { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px;
  border: 1px solid var(--line); border-radius: 100px; font-size: .85rem; font-weight: 500;
  color: var(--graphite); transition: color .3s var(--ease), border-color .3s var(--ease);
}
.chip svg { width: 16px; height: 16px; }
.chip:hover { color: var(--ivory); border-color: var(--champagne); }

/* Hero — bewegliches Chrom-/Flüssigmetall-Element */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 480px; }
.chrome {
  position: relative; width: min(100%, 520px); aspect-ratio: 1; display: grid; place-items: center;
  /* Platte in exakt der Seitenfarbe direkt hinter dem Video (Referenz für den Blend) */
  background: var(--black);
  /* Ränder weich in die Seite ausblenden → keine sichtbare Kante */
  -webkit-mask: radial-gradient(circle at 50% 48%, #000 58%, transparent 82%);
  mask: radial-gradient(circle at 50% 48%, #000 58%, transparent 82%);
}
.chrome__video {
  width: 100%; height: 100%; object-fit: contain;
  /* Schwarz(0,0,0) vs. Platte(#0E0E10) → lighten liefert exakt die Seitenfarbe;
     helle Chrom-Flächen bleiben erhalten. Unabhängig vom Stacking-Context. */
  mix-blend-mode: lighten;
}

/* Hero Device Mockup (monochrom, ruhig) — jetzt in der Vorteil-Vorschau */
.device {
  border: 1px solid var(--line-2); border-radius: var(--r-img); overflow: hidden;
  background: var(--black-2); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8);
}
.device__bar { display: flex; align-items: center; gap: 7px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.device__bar .d { width: 9px; height: 9px; border-radius: 50%; background: #2a2b2f; }
.device__url { margin-left: 12px; font-size: .72rem; color: var(--graphite); letter-spacing: .04em; }
.device__screen { padding: 28px; }
.sk { border-radius: 6px; background: rgba(247,247,245,.08); }
.sk-badge { width: 88px; height: 20px; border-radius: 100px; border: 1px solid var(--line-2); background: none; margin-bottom: 22px; }
.sk-h { height: 20px; background: rgba(247,247,245,.22); margin-bottom: 11px; }
.sk-h.w1 { width: 82%; } .sk-h.w2 { width: 58%; }
.sk-p { height: 9px; margin-bottom: 8px; } .sk-p.w1 { width: 100%; } .sk-p.w2 { width: 66%; }
.sk-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.sk-card { height: 74px; border-radius: 10px; border: 1px solid var(--line); }
.sk-btn { width: 128px; height: 40px; border-radius: var(--r-btn); background: var(--ivory); margin-top: 22px; }

.hero__float {
  position: absolute; right: -14px; bottom: -26px; display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: 14px; border: 1px solid var(--line-2);
  background: rgba(14,14,16,.86); backdrop-filter: blur(14px);
}
.hero__float .num { font-family: var(--display); font-weight: 700; font-size: 1.7rem; line-height: 1; }
.hero__float .lbl { font-size: .72rem; color: var(--graphite); line-height: 1.35; }

/* =========================================================
   Trust bar
   ========================================================= */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar__inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 30px;
  padding: 26px 0;
}
.trustbar span {
  font-family: var(--display); font-weight: 500; font-size: .82rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--graphite);
}
.trustbar .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--champagne); opacity: .5; }

/* =========================================================
   Sections
   ========================================================= */
.section { padding: 120px 0; }
.section__head { max-width: 640px; margin: 0 auto 70px; text-align: center; }
.section__title { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.12; margin-bottom: 20px; }
.section__lead { color: var(--graphite); font-size: 1.08rem; margin: 0; }

/* Card base */
.card {
  padding: 32px; border-radius: var(--r-card); background: var(--black-2);
  border: 1px solid var(--line);
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 12px;
  border: 1px solid var(--line-2); color: var(--ivory); margin-bottom: 22px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--graphite); font-size: .95rem; margin: 0; }

/* =========================================================
   Vorteil
   ========================================================= */
.vorteil__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.review { position: relative; }
.review .device__screen { padding: 24px; }
.review-tag {
  display: inline-block; font-family: var(--display); font-size: .68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--champagne);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 5px 13px; margin-bottom: 18px;
}
.review__approve {
  position: absolute; right: -12px; bottom: -20px; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 100px; background: var(--ivory); color: var(--black);
  font-family: var(--display); font-weight: 600; font-size: .78rem; letter-spacing: 0.04em;
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.9);
}
.review__approve svg { width: 15px; height: 15px; }

.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================================
   Leistungen
   ========================================================= */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.service { padding: 34px 32px; }
.service .card__icon { margin-bottom: 24px; }
.service h3 { font-size: 1.18rem; margin-bottom: 11px; }
.service p { color: var(--graphite); margin: 0; font-size: .96rem; }

.price {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center;
  padding: 52px; border-radius: var(--r-card); border: 1px solid var(--line-2); background: var(--black-2);
}
.price__price { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.03em; }
.price__price .small { font-size: 1rem; color: var(--graphite); font-weight: 500; vertical-align: middle; margin-right: 8px; letter-spacing: 0.04em; }
.price__right p { color: var(--graphite); margin: 0 0 24px; }

/* =========================================================
   Ablauf
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 26px; left: 9%; right: 9%; height: 1px;
  background: var(--line); z-index: 0;
}
.step { position: relative; z-index: 1; padding: 32px 22px; text-align: center;
  border: 1px solid var(--line); border-radius: var(--r-card); background: var(--black-2);
  transition: border-color .4s var(--ease), transform .4s var(--ease); }
.step:hover { border-color: var(--line-2); transform: translateY(-4px); }
.step__num {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--ivory); color: var(--black);
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
}
.step h3 { font-size: 1rem; margin-bottom: 9px; }
.step p { color: var(--graphite); font-size: .87rem; margin: 0; }

/* =========================================================
   Kontakt
   ========================================================= */
.kontakt__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.kontakt__copy { position: sticky; top: 120px; }
.kontakt__buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.cbtn {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: var(--r-card);
  border: 1px solid var(--line); transition: border-color .35s var(--ease), transform .35s var(--ease);
  color: var(--ivory);
}
.cbtn:hover { border-color: var(--champagne); transform: translateX(5px); }
.cbtn svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--ivory); }
.cbtn span { display: flex; flex-direction: column; line-height: 1.35; }
.cbtn strong { font-family: var(--display); font-weight: 600; font-size: .98rem; }
.cbtn em { font-style: normal; font-size: .82rem; color: var(--graphite); }

.form { padding: 40px; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--black-2); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--display); font-size: .8rem; font-weight: 500; margin-bottom: 9px; color: var(--ivory-soft); }
.field label .opt { color: var(--graphite); }
.field input, .field textarea {
  width: 100%; padding: 15px 17px; border-radius: var(--r-btn);
  background: var(--black-3); border: 1px solid var(--line); color: var(--ivory);
  font-family: var(--font); font-size: .96rem; resize: vertical;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #4a4d52; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--champagne); background: #1d1e22; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; font-size: .82rem; color: var(--graphite); }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--champagne); flex-shrink: 0; }
.form__note { margin: 16px 0 0; font-size: .88rem; text-align: center; min-height: 1.2em; }
.form__note.ok { color: var(--ivory); } .form__note.err { color: #d98b8b; }

/* =========================================================
   Footer
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: 76px 0 34px; margin-top: 40px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand img { height: 60px; width: auto; margin-bottom: 22px; }
.footer__brand p { color: var(--graphite); font-size: .92rem; margin: 0; max-width: 30em; }
.footer__col h4 { font-family: var(--display); font-size: .74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--graphite); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--ivory-soft); font-size: .92rem; padding: 6px 0; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--champagne); }
.footer__bottom { display: flex; justify-content: space-between; gap: 14px; padding-top: 28px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--graphite); flex-wrap: wrap; }

/* Floating-Kontakt-Gruppe (WhatsApp / Telefon / E-Mail) */
.fab-group {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 18px 40px -10px rgba(0,0,0,.7); }
.fab svg { width: 24px; height: 24px; }
.fab--wa   { background: #25D366; color: #ffffff; }
.fab--tel  { background: #2F6FED; color: #ffffff; }
.fab--mail { background: var(--champagne); color: #0E0E10; }

@media (max-width: 620px) {
  .fab-group { right: 16px; bottom: 16px; gap: 10px; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 22px; height: 22px; }
}

/* =========================================================
   Reveal (Fade + Scale 98→100, Apple-ruhig)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(42px) scale(0.985);
  transition: opacity 1s var(--ease), transform 1.05s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Grid-/Flex-Kinder dürfen unter ihre Inhaltsbreite schrumpfen (verhindert Überlauf) */
.hero__inner > *, .vorteil__grid > *, .kontakt__inner > *,
.services > *, .benefit-cards > *, .steps > *, .price > * { min-width: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 2px;
    padding: 20px 24px; background: rgba(14,14,16,.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line);
  }
  .nav.open .nav__links a { padding: 13px 0; font-size: 1.05rem; color: var(--ivory); }

  .hero { padding-top: 150px; }
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__visual { max-width: 520px; }
  .vorteil__grid, .kontakt__inner { grid-template-columns: 1fr; gap: 56px; }
  .review { order: 2; max-width: 520px; }
  .kontakt__copy { position: static; }
  .services { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .price { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 34px, var(--maxw)); }
  .section { padding: 88px 0; }
  .hero { padding-top: 128px; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero__actions .btn { width: 100%; }
  .benefit-cards, .services, .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 6px; }
  .price { padding: 34px; }
  .form { padding: 26px; }
  .hero__visual { width: 100%; max-width: 460px; }
  .hero__float { right: 4px; bottom: -16px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 44px; }
.faq-item { padding: 24px 0; border-top: 1px solid var(--line); }
.faq-item h3 { font-family: var(--display); font-size: 1.02rem; margin-bottom: 9px; }
.faq-item p { color: var(--graphite); font-size: .93rem; margin: 0; line-height: 1.7; white-space: pre-wrap; }

/* =========================================================
   Formular — erweiterte Felder
   ========================================================= */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field select {
  width: 100%; padding: 14px 16px; border-radius: var(--r-btn);
  background: var(--black-3); border: 1px solid var(--line); color: var(--ivory);
  font-family: var(--font); font-size: .96rem; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA0AA' fill='none' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.field select:focus { outline: none; border-color: var(--champagne); background-color: #1d1e22; }
.field select option { color: #0E0E10; }
.choice { display: flex; gap: 8px; flex-wrap: wrap; }
.pillopt { display: inline-flex; align-items: center; gap: 7px; padding: 11px 15px; border-radius: 100px;
  border: 1px solid var(--line); cursor: pointer; font-size: .88rem; color: var(--ivory-soft);
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease); }
.pillopt:hover { border-color: var(--champagne); }
.pillopt input { accent-color: var(--champagne); margin: 0; }
.pillopt:has(input:checked) { border-color: var(--champagne); background: rgba(201,198,191,.10); color: var(--ivory); }

/* Spam-Schutz-Honeypot (für Menschen unsichtbar) */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Erfolgsmeldung nach dem Absenden */
.form__success { text-align: center; padding: 22px 8px; }
.form__success-ic { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: var(--ivory); color: var(--black); margin-bottom: 18px; }
.form__success-ic svg { width: 28px; height: 28px; }
.form__success h3 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 8px; }
.form__success p { color: var(--graphite); margin: 0; }

/* Responsive für FAQ / Formular (nach den Basis-Regeln, damit sie greifen) */
@media (max-width: 980px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; }
}

/* =========================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================= */
.legal { padding: 150px 0 100px; }
.legal .container { max-width: 800px; }
.legal h1 { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: 14px; }
.legal__lead { color: var(--graphite); margin: 0 0 40px; font-size: 1.02rem; }
.legal__meta { border: 1px solid var(--line); border-radius: var(--r-card); background: var(--black-2); padding: 26px 30px; margin-bottom: 44px; }
.legal__meta .row { display: flex; gap: 10px; margin: 5px 0; }
.legal__meta .row span:first-child { color: var(--graphite); min-width: 130px; }
.legal__meta .row span:last-child { color: var(--ivory); }
.legal-block { margin-bottom: 30px; }
.legal-block h3 { font-family: var(--display); font-size: 1.2rem; margin-bottom: 10px; }
.legal-block [data-field="text"] { color: var(--graphite); white-space: pre-wrap; margin: 0; line-height: 1.8; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  color: var(--champagne); font-family: var(--display); font-weight: 600; font-size: .9rem; }
.legal__back:hover { color: var(--ivory); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__scroll, .fx-ambient { display: none; }
}

/* =========================================================
   Feinschliff: Atmosphäre, Dynamik & Micro-Interactions
   (bewusst dezent — der minimalistische Look bleibt erhalten)
   ========================================================= */

/* (1) Ambient-Lichtnebel — monochrom, sehr langsam driftend */
.fx-ambient { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.fx-ambient::before, .fx-ambient::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(100px); will-change: transform;
}
.fx-ambient::before {
  width: 58vw; height: 58vw; top: -20vh; left: -10vw;
  background: radial-gradient(circle, rgba(201,198,191,.05), transparent 62%);
  animation: fxDrift1 30s ease-in-out infinite alternate;
}
.fx-ambient::after {
  width: 46vw; height: 46vw; bottom: -16vh; right: -8vw;
  background: radial-gradient(circle, rgba(201,198,191,.04), transparent 62%);
  animation: fxDrift2 38s ease-in-out infinite alternate;
}
@keyframes fxDrift1 { to { transform: translate(7vw, 9vh) scale(1.12); } }
@keyframes fxDrift2 { to { transform: translate(-6vw, -7vh) scale(1.1); } }

/* (7) Feine Grain-Textur für taktile Premium-Tiefe */
.fx-grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* (3) Scroll-Fortschrittsbalken */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 80; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--champagne), var(--ivory));
  box-shadow: 0 0 10px rgba(201,198,191,.45);
}

/* (3b) Hero-Scroll-Hinweis */
.hero { position: relative; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: grid; place-items: center; opacity: .6; transition: opacity .3s var(--ease); z-index: 2; }
.hero__scroll:hover { opacity: 1; }
.hero__scroll .mouse { width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 12px; position: relative; }
.hero__scroll .mouse::before {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px;
  background: var(--champagne); transform: translateX(-50%); animation: fxScrollDot 1.9s ease-in-out infinite;
}
@keyframes fxScrollDot { 0% { opacity: 0; top: 7px; } 35% { opacity: 1; } 75% { opacity: 0; top: 18px; } 100% { opacity: 0; } }

/* (4) Micro-Interactions: sanftes Licht-Highlight beim Hover */
.card:hover, .service:hover, .step:hover, .price:hover {
  box-shadow: 0 0 42px -14px rgba(201,198,191,.28);
}
.btn { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 42%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); opacity: 0; pointer-events: none;
}
.btn--primary:hover::after { animation: fxSheen .7s var(--ease); }
@keyframes fxSheen { 0% { left: -60%; opacity: 0; } 25% { opacity: 1; } 100% { left: 130%; opacity: 0; } }

/* (5) Ablauf: Verbindungslinie „zeichnet sich" beim Einscrollen */
.steps::before { transform: scaleX(0); transform-origin: left center; transition: transform 1.2s var(--ease); }
.steps.in-view::before { transform: scaleX(1); }

/* (8) Dezenter Attention-Puls auf dem WhatsApp-Button */
.fab--wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: fxFabPulse 3s ease-out infinite;
}
.fab { position: relative; }
@keyframes fxFabPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 13px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 767px) {
  .fx-ambient::before, .fx-ambient::after { filter: blur(70px); }
  .hero__scroll { display: none; }

  /* (1) Chrome-Element auf Mobil vollständig entfernen → ruhigerer, fokussierter Hero
     (inkl. der 48-h-Karte, die nur zum Visual gehört). Kein reservierter Platz,
     keine leeren Flächen. Desktop bleibt unverändert. */
  .hero__visual { display: none; }

  /* (2) Vorteile-/Trust-Leiste auf Mobil: Trennpunkte entfernen und Einträge
     als saubere, zentrierte Liste untereinander mit gleichmäßigen Abständen. */
  .trustbar__inner { flex-direction: column; gap: 16px; }
  .trustbar .sep { display: none; }
}
