/* ============================================================
   ParusVoice — Site v2  (Branding V2)
   Lädt nach tokens.v2.css. Nur DE (2index.php); EN bleibt site.css (v1).
   ============================================================ */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
/* Smooth-Scroll nur ohne Reduced-Motion (Anker-Sprünge sind sonst Motion). */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--pv-surface);
  color: var(--pv-ink);
  font-family: var(--pv-sans);
  font-size: 15.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.pv-ico { flex-shrink: 0; }

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

:focus-visible {
  outline: 2px solid var(--pv-accent);
  outline-offset: 2px;
}

/* Skip-Link: unsichtbar bis Tastatur-Fokus, dann über der sticky Nav. */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  padding: 10px 16px; border-radius: 9px;
  background: var(--pv-ink); color: var(--pv-on-dark);
  font-weight: 600; font-size: 15px;
  transform: translateY(-200%);
}
.skip-link:focus-visible { transform: none; }

/* ---------- Section-Header-Helfer ---------- */
.sec-eyebrow {
  font-family: var(--pv-mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--pv-muted-2); text-transform: uppercase;
}
.sec-title {
  font-size: clamp(30px, 4.2vw, 48px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.04;
  color: var(--pv-ink); margin: 13px 0 0; max-width: 680px;
  text-wrap: balance;
}

/* ---------- Buttons ---------- */
.pv-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--pv-sans); font-weight: 600; line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--pv-r-btn);
  cursor: pointer; user-select: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease,
              transform .18s var(--pv-ease), box-shadow .18s var(--pv-ease);
}
.pv-btn--primary { background: var(--pv-btn-dark); color: var(--pv-on-dark); }
.pv-btn--primary:hover { background: var(--pv-btn-dark-hover); }
.pv-btn--ghost { background: transparent; color: var(--pv-ink); border-color: var(--pv-border); }
.pv-btn--ghost:hover { background: rgba(0,0,0,0.035); border-color: #C4BBA8; }
/* Ink statt Weiß auf Orange: Weiß erreicht nur 3.4:1 (WCAG-Fail auf der
   Haupt-CTA), Ink 4.9:1. Hover hellt deshalb auf statt abzudunkeln. */
.pv-btn--accent { background: var(--pv-accent); color: var(--pv-ink); }
.pv-btn--accent:hover { background: var(--pv-accent-hover); }
.pv-btn--ghostdark { background: transparent; color: var(--pv-on-dark); border-color: rgba(251,250,246,0.28); }
.pv-btn--ghostdark:hover { background: rgba(251,250,246,0.07); border-color: rgba(251,250,246,0.5); }
.pv-btn--sm { padding: 9px 16px;  font-size: 14.5px; }
.pv-btn--lg { padding: 13px 22px; font-size: 15.5px; }
.pv-btn--xl { padding: 14px 26px; font-size: 16px; white-space: nowrap; }
.pv-btn--ghost.pv-btn--lg { padding: 13px 20px; }

/* ---------- Helfer ---------- */
.pv-mono { font-family: var(--pv-mono); }

/* ============================================================
   Nav (sticky)
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,0.94);
  border-bottom: 1px solid var(--pv-hairline);
  transition: box-shadow .35s ease;
}
/* Echtes Glas, wo der Browser es kann (Vorlage-Hinweis: Blur war nur fürs
   Raster-Export entfernt; Fallback bleibt die near-opake Fläche oben). */
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav {
    background: rgba(251,250,246,0.72);
    -webkit-backdrop-filter: blur(14px) saturate(1.5);
    backdrop-filter: blur(14px) saturate(1.5);
  }
}
.nav__inner { height: 64px; display: flex; align-items: center; gap: 22px; position: relative; }
.nav__brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav__wordmark {
  font-family: var(--pv-brand);
  font-size: 19px; letter-spacing: -0.02em; line-height: 1;
  color: var(--pv-dark); font-weight: 600;
}
.nav__wordmark strong { font-weight: 800; }
.nav__links { display: flex; align-items: center; gap: 28px; margin-left: 14px; }
.nav__link, .nav__signin {
  font-size: 15px; font-weight: 500; color: var(--pv-text-nav);
  transition: color .15s ease;
}
.nav__link:hover, .nav__signin:hover { color: var(--pv-ink); }
.nav__spacer { flex: 1; }
.nav__cta { flex-shrink: 0; white-space: nowrap; }
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 36px; padding: 0;
  background: transparent; border: 0; cursor: pointer;
}
.nav__toggle span { display: block; width: 20px; height: 2px; margin: 0 auto; border-radius: 2px; background: var(--pv-ink); }

/* Anmelden im Burger-Menü: Desktop versteckt (dort steht .nav__signin rechts),
   sichtbar nur im aufgeklappten Mobile-Menü. */
.nav__link--signin { display: none; }
@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav__signin { display: none; }
  .nav__links.is-open .nav__link--signin { display: block; }
  .nav__toggle { display: inline-flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0; margin-left: 0;
    background: var(--pv-surface);
    border-bottom: 1px solid var(--pv-hairline);
    padding: 6px var(--pv-gutter) 14px;
  }
  .nav__links.is-open .nav__link { width: 100%; padding: 11px 0; font-size: 16px; text-align: right; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: clamp(40px,7vw,76px) 0 clamp(56px,8vw,96px); }
