/* =============================================================================
   Couck & Kollegen — Landingpage „Immobilientransaktionen & Legal Due Diligence"
   Stylesheet / Design-System

   Aufbau:
     1. Self-hosted Fonts (@font-face)          — DSGVO: kein Google-Fonts-Call
     2. Design-Tokens (:root)                   — Farben aus www.ra-couck.de
     3. Reset & Basis
     4. Zugänglichkeit (Skip-Link, Focus, SR)
     5. Layout-Primitive (Container, Section, Eyebrow)
     6. Komponenten (Buttons, Nav, Cards, Steps, Form, Footer)
     7. Sektionen (Hero, Risiko, DD, Nutzen, Ablauf, USP, Vertrauen, Kontakt)
     8. Eingangsanimation (Intro-Overlay)
     9. Scroll-Reveals & Microinteractions
    10. Responsive (mobile-first)
    11. prefers-reduced-motion

   Animationsgrundsatz: animiert werden im Normalfall nur `transform` und
   `opacity` (kompositorfreundlich). Bewusste Ausnahme: die SVG-Strichzeichnung
   im Intro nutzt `stroke-dashoffset` (Paint), eng auf das Intro-Overlay begrenzt.
   ========================================================================== */

/* 1. FONTS ----------------------------------------------------------------- */
/* Kanzlei-CD (wie ra-couck.de / Mängelregress-LP): PT Sans, serifenlos.
   Display und Body identisch PT Sans (400/700, je normal + kursiv), lokal
   gehostet aus assets/fonts/ — kein Fremd-CDN. font-display: swap gegen FOIT. */
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ptsans-400.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ptsans-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ptsans-700.woff2") format("woff2");
}
@font-face {
  font-family: "PT Sans";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ptsans-700-italic.woff2") format("woff2");
}

/* 2. DESIGN-TOKENS --------------------------------------------------------- */
/* CD nach www.ra-couck.de / Mängelregress-LP: Anthrazit #35363B + Signalrot
   #EC1E24, PT Sans. Semantische Token-Namen (primary = Anthrazit,
   accent/red = Signalrot); Rename-Historie: früher --c-navy/--c-gold*. */
:root {
  /* --- Marke: Anthrazit (Struktur/Headlines/dunkle Bänder) --- */
  --c-primary:        #35363B;  /* [CD] Anthrazit — Primär/Struktur/Headlines    */
  --c-primary-deep:   #25262B;  /* [CD] dunkles Band (Hero/CTA, Mängelregress)   */
  --c-primary-deeper: #1E1F23;  /* abgeleitet — Footer / tiefste Fläche          */
  --c-primary-soft:   #3E3F46;  /* abgeleitet — Hover / abgesetzte Flächen       */

  --c-red:         #EC1E24;  /* [CD] Signalrot — exakter Markenton (Akzente,
                                Icons, Flächen; NICHT für Fließtext < 18px)    */
  --c-red-deep:    #C8161B;  /* [CD] accent-dark — AA-sicher mit Weiß (5,9:1)  */
  --c-red-hover:   #A81217;  /* abgeleitet — Button-Hover (7,6:1 mit Weiß)     */
  --c-red-soft:    #FBE7E8;  /* abgeleitet — zarte Tönung / Hintergründe       */

  /* --- Akzent (identisch Signalrot; getrennte Namen für feine Abstufung
         auf dunklen Bändern: soft = aufgehellt für Icons auf Anthrazit) --- */
  --c-accent:        #EC1E24;
  --c-accent-soft:   #F4575C;
  --c-accent-deep:   #C8161B;

  /* --- Neutrale (Mängelregress-Palette) --- */
  --c-ink:         #2B2C31;  /* Fließtext dunkel                              */
  --c-muted:       #6E6F76;  /* Sekundärtext (5,0:1 auf Weiß)                 */
  --c-faint:       #74757C;  /* tertiär / Captions (4,65:1 auf Weiß, WCAG AA) */

  --c-bg:          #FCFCFD;  /* [CD] heller Grund                             */
  --c-bg-alt:      #F5F5F5;  /* [CD] Panel / abgesetzte Sektion               */
  --c-surface:     #FFFFFF;  /* Karten/Flächen                                */
  --c-line:        #E6E6E6;  /* [CD] feine Trennlinie                         */
  --c-line-strong: #D9D9DC;
  --c-line-input:  #84858D;  /* Formularfeld-Rahmen (WCAG 1.4.11: 3,7:1)      */

  --c-on-dark:       #F6F6F7;  /* Text auf Anthrazit                          */
  --c-on-dark-muted: #AFB0B6;  /* Sekundärtext auf Anthrazit                  */
  --c-ok:            #1F7A4D;  /* Erfolgs-Status (Formular)                    */

  /* --- Typografie: PT Sans durchgängig (Display = Body, CD serifenlos) --- */
  --ff-display: "PT Sans", "Open Sans", "Noto Sans", system-ui, sans-serif;
  --ff-body: "PT Sans", "Open Sans", "Noto Sans", system-ui, sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-small:   0.875rem;
  --fs-base:    1rem;        /* 16px Basis                                    */
  --fs-lead:    clamp(1.08rem, 1rem + 0.45vw, 1.3rem);
  --fs-h3:      clamp(1.3rem, 1.15rem + 0.7vw, 1.62rem);
  --fs-h2:      clamp(2rem, 1.5rem + 2.2vw, 3rem);
  --fs-hero:    clamp(2.5rem, 1.6rem + 4vw, 4.4rem);

  --lh-tight: 1.1;
  --lh-snug:  1.28;
  --lh-body:  1.62;

  /* --- Spacing (4/8-Raster) --- */
  --s-2: 0.5rem;  --s-3: 0.75rem; --s-4: 1rem;   --s-5: 1.25rem;
  --s-6: 1.5rem;  --s-8: 2rem;    --s-10: 2.5rem; --s-12: 3rem;
  --section-pad: clamp(3.5rem, 7vw, 6.5rem);

  /* --- Form --- */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --r-sm: 6px; --r: 12px; --r-lg: 20px; --r-pill: 999px;

  /* --- Erhebung (sanft; Schattenfarbe = Anthrazit, vgl. Mängelregress) --- */
  --sh-1: 0 1px 2px rgba(53, 54, 59, 0.06), 0 4px 14px rgba(53, 54, 59, 0.06);
  --sh-2: 0 4px 10px rgba(53, 54, 59, 0.07), 0 14px 38px rgba(53, 54, 59, 0.10);

  /* --- Motion (konsistente Tokens) --- */
  --dur: 0.25s;
  --dur-lg: 0.5s;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Z-Index-Skala --- */
  --z-nav: 100;
  --z-progress: 110;

  --nav-h: 76px;
}

/* 3. RESET & BASIS --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anker nicht unter die fixierte Navbar springen lassen */
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;                 /* CD: PT Sans Bold, leicht negativ gespationt */
  line-height: var(--lh-tight);
  color: var(--c-primary);
  letter-spacing: -0.01em;
}
h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); }
h3 { font-size: var(--fs-h3); }

p { line-height: var(--lh-body); }
p + p { margin-top: var(--s-4); }

