/* Selbst gehostete Schriften (DSGVO: kein Google-CDN-Transfer der Besucher-IP). */
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:400;font-display:swap;src:url('assets/fonts/hanken-grotesk-400.woff2') format('woff2');}
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:500;font-display:swap;src:url('assets/fonts/hanken-grotesk-500.woff2') format('woff2');}
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:600;font-display:swap;src:url('assets/fonts/hanken-grotesk-600.woff2') format('woff2');}
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:700;font-display:swap;src:url('assets/fonts/hanken-grotesk-700.woff2') format('woff2');}
@font-face{font-family:'Hanken Grotesk';font-style:normal;font-weight:800;font-display:swap;src:url('assets/fonts/hanken-grotesk-800.woff2') format('woff2');}

/* Skip-Link (WCAG 2.4.1 Bypass Blocks) */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--navy,#181B1A);color:#fff;padding:10px 16px;border-radius:0 0 8px 0;z-index:100;font-weight:600;}
.skip-link:focus{left:0;}

/* ============================================================
   smartrezeption.de — KI-Telefonassistent
   Design: modern, vertrauenswürdig, „Kommunikations-Produkt".
   Marke „Angenommen": Ink · Messing · Live-Grün auf warmem Papier.
   Bewusst KEIN kühles Teal/Navy-Blau, KEIN KI-Lila.
   ============================================================ */

:root {
  /* Palette — Ink · Messing · Live-Grün auf warmem Papier. EINE warme Welt. */
  --bg:         #F4F0E8;   /* warmes Papier (bewusst NICHT KI-kühl) */
  --surface:    #FFFFFF;
  --surface-2:  #ECE5D7;
  --navy:       #2D2B26;   /* dunkle Flächen — warm & weich (bewusst ≠ Text-Ink) */
  --navy-2:     #3A372F;   /* helleres Warm-Dunkel für Verläufe */
  --ink:        #181B1A;
  --ink-soft:   #4A534E;   /* AA auf Papier (≈7:1) */
  --muted:      #63675F;   /* AA auf Papier (≈5.0:1) + auf surface-2 (≈4.5:1) */
  --line:       #E2DACB;
  --line-soft:  #EDE7DA;
  --accent:     #B8843A;   /* Messing — Markenfarbe (Logo-Haken, Flächen, Deko-Icons) */
  --accent-2:   #8A6122;   /* dunkles Messing — AA-Text/Buttons (≈5.5:1 auf Weiß) */
  --accent-3:   #6F4E1B;   /* noch dunkler — Hover */
  --accent-soft:#F1E7D4;   /* Messing-Tint für Flächen */
  --accent-on-dark:#D8AE63;/* helles Messing für dunkle Flächen (AA auf --navy) */
  --live:       #1E9E6A;   /* Live-Grün — Status-Punkte/Flächen */
  --live-text:  #167A52;   /* dunkleres Live-Grün — AA für Status-TEXT (≈4.8:1 auf Weiß) */
  --on-navy:    #DAD3C6;   /* warmer heller Text auf dunklen Flächen */
  --on-navy-soft:#A89F92;  /* gedämpfter warmer Text auf dunklen Flächen (AA auf --navy) */

  /* Typo */
  --display: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --sans:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --track-caps: .07em;     /* einheitliches Versal-Tracking für Mikro-Labels */

  /* Maße */
  --wrap: 1140px;
  --pad: 24px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow:    0 18px 40px -28px rgba(24,27,26,.28);   /* nur ambient — keine harte 1px-Linie (verdoppelte sonst Borders) */
  --shadow-lg: 0 30px 70px -40px rgba(24,27,26,.42);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Kein horizontales Scrollen auf der ganzen Seite. `clip` (statt `hidden`)
   verhindert seitliches Scrollen, OHNE den Sticky-Header zu brechen und ohne
   Pinch-Zoom-Pan zu blockieren (Zoom nutzt den Visual-Viewport). */
html { scroll-behavior: smooth; overflow-x: clip; }
/* Anker-Sprünge (#funktionen, #app, #ablauf …) nicht hinter dem 72px-Sticky-Header landen lassen */
:where(section[id], [id]) { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
  touch-action: manipulation;   /* kein Doppeltipp-Zoom; Scrollen/Slider bleiben */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; }
/* Fließtext: lange deutsche Komposita sauber trennen statt Overflow/ragged */
p { overflow-wrap: break-word; }
.fc p, .uf-steps li, .faq-a p, .comp-list p, .pkg-lead, .aud p, .beweis-list li, .hero-sub, .memory-text > p, .founder-text > p, .app-text > p { hyphens: auto; -webkit-hyphens: auto; }
em { font-style: normal; color: var(--accent-2); }
a { color: inherit; }
img, svg { max-width: 100%; }

/* Tastatur-Fokus: sichtbarer Marken-Ring auf allen interaktiven Elementen (WCAG 2.4.7) */
a:focus-visible, button:focus-visible, summary:focus-visible,
.btn:focus-visible, .demo-tab:focus-visible, .nav-cta:focus-visible,
input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent-2);     /* AA-Kontrast für weißen Text (≈5.7:1) */
  color: #fff;
  box-shadow: 0 8px 20px rgba(24,27,26,.28);
}
.btn-primary:hover { background: var(--accent-3); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(24,27,26,.34); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn:disabled, .btn[disabled], .btn[aria-busy="true"] {
  opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none; pointer-events: none;
}

.sec-kicker {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.sec-head-center { margin-inline: auto; text-align: center; }

section { padding: clamp(56px, 8vw, 104px) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,240,232,.82);   /* warmes Papier statt kühlem Blau */
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark {
  display: inline-flex;
  width: 30px; height: 30px;
  color: var(--ink);   /* Ring = ink; Haken ist im SVG fest Messing */
}
.logo-mark svg { width: 100%; height: 100%; }
.brand-word { line-height: 1; }
.brand-accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--accent-2); }
.nav-login { font-weight: 600; }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px !important;
  transition: background .2s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  min-width: 44px;          /* WCAG-Tap-Target */
  min-height: 44px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad) 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.nav-mobile a { text-decoration: none; color: var(--ink); font-weight: 500; padding: 12px 6px; border-radius: 8px; }