.hero__lead { max-width: 800px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 11px; margin-bottom: 26px;
  border: 1px solid var(--pv-hairline);
  background: var(--pv-banner);
  border-radius: var(--pv-r-pill);
}
.hero__eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pv-accent); flex-shrink: 0; }
.hero__eyebrow-text {
  font-family: var(--pv-mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--pv-text-2); text-transform: uppercase; white-space: nowrap;
}
.hero__title {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 78px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.0;
  color: var(--pv-ink); text-wrap: balance;
}
.hero__title-em { color: var(--pv-accent); font-style: normal; }
.hero__body {
  margin: 24px 0 0; max-width: 608px;
  font-size: clamp(17px, 2.1vw, 21px); font-weight: 400; line-height: 1.5;
  color: var(--pv-text);
}
.hero__entity {
  margin: 17px 0 0; max-width: 560px;
  font-size: 14.5px; line-height: 1.5; color: var(--pv-muted);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px;
  margin-top: 26px;
  font-family: var(--pv-mono); font-size: 12px; color: var(--pv-muted-2);
}
.hero__trust-sep { color: #D5CDBC; }

/* ============================================================
   Trust-Strip
   ============================================================ */
.trust { background: var(--pv-banner); border-top: 1px solid var(--pv-hairline); border-bottom: 1px solid var(--pv-hairline); }
.trust__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 30px; padding: 18px var(--pv-gutter);
}
.trust__item { display: flex; align-items: center; gap: 11px; color: var(--pv-muted); }
.trust__label { font-size: 14.5px; font-weight: 500; color: var(--pv-text-nav); }

/* ============================================================
   How-it-works — „Eine Taste, drei Werkzeuge"
   ============================================================ */
/* Redesign 2026-07-03: verdichtet (Padding max 124→88, Titel→Grid 64→22+Track)
   + verbunden — fn-Taste im Titel, EINE Linie mit 3 Orange-Knoten statt drei
   loser Spalten-Hairlines. Choreografie: Motion-Layer unten + motion.v2.js. */
.howto { padding: clamp(56px,7vw,88px) 0; }
.howto__headrow { display: flex; align-items: center; gap: 18px; margin-top: 14px; }
/* Optik-Zwilling der Demo-Key-Cap .hvd__key (dort 36px) — bei Look-Änderung beide anfassen. */
.howto__key {
  position: relative; width: 54px; height: 54px; border-radius: 11px; flex-shrink: 0;
  background: #FCFBF8; border: 1px solid #D9D2C6;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.9), 0 1.5px 0 rgba(0,0,0,0.14), 0 3px 7px rgba(0,0,0,0.10);
}
.howto__key-fn { position: absolute; top: 5px; right: 8px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 11px; font-weight: 600; color: #4A4337; line-height: 1; letter-spacing: 0.02em; }
.howto__key-globe { position: absolute; bottom: 5px; left: 6px; display: block; }
.howto__title { font-size: clamp(28px,3.6vw,42px); margin: 0; }
/* Track = gleiche Spaltengeometrie wie das Grid → Knoten sitzen exakt an den Spaltenstarts. */
.howto__track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 52px); height: 7px; margin-top: clamp(26px,3.5vw,40px); }
.howto__line { position: absolute; left: 0; right: 0; top: 3px; height: 1.5px; background: var(--pv-border-2); }
.howto__cell { position: relative; }
.howto__node { position: absolute; left: 0; top: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--pv-accent); }
.howto__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(28px, 4vw, 52px); margin-top: 22px;
}
/* Spalten-Hairline übernimmt die Track-Linie; ≤900 (Grid bricht um) kehrt sie zurück. */
@media (max-width: 900px) {
  .howto__track { display: none; }
  .howto__grid { margin-top: clamp(30px, 5vw, 44px); }
  .howto__col { border-top: 1.5px solid var(--pv-border-2); padding-top: 22px; }
}
.howto__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.howto__top .pv-ico { color: var(--pv-accent); }
.howto__index { font-family: var(--pv-mono); font-size: 13px; font-weight: 500; color: var(--pv-muted-2); letter-spacing: 0.05em; }
.howto__h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: var(--pv-ink); margin: 0; }
.howto__p { font-size: 15.5px; line-height: 1.58; color: var(--pv-text-2); margin: 10px 0 0; }

/* ============================================================
   Feature-Grid — „Was alles drinsteckt"
   ============================================================ */