a { color: var(--c-red-deep); text-decoration: none; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

ul { list-style: none; padding: 0; }

::selection { background: var(--c-red); color: #fff; }

/* 4. ZUGÄNGLICHKEIT -------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* Skip-Link für Tastatur-/Screenreader-Nutzer */
.skip-link {
  position: fixed; top: 0; left: 0;
  transform: translateY(-120%);
  background: var(--c-primary); color: #fff;
  padding: 0.75rem 1.25rem; z-index: 1100;
  border-radius: 0 0 var(--r-sm) 0;
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* Sichtbarer Fokus auf allen interaktiven Elementen (Pflicht, WCAG) */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--c-red);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
/* Programmatischer Fokus (z. B. Skip-Link-Ziel <main>) ohne sichtbaren Ring */
[tabindex="-1"]:focus { outline: none; }

/* 5. LAYOUT-PRIMITIVE ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-pad); position: relative; }
.section--alt { background: var(--c-bg-alt); }
.section--dark {
  background:
    radial-gradient(120% 100% at 80% -10%, var(--c-primary-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-deep) 100%);
  color: var(--c-on-dark);
}
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section__head--center { margin-inline: auto; text-align: center; }

/* Eyebrow (CD: rote Uppercase-Zeile, Letterspacing .18em) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red-deep);  /* AA: 5,4–5,9:1 auf hellen Flächen (Signalrot nur 4,0–4,4:1) */
  margin-bottom: var(--s-4);
}
.section--dark .eyebrow { color: var(--c-accent-soft); }

/* CD-Signatur (Mängelregress): roter Vertikalbalken links am Headline-Block */
.section__head {
  position: relative;
  padding-inline-start: clamp(18px, 1.8vw, 26px);
}
.section__head::before {
  content: "";
  position: absolute; inset-inline-start: 0;
  inset-block-start: 0.14em; inset-block-end: 0.14em;
  inline-size: 4px; border-radius: 3px;
  background: var(--c-red);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--c-muted);
  line-height: 1.55;
  max-width: 60ch;
}
.section--dark .lead { color: var(--c-on-dark-muted); }

/* 6. KOMPONENTEN ----------------------------------------------------------- */

/* --- Buttons --- */
.btn {
  --_bg: var(--c-red-deep);
  --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  min-height: 52px;                 /* Touch-Target ≥ 44px                    */
  padding: 0.9rem 1.8rem;
  font-family: var(--ff-body);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.07em;           /* CD: rote Uppercase-Pills               */
  text-transform: uppercase;
  color: var(--_fg); background: var(--_bg);
  border: 2px solid transparent; border-radius: var(--r-pill);
  cursor: pointer;
  text-align: center;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  box-shadow: var(--sh-1);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* CD-Rot AA-sicher: Basis #C8161B (5,9:1 mit Weiß), Hover dunkler (7,6:1).
   Reines Signalrot #EC1E24 erreicht mit weißer 14-px-Schrift nur 4,4:1. */
.btn--primary { --_bg: var(--c-red-deep); }
.btn--primary:hover { background: var(--c-red-hover); }

.btn--secondary {
  --_bg: transparent; --_fg: var(--c-primary);
  border-color: var(--c-line-strong);
  box-shadow: none;
}
.btn--secondary:hover { border-color: var(--c-primary); background: var(--c-surface); }

.btn--ghost-light {
  --_bg: transparent; --_fg: #fff;
  border-color: rgba(238, 234, 225, 0.4);
  box-shadow: none;
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.btn--lg { min-height: 58px; padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* --- Karten --- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--sh-1);
  height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }

.card__icon {
  inline-size: 48px; block-size: 48px;
  display: grid; place-items: center;
  border-radius: var(--r);
  background: var(--c-red-soft);
  color: var(--c-red-deep);
  margin-bottom: var(--s-5);
}
.card__icon svg { inline-size: 26px; block-size: 26px; }
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--c-muted); }

.card--quiet { box-shadow: none; background: transparent; border-color: var(--c-line); }

.grid {
  display: grid; gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* --- Checkliste (DD-Prüfumfang Detailpunkte) --- */
.checklist { display: grid; gap: 0.65rem; margin-top: var(--s-4); }
/* min-width:0 verhindert, dass ein langes Flex-Item die Karte aufbläht */
.checklist li { display: flex; gap: 0.6rem; color: var(--c-muted); font-size: var(--fs-small); min-width: 0; }
.checklist li > span { min-width: 0; }
.checklist svg { flex: none; inline-size: 18px; block-size: 18px; color: var(--c-accent-deep); margin-top: 2px; }

/* 7. SEKTIONEN ------------------------------------------------------------- */

/* --- Navbar --- */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--c-bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--c-line);
  box-shadow: 0 1px 0 rgba(15,27,43,0.03);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
/* Marke: echtes Kanzlei-Logo (Bild- + Wortmarke) */
.nav__brand { display: inline-flex; align-items: center; flex: none; }
.nav__brand img {
  block-size: clamp(30px, 3.4vw, 40px); inline-size: auto;
  display: block;
}

/* Desktop: Linkliste und CTA nebeneinander (im Mobile-Media-Query überschrieben) */
.nav__menu { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav__links a {
  position: relative; color: var(--c-ink); font-size: 0.95rem; font-weight: 600;
  padding-block: 0.4rem;
}
.nav__links a::after {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-end: 0;
  block-size: 2px; inline-size: 0; background: var(--c-red);
  transition: inline-size var(--dur) var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { inline-size: 100%; }
.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

.nav__toggle {
  display: none;
  inline-size: 48px; block-size: 48px;
  background: transparent; border: 1px solid var(--c-line-strong);
  border-radius: var(--r-sm); cursor: pointer;
  color: var(--c-primary);
}
.nav__toggle svg { margin-inline: auto; inline-size: 24px; block-size: 24px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* --- Hero --- */
.hero {
  position: relative;
  padding-block: calc(var(--nav-h) + clamp(2.5rem, 7vw, 5.5rem)) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::before { /* dezenter Bauplan-/Raster-Verlauf im Hintergrund */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(80% 60% at 88% 0%, var(--c-red-soft) 0%, transparent 45%),
    linear-gradient(180deg, var(--c-surface) 0%, var(--c-bg) 70%);
}
.hero__inner { position: relative; max-width: 56rem; }
.hero h1 {
  font-size: var(--fs-hero); letter-spacing: 0.005em;
  margin-bottom: var(--s-6);
}
.hero h1 .accent { color: var(--c-red); }
.hero .lead { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem); margin-bottom: var(--s-8); max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero__trust {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; align-items: center;
  padding-top: var(--s-6); border-top: 1px solid var(--c-line);
}
.hero__trust .trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--c-muted); font-size: 0.9rem; }
.hero__trust .trust-item svg { inline-size: 22px; block-size: 22px; color: var(--c-accent-deep); flex: none; }
.hero__trust .ph { /* markierter Platzhalter */ }

/* Scroll-Hinweis */
.scroll-cue {
  margin-top: var(--s-10); display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--c-faint); font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase;
}
.scroll-cue .dot { inline-size: 22px; block-size: 34px; border: 2px solid var(--c-line-strong); border-radius: var(--r-pill); position: relative; }
.scroll-cue .dot::after { content:""; position:absolute; inset-block-start:6px; inset-inline-start:50%; translate:-50% 0; inline-size:3px; block-size:7px; border-radius:2px; background:var(--c-accent-deep); animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0%{opacity:0; transform:translateY(0)} 30%{opacity:1} 70%{opacity:1; transform:translateY(8px)} 100%{opacity:0; transform:translateY(10px)} }

/* --- „Externe Rechtsabteilung" / Zielgruppen --- */
.audience { display: grid; gap: clamp(1rem,2.4vw,1.6rem); grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); margin-top: var(--s-8); }
.audience .pill {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.2rem; border: 1px solid rgba(238,234,225,0.16); border-radius: var(--r);
  background: rgba(255,255,255,0.04); color: var(--c-on-dark);
}
.audience .pill svg { inline-size: 22px; block-size: 22px; color: var(--c-accent-soft); flex: none; }