.nav-mobile a:last-child { margin-top: 6px; background: var(--accent-2); color: #fff; text-align: center; font-family: var(--display); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 80px) 0 clamp(44px, 6vw, 84px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}
/* Ruhiger Kicker statt Pill-Eyebrow (bewusst kein KI-Tell) */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .035em;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; flex: 0 0 auto; }
.hero-title { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); margin: 22px 0 30px; max-width: 540px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  font-size: .92rem;
  color: var(--muted);
}
.hero-trust .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(30,158,106,.18); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(30,158,106,.18); } 50% { box-shadow: 0 0 0 7px rgba(30,158,106,.05); } }

/* Founder-Direktdraht im Hero — Gesicht + Name + Nummer, tippbar (Anti-Anonymität). */
.hero-founder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 8px 18px 8px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow .2s ease, transform .2s ease;
}
.hero-founder:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.hero-founder img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.hero-founder .hf-text { display: flex; flex-direction: column; line-height: 1.3; }
.hero-founder .hf-text b { font-size: .9rem; font-weight: 700; color: var(--ink); }
.hero-founder .hf-text span { font-size: .82rem; color: var(--muted); }

/* Anruf-Karte (Hero-Visual) */
/* Produktgetriebenes Hero-Visual: echtes Dashboard im Browser-Rahmen (Stripe-Stil)
   + überlagerte Zusammenfassung als „Dokument" (kein Spielzeug-Chat). */