.grid-sec { background: var(--pv-surface-alt); border-top: 1px solid var(--pv-hairline-2); padding: var(--pv-section-y) 0; }
.fgrid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
  gap: 18px; margin-top: clamp(38px, 5vw, 60px);
}
.fcard {
  background: var(--pv-surface); border: 1px solid var(--pv-hairline);
  border-radius: 16px; padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.fcard:hover { box-shadow: var(--pv-shadow-card-hover); transform: translateY(-2px); border-color: #DDD5C5; }
.fcard__head { margin-bottom: 18px; }
.fcard__head .pv-ico { color: var(--pv-accent); }
.fcard__head--badge { display: flex; align-items: flex-start; justify-content: space-between; }
.fcard__h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--pv-ink); margin: 0; }
.fcard__p { font-size: 15px; line-height: 1.55; color: var(--pv-text-2); margin: 9px 0 0; }
.fbadge { font-family: var(--pv-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em; padding: 4px 9px; border-radius: var(--pv-r-pill); }
.fbadge--neutral { color: var(--pv-text-2); background: rgba(0,0,0,0.06); }
.fbadge--accent  { color: var(--pv-accent-dark); background: rgba(249,78,13,0.08); }
.fbadge--dark    { color: #F1ECE2; background: var(--pv-ink); }
.fchips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.fchip {
  font-family: var(--pv-mono); font-size: 11px; color: var(--pv-text-2);
  background: rgba(0,0,0,0.045); border: 1px solid var(--pv-hairline-2);
  padding: 5px 9px; border-radius: 7px;
}
/* ============================================================
   Werte-Band — „Warum ParusVoice"
   ============================================================ */
/* Dunkle Bühne (Redesign-Paket 3, 2026-07-03): war getöntes Band --pv-tinted.
   Licht-Rhythmus der Seite: hell → dunkel (hier) → hell → dunkel (Final-CTA). */
.values { position: relative; overflow: hidden; background: var(--pv-dark); padding: clamp(66px,8.5vw,108px) 0; }
.values::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 18% 0%, rgba(249,78,13,0.13), transparent 65%);
}
.values > .container { position: relative; }
.values .sec-eyebrow { color: #8A8174; }
.values .sec-title { color: var(--pv-on-dark); }
.values__title { font-size: clamp(28px,3.6vw,42px); line-height: 1.05; margin: 0; max-width: 620px; }
.values__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: clamp(26px, 4vw, 48px); margin-top: clamp(34px, 4vw, 52px);
}
.values__item .pv-ico { color: #C9C2B4; }
.values__h { font-size: 17.5px; font-weight: 600; color: var(--pv-on-dark); margin-top: 15px; letter-spacing: -0.01em; }
.values__b { font-size: 14.5px; line-height: 1.5; color: #A49C8D; margin-top: 6px; }
.values__meta {
  margin-top: clamp(30px,4.5vw,48px); padding-top: 18px;
  border-top: 1px solid rgba(251,250,246,0.10);
  font-family: var(--pv-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: #8A8174;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing { background: var(--pv-surface); padding: var(--pv-section-y) 0; }
.pricing__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 13px; }
.pricing__head .sec-title { margin: 0; }
.pricing__note { font-size: 12.5px; color: var(--pv-muted); letter-spacing: 0.01em; }
.pricing__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin-top: clamp(36px, 4.5vw, 56px); align-items: stretch;
}
.ptier {
  position: relative; background: var(--pv-surface-alt); border: 1px solid var(--pv-hairline);
  border-radius: 18px; padding: 28px 26px; display: flex; flex-direction: column;
}
.ptier--featured { border: 1.6px solid var(--pv-accent); box-shadow: 0 18px 44px -24px rgba(249,78,13,0.34); }
.ptier__badge {
  position: absolute; top: -12px; left: 26px;
  background: var(--pv-accent); color: var(--pv-ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 11px; border-radius: var(--pv-r-pill); text-transform: uppercase;
}
.ptier__name { font-size: 22px; font-weight: 600; color: var(--pv-ink); letter-spacing: -0.01em; }
.ptier__tagline { font-size: 15px; color: var(--pv-text-2); margin-top: 4px; }
.ptier__price { display: flex; align-items: baseline; gap: 8px; margin-top: 22px; }
.ptier__amount { font-family: var(--pv-brand); font-size: 38px; font-weight: 700; letter-spacing: -0.02em; color: var(--pv-ink); }
.ptier__cadence { font-size: 15px; line-height: 1.45; color: var(--pv-text-2); margin-top: 0; min-height: 22px; }
.ptier__sub { font-size: 15px; line-height: 1.45; color: var(--pv-text-2); margin-top: 9px; min-height: 22px; }
 .ptier__sub strong { font-weight: 500; color: var(--pv-ink); }
.ptier__cta {
  display: block; text-align: center; margin-top: 22px; padding: 12px;
  border-radius: 11px; border: 1px solid var(--pv-border); background: transparent;
  color: var(--pv-ink); font-size: 15px; font-weight: 600;
  transition: background .15s ease;
}
.ptier__cta:hover { background: rgba(0,0,0,0.04); }
.ptier__cta--dark { border-color: var(--pv-btn-dark); background: var(--pv-btn-dark); color: var(--pv-on-dark); }
.ptier__cta--dark:hover { background: var(--pv-btn-dark-hover); }
.ptier__rule { height: 1px; background: #ECE7DB; margin: 24px 0 18px; }
.ptier--featured .ptier__rule { background: #F1DDD0; }
.ptier__feats { display: flex; flex-direction: column; gap: 13px; }
.ptier__plus { font-size: 14.5px; font-weight: 600; color: #3A332A; margin: 0 0 3px; }
.ptier__feat { display: flex; align-items: flex-start; gap: 11px; position: relative; }
.ptier__feat .pv-ico { color: var(--pv-muted); margin-top: 2px; }
.ptier--featured .ptier__feat .pv-ico { color: var(--pv-accent); }
.ptier__feat > span { font-size: 14.5px; line-height: 1.45; color: #3A332A; flex: 1; }
.ptier__unit { font-size: 15px; color: var(--pv-text-2); }
/* Info-Button: rechtsbündig, an der ERSTEN Zeile des Bullets ausgerichtet (Owner 2026-07-17).
   Padding + Negativ-Margin = 27px Hit-Area (WCAG 2.5.8 ≥24px), Icon-Position unverändert. */
.ptier__info { all: unset; cursor: pointer; display: inline-flex; padding: 6px; margin: -4px -6px -6px; color: var(--pv-muted); flex-shrink: 0; }
.ptier__info:hover, .ptier__info[aria-expanded="true"] { color: var(--pv-ink); }
.ptier__bubble {
  position: absolute; bottom: calc(100% + 9px); left: -6px; right: -6px;
  background: #FFFFFF; border: 1px solid #E4DED2; border-radius: 10px;
  padding: 11px 13px; font-size: 13px; line-height: 1.5; color: #3A332A;
  box-shadow: 0 10px 26px -12px rgba(60,50,35,0.28); z-index: 6;
}
.ptier__bubble-arrow {
  position: absolute; bottom: -5px; right: 15px; width: 9px; height: 9px;
  background: #FFFFFF; border-right: 1px solid #E4DED2; border-bottom: 1px solid #E4DED2;
  transform: rotate(45deg);
}
/* CTA-Gleichlinie (Owner 2026-07-17): KEIN Subgrid (verteilte die Pro-Zeilenhöhen auf alle
   Karten = aufgeblähte Abstände). Stattdessen: alle Karten haben dieselben Zeilen-Slots;
   Pro ist die längste Karte, leere Slots halten via min-height (cadence/sub unten) den Platz. */

.addons { margin-top: 18px; }
.addons__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--pv-muted-2); text-transform: uppercase; margin-bottom: 13px; }
.addons__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.addon-card { background: var(--pv-banner); border: 1px solid var(--pv-hairline); border-radius: 14px; padding: 16px 18px; }
.addon-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.addon-card__label { display: flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 600; color: var(--pv-ink); }
.addon-card__label .pv-ico { color: var(--pv-accent); flex-shrink: 0; }
.addon-card__price { font-size: 14px; font-weight: 600; color: var(--pv-accent-dark); white-space: nowrap; }
.addon-card__desc { font-size: 14px; line-height: 1.5; color: var(--pv-text-2); }
/* Kärtchen als Link (Anfrage-Modell 2026-07-04): gleicher Hover-Lift wie .fcard. */
a.addon-card { display: block; text-decoration: none; transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease; }
a.addon-card:hover { box-shadow: var(--pv-shadow-card-hover); transform: translateY(-2px); border-color: #DDD5C5; }
a.fcard { text-decoration: none; }
.addons__contact { display: flex; align-items: center; gap: 9px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--pv-hairline); font-size: 13.5px; line-height: 1.5; color: var(--pv-text-2); }
.addons__contact .pv-ico { color: var(--pv-muted-2); flex-shrink: 0; }
.addons__contact a { color: var(--pv-accent-dark); font-weight: 500; }
.addons__contact a:hover { color: var(--pv-ink); }

.pricing__foot {
  font-size: 15px; line-height: 1.6; color: var(--pv-text-2);
  text-align: center; margin: 26px auto 0; max-width: 680px;
}

/* ============================================================
   FAQ-Akkordeon
   ============================================================ */
.faq { background: var(--pv-surface-alt); border-top: 1px solid var(--pv-hairline-2); padding: var(--pv-section-y) 0; }
.faq__inner { max-width: 840px; }
.faq__title { margin: 13px 0 clamp(28px, 4vw, 44px); }
.faq__item { border-bottom: 1px solid var(--pv-hairline); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 2px; background: transparent; border: none; text-align: left; cursor: pointer;
}
.faq__qtext { font-size: clamp(16px, 2vw, 18px); font-weight: 600; color: var(--pv-ink); letter-spacing: -0.01em; transition: color .15s ease; }
.faq__q:hover .faq__qtext { color: var(--pv-accent); }
.faq__toggle { flex-shrink: 0; display: flex; }
/* Icon-Swap abgelöst: das Plus dreht sich weich zum Schließ-Kreuz (45°).
   Das (nun ungenutzte) .faq__minus-SVG im Markup bleibt ausgeblendet. */
.faq__plus { color: var(--pv-muted-2); transition: transform .35s var(--pv-ease), color .2s ease; }
.faq__minus { display: none; }
.faq__item.is-open .faq__plus { transform: rotate(45deg); color: var(--pv-accent); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--pv-ease); }
.faq__a-inner { overflow: hidden; }
.faq__a-inner p { font-size: 15.5px; line-height: 1.62; color: var(--pv-text-2); margin: 0 2px 22px; max-width: 720px; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

/* ============================================================
   Finale CTA-Bühne (dunkel)
   ============================================================ */
.finalcta { background: var(--pv-dark); color: var(--pv-on-dark); padding: clamp(80px,11vw,140px) 0; }
.finalcta__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.finalcta__icon { margin: 0 auto 28px; border-radius: 16px; }
.finalcta__title { font-size: clamp(34px,5vw,60px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.0; margin: 0; color: var(--pv-on-dark); text-wrap: balance; }
.finalcta__body { font-size: clamp(16px,2vw,19px); line-height: 1.5; color: #C9C2B4; margin: 20px auto 0; max-width: 520px; }
.finalcta__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: 34px; }
.finalcta__reassure { font-size: 12px; color: #8A8174; margin-top: 26px; letter-spacing: 0.02em; }

/* ============================================================
   Footer (dunkel)
   ============================================================ */
.footer { background: var(--pv-footer); color: #A49C8D; padding: clamp(52px,7vw,80px) 0 36px; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px 60px; }
.footer__brand { max-width: 300px; }
.footer__lockup { display: flex; align-items: center; gap: 11px; }
.footer__wordmark { font-family: var(--pv-brand); font-size: 19px; letter-spacing: -0.02em; line-height: 1; color: var(--pv-on-dark); font-weight: 600; }
.footer__wordmark strong { font-weight: 800; }
.footer__tagline { font-size: 15px; line-height: 1.55; color: #A49C8D; margin-top: 16px; }
.footer__cols { display: flex; flex-wrap: wrap; gap: 48px 64px; }
.footer__heading { font-family: var(--pv-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: #8E8675; text-transform: uppercase; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer__link { color: #B8B0A1; transition: color .15s ease; }
.footer__link:hover { color: var(--pv-on-dark); }
.footer__rule { height: 1px; background: rgba(251,250,246,0.10); margin: clamp(40px,5vw,56px) 0 24px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer__meta { font-size: 12px; color: #8E8675; }
.footer__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; letter-spacing: 0.02em; }
.footer__locale a { color: #8E8675; transition: color .15s ease; }
.footer__locale a:hover { color: var(--pv-on-dark); }

/* ============================================================
   Hero-Demo (faux-macOS: Notch + Mail + fn-Key)
   ============================================================ */
@keyframes pvWave  { 0%,100% { transform: scaleY(.22); } 50% { transform: scaleY(1); } }
@keyframes pvBlink { 0%,100% { opacity: .22; } 50% { opacity: 1; } }
@keyframes pvSpin  { to { transform: rotate(360deg); } }
@keyframes pvCaret { 0%,100% { opacity: 0; } 50% { opacity: 1; } }
@keyframes pvRec   { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .72; transform: scale(.9); } }
@keyframes pvFadeUp{ from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.hvd {
  position: relative; max-width: 880px;
  margin: clamp(40px,6vw,72px) auto 0;
  padding: 0 clamp(14px,4vw,40px) clamp(20px,3.5vw,30px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 24px;
  background:
    radial-gradient(72% 60% at 16% 10%, #FFC678 0%, rgba(255,198,120,0) 60%),
    radial-gradient(68% 62% at 90% 6%,  #FF7A47 0%, rgba(255,122,71,0) 56%),
    radial-gradient(82% 78% at 86% 98%, #9A55B6 0%, rgba(154,85,182,0) 60%),
    radial-gradient(74% 72% at 6% 96%,  #E25C4A 0%, rgba(226,92,74,0) 58%),
    linear-gradient(156deg, #F4A046 0%, #E66A55 46%, #8B51A4 100%);
  box-shadow: 0 30px 70px -30px rgba(60,30,50,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  overflow: hidden;
}

/* --- Notch-HUD --- */
.hvd__notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  max-width: 92%; background: #000; color: #fff;
  display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
  overflow: hidden; z-index: 8; will-change: width, height;
  box-shadow: 0 18px 40px -16px rgba(8,6,3,0.46), 0 5px 14px -8px rgba(8,6,3,0.3);
}
.hvd__notch--idle  { width: 150px; height: 34px;  border-radius: 0 0 11px 11px; }
.hvd__notch--wide,
.hvd__notch--proc  { width: 312px; height: 34px;  border-radius: 0 0 16px 16px; }
.hvd__notch--tall1 { width: 312px; height: 77px;  border-radius: 0 0 18px 18px; }
.hvd__notch--tall2 { width: 312px; height: 98px;  border-radius: 0 0 18px 18px; }
.hvd__notch--tall3 { width: 312px; height: 118px; border-radius: 0 0 18px 18px; }
.hvd__notch--tall4 { width: 312px; height: 138px; border-radius: 0 0 18px 18px; }

.hvd__notch-bar, .hvd__notch-proc, .hvd__notch-text { display: none; }   /* JS toggelt */
.hvd__notch-bar { align-items: center; justify-content: space-between; height: 34px; padding: 0 17px; flex-shrink: 0; }
/* Statuspunkt: Record-Gruen, durchgaengig (kein Puls) wie die Live-Pille. */
.hvd__rec { width: 8px; height: 8px; border-radius: 50%; background: #33C75E; flex-shrink: 0; }
/* Equalizer wie der echte Notch (LevelBars): 13 schmale Balken, weisser 3D-Verlauf; Hoehen pro Frame im JS. */
.hvd__wave { display: flex; align-items: center; gap: 1.5px; height: 24px; flex-shrink: 0; }
.hvd__wave span { display: block; width: 2px; border-radius: 1px; background: linear-gradient(to bottom, rgba(255,255,255,0.97), rgba(255,255,255,0.78)); }
.hvd__notch-proc { align-items: center; justify-content: center; gap: 8px; height: 34px; padding: 0 17px; flex-shrink: 0; }
.hvd__spin { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); border-top-color: #FB6726; flex-shrink: 0; animation: pvSpin .7s linear infinite; }
.hvd__notch-proc-label { font-size: 12px; color: rgba(255,255,255,0.86); letter-spacing: 0.01em; }
.hvd__notch-text {
  flex: 1; min-height: 0; padding: 8px 17px 17px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: -apple-system, BlinkMacSystemFont, var(--pv-sans);
  font-size: 14.5px; line-height: 1.4; letter-spacing: -0.01em; color: #fff; font-weight: 450;
  overflow: hidden;
}
.hvd__caret { display: inline-block; width: 1.5px; height: 1em; background: #2A241D; margin-left: 1px; vertical-align: -2px; animation: pvCaret 1s step-end infinite; }
/* Reduced Motion: Demo-JS startet dann gar nicht (statischer Endzustand) — die
   reinen CSS-Animationen (Caret-Blink etc.) müssen hier trotzdem stillstehen. */
@media (prefers-reduced-motion: reduce) {
  .hvd__caret, .hvd__spin, .hvd__dots span { animation: none; }
  .hvd__caret { opacity: 1; }
}
.hvd__notch-text .hvd__caret { background: rgba(255,255,255,0.5); }

/* --- Mail-Fenster --- */
.hvd__mail {
  position: relative; width: min(540px, 100%);
  margin: clamp(146px,17vw,160px) auto 0;
  background: #FCFBF7; border-radius: 14px; border: 1px solid rgba(60,48,30,0.10);
  box-shadow: 0 42px 80px -34px rgba(45,35,20,0.46), 0 14px 34px -20px rgba(45,35,20,0.24);
  overflow: hidden;
}
.hvd__titlebar { display: flex; align-items: center; height: 44px; padding: 0 16px; background: #F3EFE6; border-bottom: 1px solid #EAE4D7; }
.hvd__lights { display: flex; gap: 8px; }
.hvd__lights i { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.12); }
.hvd__lights i:nth-child(1) { background: #FF5F57; }
.hvd__lights i:nth-child(2) { background: #FEBC2E; }
.hvd__lights i:nth-child(3) { background: #28C840; }
.hvd__title { flex: 1; text-align: center; font-size: 13px; font-weight: 500; color: var(--pv-text-2); margin-left: -52px; }
.hvd__fields { padding: 15px 22px 0; }
/* Feste Zeilenhoehe + nowrap -> Betreffzeile waechst beim Befuellen nicht (kein Huepfer). */
.hvd__field { display: flex; align-items: center; gap: 14px; height: 40px; white-space: nowrap; overflow: hidden; border-bottom: 1px solid var(--pv-hairline-2); }
/* An/Betreff in Schrift UND Groesse des Feldwerts (martin@), nur Farbe zurueckgenommen - macOS-konform. */
.hvd__field-label { font-size: 14px; color: var(--pv-muted-2); width: 62px; flex-shrink: 0; }
.hvd__field-val { font-size: 14px; color: #3A332A; }
.hvd__subject-val { font-size: 14px; color: var(--pv-ink); font-weight: 500; display: none; }
.hvd__subject.is-filled .hvd__subject-val { display: inline; animation: pvFadeUp .45s ease; }
/* Feste Hoehe (+10% ggue. frueher, reiner Leerraum unter dem Text) -> kein Huepfer beim Befuellen. */
.hvd__body { padding: 18px 22px 28px; height: 170px; font-size: 14.5px; line-height: 1.62; color: #2A241D; }
.hvd__body-ph { color: #C2B9A8; }
.hvd__body-content { display: none; }
.hvd__body.is-filled .hvd__body-ph { display: none; }
.hvd__body.is-filled .hvd__body-content { display: block; animation: pvFadeUp .5s ease; }
.hvd__clause-line, .hvd__body-closing { margin-top: 13px; }
/* Markierung wie macOS: kein horizontales Padding (Blau am Textanfang), nur 1.5px oben/unten; der
   Auswahl-Wisch laeuft links->rechts ueber die animierte Hintergrundbreite (0%->100%). */
.hvd__clause { padding: 1.5px 0; background-image: linear-gradient(rgba(52,124,246,0.26), rgba(52,124,246,0.26)); background-repeat: no-repeat; background-position: left center; background-size: 0% 100%; transition: background-size .42s cubic-bezier(.33,.72,0,1), box-shadow .3s ease; }
.hvd__clause.is-select { background-size: 100% 100%; }
.hvd__clause.is-flash  { background-image: linear-gradient(rgba(249,78,13,0.15), rgba(249,78,13,0.15)); background-size: 100% 100%; box-shadow: inset 0 0 0 1px rgba(249,78,13,0.32); }
.hvd__clause-rephrased { display: none; }
.hvd__clause.is-rephrased .hvd__clause-normal { display: none; }
.hvd__clause.is-rephrased .hvd__clause-rephrased { display: inline; }

/* --- Assistent-Panel --- */
.hvd__panel {
  position: absolute; right: 16px; top: 92px; width: 232px; z-index: 9;
  background: #fff; border: 1px solid var(--pv-hairline); border-radius: 13px;
  box-shadow: 0 22px 44px -20px rgba(45,35,20,0.4), 0 6px 16px -10px rgba(45,35,20,0.22);
  padding: 14px 15px; transform-origin: top right; pointer-events: none;
  opacity: 0; transform: translateY(-6px) scale(.96);
  transition: opacity .32s ease, transform .34s cubic-bezier(.34,1.36,.5,1);
}
.hvd__panel.is-open { opacity: 1; transform: translateY(0) scale(1); }
.hvd__panel-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.hvd__panel-title { font-size: 12.5px; font-weight: 600; color: var(--pv-ink); }
.hvd__panel-thinking, .hvd__panel-answer { display: none; }
.hvd__panel[data-mode="thinking"] .hvd__panel-thinking { display: flex; align-items: center; gap: 8px; color: var(--pv-muted); font-size: 13.5px; }
.hvd__panel[data-mode="answer"] .hvd__panel-answer,
.hvd__panel[data-mode="inserted"] .hvd__panel-answer { display: block; }
.hvd__panel-answer-text { font-size: 13.5px; line-height: 1.45; color: var(--pv-ink); font-weight: 500; }
.hvd__panel-hint, .hvd__panel-inserted { display: none; }
.hvd__panel[data-mode="answer"] .hvd__panel-hint { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-family: var(--pv-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--pv-muted-2); text-transform: uppercase; }
.hvd__panel[data-mode="inserted"] .hvd__panel-inserted { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--pv-text-2); }
.hvd__dots { display: inline-flex; }
.hvd__dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--pv-muted-2); margin: 0 1.5px; animation: pvBlink 1.1s ease-in-out infinite; }
.hvd__dots span:nth-child(2) { animation-delay: .18s; }
.hvd__dots span:nth-child(3) { animation-delay: .36s; }

/* --- fn-Key + Caption --- */
/* Breite = aufgeklappter Notch (312px), zentriert -> fn-Taste beginnt an dessen linker Kante. */
.hvd__keyrow { display: flex; align-items: center; justify-content: flex-start; gap: 11px; height: 40px; width: 312px; max-width: 92%; margin: clamp(18px,2.4vw,24px) auto 0; }
.hvd__key {
  position: relative; width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: #FCFBF8; border: 1px solid #D9D2C6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 1px 0 rgba(0,0,0,0.14), 0 2px 5px rgba(0,0,0,0.10);
  transition: box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.hvd__key.is-holding { background: #F4EFE6; border-color: #E8A07F; box-shadow: 0 0 0 3px rgba(249,78,13,0.26), inset 0 1px 0 rgba(255,255,255,0.9), 0 1px 2px rgba(0,0,0,0.12); }
.hvd__key-fn { position: absolute; top: 3px; right: 5px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 8px; font-weight: 600; color: #4A4337; line-height: 1; letter-spacing: 0.02em; }
.hvd__key-globe { position: absolute; bottom: 3px; left: 4px; display: block; }
.hvd__caption { font-size: 13px; font-weight: 500; color: #fff; white-space: nowrap; text-shadow: 0 1px 3px rgba(40,15,30,0.4); }

/* ============================================================
   Mobil (Phone ≤ 600px) — Typo-Aufschlag, Titel-Umbruch, Trust gestapelt
   ============================================================ */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__title { font-size: clamp(26px, 7.2vw, 40px); line-height: 1.14; hyphens: none; overflow-wrap: normal; text-wrap: wrap; }
  .hero__body { font-size: 17.5px; }
  .hero__eyebrow-text, .sec-eyebrow { font-size: 12px; }
  .hero__trust { font-size: 12.5px; }
  .trust__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .trust__label { font-size: 15.5px; }
  .howto__p, .fcard__p { font-size: 16px; }
  .values__b, .ptier__feat span, .ptier__plus, .faq__a-inner p { font-size: 15.5px; }
  /* Hero-Demo randlos: volle Breite (aus dem Gutter ausbrechen), kein Radius/Border,
     mehr Gradient-Luft links/rechts (Demo selbst bleibt etwa gleich groß). */
  .hero { padding-bottom: var(--pv-section-y); }
  .hvd {
    margin-top: var(--pv-section-y);
    margin-left: calc(-1 * var(--pv-gutter)); margin-right: calc(-1 * var(--pv-gutter));
    border: none; border-radius: 0; box-shadow: none;
    padding-left: clamp(24px, 6vw, 40px); padding-right: clamp(24px, 6vw, 40px);
  }
}

/* ============================================================
   Text-/Rechtsseiten (Impressum, Datenschutz, AGB) — Prosa-Primitiv
   ============================================================ */
.legal { padding-block: clamp(48px,7vw,88px) var(--pv-section-y); }
.legal__head { margin-bottom: clamp(26px,4vw,42px); }
.legal__head .sec-title { margin-top: 12px; }
.legal__head p { margin: 16px 0 0; max-width: 680px; font-size: 17px; line-height: 1.55; color: var(--pv-text); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(19px,2.3vw,24px); font-weight: 600; letter-spacing: -0.01em; color: var(--pv-ink); margin: 36px 0 0; }
.prose p { margin: 12px 0 0; font-size: 16px; line-height: 1.65; color: var(--pv-text); }
.prose ul { margin: 12px 0 0; padding-left: 22px; }
.prose li { margin: 6px 0 0; font-size: 16px; line-height: 1.6; color: var(--pv-text); }
.prose a { color: var(--pv-accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { font-weight: 600; color: var(--pv-ink); }
.prose .page-note { margin-top: 30px; font-size: 13px; color: var(--pv-muted); }
/* B2B-Ablauf-Sektion (partials/v2/b2b-steps.php) — weiße Bühne zwischen zwei grid-sec. */
.steps-sec { padding: var(--pv-section-y) 0; }
.section-note { max-width: 760px; margin: clamp(28px,4vw,40px) 0 0; font-size: 14px; line-height: 1.62; color: var(--pv-muted); }
.section-note a { color: var(--pv-accent-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   Proof — Tempo-Beleg „3× schneller als Tippen"
   (zwischen Trust-Strip und Howto; ein Orange-Stat je Viewport)
   ============================================================ */
.proof {
  background: var(--pv-surface-alt);
  border-top: 1px solid var(--pv-hairline-2);
  border-bottom: 1px solid var(--pv-hairline-2);
  padding: clamp(56px, 7vw, 92px) 0;
}
.proof__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.proof__stat { display: flex; align-items: baseline; gap: 12px; }
.proof__num {
  font-family: var(--pv-sans);
  font-size: clamp(56px, 9vw, 104px); font-weight: 600;
  letter-spacing: -0.04em; line-height: 0.9;
  color: var(--pv-accent);
}
.proof__statlabel {
  font-family: var(--pv-mono);
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pv-muted-2);
}
.proof__title {
  font-size: clamp(24px, 3vw, 34px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.08;
  color: var(--pv-ink); margin: 18px 0 0; max-width: 460px;
  text-wrap: balance;
}
.proof__sub {
  font-size: 15px; line-height: 1.55; color: var(--pv-text-2);
  margin: 12px 0 0; max-width: 440px;
}
.proof__viz { display: flex; flex-direction: column; gap: 16px; }
.proof__bar {
  display: grid; grid-template-columns: 84px 1fr 72px;
  align-items: center; gap: 14px;
}
.proof__bar-label { font-size: 14.5px; font-weight: 600; color: var(--pv-ink); text-align: right; }
.proof__track { display: block; height: 30px; background: rgba(0,0,0,0.045); border-radius: 8px; }
.proof__fill { display: block; height: 100%; border-radius: 8px; min-width: 6px; }
.proof__fill--speak { background: var(--pv-accent); }
.proof__fill--type  { background: var(--pv-border); }
.proof__wpm { font-family: var(--pv-mono); font-size: 12px; color: var(--pv-muted); white-space: nowrap; }

/* Values: Eyebrow über dem Titel — kleiner Abstand wie bei Howto/Grid */
.values__title { margin-top: 13px; }

@media (max-width: 760px) {
  .proof__inner { grid-template-columns: 1fr; gap: 30px; }
  .proof__bar { grid-template-columns: 76px 1fr 68px; }
}

/* ============================================================
   Motion-Layer (Pakete A–F, 2026-07-02) — Progressive Enhancement.
   Aktiv NUR mit html.pv-motion (Inline-Head-Snippet in index.php,
   respektiert prefers-reduced-motion). Ohne JS bzw. mit Reduced
   Motion bleibt die Seite vollständig statisch sichtbar.
   Träger-Script: js/motion.v2.js (annotiert .pv-rv zur Laufzeit —
   kein Partial trägt Motion-Markup).
   ============================================================ */

/* --- A: Scroll-Reveal (gestaffelter Sektions-Auftritt) --- */
html.pv-motion .pv-rv {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--pv-ease), transform .7s var(--pv-ease);
  transition-delay: var(--pv-rvd, 0ms);
}
html.pv-motion .pv-in .pv-rv { opacity: 1; transform: none; }
/* Catch-up: Zündet eine Sektion erst, wenn sie beim schnellen Scrollen schon
   (teils) über dem Viewport liegt (motion.v2.js setzt pv-in--fast), holt der
   Reveal ohne Staffel-Delay in kurzer Zeit auf — keine leeren Flächen. */
html.pv-motion .pv-in--fast .pv-rv { transition-duration: .25s; transition-delay: 0ms; }

/* Der Block "Eine Taste: diktieren, korrigieren, fragen" tritt statisch auf — keine
   Einblende-Animation (Owner 2026-07-13); Linie, Knoten und Spalten stehen ohne
   Motion sichtbar. */

/* --- B: Proof — Balken wachsen erst beim Reinscrollen (die Inline-
   Breite aus proof.php greift wieder, sobald .pv-in gesetzt ist;
   die Zahlen zählt motion.v2.js hoch) --- */
html.pv-motion .proof__fill { transition: width 1.1s var(--pv-ease) .15s; }
html.pv-motion .proof:not(.pv-in) .proof__fill { width: 0 !important; }
.proof__num, .proof__wpm { font-variant-numeric: tabular-nums; }

/* --- C: Nav-Elevation + Scrollspy-Punkt --- */
html.pv-motion .nav.pv-scrolled { box-shadow: 0 12px 32px -24px rgba(45,35,20,0.5); }
.nav__link { position: relative; }
.nav__link::after {
  content: ''; position: absolute; left: 50%; bottom: -7px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--pv-accent);
  transform: translateX(-50%) scale(0);
  transition: transform .3s var(--pv-ease);
}
.nav__link.pv-active::after { transform: translateX(-50%) scale(1); }
@media (max-width: 780px) {
  .nav__links.is-open .nav__link::after { display: none; }
}

/* --- D: Mikro-Interaktionen --- */
html.pv-motion .pv-btn--primary:hover,
html.pv-motion .pv-btn--accent:hover { transform: translateY(-1.5px); }
html.pv-motion .pv-btn--primary:hover { box-shadow: 0 12px 24px -12px rgba(34,28,21,0.5); }
html.pv-motion .pv-btn--accent:hover  { box-shadow: 0 12px 26px -12px rgba(249,78,13,0.55); }
html.pv-motion .pv-btn:active { transform: translateY(0) scale(.99); }
.pv-btn .pv-ico { transition: transform .18s var(--pv-ease); }
html.pv-motion .pv-btn--primary:hover .pv-ico,
html.pv-motion .pv-btn--accent:hover .pv-ico,
html.pv-motion .pv-btn--ghost:hover .pv-ico { transform: translateY(1.5px); }
::selection { background: rgba(249,78,13,0.22); }
.values ::selection, .finalcta ::selection, .footer ::selection { background: rgba(249,78,13,0.55); color: #FBFAF6; }

/* --- E: Dunkle Bühne mit Tiefe (statisch, bewusst ohne Motion-Gate) --- */
.finalcta { position: relative; overflow: hidden; }
.finalcta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(56% 44% at 50% 18%, rgba(249,78,13,0.16), transparent 70%);
}
.finalcta__inner { position: relative; }
.finalcta__icon { box-shadow: 0 18px 40px -12px rgba(0,0,0,0.6), 0 0 48px -6px rgba(249,78,13,0.3); }

/* --- F: Hero-Entrance (einmalig beim Laden). Trigger pv-hero-in setzt
   das Inline-Head-Snippet selbst — bewusst NICHT motion.v2.js, damit der
   Hero nie an einem hängenden Datei-Load hängt. --- */
html.pv-motion .hero__eyebrow, html.pv-motion .hero__title,
html.pv-motion .hero__body,    html.pv-motion .hero__entity,
html.pv-motion .hero__cta,     html.pv-motion .hero__trust,
html.pv-motion .hvd {
  opacity: 0; transform: translateY(14px);
  transition: opacity .65s var(--pv-ease), transform .65s var(--pv-ease);
}
html.pv-motion.pv-hero-in .hero__eyebrow { opacity: 1; transform: none; transition-delay: .05s; }
html.pv-motion.pv-hero-in .hero__title   { opacity: 1; transform: none; transition-delay: .14s; }
html.pv-motion.pv-hero-in .hero__body    { opacity: 1; transform: none; transition-delay: .24s; }
html.pv-motion.pv-hero-in .hero__entity  { opacity: 1; transform: none; transition-delay: .30s; }
html.pv-motion.pv-hero-in .hero__cta     { opacity: 1; transform: none; transition-delay: .36s; }
html.pv-motion.pv-hero-in .hero__trust   { opacity: 1; transform: none; transition-delay: .42s; }
html.pv-motion.pv-hero-in .hvd           { opacity: 1; transform: none; transition-delay: .50s; }