/* --- Ablauf (nummerierte Sequenz) --- */
.steps { counter-reset: step; display: grid; gap: clamp(1rem,2.5vw,1.5rem); grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); }
.step { position: relative; padding-top: var(--s-8); }
.step__num {
  position: absolute; inset-block-start: 0; inset-inline-start: 0;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  inline-size: 46px; block-size: 46px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--c-primary); background: var(--c-surface);
  border: 1px solid var(--c-line-strong);
  box-shadow: var(--sh-1);
}
.step__num::before { counter-increment: step; content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: var(--s-2); margin-top: var(--s-6); }
.step p { color: var(--c-muted); font-size: var(--fs-small); }
.step::after { /* Verbindungslinie zwischen Schritten */
  content: ""; position: absolute; inset-block-start: 22px; inset-inline-start: 46px; inline-size: calc(100% - 46px); block-size: 1px;
  background: repeating-linear-gradient(90deg, var(--c-line-strong) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }

/* --- Kontakt / Formular --- */
.contact__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; }
.form { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3.5vw, 2.5rem); box-shadow: var(--sh-1); }
.field { margin-bottom: var(--s-5); }
.field > label { display: block; font-weight: 700; font-size: 0.92rem; color: var(--c-primary); margin-bottom: 0.4rem; }
.field .req { color: var(--c-red-deep); }
.field input, .field textarea {
  inline-size: 100%; min-height: 52px;
  font: inherit; color: var(--c-ink);
  padding: 0.8rem 1rem;
  /* WCAG 1.4.11: Feldgrenze ≥ 3:1 (Token --c-line-input, 3,7:1 auf Weiß) */
  background: var(--c-bg); border: 1.5px solid var(--c-line-input); border-radius: var(--r);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field input:hover, .field textarea:hover { border-color: var(--c-muted); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--c-primary); background: var(--c-surface);
  box-shadow: 0 0 0 4px rgba(53, 54, 59, 0.15);
}
.field .help { margin-top: 0.35rem; font-size: 0.82rem; color: var(--c-muted); }
.field .error { display: none; margin-top: 0.35rem; font-size: 0.82rem; color: var(--c-red-deep); font-weight: 600; }
.field.has-error input, .field.has-error textarea { border-color: var(--c-red-deep); }
.field.has-error .error { display: block; }

.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-small); color: var(--c-muted); }
.consent input { inline-size: 24px; block-size: 24px; min-height: 0; margin-top: 2px; accent-color: var(--c-red-deep); flex: none; }
.consent a { color: var(--c-red-deep); text-decoration: underline; text-underline-offset: 2px; }

.form__status { margin-top: var(--s-4); font-size: var(--fs-small); font-weight: 600; min-height: 1.2em; }
.form__status.is-ok { color: var(--c-ok); }
.form__status.is-err { color: var(--c-red-deep); }

.contact__direct { display: grid; gap: var(--s-4); align-content: start; }
.contact__direct .row { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact__direct .row svg { inline-size: 24px; block-size: 24px; color: var(--c-red-deep); flex: none; margin-top: 2px; }
.contact__direct .row a { color: var(--c-ink); }
.contact__direct .row a:hover { color: var(--c-red-deep); }
.contact__direct .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-muted); }

/* --- Footer --- */
.footer { background: linear-gradient(180deg, var(--c-primary-deep), var(--c-primary-deeper)); color: var(--c-on-dark-muted); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer__top { display: grid; gap: clamp(1.5rem,4vw,3rem); grid-template-columns: 1fr; }
.footer__logo { display: block; margin-bottom: var(--s-4); }
.footer__logo img { inline-size: auto; block-size: 46px; display: block; }
.footer__brand p { margin-top: var(--s-3); max-width: 38ch; font-size: var(--fs-small); }
.footer h4 { font-family: var(--ff-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-on-dark); margin-bottom: var(--s-4); }
.footer ul { display: grid; gap: 0.6rem; }
.footer a { color: var(--c-on-dark-muted); font-size: var(--fs-small); }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: var(--s-12); padding-top: var(--s-6); border-top: 1px solid rgba(238,234,225,0.12); display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer__disclaimer { margin-top: var(--s-6); font-size: 0.78rem; color: var(--c-on-dark-muted); opacity: 0.85; max-width: 70ch; }

/* Markierte Platzhalter sichtbar machen (im Build; Hinweis in README) */
[data-placeholder] {
  position: relative;
  outline: 1px dashed rgba(236, 30, 36, 0.4);
  outline-offset: 3px;
}

/* 8. (entfällt) — kein Intro-Overlay auf der Vertragsmuster-LP ------------- */

/* 9. SCROLL-REVEALS & MICROINTERACTIONS ------------------------------------ */
/* IntersectionObserver fügt .is-in hinzu (main.js). Fallback ohne JS: .no-js
   zeigt alles sofort (siehe <html class="no-js"> Entfernung im head). */
/* Nur wenn JS aktiv ist, werden Reveals zunächst versteckt — ohne JS bleibt
   aller Inhalt sichtbar (Progressive Enhancement). */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur-lg) var(--ease-out), transform var(--dur-lg) var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* Dünner Scroll-Fortschrittsbalken (Gold), oben fixiert */
.scroll-progress {
  position: fixed; inset-block-start: 0; inset-inline: 0; block-size: 3px; z-index: var(--z-progress);
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--c-accent-deep), var(--c-accent-soft));
  will-change: transform;
}

/* 10. RESPONSIVE ----------------------------------------------------------- */
@media (min-width: 720px) {
  .contact__grid { grid-template-columns: 1.3fr 0.9fr; }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr; }
  .field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .field--row .field { margin-bottom: 0; }
}
@media (min-width: 1024px) {
  .hero__inner { max-width: 60rem; }
}

/* Mobile-Navigation (< 920px): Off-Canvas-Panel */
@media (max-width: 919px) {
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--sh-2);
    display: grid; gap: 0.25rem;
    padding: var(--s-4) var(--gutter) var(--s-6);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--c-line); }
  .nav__links a::after { display: none; }
  .nav__actions { margin-top: var(--s-4); }
  .nav__actions .btn { width: 100%; }
}

/* 11. PREFERS-REDUCED-MOTION ----------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue .dot::after { animation: none; }
  .scroll-progress { display: none; }
}

/* =============================================================================
   12. SHOP-KOMPONENTEN (nur Vertragsmuster-LP)
   Ergänzt die geteilte Basis um Produktkarten, Preise, Bundle, Hinweise.
   ========================================================================== */

/* Zweispaltiges Raster für Produkt-/Lieferumfang-Karten */
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
/* Abstands-Modifier statt Inline-Style (Folge-Raster in einer Sektion) */
.grid--gap-top { margin-top: var(--s-8); }

/* Hinweistext unter dem Formular (kein Mandat durch Absenden) */
.form__note { margin-top: var(--s-4); font-size: 0.82rem; color: var(--c-muted); }