.hero-visual { position: relative; }
.app-frame {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.af-bar {
  display: flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.af-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cfc7b6; flex: 0 0 auto; }
.af-bar .af-url {
  margin-left: 12px; font-size: 12px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 6px; padding: 3px 12px;
}
.app-frame img { display: block; width: 100%; height: auto; }
.hero-doc {
  position: absolute;
  right: -14px; bottom: -26px;
  width: min(300px, 78%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 15px 17px;
}
.hd-top { display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; color: var(--live-text); letter-spacing: .01em; }
.hd-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(30,158,106,.16); flex: 0 0 auto; }
.hd-said { font-size: .9rem; color: var(--ink-soft); margin: 10px 0 4px; line-height: 1.45; }
.hd-rows { display: flex; flex-direction: column; }
.hd-rows > div { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: 1px solid var(--line); font-size: .86rem; }
.hd-rows dt { color: var(--muted); }
.hd-rows dd { font-weight: 700; color: var(--ink); }

/* Hörprobe-Band (Szenario-Player) */
.demoband { padding: clamp(44px, 6vw, 80px) 0; background: var(--bg); }
.demoband-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.demoband-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.demoband-sub { color: var(--ink-soft); margin-top: 14px; font-size: 1.02rem; line-height: 1.55; max-width: 38ch; }

.callcard {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.callcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cc-live { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--accent-2); }
.cc-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--live); animation: pulse 1.6s ease-in-out infinite; }
.cc-time { font-size: .82rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.cc-row { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-end; }
.cc-ai { flex-direction: row-reverse; }
.cc-avatar {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink-soft);
  display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
}
.cc-avatar-ai { background: var(--navy); color: var(--accent); padding: 6px; }
.cc-avatar-ai svg { width: 100%; height: 100%; }
.cc-bubble {
  background: var(--surface-2);
  color: var(--ink-soft);
  padding: 11px 14px;
  border-radius: 16px 16px 16px 4px;
  font-size: .92rem;
  line-height: 1.45;
}
.cc-bubble-ai { background: var(--accent-2); color: #fff; border-radius: 16px 16px 4px 16px; }
.cc-summary {
  margin-top: 16px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  color: var(--on-navy);
}
.cc-summary-h { display: flex; align-items: center; gap: 8px; font-weight: 700; font-family: var(--display); font-size: .9rem; color: #fff; margin-bottom: 10px; }
.cc-summary-h svg { width: 18px; height: 18px; color: var(--live); }
.cc-summary ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cc-summary li { display: flex; justify-content: space-between; font-size: .86rem; }
.cc-summary li span { color: #A39E92; }
.cc-summary li b { color: #fff; font-weight: 600; }

/* ============================================================
   TRUSTBAR
   ============================================================ */
.trustbar { background: var(--navy); padding: 0; }
.trustbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 34px;
  padding: 20px 0;
}
.trustbar li { display: inline-flex; align-items: center; gap: 9px; color: #DAD3C6; font-size: .92rem; font-weight: 500; }
.trustbar li svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { padding: clamp(48px, 7vw, 88px) 0; }
.statement p {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 920px;
  color: var(--ink);
}
.statement strong { color: var(--accent); font-weight: 700; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

/* ---------- Funktionen ---------- */
.funktionen { background: var(--surface); border-block: 1px solid var(--line); }
.fc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.fc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.fc-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-2);
  align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.fc-icon svg { width: 26px; height: 26px; }
.fc h3 { font-size: 1.18rem; margin-bottom: 8px; }
.fc p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Ablauf ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.steps li { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 16px;
}
.steps li h3 { font-size: 1.2rem; margin-bottom: 8px; }
.steps li p { color: var(--ink-soft); font-size: .98rem; }
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px; left: 56px; right: -12px;
  height: 2px;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ---------- Anschluss / Anwendungsfälle (mobil · Festnetz · FritzBox · neue Nummer) ---------- */
.anschluss { background: var(--bg); }
.uf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.uf-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 22px; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.uf-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.uf-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.uf-card-top h3 { font-size: 1.18rem; line-height: 1.25; }
.uf-badge { margin-left: auto; flex: none; font-family: var(--display); font-weight: 700; font-size: .72rem; color: var(--accent-2); background: var(--accent-soft); padding: 5px 12px; border-radius: var(--radius-pill); white-space: nowrap; }
.uf-for { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.uf-steps { list-style: none; counter-reset: ufs; display: flex; flex-direction: column; gap: 11px; margin: 0 0 16px; }
.uf-steps li { position: relative; counter-increment: ufs; padding-left: 34px; font-size: .96rem; color: var(--ink-soft); line-height: 1.5; }
.uf-steps li::before { content: counter(ufs); position: absolute; left: 0; top: 0; width: 23px; height: 23px; display: grid; place-items: center; background: var(--navy); color: #fff; font-family: var(--display); font-weight: 700; font-size: .76rem; border-radius: var(--radius-sm); }
.uf-code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .9em; font-weight: 600; color: var(--accent-2); background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); padding: 1px 7px; border-radius: var(--radius-sm); overflow-wrap: anywhere; }
.uf-caller { margin-top: auto; display: flex; gap: 10px; align-items: flex-start; background: var(--line-soft); border-radius: 12px; padding: 12px 14px; font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
.uf-caller-k { flex: none; font-family: var(--display); font-weight: 700; font-size: .64rem; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--accent-2); background: var(--surface); border: 1px solid var(--line); padding: 4px 9px; border-radius: var(--radius-pill); margin-top: 1px; }
.uf-safety { margin-top: 22px; display: flex; gap: 18px; align-items: center; background: var(--navy); color: #DAD3C6; border-radius: var(--radius); padding: 24px 28px; }
.uf-safety-ic { flex: none; width: 46px; height: 46px; display: grid; place-items: center; color: var(--accent-on-dark); background: rgba(24,27,26,.16); border-radius: var(--radius); }
.uf-safety-ic svg { width: 26px; height: 26px; }
.uf-safety-txt h3 { color: #fff; font-size: 1.12rem; margin-bottom: 4px; }
.uf-safety-txt p { font-size: .96rem; line-height: 1.55; }
@media (max-width: 720px) { .uf-grid { grid-template-columns: 1fr; } .uf-safety { flex-direction: column; text-align: center; align-items: center; gap: 12px; } }

/* ---------- Audience ---------- */
.audience { background: var(--surface); border-block: 1px solid var(--line); }
.aud {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid var(--accent);
  transition: transform .18s ease, box-shadow .18s ease;
}
.aud:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.aud h3 { font-size: 1.1rem; margin-bottom: 8px; }
.aud p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Preise ---------- */
.pkg-grid { align-items: stretch; }
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  box-shadow: var(--shadow);
}
.pkg-featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(24,27,26,.18);
  transform: translateY(-8px);
}
.pkg-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent-2);
  color: #fff;
  font-family: var(--display); font-weight: 700;
  font-size: .72rem; letter-spacing: var(--track-caps); text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.pkg-top h3 { font-size: 1.5rem; }
.pkg-tag { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.pkg-price-row { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 6px; }
.pkg-price { font-family: var(--display); font-weight: 800; font-size: 2.1rem; color: var(--ink); letter-spacing: -0.02em; }
.pkg-per { color: var(--muted); font-size: .95rem; font-weight: 500; }
.pkg-lead { color: var(--ink-soft); font-size: .96rem; margin-bottom: 20px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pkg-list li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-soft); }
.pkg-list li svg { width: 19px; height: 19px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.pkg-list li em { color: var(--ink); font-style: normal; font-weight: 600; }
.pkg-cta { margin-top: auto; width: 100%; }

/* Enterprise-Anker unter den 3 Karten — öffnet die Preisdecke nach oben. */
.pkg-enterprise { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-top: 24px; padding: 28px 32px; background: var(--navy); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.pe-main { flex: 1 1 440px; }
.pe-label { display: inline-block; font-family: var(--display); font-weight: 700; font-size: .7rem; letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--accent-on-dark); background: rgba(24,27,26,.2); padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 12px; }
.pe-main h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 10px; line-height: 1.2; }
.pe-main > p { color: var(--on-navy); font-size: .98rem; line-height: 1.6; margin-bottom: 16px; max-width: 64ch; }
.pe-feats { list-style: none; display: flex; flex-wrap: wrap; gap: 9px 22px; }
.pe-feats li { display: inline-flex; align-items: center; gap: 8px; color: var(--on-navy); font-size: .9rem; }
.pe-feats li svg { width: 17px; height: 17px; color: var(--accent-on-dark); flex: none; }
.pe-side { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.pe-price { font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: #fff; }
.pe-cta { white-space: nowrap; }
@media (max-width: 720px) { .pkg-enterprise { padding: 24px; } .pe-side { width: 100%; } .pe-cta { width: 100%; text-align: center; } }

.pkg-note { color: var(--muted); font-size: .86rem; margin-top: 28px; max-width: 860px; line-height: 1.6; }

/* ============================================================
   COMPLIANCE (dunkle Sektion)
   ============================================================ */
.compliance { background: var(--navy); color: #DAD3C6; }
.comp-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.sec-kicker-light { color: var(--accent-on-dark); letter-spacing: var(--track-caps); }
.comp-head h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.comp-head p { color: #B9B3A6; margin-top: 16px; font-size: 1.04rem; }
.comp-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.comp-list li { display: flex; gap: 14px; }
.comp-check {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(184,132,58,.14);
  color: var(--accent-on-dark);
  display: grid; place-items: center;
}
.comp-check svg { width: 22px; height: 22px; }
.comp-list strong { display: block; color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
.comp-list p { color: #A89F92; font-size: .92rem; line-height: 1.5; }

/* ============================================================
   BEWEIS
   ============================================================ */
.beweis { background: var(--surface); border-block: 1px solid var(--line); }
.beweis-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.beweis-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.beweis-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.beweis-list li { padding-left: 20px; position: relative; color: var(--ink-soft); }
.beweis-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.beweis-list strong { color: var(--ink); }

/* Telefon-Mock */
.beweis-visual { display: flex; justify-content: center; }
.phone {
  width: 250px;
  background: var(--navy);
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 6px solid #0E1110;
}
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: #0E1110; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen {
  background: linear-gradient(180deg, #23282A, #181B1A);
  border-radius: 26px;
  min-height: 440px;
  padding: 42px 18px 18px;
  display: flex;
  flex-direction: column;
  color: #DAD3C6;
}
.ps-bar { font-size: .76rem; color: #A39E92; display: flex; align-items: center; gap: 7px; justify-content: center; }
.ps-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); animation: pulse 1.6s ease-in-out infinite; }
.ps-call { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.ps-ring { position: relative; width: 96px; height: 96px; display: grid; place-items: center; }
.ps-ring span { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: ring 2.4s ease-out infinite; }
.ps-ring span:nth-child(2) { animation-delay: .8s; }
.ps-ring span:nth-child(3) { animation-delay: 1.6s; }
.ps-ring::after { content: ""; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); box-shadow: 0 8px 22px rgba(24,27,26,.5); }
@keyframes ring { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.2); opacity: 0; } }
.ps-num { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.ps-status { font-size: .82rem; color: #A39E92; }
.ps-foot { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: #A39E92; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); }
.ps-ai { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-on-dark); font-weight: 600; }
.ps-ai svg { width: 16px; height: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .2s ease; }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 20px; }
.faq-a p { color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--surface); border-top: 1px solid var(--line); }
.kontakt-sub { color: var(--ink-soft); margin-top: 14px; font-size: 1.06rem; }
.kontakt-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  max-width: 940px;
  margin: 0 auto;
  align-items: start;
}
.kform { display: flex; flex-direction: column; gap: 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.kform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kfield { display: flex; flex-direction: column; gap: 7px; }
.kfield > span { font-family: var(--display); font-weight: 600; font-size: .86rem; color: var(--ink); }
.kopt { color: var(--muted); font-weight: 400; }
.kfield input, .kfield textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
  resize: vertical;
}
.kfield input:focus, .kfield textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}
.kfield input::placeholder, .kfield textarea::placeholder { color: var(--muted); opacity: 1; }
.kform-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.kform-submit { margin-top: 4px; }
.kform-hint { text-align: center; color: var(--muted); font-size: .85rem; }
.kform-status { font-size: .94rem; text-align: center; }
.kform-status.ok { color: var(--accent-2); font-weight: 600; }
.kform-status.err { color: #b4453a; }

.kontakt-channels { padding-top: 6px; }
.channels-label { font-family: var(--display); font-weight: 600; color: var(--muted); margin-bottom: 14px; font-size: .9rem; }
.kontakt-grid { display: flex; flex-direction: column; gap: 12px; }
.kbox {
  display: flex; flex-direction: column; gap: 2px;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: border-color .15s ease, transform .15s ease;
}
.kbox:hover { border-color: var(--accent); transform: translateX(3px); }
.kbox-label { font-size: .8rem; color: var(--muted); }
.kbox-val { font-family: var(--display); font-weight: 600; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: #B9B3A6; padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand .logo-mark { color: #fff; }   /* Ring weiß auf dunklem Footer */
.footer-brand .brand .brand-accent { color: var(--accent); }
.footer-brand p { color: #9A948A; max-width: 360px; font-size: .94rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: flex-start; }
.footer-nav a { color: var(--on-navy); text-decoration: none; font-size: .94rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .85rem; color: var(--on-navy-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  /* Gestapeltes Layout: Headline + Subline + CTA ZUERST, Beispiel-Anruf darunter.
     Kein order:-1 auf .hero-visual — die natürliche Quellreihenfolge (Copy vor
     Visual) gilt, damit der Demo-Anruf NICHT oben steht. */
  .hero-inner { grid-template-columns: 1fr; }
  .callcard { max-width: 380px; }
  .grid-split { grid-template-columns: 1fr; }
  .beweis-visual { order: -1; }
  .comp-inner { grid-template-columns: 1fr; }
  /* Hörprobe-Band stapeln wie alle anderen 2-Spalter (war bis 375px 2-spaltig) */
  .demoband-inner { grid-template-columns: 1fr; }
  .demoband-head { text-align: center; }
  .demoband-sub { max-width: none; margin-inline: auto; }
  .demo { margin: 0 auto; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile[hidden] { display: none; }
  .nav-mobile:not([hidden]) { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps li:not(:last-child)::after { display: none; }
  .pkg-featured { transform: none; }
  .comp-list { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  /* Manuelle Zeilenumbrüche im Hero nur auf Desktop — auf Schmalbild
     natürlich umbrechen lassen. */
  .hero-title br { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .kform-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; gap: 24px; }
  /* Demo-Tabs sauber stapeln statt umzubrechen */
  .demo-tabs { flex-direction: column; gap: 6px; }
  .demo-tab { width: 100%; text-align: center; min-height: 44px; }
  /* Kontakt-Kanäle: volle Tap-Target-Höhe */
  .kbox { min-height: 44px; justify-content: center; }
  /* Demo-Karte auf Mini-Screens etwas kompakter */
  .callcard { padding: 16px; }
}

/* ============================================================
   INTERAKTIVE HERO-DEMO
   ============================================================ */
.demo { width: 100%; max-width: 440px; }
.demo-tabs { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.demo-tab {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 9px 16px; min-height: 40px; cursor: pointer; transition: .15s;
}
.demo-tab:hover { border-color: var(--accent); color: var(--accent-2); }
.demo-tab.is-active { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }
.demo-card { animation: none; }      /* nicht floaten während der Demo */
.demo-play {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: .82rem; color: #fff;
  background: var(--accent-2); border: 0; border-radius: var(--radius-pill); padding: 10px 18px; min-height: 40px; cursor: pointer;
  transition: background .2s ease;
}
.demo-play:hover { background: var(--accent-3); }
.cc-stream { min-height: 196px; }
.cc-in { animation: ccIn .45s ease both; }
@keyframes ccIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.demo .cc-summary { transition: opacity .3s ease; }
.demo-cap { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 12px; }

/* ============================================================
   STAMMKUNDEN / GEDÄCHTNIS
   ============================================================ */
.memory { background: var(--surface); border-block: 1px solid var(--line); }
.memory-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.memory-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.memory-visual { display: flex; justify-content: center; }
.mem-card {
  width: 100%; max-width: 340px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px;
}
.mem-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.mem-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; }
.mem-name { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.mem-tag { color: var(--accent-2); font-size: .85rem; font-weight: 600; }
.mem-facts { list-style: none; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line); padding-top: 14px; }
.mem-facts li { display: flex; justify-content: space-between; font-size: .92rem; }
.mem-facts span { color: var(--muted); }
.mem-facts b { color: var(--ink); }
@media (max-width: 920px) { .memory-visual { order: -1; } .demo { max-width: 400px; margin: 0 auto; } }

/* ============================================================
   LAUNCH-BAND (Risiko-Umkehr) + GRÜNDER
   ============================================================ */
.launch { background: var(--accent-soft); border-bottom: 1px solid var(--line); padding: 0; }
.launch-inner { display: flex; align-items: center; justify-content: center; gap: 18px 40px; flex-wrap: wrap; padding: clamp(28px, 4vw, 40px) 0; }
.launch-head { display: flex; align-items: center; gap: 14px; }
.launch-badge { background: var(--accent-2); color: #fff; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: var(--track-caps); text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); }
.launch-head h2 { color: var(--ink); font-size: clamp(1.15rem, 2.4vw, 1.45rem); margin: 0; }
.launch-items { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.launch-items li { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 600; color: var(--accent-2); }
.launch-items svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }

.founder { background: var(--bg); }
.founder-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.founder-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.founder-card-wrap { display: flex; justify-content: center; }
.founder-card { width: 100%; max-width: 320px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 28px; text-align: center; }
.founder-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; }
.founder-initials { width: 96px; height: 96px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--display); font-weight: 800; font-size: 2rem; display: grid; place-items: center; margin: 0 auto 14px; }
.founder-name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; }
.founder-role { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.founder-tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; background: var(--accent-soft); color: var(--accent-2); border-radius: 999px; padding: 7px 14px; font-size: .85rem; font-weight: 600; }
.founder-tag svg { width: 16px; height: 16px; }
@media (max-width: 920px) { .founder-card-wrap { order: -1; } }

/* ── „Selbst ausprobieren"-Konfigurator ──────────────────────────────────── */
.sec-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 10px 0 0; }
.tryit { padding: clamp(56px, 8vw, 96px) 0; background: var(--surface-2); }
.tryit .sec-head { max-width: 760px; margin-inline: auto; text-align: center; margin-bottom: 36px; }
.ti-card { max-width: 720px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(20px, 3vw, 32px); }
.ti-step { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; color: var(--ink); margin: 6px 0 14px; }
.ti-step:not(:first-child) { margin-top: 28px; }
.ti-num { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-3);
  display: grid; place-items: center; font-size: .85rem; flex: none; }
.ti-hint { font-family: var(--sans); font-weight: 500; font-size: .85rem; color: var(--muted); }
.ti-voices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ti-voice { display: flex; align-items: center; gap: 12px; text-align: left; background: var(--surface);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s; font-family: var(--sans); }
.ti-voice:hover { border-color: var(--accent); transform: translateY(-1px); }
.ti-voice.is-active { border-color: var(--accent); background: var(--accent-soft); }
.ti-vplay { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: .72rem; flex: none; box-shadow: 0 3px 9px rgba(24,27,26,.3); }
.ti-voice.is-active .ti-vplay { background: var(--accent-3); }
.ti-vtext { display: flex; flex-direction: column; min-width: 0; }
.ti-vname { font-family: var(--display); font-weight: 700; font-size: .98rem; color: var(--ink); }
.ti-vmeta { font-size: .78rem; color: var(--muted); }
.ti-field { margin: 16px 0; }
.ti-frow { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.ti-flabel { font-family: var(--display); font-weight: 700; font-size: .98rem; color: var(--ink); }
.ti-badge { font-family: var(--display); font-weight: 700; font-size: .8rem; color: var(--accent-3);
  background: var(--accent-soft); padding: 3px 12px; border-radius: 99px; white-space: nowrap; }
.ti-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 99px;
  background: var(--line); cursor: pointer; }
.ti-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px;
  margin-top: -9px; border-radius: 50%; background: #fff; border: 3px solid var(--accent-2);
  box-shadow: 0 2px 8px rgba(24,27,26,.25); cursor: pointer; transition: transform .12s; }
.ti-slider::-webkit-slider-runnable-track { height: 8px; border-radius: 99px; }
.ti-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff;
  border: 3px solid var(--accent-2); box-shadow: 0 2px 8px rgba(24,27,26,.25); cursor: pointer; }
.ti-slider::-moz-range-track { height: 8px; border-radius: 99px; background: var(--line); }
.ti-slider:active::-webkit-slider-thumb { transform: scale(1.12); }
.ti-ends { display: flex; justify-content: space-between; margin-top: 8px; font-size: .8rem; color: var(--muted); }
.ti-play { width: 100%; margin-top: 22px; justify-content: center; }
.ti-convo { margin-top: 18px; min-height: 8px; }
.ti-convo:empty { margin-top: 0; }

/* Reverse-Call-Demo: Branche + Nummer → die KI ruft an. */
.rc-card { max-width: 720px; margin: 22px auto 0; background: var(--surface); border: 1.5px solid var(--accent-soft); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.rc-head h3 { font-size: 1.15rem; margin-bottom: 4px; }
.rc-head p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px; }
.rc-form { display: flex; gap: 10px; flex-wrap: wrap; }
.rc-branch, .rc-phone { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); }
.rc-branch { flex: 0 0 auto; }
.rc-phone { flex: 1 1 200px; min-width: 0; }
.rc-branch:focus-visible, .rc-phone:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.rc-btn { flex: 0 0 auto; }
.rc-status { margin-top: 12px; font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.rc-status.is-ok { color: var(--accent-2); }
.rc-status.is-err { color: #B4232A; }
.rc-status.is-wait { color: var(--muted); }
.rc-note { margin-top: 10px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
@media (max-width: 560px) { .rc-form { flex-direction: column; } .rc-branch, .rc-phone, .rc-btn { width: 100%; flex: none; } }
.ti-typing { display: inline-flex; gap: 5px; padding: 12px 16px; background: var(--accent); border-radius: 16px 16px 16px 4px; margin: 6px 0 6px 44px; }
.ti-typing span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.85); animation: tiDot 1s infinite ease-in-out; }
.ti-typing span:nth-child(2) { animation-delay: .15s; }
.ti-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes tiDot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
/* Live-Demo-Notiz: macht den Unterbrechbarkeits-Regler sichtbar. */
.ti-note { margin: 10px 0 2px; text-align: center; font-size: .84rem; color: var(--muted); animation: tiNoteIn .25s ease both; }
.ti-note-stop { color: var(--accent-3); font-weight: 700; }
@keyframes tiNoteIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 560px) { .ti-voices { grid-template-columns: 1fr; } .ti-frow { flex-direction: column; gap: 4px; } }

/* Datenschutz-Hinweis am Lead-Formular (Art. 13 DSGVO) */
.kform-privacy{font-size:.78rem;color:var(--muted);margin:8px 0 0;line-height:1.5;}
.kform-privacy a{color:var(--accent-2);text-decoration:underline;}

/* ---------- App / Dashboard-Sektion ---------- */
/* Strukturelle Zwillingssektion zu .memory-text → gleiche Typo/Rhythmus. */
.appsec { background: var(--surface-2); }
.app-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 12px 0 16px; }
.app-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.app-text .beweis-list { margin-bottom: 28px; }
.app-cta { margin-top: 4px; }
/* Echter Dashboard-Screenshot, gerahmt wie ein App-Fenster. */
.app-shot { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.app-shot-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.app-shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cfc7b6; }
.app-shot picture { display: block; }
.app-shot img { display: block; width: 100%; height: auto; }

/* ---------- Beratungs-Hotline (Kontakt) ---------- */
.kontakt-hotline { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; max-width: 760px; margin: 0 auto 28px; background: var(--surface); border: 1.5px solid var(--accent-soft); border-radius: var(--radius-sm); padding: 18px 24px; box-shadow: var(--shadow); text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.kontakt-hotline:hover { border-color: var(--accent); transform: translateY(-2px); }
.kh-text { display: flex; flex-direction: column; gap: 2px; }
.kh-label { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.kh-num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: .01em; }
.kh-hours { font-size: .8rem; color: var(--muted); }
.kh-btn { flex: none; }
@media (max-width: 560px) { .kontakt-hotline { flex-direction: column; align-items: stretch; text-align: center; } .kh-btn { width: 100%; } }