/* --- Hero-Video-Band (CD Mängelregress: dunkles Anthrazit-Band) --- */
.hero--video {
  display: flex; align-items: center;
  min-height: clamp(560px, 92vh, 900px);
  background: var(--c-primary-deep);
  color: var(--c-on-dark);
}
.hero--video::before { display: none; }   /* heller Verlauf entfällt im Video-Band */
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  /* Parallax via transform (main.js, rAF) — leicht überdimensioniert gegen Ränder */
  transform: scale(1.08);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(30, 31, 35, 0.88) 0%, rgba(30, 31, 35, 0.62) 46%, rgba(30, 31, 35, 0.28) 100%),
    linear-gradient(180deg, rgba(30, 31, 35, 0.55) 0%, transparent 30%, transparent 62%, rgba(30, 31, 35, 0.78) 100%);
}
.hero--video .container { position: relative; z-index: 2; }
.hero--video h1 { color: #fff; }
.hero--video .lead { color: rgba(255, 255, 255, 0.84); }
.hero--video .eyebrow { color: var(--c-accent-soft); }
.hero--video .hero__trust { border-top-color: rgba(255, 255, 255, 0.16); }
.hero--video .hero__trust .trust-item { color: var(--c-on-dark-muted); }
.hero--video .hero__trust .trust-item svg { color: var(--c-accent-soft); }
.hero--video .scroll-cue { color: var(--c-on-dark-muted); }
.hero--video .scroll-cue .dot { border-color: rgba(255, 255, 255, 0.3); }
.hero--video .scroll-cue .dot::after { background: var(--c-accent-soft); }

/* Pause-/Play-Steuerung des Hero-Videos (WCAG 2.2.2) */
.hero__pause {
  position: absolute; z-index: 3;
  inset-block-end: clamp(1rem, 3vw, 1.5rem); inset-inline-end: clamp(1rem, 3vw, 1.5rem);
  inline-size: 44px; block-size: 44px;             /* Touch-Target */
  display: grid; place-items: center;
  background: rgba(30, 31, 35, 0.55); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55); border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.hero__pause:hover { background: rgba(30, 31, 35, 0.8); border-color: #fff; }
.hero__pause .ico-play { display: none; }
.hero__pause[data-state="paused"] .ico-pause { display: none; }
.hero__pause[data-state="paused"] .ico-play { display: block; }

/* --- Fakten-Strip (Zahlen der Sammlung; vgl. Mängelregress facts) --- */
.facts { padding-block: clamp(2.5rem, 5vw, 4rem); background: var(--c-surface); border-bottom: 1px solid var(--c-line); }
.facts__grid {
  display: grid; gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.fact__num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
  color: var(--c-primary); line-height: 1; letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 0.15em;
}
.fact__num .unit { color: var(--c-red); font-size: 0.6em; font-weight: 700; }
.fact__label { margin-top: var(--s-2); color: var(--c-muted); font-size: var(--fs-small); max-width: 24ch; }

/* --- Produktkarte (erweitert .card) --- */
.product { display: flex; flex-direction: column; }
.product .checklist { margin-bottom: var(--s-5); }

.fassung-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  align-self: flex-start;
  padding: 0.3rem 0.7rem; margin-bottom: var(--s-4);
  border-radius: var(--r-pill);
  background: var(--c-red-soft); color: var(--c-red-deep);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.fassung-tag svg { inline-size: 14px; block-size: 14px; }

.product__lead { color: var(--c-ink) !important; font-weight: 600; }

/* Fuß der Produktkarte: Preis + Kauf-Button, immer unten bündig */
.product__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s-3);
  padding-top: var(--s-5); border-top: 1px solid var(--c-line);
}

.price { display: flex; align-items: baseline; gap: 0.35rem; margin: 0; }
.price__amount {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.3rem);
  color: var(--c-primary); line-height: 1;
}
.price__unit { color: var(--c-muted); font-size: var(--fs-small); font-weight: 700; }
.price--lg .price__amount { font-size: clamp(2.2rem, 1.6rem + 2.2vw, 3rem); }
.price__hint { color: var(--c-faint); font-size: 0.8rem; margin-top: var(--s-3); text-align: center; }

.product__sample {
  margin-top: var(--s-4); align-self: flex-start;
  font-size: var(--fs-small); color: var(--c-muted);
  text-decoration: underline; text-underline-offset: 3px;
}
.product__sample:hover { color: var(--c-red-deep); }

/* --- Bundle-Karte (hervorgehoben) --- */
.product--featured {
  position: relative; margin-top: clamp(1rem, 2.4vw, 1.6rem);
  border: 2px solid var(--c-accent); box-shadow: var(--sh-2);
}
.product--featured:hover { transform: none; }
.product__badge {
  position: absolute; inset-block-start: -0.85rem; inset-inline-start: clamp(1.5rem, 3vw, 2rem);
  padding: 0.35rem 0.9rem; border-radius: var(--r-pill);
  background: var(--c-red); color: #fff;    /* CD: rote Pill */
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  box-shadow: var(--sh-1);
}
.product--featured__grid {
  display: grid; gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center;
  grid-template-columns: 1.6fr 1fr;
}
.product--featured__buy {
  display: flex; flex-direction: column; align-items: stretch;
  gap: var(--s-2);
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  background: var(--c-bg-alt); border-radius: var(--r);
}
.product--featured__buy .price { justify-content: center; margin-bottom: var(--s-2); }
.checklist--tight { gap: 0.4rem; }

/* --- Lieferumfang: „nicht enthalten“-Liste --- */
.checklist--no li { color: var(--c-faint); }
.checklist--no svg { color: var(--c-red); }
.card code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.85em; background: var(--c-bg-alt);
  padding: 0.05em 0.35em; border-radius: 4px; color: var(--c-primary);
}

/* --- Produktkarte: Meta-Zeile (Lieferumfang/Rechtsstand, Spez §1) --- */
.product__meta { color: var(--c-faint); font-size: 0.8rem; margin-top: var(--s-3); }
.price__list { color: var(--c-muted); font-size: var(--fs-small); text-align: center; }
.price__list s { color: var(--c-faint); }

/* --- Anker für die Anfrage-Route (#anfrage auf der Kontakt-Sektion) --- */
.anchor { position: absolute; transform: translateY(calc(-1 * var(--nav-h))); }

/* =============================================================================
   13. PRODUKTBUILDER (Spez §5) — Schritte, Options-Karten, Sticky-Preisleiste,
   Ergebnisansicht. Preislogik: assets/js/katalog.js.
   ========================================================================== */
.builder__steps {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.builder__stepbtn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.95rem; border-radius: var(--r-pill);
  border: 1.5px solid var(--c-line-strong); background: var(--c-surface);
  color: var(--c-muted); font: 700 0.82rem/1 var(--ff-body);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.builder__stepbtn b {
  display: grid; place-items: center;
  inline-size: 22px; block-size: 22px; border-radius: 50%;
  background: var(--c-bg-alt); color: var(--c-muted); font-size: 0.72rem;
}
.builder__stepbtn[aria-current="step"] { border-color: var(--c-red-deep); color: var(--c-primary); }
.builder__stepbtn[aria-current="step"] b { background: var(--c-red-deep); color: #fff; }
.builder__stepbtn.is-done b { background: var(--c-primary); color: #fff; }
.builder__stepbtn:disabled { opacity: 0.45; cursor: not-allowed; }

.builder__panel { border: 0; padding: 0; margin: 0; }
.builder__panelhead {
  font-family: var(--ff-display); font-weight: 700; font-size: var(--fs-h3);
  color: var(--c-primary); letter-spacing: -0.01em;
  padding: 0; margin-bottom: var(--s-4);
}
.builder__panelhead:focus { outline: none; }
.builder__erl { color: var(--c-muted); max-width: 60ch; margin-bottom: var(--s-5); }

.builder__opts { display: grid; gap: 0.7rem; margin-bottom: var(--s-5); max-width: 640px; }
.opt {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  background: var(--c-surface); border: 1.5px solid var(--c-line-strong);
  border-radius: var(--r); cursor: pointer;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.opt:hover { border-color: var(--c-muted); }
.opt:focus-within { outline: 3px solid var(--c-red); outline-offset: 2px; }
.opt input { inline-size: 20px; block-size: 20px; margin-top: 2px; accent-color: var(--c-red-deep); flex: none; }
.opt input:disabled { opacity: 0.4; }
.opt:has(input:checked) { border-color: var(--c-red-deep); box-shadow: 0 0 0 1px var(--c-red-deep); }
.opt:has(input:disabled) { opacity: 0.55; cursor: not-allowed; }
.opt span { color: var(--c-ink); font-size: 0.95rem; line-height: 1.45; }
.opt small { display: block; color: var(--c-muted); font-size: 0.82rem; margin-top: 0.15rem; }
.opt em { color: var(--c-red-deep); font-style: normal; font-weight: 700; }

.builder__nav { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: var(--s-5); }
.builder__panel .error { display: block; color: var(--c-red-deep); font-size: 0.85rem; font-weight: 600; }
.builder__panel .error[hidden] { display: none; }

.builder__notice {
  background: var(--c-red-soft); border-inline-start: 3px solid var(--c-red-deep);
  color: var(--c-ink); padding: 0.8rem 1rem; border-radius: var(--r-sm);
  font-size: var(--fs-small); max-width: 640px; margin-block: var(--s-3);
}
.builder__nudge {
  border: 2px solid var(--c-red-deep); border-radius: var(--r);
  padding: 1rem 1.2rem; margin-bottom: var(--s-5); max-width: 640px;
  display: grid; gap: 0.8rem; justify-items: start;
}
.builder__haus {
  margin-top: var(--s-6); padding: 1.2rem 1.4rem; max-width: 640px;
  background: var(--c-bg-alt); border-radius: var(--r);
  border-inline-start: 3px solid var(--c-primary);
  display: grid; gap: 0.6rem; justify-items: start;
}
.builder__haus h4 { font-size: 1rem; color: var(--c-primary); }

.builder__result { max-width: 640px; }
.builder__summary { display: grid; gap: 0.55rem; margin-block: var(--s-5); }
.builder__summary > div {
  display: grid; grid-template-columns: 140px 1fr; gap: 0.8rem;
  padding-bottom: 0.55rem; border-bottom: 1px solid var(--c-line);
  font-size: var(--fs-small);
}
.builder__summary dt { color: var(--c-muted); font-weight: 700; }
.builder__summary dd { color: var(--c-ink); }
.builder__price { margin-top: var(--s-4); }
.builder__savings { color: var(--c-red-deep); font-weight: 700; margin-top: 0.3rem; }
.builder__foot { color: var(--c-faint); font-size: 0.8rem; margin-top: var(--s-3); max-width: 55ch; }
.builder__reasons { margin-block: var(--s-4); display: grid; gap: 0.4rem; color: var(--c-muted); font-size: var(--fs-small); list-style: disc; padding-inline-start: 1.2rem; }
.builder__copecart {
  margin-block: var(--s-5); padding: 0.8rem 1rem;
  background: var(--c-bg-alt); border-radius: var(--r-sm);
  color: var(--c-muted); font-size: 0.85rem; max-width: 60ch;
}
.builder__result .btn { margin-top: var(--s-2); }
.builder__err { color: var(--c-red-deep); font-weight: 600; }

/* Sticky-Preisleiste (Spez §5: ab Schritt 2 dauerhaft sichtbar) */
.builder__sticky {
  position: sticky; inset-block-end: 0; z-index: 5;
  margin-top: var(--s-8);
  display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap;
  background: var(--c-primary-deep); color: var(--c-on-dark);
  padding: 0.8rem 1.2rem; border-radius: var(--r) var(--r) 0 0;
  box-shadow: var(--sh-2);
}
.builder__sticky-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--c-on-dark-muted); font-weight: 700; }
.builder__sticky-price { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; }
.builder__sticky-meta { color: var(--c-on-dark-muted); font-size: 0.82rem; }

/* =============================================================================
   15. CONVERSION-BAUSTEINE
   Preisanker, Sticky-Leiste, Autorität/Stimmen, Leseprobe, Wertrechner,
   Vergleichstabelle, Zwischen-CTAs, Disqualifikation, Zusage.
   ========================================================================== */

/* --- Telefon in der Navbar --- */
.nav__tel {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--c-primary); font-weight: 700; font-size: var(--fs-small);
  white-space: nowrap;
}
.nav__tel svg { color: var(--c-red-deep); flex: none; }
.nav__tel:hover { color: var(--c-red-deep); }

/* --- Preisanker im Hero --- */
.hero__anchor {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem;
  margin-bottom: var(--s-6);
  color: rgba(255, 255, 255, 0.9); font-size: var(--fs-small);
}
.hero__anchor-price {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.4rem; color: #fff;
}
.hero__anchor-sep { color: var(--c-accent-soft); }

/* --- Sticky-Handlungsleiste --- */
.stickybar {
  position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 90;
  background: var(--c-primary-deep); color: var(--c-on-dark);
  border-block-start: 3px solid var(--c-red);
  box-shadow: 0 -6px 24px rgba(30, 31, 35, 0.22);
  padding-block: 0.7rem;
  animation: stickyIn var(--dur-lg) var(--ease-out);
}
@keyframes stickyIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
.stickybar[hidden] { display: none; }
.stickybar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.stickybar__text { margin: 0; font-size: var(--fs-small); }
.stickybar__text b { color: #fff; }
.stickybar__text span { color: var(--c-on-dark-muted); }
.stickybar__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.stickybar .btn { min-height: 44px; padding-block: 0.6rem; }

/* --- Zwischen-CTA --- */
.midcta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem 1.5rem; flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.2rem, 3vw, 1.8rem);
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-inline-start: 4px solid var(--c-red);
  border-radius: var(--r); box-shadow: var(--sh-1);
}
.midcta p { margin: 0; color: var(--c-ink); font-weight: 600; }
.midcta__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.section--alt .midcta { background: var(--c-surface); }

/* --- Autorität (Person) --- */
.autor {
  display: grid; gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 200px 1fr; align-items: start;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); box-shadow: var(--sh-1);
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.autor__foto {
  display: block; aspect-ratio: 1;
  border-radius: var(--r); overflow: hidden;
  background: var(--c-bg-alt);
  box-shadow: var(--sh-1);
}
.autor__foto img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.autor__text h3 { margin-bottom: 0.2rem; }
.autor__rolle {
  color: var(--c-red-deep); font-weight: 700; font-size: var(--fs-small);
  margin-bottom: var(--s-4);
}
.autor__text p { color: var(--c-muted); }

/* --- Mandantenstimmen --- */
.stimmen__title { font-size: 1.05rem; color: var(--c-primary); margin-bottom: 0.5rem; }
.stimmen__hinweis {
  color: var(--c-muted); font-size: var(--fs-small);
  max-width: 74ch; margin-bottom: var(--s-6);
}
.stimme { display: flex; flex-direction: column; gap: 0.8rem; }
.stimme__sterne svg { inline-size: 26px; block-size: 26px; color: var(--c-red); }
.stimme blockquote { margin: 0; }
.stimme blockquote p {
  color: var(--c-ink); font-size: 0.96rem; line-height: 1.55;
}
.stimme figcaption {
  margin-top: auto; padding-top: var(--s-3);
  border-top: 1px solid var(--c-line);
  color: var(--c-muted); font-size: var(--fs-small);
}
.stimme figcaption b { color: var(--c-primary); }

/* --- Leseprobe --- */
.leseprobe {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1.15fr 0.85fr; align-items: center;
}
.leseprobe__text h2 { margin-bottom: var(--s-4); }
.leseprobe__form { padding: clamp(1.4rem, 3vw, 1.9rem); }
.leseprobe__form h3 { margin-bottom: var(--s-5); }
.leseprobe__skip {
  margin-top: var(--s-4); text-align: center;
  color: var(--c-muted); font-size: 0.82rem;
}
.leseprobe__skip a { text-decoration: underline; text-underline-offset: 3px; }

/* --- Wertrechner (auf dunklem Band) --- */
.rechner {
  display: grid; gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 1.05fr 0.95fr; align-items: start;
}
.rechner__inputs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r); padding: clamp(1.2rem, 3vw, 1.6rem);
}
.rechner__inputs .field { margin-bottom: var(--s-5); }
.rechner__inputs .field:last-child { margin-bottom: 0; }
.rechner__inputs label { color: var(--c-on-dark); display: flex; justify-content: space-between; gap: 0.5rem; }
.rechner__inputs .help { color: var(--c-on-dark-muted); }
.rechner__inputs output { color: var(--c-accent-soft); font-weight: 700; }
.rechner__inputwrap { display: flex; align-items: center; gap: 0.5rem; }
.rechner__inputwrap input {
  background: rgba(255, 255, 255, 0.94); border-color: transparent;
}
.rechner__unit { color: var(--c-on-dark-muted); font-weight: 700; flex: none; }
.rechner input[type="range"] { inline-size: 100%; accent-color: var(--c-red); min-height: 44px; }

.rechner__out {
  background: var(--c-surface); color: var(--c-ink);
  border-radius: var(--r); padding: clamp(1.2rem, 3vw, 1.6rem);
  box-shadow: var(--sh-2);
}
.rechner__label {
  color: var(--c-muted); font-size: 0.76rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  margin-top: var(--s-4);
}
.rechner__label:first-child { margin-top: 0; }
.rechner__big {
  font-family: var(--ff-display); font-weight: 700; line-height: 1;
  font-size: clamp(2.1rem, 1.5rem + 2.4vw, 3rem); color: var(--c-red-deep);
}
.rechner__mid {
  font-family: var(--ff-display); font-weight: 700; line-height: 1;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem); color: var(--c-primary);
}
.rechner__out hr { border: 0; border-top: 1px solid var(--c-line); margin-block: var(--s-5); }
.rechner__vergleich { color: var(--c-ink); font-size: var(--fs-small); }
.rechner__vergleich b { color: var(--c-red-deep); }
.rechner__faktor {
  margin-block: var(--s-3) var(--s-4);
  font-weight: 700; color: var(--c-primary);
}
.rechner__disclaimer {
  margin-top: var(--s-6); max-width: 80ch;
  color: var(--c-on-dark-muted); font-size: 0.8rem; line-height: 1.55;
}

/* --- Vergleichstabelle --- */
.vergleich__title { font-size: 1.05rem; color: var(--c-primary); margin-top: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: var(--s-4); }
.vergleich { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--c-line); background: var(--c-surface); }
.vergleich__table { width: 100%; min-width: 46rem; border-collapse: collapse; font-size: var(--fs-small); }
.vergleich__table th, .vergleich__table td {
  padding: 0.7rem 0.9rem; text-align: center;
  border-bottom: 1px solid var(--c-line);
}
.vergleich__table thead th {
  background: var(--c-primary); color: #fff;
  font-size: 0.8rem; line-height: 1.3; vertical-align: bottom;
  position: sticky; inset-block-start: 0;
}
.vergleich__table thead th.is-best { background: var(--c-red-deep); }
.vergleich__table tbody th[scope="row"] {
  text-align: start; color: var(--c-ink); font-weight: 600;
  background: var(--c-bg); white-space: nowrap;
}
.vergleich__table td { color: var(--c-muted); }
.vergleich__table td.is-best { background: var(--c-red-soft); color: var(--c-ink); font-weight: 600; }
.vergleich__table .y { color: var(--c-red-deep); font-weight: 700; }
.vergleich__table .n { color: var(--c-faint); }
.vergleich__preis th, .vergleich__preis td {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  color: var(--c-primary); padding-block: 0.9rem;
}
.vergleich__cta td { padding-block: 1rem; }
.vergleich__cta .btn { width: 100%; min-height: 44px; padding-inline: 0.9rem; font-size: 0.78rem; }
.vergleich__hint { margin-top: var(--s-4); color: var(--c-muted); font-size: var(--fs-small); }

/* --- Disqualifikation („nicht gedacht für") --- */
.nichtfuer {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--r);
  background: rgba(255, 255, 255, 0.04);
}
.nichtfuer h3 { color: #fff; font-size: 1.05rem; margin-bottom: var(--s-4); }
.nichtfuer em { color: var(--c-accent-soft); font-style: normal; }
.nichtfuer ul { display: grid; gap: 0.7rem; }
.nichtfuer li { display: flex; gap: 0.7rem; color: var(--c-on-dark-muted); font-size: var(--fs-small); line-height: 1.5; }
.nichtfuer li svg { flex: none; inline-size: 18px; block-size: 18px; color: var(--c-accent-soft); margin-top: 2px; }
.nichtfuer b { color: var(--c-on-dark); }

/* --- Zusage (Risikoumkehr) --- */
.zusage {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: var(--s-6);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  background: var(--c-surface); border: 2px solid var(--c-red-deep);
  border-radius: var(--r); box-shadow: var(--sh-1);
}
.zusage__icon {
  flex: none; inline-size: 44px; block-size: 44px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--c-red-soft); color: var(--c-red-deep);
}
.zusage__icon svg { inline-size: 24px; block-size: 24px; }
.zusage h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.zusage p { color: var(--c-muted); font-size: var(--fs-small); }
.zusage__grenze { margin-top: var(--s-3); color: var(--c-faint); }

/* --- Leseprobe-Dokumentseite (leseprobe.html) --- */
.doc { background: var(--c-bg); }
.doc__head {
  background: var(--c-primary-deep); color: var(--c-on-dark);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.doc__head h1 { color: #fff; font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.8rem); margin-bottom: var(--s-4); }
.doc__head .lead { color: rgba(255, 255, 255, 0.85); }
.doc__meta { margin-top: var(--s-5); color: var(--c-on-dark-muted); font-size: var(--fs-small); }
.doc__meta a { color: var(--c-accent-soft); text-decoration: underline; text-underline-offset: 3px; }
.doc__body { padding-block: clamp(2.5rem, 6vw, 4rem); }
.doc__brand { display: inline-block; margin-bottom: var(--s-6); }
.doc__brand img { block-size: 44px; inline-size: auto; display: block; }

/* Rechtstexte: schmale Spalte, klare Abschnittsgliederung */
.doc__legal { max-width: 78ch; }
.doc__legal section { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.doc__legal h2 {
  font-size: 1.15rem; color: var(--c-primary);
  padding-inline-start: 0.8rem; border-inline-start: 4px solid var(--c-red);
  margin-bottom: var(--s-4); line-height: 1.35;
}
.doc__legal p { color: var(--c-muted); line-height: 1.7; }
.doc__legal p + p { margin-top: var(--s-4); }
.doc__legal strong { color: var(--c-ink); }
.doc__legal a { color: var(--c-red-deep); text-decoration: underline; text-underline-offset: 3px; }
.doc__legal ul { display: grid; gap: 0.4rem; padding-inline-start: 1.3rem; list-style: disc; color: var(--c-muted); margin-block: var(--s-4); }
.doc__legal code { font-family: ui-monospace, Consolas, monospace; font-size: 0.9em; background: var(--c-bg-alt); padding: 0.05em 0.35em; border-radius: 3px; }
.doc__redaktion {
  background: var(--c-red-soft); border-inline-start: 4px solid var(--c-red-deep);
  border-radius: var(--r-sm); padding: 1rem 1.2rem;
}
.doc__redaktion p { color: var(--c-ink); font-size: var(--fs-small); }

.synopse { display: grid; gap: clamp(1.2rem, 3vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.synopse__col {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: clamp(1.3rem, 3vw, 1.8rem);
  box-shadow: var(--sh-1);
}
.synopse__tag {
  display: inline-block; padding: 0.3rem 0.8rem; border-radius: var(--r-pill);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.synopse__tag--vk { background: var(--c-bg-alt); color: var(--c-primary); }
.synopse__tag--kae { background: var(--c-red-soft); color: var(--c-red-deep); }
.synopse__col h2 { font-size: 1.25rem; margin-bottom: var(--s-4); }
.klausel {
  margin: 0; padding: 1rem 1.2rem;
  background: var(--c-bg); border-inline-start: 3px solid var(--c-line-strong);
  border-radius: var(--r-sm);
  font-size: 0.92rem; line-height: 1.65; color: var(--c-ink);
}
.klausel p + p { margin-top: var(--s-4); }
.klausel mark { background: var(--c-red-soft); color: var(--c-ink); padding: 0.05em 0.15em; }
.klausel var {
  font-family: ui-monospace, Consolas, monospace; font-style: normal;
  font-size: 0.88em; background: var(--c-bg-alt); padding: 0.05em 0.3em; border-radius: 3px;
}
.synopse__note { margin-top: var(--s-5); }
.synopse__note h3 {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-red-deep); margin-bottom: 0.4rem;
}
.synopse__note p { color: var(--c-muted); font-size: var(--fs-small); }
.doc__alt { margin-top: clamp(2.5rem, 5vw, 3.5rem); max-width: 78ch; }
.doc__alt h2 { font-size: 1.35rem; margin-bottom: var(--s-4); }
.doc__alt .mono { font-family: ui-monospace, Consolas, monospace; font-size: 0.85em; color: var(--c-red-deep); }
.doc__hint {
  margin-block: var(--s-4); padding: 0.7rem 0.95rem;
  background: var(--c-bg-alt); border-radius: var(--r-sm);
  color: var(--c-muted); font-size: var(--fs-small);
}
.doc__alt > p:last-child { margin-top: var(--s-4); color: var(--c-muted); font-size: var(--fs-small); }
.doc__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: clamp(1.5rem, 4vw, 2.2rem);
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-inline-start: 4px solid var(--c-red); border-radius: var(--r);
}
.doc__cta h2 { font-size: 1.35rem; margin-bottom: var(--s-3); }
.doc__cta p { margin-bottom: var(--s-5); }
.doc__disclaimer { margin-top: var(--s-8); color: var(--c-faint); font-size: 0.8rem; max-width: 80ch; }
.doc__foot {
  background: var(--c-primary-deeper); color: var(--c-on-dark-muted);
  padding-block: var(--s-8); font-size: var(--fs-small);
}
.doc__foot a { color: var(--c-accent-soft); }

@media (max-width: 860px) {
  .autor { grid-template-columns: 1fr; }
  .autor__foto { max-inline-size: 180px; }
  .leseprobe, .rechner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav__tel span { display: none; }
  .stickybar__text { flex: 1 1 100%; }
  .stickybar__actions { flex: 1 1 100%; }
  .stickybar__actions .btn { flex: 1; }
  .midcta { flex-direction: column; align-items: stretch; }
  .midcta .btn { width: 100%; }
}

/* =============================================================================
   14. DETAIL-AUSKLAPPER (Produktinhalte)
   Gemeinsame Basis für .prod-detail (Produktkarten), .acc (Zusatzprodukte),
   .opt-more (Builder-Optionen) und .deliverables (Leistungsübersicht).
   Alle auf <details>/<summary> — funktionieren ohne JavaScript.
   ========================================================================== */

/* Nativen Marker abschalten, eigenen Chevron setzen */
.prod-detail > summary,
.acc > summary,
.opt-more > summary,
.deliverables > summary,
.deliverables__group > summary,
.video-transcript > summary { list-style: none; }
.prod-detail > summary::-webkit-details-marker,
.acc > summary::-webkit-details-marker,
.opt-more > summary::-webkit-details-marker,
.deliverables > summary::-webkit-details-marker,
.deliverables__group > summary::-webkit-details-marker,
.video-transcript > summary::-webkit-details-marker { display: none; }

/* WCAG 2.4.7: summary ist fokussierbar, aber nicht Teil der globalen Regel */
summary:focus-visible {
  outline: 3px solid var(--c-red);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Chevron (dreht beim Öffnen) */
.chev::after,
.prod-detail > summary::after,
.acc > summary::after,
.opt-more > summary::after,
.deliverables > summary::after,
.deliverables__group > summary::after {
  content: "";
  inline-size: 8px; block-size: 8px; flex: none;
  border-inline-end: 2px solid currentColor;
  border-block-end: 2px solid currentColor;
  rotate: 45deg;
  translate: 0 -2px;
  transition: rotate var(--dur) var(--ease);
}
.prod-detail[open] > summary::after,
.acc[open] > summary::after,
.opt-more[open] > summary::after,
.deliverables[open] > summary::after,
.deliverables__group[open] > summary::after { rotate: -135deg; translate: 0 2px; }

/* --- a) Produktkarten-Ausklapper --- */
.prod-detail { margin-top: var(--s-4); border-top: 1px solid var(--c-line); padding-top: var(--s-4); }
.prod-detail > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  cursor: pointer; color: var(--c-red-deep);
  font-size: var(--fs-small); font-weight: 700;
}
.prod-detail > summary:hover { color: var(--c-red-hover); }
.prod-detail__body { padding-top: var(--s-4); font-size: var(--fs-small); color: var(--c-muted); }
.prod-detail__body h4 {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-primary); margin-top: var(--s-4); margin-bottom: 0.4rem;
}
.prod-detail__body h4:first-child { margin-top: 0; }
.prod-detail__body p { margin-bottom: 0.2rem; line-height: 1.55; }
.prod-detail__body ul { display: grid; gap: 0.4rem; padding-inline-start: 1.1rem; list-style: disc; }
.prod-detail__body li { line-height: 1.5; }
.prod-detail__body strong { color: var(--c-ink); }
.prod-detail__files { list-style: none !important; padding-inline-start: 0 !important; }
.prod-detail__files li { padding-inline-start: 1.4rem; position: relative; }
.prod-detail__files li::before {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-start: 0.42em;
  inline-size: 8px; block-size: 8px; border-radius: 2px; background: var(--c-red);
}
.prod-detail__note {
  margin-top: var(--s-4); padding: 0.7rem 0.9rem;
  background: var(--c-bg-alt); border-radius: var(--r-sm);
  border-inline-start: 3px solid var(--c-line-strong);
  font-size: 0.85rem;
}

/* --- b) Accordion der Zusatzprodukte --- */
.acc-group__title {
  font-size: 1rem; color: var(--c-primary);
  margin-top: clamp(2rem, 4vw, 2.75rem); margin-bottom: var(--s-4);
  padding-inline-start: 0.9rem; border-inline-start: 4px solid var(--c-red);
  line-height: 1.35;
}
.acc-group__hint {
  display: flex; gap: 0.7rem; align-items: flex-start;
  max-width: 70ch; margin-bottom: var(--s-4);
  color: var(--c-muted); font-size: var(--fs-small); line-height: 1.55;
}
.acc-group__hint svg { flex: none; color: var(--c-red-deep); margin-top: 2px; }
/* minmax(0,1fr) statt 1fr: Grid-Items dürfen unter ihre min-content-Breite
   schrumpfen, sonst sprengen lange Zeilen das Raster auf schmalen Viewports. */
.acc-group { display: grid; gap: 0.6rem; grid-template-columns: minmax(0, 1fr); }

.acc {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r); box-shadow: var(--sh-1);
  transition: border-color var(--dur) var(--ease);
}
.acc[open] { border-color: var(--c-line-strong); }
.acc > summary {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  padding: 1rem 1.2rem; cursor: pointer;
}
.acc > summary:hover { background: var(--c-bg-alt); border-radius: var(--r); }
.acc__title { flex: 1 1 16rem; color: var(--c-ink); font-size: 0.95rem; line-height: 1.45; }
.acc__title b { color: var(--c-primary); }
.acc__price {
  color: var(--c-red-deep); font-weight: 700; font-size: var(--fs-small);
  white-space: nowrap;
}
.acc__price s { color: var(--c-faint); font-weight: 400; margin-inline-start: 0.35rem; }
.acc__body {
  padding: 0 1.2rem 1.2rem; font-size: var(--fs-small); color: var(--c-muted);
  display: grid; gap: 0.7rem; max-width: 72ch;
}
.acc__body ul { display: grid; gap: 0.45rem; padding-inline-start: 1.1rem; list-style: disc; }
.acc__body li { line-height: 1.5; }
.acc__body strong { color: var(--c-ink); }
.acc__warn {
  padding: 0.6rem 0.85rem; background: var(--c-red-soft);
  border-radius: var(--r-sm); color: var(--c-ink);
}
.acc__result {
  padding: 0.6rem 0.85rem; background: var(--c-bg-alt);
  border-inline-start: 3px solid var(--c-primary); border-radius: var(--r-sm);
  color: var(--c-ink);
}
.acc__route { color: var(--c-red-deep); font-weight: 600; }
.acc__prices { list-style: none !important; padding-inline-start: 0 !important; }
.acc__prices li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-block: 0.35rem; border-bottom: 1px solid var(--c-line);
}
.acc__prices span { color: var(--c-primary); font-weight: 700; white-space: nowrap; }
.acc--featured { border-color: var(--c-red-deep); border-width: 2px; }
/* Breite Tabellen scrollen in sich selbst, statt die Seite zu verbreitern */
.acc__body { overflow-x: auto; }
.acc__table { width: 100%; min-width: 22rem; border-collapse: collapse; font-size: 0.85rem; }
.acc__table th, .acc__table td { text-align: start; padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--c-line); }
.acc__table th { color: var(--c-primary); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.acc__table td { color: var(--c-muted); }
.nowrap { white-space: nowrap; }

/* --- c) Builder: Detail-Ausklapper unter einer Option ---
   Das <details> liegt bewusst AUSSERHALB des <label>, sonst würde ein Klick
   auf „Details“ die Auswahl umschalten. */
.opt-wrap { display: grid; gap: 0.35rem; }
.opt-more > summary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding-inline-start: 2.9rem;
  cursor: pointer; color: var(--c-muted); font-size: 0.82rem; font-weight: 700;
}
.opt-more > summary:hover { color: var(--c-red-deep); }
.opt-more > div {
  margin-inline-start: 2.9rem; margin-block-start: 0.4rem;
  padding: 0.75rem 0.95rem;
  background: var(--c-bg-alt); border-radius: var(--r-sm);
  font-size: 0.85rem; color: var(--c-muted);
  display: grid; gap: 0.5rem;
}
.opt-more ul { display: grid; gap: 0.35rem; padding-inline-start: 1.1rem; list-style: disc; }
.opt-more em { color: var(--c-ink); font-style: normal; font-weight: 600; }

/* --- d) Leistungsübersicht in der Ergebnisansicht --- */
.deliverables {
  margin-top: var(--s-5);
  border: 1px solid var(--c-line); border-radius: var(--r);
  background: var(--c-surface);
}
.deliverables > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 0.9rem 1.1rem; cursor: pointer;
  color: var(--c-primary); font-weight: 700; font-size: 0.95rem;
}
.deliverables > summary:hover { color: var(--c-red-deep); }
.deliverables__body { padding: 0 1.1rem 1.1rem; font-size: var(--fs-small); color: var(--c-muted); }
.deliverables__body h4 {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-primary); margin-top: var(--s-5); margin-bottom: 0.5rem;
}
.deliverables__body > ul { display: grid; gap: 0.4rem; padding-inline-start: 1.1rem; list-style: disc; }
.deliverables__count {
  padding: 0.7rem 0.9rem; background: var(--c-bg-alt); border-radius: var(--r-sm);
  color: var(--c-ink); line-height: 1.5;
}
.deliverables__count b { color: var(--c-red-deep); }
.deliverables__group { border-block-end: 1px solid var(--c-line); }
.deliverables__group > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding-block: 0.6rem; cursor: pointer;
  color: var(--c-ink); font-weight: 700;
}
.deliverables__group > summary:hover { color: var(--c-red-deep); }
.deliverables__group > summary em { color: var(--c-red-deep); font-style: normal; font-weight: 400; font-size: 0.85em; }
.deliverables__group > div { padding-block-end: 0.8rem; display: grid; gap: 0.5rem; }
.deliverables__group ul { display: grid; gap: 0.35rem; padding-inline-start: 1.1rem; list-style: disc; }
.deliverables__side { color: var(--c-faint); line-height: 1.5; }
.deliverables__side b { color: var(--c-muted); }
.deliverables__warn {
  padding: 0.55rem 0.8rem; background: var(--c-red-soft);
  border-radius: var(--r-sm); color: var(--c-ink);
}

/* --- e) Positionsaufstellung mit Einzelpreisen --- */
.builder__positions {
  width: 100%; border-collapse: collapse;
  margin-block: var(--s-5); font-size: var(--fs-small);
}
.builder__positions caption {
  text-align: start; color: var(--c-muted); font-weight: 700;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding-bottom: 0.5rem;
}
.builder__positions td, .builder__positions th {
  text-align: start; padding: 0.55rem 0; border-bottom: 1px solid var(--c-line);
}
.builder__positions td:last-child, .builder__positions th:last-child { text-align: end; white-space: nowrap; }
.builder__positions td { color: var(--c-muted); }
.builder__positions tfoot th {
  color: var(--c-primary); font-size: 1rem; border-bottom: 0; padding-top: 0.7rem;
}
.builder__positions .is-inquiry td { color: var(--c-faint); }
.builder__positions .is-inquiry em { color: var(--c-red-deep); font-style: normal; }

/* Risiko-Video (50 s): gerahmter Player + Transkript */
.videofig { max-width: 960px; margin-inline: auto; }
.videofig video {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-lg); box-shadow: var(--sh-2);
  background: var(--c-primary-deep);
}
.video-transcript { max-width: 960px; margin: var(--s-5) auto 0; }
.video-transcript > summary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: pointer; font-weight: 700; color: var(--c-primary);
  font-size: var(--fs-small);
}
.video-transcript > summary::after {
  content: ""; inline-size: 8px; block-size: 8px; flex: none;
  border-inline-end: 2px solid currentColor; border-block-end: 2px solid currentColor;
  rotate: 45deg; translate: 0 -2px;
  transition: rotate var(--dur) var(--ease);
}
.video-transcript[open] > summary::after { rotate: -135deg; translate: 0 2px; }
.video-transcript summary:hover { color: var(--c-red-deep); }
.video-transcript ol {
  margin-top: var(--s-4); padding-inline-start: 1.4rem;
  display: grid; gap: 0.5rem; color: var(--c-muted); font-size: var(--fs-small);
  list-style: decimal;
}
.video-transcript em { color: var(--c-faint); font-style: italic; }

/* Anfrage-Route: Konfigurations-Zusammenfassung im Formularkopf */
.anfrage__summary {
  margin-bottom: var(--s-5); padding: 0.9rem 1.1rem;
  background: var(--c-bg-alt); border-inline-start: 3px solid var(--c-red-deep);
  border-radius: var(--r-sm); font-size: var(--fs-small); color: var(--c-ink);
}

/* --- Rechtliche Hinweise (Notice-Box) --- */
.notice {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-inline-start: 3px solid var(--c-accent);
  border-radius: var(--r); box-shadow: var(--sh-1);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.notice__list { display: grid; gap: var(--s-4); list-style: none; }
.notice__list li { color: var(--c-muted); font-size: var(--fs-small); line-height: var(--lh-body); }
.notice__list strong { color: var(--c-ink); }
.notice__legal { margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--c-line); color: var(--c-faint); font-size: 0.82rem; }

/* --- Ablauf-Hinweis (Widerruf) --- */
.ablauf-note {
  max-width: var(--maxw-narrow); margin: var(--s-8) auto 0;
  text-align: center; color: var(--c-muted); font-size: var(--fs-small);
}

@media (max-width: 720px) {
  .product--featured__grid { grid-template-columns: 1fr; }
}

/* Abo-Zeile in der Positionsaufstellung des Konfigurators.
   Sie steht unter „Gesamt netto", nicht darin: Die Summe ist der Einmalpreis.
   Abgesetzt durch eine gestrichelte Linie, damit die Trennung sichtbar ist. */
.builder__positions tfoot .is-sub th {
  border-top: 1px dashed var(--c-line-strong);
  font-weight: 400;
  color: var(--c-muted);
  font-size: 0.875rem;
  padding-top: 0.5rem;
}
.builder__positions tfoot .is-sub th:last-child { white-space: nowrap; font-weight: 700; }

/* Sektion Vertragsbuilder ------------------------------------------------- */
/* Kompakte Schrittliste: `.steps` ist ein mehrspaltiges Raster für die drei
   großen Ablaufschritte. Hier stehen vier Schritte in einer Spalte neben einer
   zweiten Textspalte — deshalb die kompakte Variante. */
.steps--compact {
  grid-template-columns: 1fr;
  gap: var(--s-4);
  counter-reset: step;
}
.steps--compact li { padding-left: 2.4rem; }
.steps--compact li::before { width: 1.75rem; height: 1.75rem; font-size: 0.85rem; }

.notice__title {
  font-size: var(--fs-h3);
  color: var(--c-primary);
  margin-bottom: var(--s-4);
}
#ki-hinweis { margin-top: clamp(2rem, 4vw, 3rem); }
