/* ============================================================
   Ella Website — Shared Stylesheet
   Brand: Forest Green + Cream + Instrument Serif
   Mobile-first, prefers-reduced-motion respected
   ============================================================ */

:root {
  --bg: #FAF8F4;
  --fg: #030213;
  --muted: #6B6058;
  --line: rgba(3, 2, 19, 0.12);
  --line-strong: rgba(3, 2, 19, 0.22);

  --accent: #1A4A3A;          /* Forest Green */
  --accent-soft: #4CAF7D;     /* Soft Green */
  --accent-tint: rgba(76, 175, 125, 0.08);
  --accent-glow: rgba(26, 74, 58, 0.18);

  --warn: #B45309;
  --warn-bg: #FEF3C7;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Space Grotesk', 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --container: 1200px;
  --gutter: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 88px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Container ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

/* Legal pages (Impressum, Datenschutz) */
.legal-page { background: var(--bg); color: var(--fg); }
.legal-main { padding: clamp(56px, 8vw, 120px) 0 clamp(56px, 8vw, 100px); }
.legal-main .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.legal-main h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--fg);
}
.legal-main .legal-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 48px;
}
.legal-main section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.legal-main section:first-of-type { border-top: 0; padding-top: 0; }
.legal-main h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--fg);
}
.legal-main h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 22px 0 8px;
  color: var(--fg);
}
.legal-main p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
  color: var(--fg);
}
.legal-main p strong { font-weight: 600; }
.legal-main a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-main a:hover { color: var(--fg); }
.legal-main ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 14px;
}
.legal-main li {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, .display { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.15; }
h4 { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.25; }
em { font-style: italic; color: var(--accent); }
/* CEO-Feedback: ruhigere Typografie. Section-Headlines ohne Kursiv,
   nur die Akzentfarbe als dezenter Wechsel. Kursiv bleibt als Signatur dem Hero vorbehalten. */
.section h2 em { font-style: normal; }
p  { margin-bottom: 1em; }
.eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-soft); font-weight: 600; }
.text-muted { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }

/* ===== Brand Header / Nav ===== */
.brand-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand-header.transparent { background: transparent; border-bottom: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
.brand-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter); max-width: var(--container); margin: 0 auto; gap: 16px;
}
.brand-logo { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-size: 22px; }
.brand-logo span.scope { font-family: var(--sans); font-size: 13px; color: var(--muted); margin-left: 4px; }
.brand-logo img { height: 28px; width: auto; }

.brand-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.brand-nav a { font-size: 14px; color: var(--fg); padding: 6px 0; position: relative; transition: color .2s; }
.brand-nav a:hover { color: var(--accent); }
.brand-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--accent); transition: right .25s ease;
}
.brand-nav a:hover::after { right: 0; }
/* runde CTA-Bubbles (Buttons) + Pillen (Zurueck, Sprachwechsel) bekommen KEINE Unterstreichung */
.brand-nav a.btn::after,
.brand-nav .lang-switch a::after,
.brand-nav .brand-back::after { content: none; }
.brand-nav a.btn { text-decoration: none; }
/* Kontakt-Button im Header: Text bleibt auf Hover weiss, nicht gruen auf gruenem Grund */
.brand-nav a.btn.btn-primary:hover { color: #fff; }

.lang-switch { display: inline-flex; gap: 0; border: 1px solid var(--line); border-radius: 999px; padding: 2px; }
.lang-switch a { padding: 5px 10px; font-size: 12px; font-weight: 600; border-radius: 999px; color: var(--muted); }
.lang-switch a.active { background: var(--fg); color: var(--bg); }

/* Extra Luft zwischen DE/EN-Pill und CTA-Button im Header — sonst verschmelzen die zwei Pills optisch */
.brand-nav .lang-switch + .btn { margin-left: 10px; }

/* Header-CTA: groß, präsent, nie gequetscht */
.brand-nav .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-nav .btn-primary { color: white; }
.brand-nav .btn-light { color: var(--fg); }

/* Lifestyle: Chrome-Look ist im Header auf dunklem Background schlecht lesbar.
   Im Header klarer Kontrast, der Chrome-Look bleibt anderswo (Final-CTA, etc.). */
.ls-v8 .brand-nav .btn-primary,
.ls-v9 .brand-nav .btn-primary {
  background: var(--accent-soft);
  color: white;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
.ls-v8 .brand-nav .btn-primary:hover,
.ls-v9 .brand-nav .btn-primary:hover {
  background: var(--accent-cyan);
  color: var(--bg);
}

/* ===== Buttons / CTAs ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500; line-height: 1;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #144030; transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }

/* Button-Variante für dunkle Hintergründe (z. B. Final-CTA cinematic) — kein Schatten-Artefakt */
.section-cinematic .btn-primary,
.section-cinematic .btn-primary:hover {
  background: var(--bg);
  color: var(--accent);
  box-shadow: none;
  border-color: transparent;
}
.section-cinematic .btn-primary:hover {
  background: rgba(255,255,255,0.92);
}
.btn-ghost   { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-ghost:hover { background: var(--accent-tint); transform: translateY(-1px); }
.btn-light   { background: white; color: var(--fg); border-color: var(--line); }
.btn-light:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn .icon { font-size: 14px; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(56px, 10vw, 120px) 0 clamp(48px, 8vw, 96px); overflow: hidden; }
.hero h1 { margin: 16px 0 18px; }
.hero .lead { max-width: 680px; }
.hero-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-row { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Sections ===== */
.section { padding: clamp(56px, 10vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(32px, 6vw, 72px) 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
/* Investor-Seite: kompaktere Abstände (war zu langwierig) */
.invest-page .section { padding: clamp(40px, 6vw, 84px) 0; }
.invest-page .section-head { margin-bottom: clamp(24px, 3vw, 36px); }
.section-head h2 { margin: 12px 0 12px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Leader card (Invest – Michael Keusgen) */
.leader-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg, 20px);
  padding: clamp(28px, 4vw, 44px);
  align-items: start;
  box-shadow: 0 12px 32px rgba(15,30,50,0.06);
}
.leader-card .leader-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-md, 12px);
  display: block;
}
.leader-card .leader-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 0 0 4px;
}
.leader-card .leader-body .leader-role {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}
.leader-card .leader-body p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
  color: var(--fg);
}
@media (max-width: 700px) {
  .leader-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .leader-card .leader-photo img { max-width: 220px; margin: 0 auto; }
}

/* ===== KPI / Stats Banner ===== */
.stats-banner { padding: clamp(40px, 6vw, 64px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item .num { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1; color: var(--accent); display: block; }
.stat-item .desc { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ===== Cards ===== */
.card { background: white; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; transition: box-shadow .25s ease, border-color .25s ease, transform .15s ease; }
.card:hover { border-color: var(--line-strong); box-shadow: 0 6px 20px rgba(3, 2, 19, 0.05); }
.card .pic { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-soft); font-weight: 600; margin-bottom: 8px; }
.card h4 { margin-bottom: 8px; }
.card-accent { border-color: var(--accent-soft); background: linear-gradient(135deg, rgba(76,175,125,0.05), white); }

.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* Kontaktseite: Gruppen-Headlines + Karten */
.kontakt-group { font-family: var(--serif); font-weight: 400; font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin: clamp(40px, 5vw, 60px) 0 18px; }
.kontakt-group:first-of-type { margin-top: clamp(8px, 1.5vw, 16px); }
.kontakt-card { display: flex; flex-direction: column; align-items: flex-start; }
.kontakt-card h4 { margin-bottom: 6px; }
.kontakt-card p { flex: 1; }
.kontakt-card .btn { margin-top: 12px; }
.kontakt-card .btn + .btn { margin-top: 8px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; } }

/* ===== Check List ===== */
.check-list { list-style: none; }
.check-list li { padding: 6px 0 6px 24px; position: relative; color: #2C2C2C; font-size: 14px; line-height: 1.5; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-soft); font-weight: 700; }

/* ===== Vorher/Nachher Split ===== */
.image-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 400px; }
@media (max-width: 800px) { .image-section { grid-template-columns: 1fr; } }
.image-section .col { padding: clamp(40px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.image-section .col--media { background: var(--accent-tint); }
.image-section .col--dark { background: var(--accent); color: var(--bg); }
.image-section .col--dark em { color: var(--accent-soft); }

/* ===== Door Grid (Hub) ===== */
/* 2 große (Healthcare + Invest) + 1 schmalere (Agency Coming Soon, ganz rechts) */
.door-grid { display: grid; grid-template-columns: 1.4fr 1.4fr 1fr; gap: 22px; }
@media (max-width: 900px) { .door-grid { grid-template-columns: 1fr; } }
/* Coming-Soon-Card kleiner & dezenter (Marie's Wunsch: halbe Größe, mehr Weißraum) */
.door-card--soon { padding: 28px; }
.door-card--soon h3 { font-size: clamp(1.4rem, 1.8vw, 1.7rem); }
.door-card--soon .door-desc { font-size: 13px; }
.door-card {
  position: relative; min-height: 460px; padding: 32px;
  background: white; border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  text-decoration: none; color: var(--fg);
}
.door-card:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 60px var(--accent-glow), 0 6px 18px rgba(3,2,19,0.06);
}
.door-card .door-status {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(76,175,125,0.14); color: var(--accent); border: 1px solid var(--accent-soft);
  z-index: 3;
}
.door-card .door-eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-soft); font-weight: 600; }
.door-card h3 { font-family: var(--serif); font-size: clamp(1.8rem, 2.4vw, 2.2rem); margin: 12px 0 14px; line-height: 1.1; }
.door-card .door-desc { color: var(--muted); font-size: 14px; line-height: 1.55; }
.door-card .door-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 14px; margin-top: 22px; color: var(--fg); }
.door-card .door-cta .arrow { transition: transform .25s ease; }
.door-card:hover .door-cta .arrow { transform: translateX(6px); }

.door-card .door-mood {
  position: absolute; inset: 0; opacity: .55; z-index: 1;
  pointer-events: none; mix-blend-mode: multiply;
}
.door-card > * { position: relative; z-index: 2; }

/* Healthcare door mood: warm green pulse */
.door-mood--healthcare {
  background:
    radial-gradient(circle at 30% 30%, rgba(76,175,125,0.22), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(26,74,58,0.16), transparent 55%),
    linear-gradient(135deg, rgba(76,175,125,0.08), rgba(26,74,58,0.04));
  animation: moodHealthcare 14s ease-in-out infinite;
}
@keyframes moodHealthcare {
  0%, 100% { background-position: 0% 0%, 100% 100%, 0 0; }
  50%      { background-position: 30% 20%, 70% 80%, 0 0; }
}

/* Lifestyle door mood: animated mosaic */
.door-mood--lifestyle {
  background:
    conic-gradient(from 220deg at 30% 30%, rgba(255,170,90,0.22), transparent 25%),
    conic-gradient(from 60deg at 70% 70%, rgba(154,109,255,0.18), transparent 30%),
    linear-gradient(135deg, rgba(255,170,90,0.06), rgba(154,109,255,0.04));
  animation: moodLifestyle 18s ease-in-out infinite;
}
@keyframes moodLifestyle {
  0%, 100% { filter: hue-rotate(0deg); }
  50%      { filter: hue-rotate(15deg); }
}

/* Invest door mood: data lines */
.door-mood--invest {
  background:
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(3,2,19,0.04) 18px 19px),
    linear-gradient(135deg, rgba(120,140,180,0.06), rgba(26,74,58,0.04));
}
.door-mood--invest::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(76,175,125,0.18), transparent 55%);
  animation: moodInvest 10s ease-in-out infinite;
}
@keyframes moodInvest {
  0%, 100% { opacity: 0.4; transform: translate(0, 0); }
  50%      { opacity: 0.8; transform: translate(-2%, 2%); }
}

@media (prefers-reduced-motion: reduce) {
  .door-mood--healthcare, .door-mood--lifestyle, .door-mood--invest::after { animation: none; }
}

/* ===== Hub Hero (special) ===== */
.hub-page { min-height: 100vh; display: flex; flex-direction: column; }
.hub-hero { padding: clamp(48px, 8vw, 96px) 0 clamp(32px, 5vw, 56px); position: relative; }
.hub-hero-eyebrow { display: block; text-align: center; margin-bottom: 22px; }
.hub-hero h1 {
  text-align: center;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 auto 22px;
  max-width: 14ch;
}
.hub-hero h1 em { color: var(--accent); }
.hub-hero .hub-sub { text-align: center; max-width: 620px; margin: 0 auto; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hub-hero .hub-trust { text-align: center; margin-top: 28px; font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.hub-hero .hub-trust .sep { color: var(--accent-soft); margin: 0 8px; }

/* ===== Hub-Buehne: Markenfilm-Loop + Intro-Fly-in/out + Tore ===== */
.hub-stage {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 100svh; display: flex; align-items: center;
  padding: clamp(104px, 13vh, 168px) 0 clamp(72px, 10vh, 120px);
  background: var(--accent); /* Bühne fuer den Intro, bevor der Film einfliegt */
}
.hub-stage-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0; animation: hubVideoIn 1.4s ease-out .2s forwards; /* Film blendet sanft als Hintergrund ein */
}
@keyframes hubVideoIn { from { opacity: 0; } to { opacity: 1; } }
.hub-stage-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* hell in der Mitte -> Film sichtbar; oben/unten leicht abgedunkelt fuer Header- und Tor-Lesbarkeit */
  background: linear-gradient(180deg, rgba(10,22,17,0.50) 0%, rgba(10,22,17,0.16) 26%, rgba(10,22,17,0.12) 52%, rgba(10,22,17,0.40) 78%, rgba(10,22,17,0.60) 100%);
}
.hub-stage-content { position: relative; z-index: 2; width: 100%; text-align: center; }
.hub-stage-head { text-align: center; position: relative; }
.hub-stage-head::before {
  content: ""; position: absolute; left: 50%; top: 48%; transform: translate(-50%, -50%);
  width: 130%; height: 200%; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(10,22,17,0.50) 0%, rgba(10,22,17,0.26) 42%, transparent 70%);
}

/* Intro: fliegt rein, haelt, fliegt wieder raus */
.hub-intro {
  position: absolute; left: 0; right: 0; top: 0; height: 100svh;
  z-index: 5; display: flex; align-items: center; justify-content: center;
  text-align: center; pointer-events: none; padding: 0 24px;
}
.hub-intro-line {
  font-family: var(--serif); color: #fff; font-weight: 400; margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.5rem); line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
  opacity: 0; transform: translateY(48px);
  animation: hubIntroIn 1s cubic-bezier(.2,.7,.2,1) .25s forwards,
             hubIntroOut .8s cubic-bezier(.6,0,.85,.25) 3s forwards;
}
.hub-intro-line em { font-style: italic; color: var(--accent-soft); }
@keyframes hubIntroIn  { from { opacity: 0; transform: translateY(48px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes hubIntroOut { from { opacity: 1; transform: translateY(0); }     to { opacity: 0; transform: translateY(-48px); } }

/* Inhalt blendet sanft ein, kein Wegblenden/Umschalten mehr */
.hub-stage-content { opacity: 0; transform: translateY(24px); animation: hubContentIn 1s cubic-bezier(.2,.7,.2,1) .55s forwards; }
@keyframes hubContentIn { to { opacity: 1; transform: translateY(0); } }
.hub-stage-eyebrow { display: block; color: rgba(255,255,255,0.88); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hub-stage-claim { font-family: var(--serif); color: #fff; font-weight: 400; font-size: clamp(2.3rem, 5.6vw, 4.3rem); line-height: 1.04; margin: 12px 0 0; text-shadow: 0 2px 26px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.45); }
.hub-stage-claim em { font-style: italic; color: var(--accent-soft); }
.hub-stage-tagline { font-family: var(--serif); font-style: italic; color: var(--accent-soft); font-size: clamp(1.4rem, 2.8vw, 2.05rem); line-height: 1.12; margin: 16px 0 0; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.hub-doors { text-align: left; }

/* Scroll-Hinweis unten am Film */
.hub-scroll-cue {
  position: absolute; left: 50%; bottom: clamp(20px, 4vh, 40px); transform: translateX(-50%);
  z-index: 4; display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: #fff; text-decoration: none; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5); opacity: 0;
  animation: hubCueIn .8s ease-out 1.7s forwards;
}
.hub-scroll-cue svg { animation: hubCueBounce 1.8s ease-in-out infinite; }
.hub-scroll-cue:hover { color: var(--accent-soft); }
@keyframes hubCueIn { to { opacity: 0.92; } }
@keyframes hubCueBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Tore-Sektion unter dem Film */
.hub-welten { background: var(--bg); padding-top: clamp(36px, 4.5vw, 60px); }
.hub-welten-head { margin-bottom: clamp(22px, 3vw, 34px); }
.hub-welten-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
/* kompaktere, praegnantere Tore */
.hub-welten .door-card { min-height: 340px; padding: 26px; }
.hub-welten .door-card h3 { font-size: clamp(1.5rem, 2vw, 1.85rem); margin: 10px 0 10px; }
.hub-welten .door-card .door-desc { font-size: 13px; line-height: 1.5; }
.hub-welten .door-card .door-cta { margin-top: 16px; }
.hub-welten .door-card--soon { min-height: 340px; padding: 26px; }
.hub-welten .door-card--soon h3 { font-size: clamp(1.5rem, 2vw, 1.85rem); }
@media (max-width: 900px) { .hub-welten .door-card, .hub-welten .door-card--soon { min-height: 280px; } }

/* Header ueber dem dunklen Video lesbar machen */
.hub-page .brand-header.transparent .brand-nav a { color: #fff; }
.hub-page .brand-header.transparent .brand-nav a:hover { color: var(--accent-soft); }
.hub-page .brand-header.transparent .lang-switch { background: rgba(10,22,17,0.42); border-radius: 999px; padding: 3px; backdrop-filter: blur(2px); }
.hub-page .brand-header.transparent .lang-switch a { color: rgba(255,255,255,0.92); }
.hub-page .brand-header.transparent .lang-switch a.active { background: #fff; color: var(--fg); }

@media (prefers-reduced-motion: reduce) {
  .hub-intro { display: none; }
  .hub-stage-content { opacity: 1; transform: none; animation: none; }
  .hub-stage-video { display: none; }
  .hub-stage { background: var(--accent); }
}

/* Background wave (Hub) */
.hub-wave-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: -1;
  overflow: hidden;
}
.hub-wave-bg svg { position: absolute; bottom: -8%; left: -10%; width: 120%; height: 70%; opacity: 0.85; }
.hub-wave-bg path { stroke: var(--accent-soft); stroke-width: 1.2; fill: none; opacity: 0.42; }

/* Letter-by-letter reveal */
.reveal-letters { display: inline-block; }
.reveal-letters .letter {
  display: inline-block;
  white-space: pre; /* sonst kollabieren Leerzeichen-Spans auf 0 Breite → "Wirbauen" */
  opacity: 0;
  transform: translateY(20px);
  animation: letterIn .55s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-letters .letter { opacity: 1; transform: none; animation: none; }
}

/* Cascade fade-in */
.fade-in { opacity: 0; transform: translateY(16px); animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: .25s; }
.delay-2 { animation-delay: .55s; }
.delay-3 { animation-delay: .85s; }
.delay-4 { animation-delay: 1.1s; }
.delay-5 { animation-delay: 1.4s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; animation: none; }
}

/* Cursor follower */
.cursor-glow {
  position: fixed; top: 0; left: 0; pointer-events: none;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  transform: translate(-50%, -50%); z-index: 40;
  transition: transform .12s ease-out, opacity .25s ease;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }
@media (prefers-reduced-motion: reduce), (max-width: 900px) {
  .cursor-glow { display: none; }
}

/* ===== Dialog Box (Voice transcript) ===== */
.dialog-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  font-size: 14px; line-height: 1.6;
  box-shadow: 0 8px 24px rgba(3, 2, 19, 0.04);
}
.dialog-box .turn { margin-bottom: 10px; padding-left: 64px; position: relative; }
.dialog-box .turn:last-child { margin-bottom: 0; }
.dialog-box .turn .role { position: absolute; left: 0; top: 0; font-weight: 600; color: var(--accent); width: 56px; }
.dialog-box .turn--user .role { color: var(--muted); }
.dialog-box .play-bar {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--muted);
}
.dialog-box .wave {
  flex: 1; height: 24px; background:
    repeating-linear-gradient(90deg, var(--accent-soft) 0 2px, transparent 2px 5px);
  opacity: 0.5; border-radius: 4px;
}

/* ===== Calculator ===== */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 800px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-input-block { padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--r-md); }
.calc-output-block {
  padding: 28px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(76,175,125,0.08), white);
  border: 1px solid var(--accent-soft);
}
.calc-row { margin-bottom: 18px; }
.calc-row:last-child { margin-bottom: 0; }
.calc-row label { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.calc-row label strong { color: var(--fg); font-weight: 600; }
/* frei eintippbares Zahlenfeld (synchron mit dem Schieber) */
.calc-edit-hint { font-size: 12px; color: var(--muted); margin: 0 0 16px; }
.calc-num {
  width: 4.6em; font: inherit; font-weight: 600; color: var(--accent);
  text-align: right; background: var(--accent-tint);
  border: 1px solid var(--accent-soft); border-radius: 6px;
  padding: 2px 8px; cursor: text; -moz-appearance: textfield; appearance: textfield;
}
.calc-num:hover { border-color: var(--accent); }
.calc-num:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.calc-num::-webkit-outer-spin-button, .calc-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-row input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: var(--line); border-radius: 2px; outline: none;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 2px solid white; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.calc-row input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 2px solid white;
}
.calc-output-row { margin-bottom: 16px; }
.calc-output-row .label { font-size: 12px; color: var(--muted); }

/* Mobile Sofort-Ergebnis unter den Schiebern (Desktop: ausgeblendet, dort gibt es den Ergebnisblock daneben) */
.calc-mobile-result { display: none; }
@media (max-width: 800px) {
  .calc-mobile-result {
    display: block; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  }
  .calc-mobile-result__head {
    display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
  }
  .calc-mobile-result__row {
    display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
    padding: 5px 0; font-size: 14px;
  }
  .calc-mobile-result__row span { color: var(--muted); }
  .calc-mobile-result__row strong { color: var(--fg); font-weight: 600; text-align: right; }
  .calc-mobile-result__row--accent strong { color: var(--accent); font-size: 16px; }
  /* groessere Touch-Flaeche fuer die Schieber auf dem Handy */
  .calc-row input[type="range"]::-webkit-slider-thumb { width: 24px; height: 24px; }
  .calc-row input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; }
}
.calc-output-row .value { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1; }
.calc-output-row .value--accent { color: var(--accent); }
.calc-disclaimer { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ===== Patient:innen-Seite (Hero-Bild + Inhaltsblöcke) ===== */
.patient-hero-image {
  padding: 0 0 clamp(32px, 5vw, 56px);
}
.patient-hero-image img {
  display: block;
  width: 100%;
  height: clamp(240px, 38vw, 520px);
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 12px 32px rgba(15,30,50,0.10);
}
.patient-block {
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: 0;
}
.patient-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--fg);
}
.patient-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  margin: 0 0 12px;
}
.patient-block--emergency {
  background: rgba(217, 87, 87, 0.06);
  border-left: 4px solid #D95757;
  padding: 24px 28px;
  border-radius: 8px;
}
.patient-block--emergency h2 {
  color: #B33B3B;
}
.emergency-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}
.emergency-list li {
  font-size: 15px;
  padding-left: 16px;
  position: relative;
}
.emergency-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D95757;
  font-weight: 700;
}
.emergency-list strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #B33B3B;
  display: inline-block;
  min-width: 90px;
}

/* ===== Filter-Tabs (Use-Cases pro Branche) ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 32px;
}
.filter-tab {
  appearance: none;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  letter-spacing: 0.005em;
}
.filter-tab:hover {
  background: var(--accent-tint);
}
.filter-tab.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.filter-panel { display: none; }
.filter-panel.is-active { display: block; }
.filter-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-md);
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15,30,50,0.08);
}
.workflow-visual {
  margin: 24px auto 0;
  max-width: 860px;
  text-align: center;
}
.workflow-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(15,30,50,0.08);
}
.workflow-visual figcaption {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
/* Full-bleed Bildband (z. B. nach dem Hero) */
.image-band { width: 100%; margin: 0; line-height: 0; }
.image-band img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 460px);
  object-fit: cover;
  object-position: center 32%;
}
/* Schmälere, zentrierte Variante der filter-image für Inhaltssektionen */
.filter-image--narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
/* Platzhalter, solange das echte Bild fehlt (z. B. Klinik) */
.filter-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usecase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.usecase-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 8px 20px rgba(15,30,50,0.06);
  transform: translateY(-2px);
}
.usecase-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.usecase-card h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 4px 0 0;
  color: var(--fg);
}
.usecase-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #4A423B;
  margin: 0;
}
.panel-lead {
  margin-bottom: 32px;
}
.panel-claim {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.25;
  color: var(--fg);
  margin: 0 0 24px;
  max-width: 820px;
}
.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.panel-stat {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
}
.panel-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.panel-stat p {
  font-size: 16px;
  line-height: 1.45;
  color: #4A423B;
  margin: 0;
}
@media (max-width: 860px) {
  .panel-stats { grid-template-columns: 1fr; gap: 16px; }
}

.tasks-accordion {
  margin-top: 24px;
}
.tasks-accordion > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: background .2s ease;
}
.tasks-accordion > summary:hover { background: var(--accent-tint); }
.tasks-accordion > summary::-webkit-details-marker { display: none; }
.tasks-accordion > summary::after {
  content: '+';
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  transition: transform .2s ease;
}
.tasks-accordion[open] > summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.tasks-accordion[open] > summary::after { transform: rotate(45deg); }
.usecase-tasks {
  padding: 20px;
  border: 1px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.usecase-tasks-examples {
  font-size: 15px;
  color: #4A423B;
  margin: 0 0 16px;
  line-height: 1.6;
}
.usecase-tasks-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 12px;
  color: var(--fg);
}
.usecase-tasks-list {
  columns: 2;
  column-gap: 40px;
  font-size: 16px;
}
.usecase-tasks-list li { break-inside: avoid; margin-bottom: 14px; }
.usecase-tasks-list li strong { display: block; color: var(--fg); font-size: 16px; }
.usecase-tasks-list li span { display: block; font-size: 14px; color: var(--muted); line-height: 1.5; margin-top: 2px; }
@media (max-width: 760px) { .usecase-tasks-list { columns: 1; } }
@media (max-width: 860px) {
  .usecase-grid { grid-template-columns: 1fr; }
  .filter-tab { font-size: 13px; padding: 10px 16px; }
  .usecase-tasks-list { columns: 1; }
}

/* ===== Pain-Block (das Problem, einmal groß) ===== */
.pain-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1000px;
  margin: 8px auto 0;
}
.pain-stat {
  text-align: center;
}
.pain-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 14px;
}
.pain-stat p {
  font-size: 17px;
  line-height: 1.45;
  color: var(--fg);
  margin: 0 auto;
  max-width: 260px;
}
@media (max-width: 760px) {
  .pain-stats { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Pricing (3 Festpakete) ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 22px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pricing-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 8px 24px rgba(15,30,50,0.06);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 12px 28px rgba(26,74,58,0.10);
}
.pricing-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--accent-tint);
  padding: 5px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.pricing-badge--featured {
  background: var(--accent);
  color: #fff;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0;
  color: var(--fg);
}
.pricing-price {
  font-family: var(--sans);
  margin: 0;
  line-height: 1.2;
}
.pricing-price strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.pricing-price span {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
}
.pricing-features li {
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-fit {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 4px 0 0;
}
.pricing-cta {
  align-self: flex-start;
  margin-top: 8px;
}
.pricing-footnote {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.6;
}

/* Custom-CTA-Block (Mehrstandort) */
.custom-cta-block {
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.custom-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2;
  margin: 0;
  color: #fff;
  max-width: 700px;
}
.custom-cta-title em {
  font-style: italic;
  color: var(--accent-soft);
}
.custom-cta-body {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin: 0;
}
.custom-cta-block .btn-primary {
  background: #fff;
  color: var(--accent);
}
.custom-cta-block .btn-primary:hover { background: var(--bg); }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== Rechner Result Blocks ===== */
.calc-result-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.calc-result-block--accent {
  border-color: var(--accent);
  background: rgba(26,74,58,0.04);
}
.calc-result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.calc-result-value {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 8px;
}
.calc-result-value--accent { color: var(--accent); }
.calc-result-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.calc-multisite-hint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--accent);
  font-style: italic;
}

/* ===== FAQ Tabs (4 Stakeholder) ===== */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.faq-tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--fg-muted, #6B6058);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
  letter-spacing: 0.005em;
  position: relative;
  bottom: -1px;
}
.faq-tab:hover { color: var(--fg, #030213); }
.faq-tab.is-active {
  color: var(--fg, #030213);
  font-weight: 600;
}
.faq-tab--inhaber.is-active { border-bottom-color: #1A4A3A; }
.faq-tab--team.is-active    { border-bottom-color: #C8956D; }
.faq-tab--patient.is-active { border-bottom-color: #4A6D8C; }
.faq-tab--it.is-active      { border-bottom-color: #6B6058; }
.faq-panel { display: none; }
.faq-panel.is-active { display: block; }
.faq-disclaimer {
  font-size: 13px;
  color: var(--muted);
  background: rgba(74,109,140,0.08);
  border-left: 3px solid #4A6D8C;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .faq-tab { font-size: 13px; padding: 10px 10px; }
}

/* ===== FAQ Accordion ===== */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: white; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 22px; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--accent-soft); }
.faq-item[open] { border-color: var(--accent-soft); box-shadow: 0 4px 14px rgba(3,2,19,0.04); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent); margin-left: 16px; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.faq-item .faq-body p { margin: 0 0 8px; }
.faq-item .faq-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Offering archive (Invest – PDF documents) */
.offering-archive {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md, 14px);
  padding: 18px 22px;
  margin-bottom: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.offering-archive[open] {
  border-color: var(--accent-soft);
  box-shadow: 0 6px 20px rgba(3,2,19,0.05);
}
.offering-archive summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--serif);
  font-weight: 500;
  position: relative;
  padding-right: 28px;
}
.offering-archive summary::-webkit-details-marker { display: none; }
.offering-archive summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.2s;
}
.offering-archive[open] summary::after { content: "−"; }
.offering-archive .offering-title {
  font-size: 1.3rem;
  color: var(--fg);
}
.offering-archive .offering-period {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.offering-archive .offering-body {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.offering-archive .doc-group-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 22px 0 8px;
}
.offering-archive .doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.offering-archive .doc-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--accent-tint);
  border-radius: 8px;
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.offering-archive .doc-list a:hover {
  background: var(--accent);
  color: var(--bg);
}
.offering-archive .doc-list a strong {
  font-weight: 600;
}
.offering-archive .doc-list a span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  white-space: nowrap;
}
.offering-archive .doc-list--compact a {
  padding: 7px 12px;
  font-size: 13px;
  background: transparent;
  border: 1px solid var(--line);
}
.offering-archive .doc-list--compact a:hover {
  background: var(--accent-tint);
  color: var(--fg);
  border-color: var(--accent-soft);
}

/* ===== Media Placeholder ===== */
.media-placeholder {
  border: 2px dashed var(--accent);
  background: linear-gradient(135deg, rgba(76,175,125,0.06), rgba(26,74,58,0.04));
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: var(--accent);
}
.media-placeholder .icon { font-size: 32px; margin-bottom: 8px; }
.media-placeholder .type { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.media-placeholder .title { font-family: var(--serif); font-size: 1.25rem; color: var(--fg); margin-bottom: 6px; }
.media-placeholder .brief { color: var(--muted); font-size: 13px; max-width: 480px; line-height: 1.55; }
.media-placeholder .meta { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--muted); margin-top: 10px; }

/* ===== Badge ===== */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.badge--live { background: rgba(76,175,125,0.15); color: var(--accent); }
.badge--draft { background: var(--warn-bg); color: var(--warn); }
.badge--soon { background: rgba(0,0,0,0.06); color: var(--muted); }

/* ===== Quote / Testimonial ===== */
.quote-card {
  background: white; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px;
}
/* Platzhalter-Avatar: Slot für echtes Testimonial-Foto */
.quote-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-tint); color: rgba(107,96,88,0.4);
  margin-bottom: 18px;
}
/* Video-Testimonials (echte Kundenstimmen) */
.testimonial-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .testimonial-videos { grid-template-columns: 1fr; } }
.testimonial-video { margin: 0; }
.testimonial-video video,
.testimonial-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  border-radius: var(--r-md);
  background: #000;
  box-shadow: 0 8px 24px rgba(15,30,50,0.10);
}
.testimonial-video figcaption { margin-top: 14px; }
.testimonial-video figcaption strong { display: block; font-size: 16px; color: var(--fg); }
.testimonial-video figcaption span { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }
/* Datenschutz / Sovereign Trust-Block */
.trust-keypoints { text-align: center; font-weight: 600; color: var(--accent); margin: 0 0 32px; font-size: 15px; letter-spacing: 0.02em; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.trust-rating { text-align: center; margin: 28px auto 0; font-size: 15px; color: var(--fg); }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.trust-badges img { display: block; }
.reform-trust { text-align: center; color: var(--accent-soft); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; max-width: 760px; margin: 40px auto 0; }

/* Anbindungen — Full-Bleed-Hintergrund (Systeme/Integration) */
.anbindung-section { position: relative; overflow: hidden; }
.anbindung-section .anbindung-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('bilder/anbindung-bg.jpg') center center / cover no-repeat;
}
.anbindung-section .anbindung-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,248,244,0.78) 0%, rgba(250,248,244,0.62) 50%, rgba(250,248,244,0.78) 100%);
}
.anbindung-section .anbindung-content { position: relative; z-index: 1; }
.anbindung-section .card { background: rgba(255,255,255,0.86); backdrop-filter: blur(3px); }
.quote-card .quote-text {
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.4; font-style: italic; color: var(--fg);
  margin-bottom: 14px;
}
.quote-card .quote-meta { font-size: 13px; color: var(--muted); }
.quote-card .quote-meta strong { color: var(--fg); }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }
.step { padding: 8px 0; }
.step .step-num { font-family: var(--serif); font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 10px; display: block; }
.step h4 { margin-bottom: 6px; font-family: var(--serif); font-size: 1.15rem; }
.step p { font-size: 14px; color: var(--muted); }

/* ===== Wizard mini-illustration ===== */
.wizard-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 800px) { .wizard-flow { grid-template-columns: 1fr; } }
.wizard-step {
  background: white; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px; position: relative;
}
.wizard-step .num { font-family: var(--serif); font-size: 2rem; color: var(--accent); }
.wizard-step h4 { margin: 8px 0; font-family: var(--serif); font-size: 1.2rem; }
.wizard-step p { font-size: 13px; color: var(--muted); }

/* ===== Footer ===== */
.site-footer { padding: 30px 0 18px; border-top: 1px solid var(--line); margin-top: 80px; background: var(--accent); color: var(--bg); }
.site-footer .brand-logo img { height: 46px !important; }
.site-footer .container { display: block; }
.site-footer h5 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 8px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 5px; font-size: 14px; }
.site-footer a:hover { color: var(--accent-soft); }
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 8px;
}
.site-footer .footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 16px 0;
}
.site-footer .footer-location strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--bg);
}
.site-footer .footer-location address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.site-footer .footer-location address a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.site-footer .footer-location address a:hover { color: var(--accent-soft); }
/* E-Mail-Textlinks (keine Buttons) ueberall klar als klickbar, Hover-Feedback wie im Footer-Muster */
a[href^="mailto:"]:not([class*="btn"]) { color: var(--accent); transition: color .2s; }
a[href^="mailto:"]:not([class*="btn"]):hover { text-decoration: underline; }
.site-footer .footer-location .label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-soft);
  margin-bottom: 6px; font-weight: 600;
}
.site-footer .meta {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  padding-top: 10px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.site-footer .footer-ai-note {
  margin: 6px 0 0;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 800px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer .footer-locations { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 500px) {
  .site-footer .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== Final CTA ===== */
.final-cta { padding: clamp(56px, 8vw, 96px) 0; text-align: center; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--muted); max-width: 540px; margin: 0 auto 28px; }
.final-cta .cta-row { justify-content: center; }

/* ===== Sticky mobile CTA ===== */
.mobile-cta {
  position: fixed;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  left: 12px; right: 12px;
  background: white; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px; display: none; gap: 8px; z-index: 50;
  box-shadow: 0 8px 24px rgba(3,2,19,0.12);
}
.mobile-cta .btn { flex: 1; gap: 6px; }
.mobile-cta .btn-icon { flex-shrink: 0; }
@media (max-width: 900px) {
  .mobile-cta { display: flex; }
  /* Platz unten, damit die feste Leiste den letzten Inhalt nicht verdeckt */
  body:has(.mobile-cta) { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

/* Mobile Sub-Nav unter Header — links Termin-CTA, rechts Sprach-Dropdown */
.lang-bar-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px var(--gutter);
  background: rgba(250, 248, 244, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.termin-cta {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.termin-cta:hover { background: var(--accent-strong, var(--accent)); transform: translateY(-1px); }
.lang-dropdown { position: relative; }
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lang-trigger:hover { border-color: var(--accent); }
.lang-trigger svg {
  transition: transform 0.2s;
}
.lang-dropdown[data-open] .lang-trigger svg {
  transform: rotate(180deg);
}
.lang-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15,30,50,0.12);
  display: none;
  z-index: 50;
}
.lang-dropdown[data-open] .lang-list { display: block; }
.lang-list li { margin: 0; padding: 0; }
.lang-list a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--fg);
  border-radius: 8px;
  transition: background 0.15s;
}
.lang-list a:hover { background: var(--accent-tint); }
.lang-list a.active {
  background: var(--fg);
  color: var(--bg);
}
@media (max-width: 900px) {
  .lang-bar-mobile { display: flex; }
}

/* ===== Helpers ===== */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }

/* ===== Sources / footnote ===== */
.footnote { font-size: 13px; color: #6B6058; margin-top: 12px; }

/* ============================================================
   v2 ADDITIONS — Cinematic Imagery (Hub + Invest)
   ============================================================ */

.hero-cinematic {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  padding: clamp(80px, 14vw, 160px) 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--bg);
}
.hero-cinematic::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: var(--hero-image, none);
  background-size: cover; background-position: center;
  filter: saturate(0.85) brightness(0.85);
}
.hero-cinematic::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(3, 2, 19, 0.78) 0%, rgba(3, 2, 19, 0.55) 45%, rgba(3, 2, 19, 0.25) 100%),
    linear-gradient(to bottom, rgba(3, 2, 19, 0.1), rgba(3, 2, 19, 0.7));
}
.hero-cinematic h1 { color: var(--bg); }
.hero-cinematic h1 em { color: var(--accent-soft); }
.hero-cinematic .lead { color: rgba(255, 255, 255, 0.86); }
.hero-cinematic .eyebrow { color: var(--accent-soft); }
.hero-cinematic .footnote { color: rgba(255, 255, 255, 0.7); }
.hero-cinematic .btn-ghost { border-color: rgba(255,255,255,0.4); color: var(--bg); }
.hero-cinematic .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--bg); }

.image-half {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0;
  min-height: 520px;
}
.image-half--reverse .image-half-img { order: 2; }
.image-half--reverse .image-half-text { order: 1; }
@media (max-width: 800px) {
  .image-half { grid-template-columns: 1fr; }
  .image-half--reverse .image-half-img, .image-half--reverse .image-half-text { order: initial; }
}
.image-half-img {
  background-size: cover; background-position: center;
  min-height: 420px;
  position: relative;
}
.image-half-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 74, 58, 0.0), rgba(26, 74, 58, 0.18));
  pointer-events: none;
}
.image-half-text {
  padding: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  background: white;
}
.image-half-text--dark { background: var(--accent); color: var(--bg); }
.image-half-text--dark h2 { color: var(--bg); }
.image-half-text--dark h2 em { color: var(--accent-soft); }
.image-half-text--dark .lead, .image-half-text--dark p { color: rgba(255,255,255,0.86); }
.image-half-text--dark .eyebrow { color: var(--accent-soft); }

.section-cinematic {
  position: relative; min-height: 60vh;
  padding: clamp(80px, 12vw, 160px) 0;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  color: var(--bg); text-align: center;
}
.section-cinematic::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: var(--section-image, none);
  background-size: cover; background-position: center;
  filter: saturate(0.9);
}
.section-cinematic::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(3,2,19,0.15), rgba(3,2,19,0.55) 60%, rgba(3,2,19,0.85)),
    linear-gradient(to right, rgba(26,74,58,0.4), transparent 50%, rgba(26,74,58,0.35));
}
.section-cinematic h2 { color: var(--bg); }
.section-cinematic h2 em { color: var(--accent-soft); }
.section-cinematic .lead { color: rgba(255,255,255,0.92); }
.section-cinematic .eyebrow { color: var(--accent-soft); }

/* Hub v2 — door card photo reveal on hover */
.door-card .door-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .5s ease, transform 1.2s ease;
  transform: scale(1.06);
  pointer-events: none;
}
.door-card:hover .door-photo {
  opacity: 0.32;
  transform: scale(1);
}
.door-card .door-photo-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(250,248,244,0.85) 75%, white 100%);
  transition: background .4s ease;
}
.door-card:hover .door-photo-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(250,248,244,0.7) 75%, rgba(255,255,255,0.95) 100%);
}

/* Hub v2 — grain texture */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.03; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hub v2 — bigger headline option */
.hub-hero h1.hub-hero--xxl { font-size: clamp(3.4rem, 11vw, 9rem); line-height: 0.95; }

/* Hub v2 — scroll hint */
.hub-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollBob 2.4s ease-in-out infinite;
}
.hub-scroll-hint .arrow { width: 1px; height: 28px; background: var(--accent-soft); position: relative; }
.hub-scroll-hint .arrow::after {
  content: ''; position: absolute; bottom: -1px; left: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--accent-soft); border-bottom: 1px solid var(--accent-soft);
  transform: rotate(45deg);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}
@media (prefers-reduced-motion: reduce) { .hub-scroll-hint { animation: none; } }

/* Pull-quote (Invest cinematic) */
.pull-quote { padding: clamp(60px, 9vw, 120px) 0; }
.pull-quote .quote-mark { font-family: var(--serif); font-size: 5rem; line-height: 0.5; color: var(--accent-soft); display: block; }
.pull-quote blockquote {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.18; max-width: 880px; margin: 0 auto 18px;
  font-style: italic; color: var(--fg);
}
.pull-quote blockquote em { color: var(--accent); }
.pull-quote cite { font-size: 14px; color: var(--muted); font-style: normal; }

/* Quote figure (saubere Zitat-Darstellung Hub-Seite) */
.quote-figure {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  border-left: 3px solid var(--accent);
  text-align: left;
}
.quote-figure::before {
  content: "\201C"; /* typografisches öffnendes Anführungszeichen */
  position: absolute;
  top: -8px;
  left: clamp(20px, 3vw, 36px);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}
.quote-figure::after {
  content: "\201D"; /* typografisches schließendes Anführungszeichen */
  position: absolute;
  bottom: -32px;
  right: clamp(20px, 3vw, 36px);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}
.quote-figure .quote-body {
  margin: 0;
  padding: 0;
  border: 0;
}
.quote-figure .quote-body p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 18px;
  font-style: italic;
  color: var(--fg);
}
.quote-figure .quote-body em { color: var(--accent); }
.quote-figure .quote-attribution {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-style: normal;
}

/* Door card – Coming Soon state */
.door-card--soon {
  cursor: not-allowed;
  pointer-events: none;
}
.door-card--soon .door-photo {
  filter: grayscale(0.55) brightness(0.95);
}
.door-card--soon h3,
.door-card--soon .door-desc,
.door-card--soon .door-eyebrow { opacity: 0.7; }
.door-status--soon {
  background: rgba(3, 2, 19, 0.78);
  color: white;
  border-color: rgba(255,255,255,0.15);
}
.door-cta--soon {
  color: var(--muted) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px !important;
}
.footer-soon {
  color: rgba(255,255,255,0.55);
}
.footer-soon em { font-style: normal; opacity: 0.8; }

/* Print */
@media print {
  .brand-header, .mobile-cta, .cursor-glow, .hub-wave-bg, .grain-overlay { display: none !important; }
  body { background: white; }
  .hero-cinematic, .section-cinematic { color: var(--fg); min-height: auto; }
  .hero-cinematic::before, .hero-cinematic::after,
  .section-cinematic::before, .section-cinematic::after { display: none; }
}

/* ============================================================
   v3 ADDITIONS — Spacing Refinements + Lifestyle Berlin-Theme
   ============================================================ */

/* ===== Spacing Refinements ===== */
.hero { padding-top: clamp(72px, 12vw, 144px); padding-bottom: clamp(64px, 10vw, 112px); }
.section { padding: clamp(72px, 11vw, 128px) 0; }
.section--tight { padding: clamp(40px, 7vw, 80px) 0; }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); }
.card { padding: clamp(20px, 2.5vw, 28px); }
.card-grid-2 { gap: clamp(20px, 2.4vw, 32px); }
.card-grid-3 { gap: clamp(18px, 2vw, 24px); }
.card-grid-4 { gap: clamp(16px, 1.8vw, 22px); }
.steps-grid  { gap: clamp(24px, 3vw, 36px); }
.door-grid   { gap: clamp(18px, 2vw, 28px); }
.image-half-text { padding: clamp(48px, 7vw, 96px); }
.image-section .col { padding: clamp(48px, 7vw, 88px); }
.brand-header-inner { padding: clamp(12px, 1.4vw, 18px) var(--gutter); }
.final-cta { padding: clamp(72px, 10vw, 120px) 0; }
.stats-banner { padding: clamp(48px, 7vw, 80px) 0; }
.stats-grid { gap: clamp(20px, 2.4vw, 32px); }
.calc-grid { gap: clamp(24px, 3vw, 40px); }
.calc-input-block, .calc-output-block { padding: clamp(24px, 3vw, 36px); }
.faq-list { gap: 14px; }
.dialog-box { padding: clamp(20px, 2.4vw, 28px); }
.dialog-box .turn { margin-bottom: 12px; }
h1 { margin-bottom: 18px; }
h2 { margin-bottom: 16px; }
h3 { margin-bottom: 12px; }

/* Better mobile rhythm */
@media (max-width: 600px) {
  .hero { padding: 56px 0 40px; }
  .section { padding: 56px 0; }
  .stats-grid { gap: 18px; }
  .stat-item .num { font-size: 2rem; }
  .section-head { margin-bottom: 28px; }
  .image-half { min-height: auto; }
  .image-half-img { min-height: 280px; }
  .image-half-text { padding: 32px 24px; }
  .image-section .col { padding: 32px 24px; }
  .door-card { min-height: 360px; padding: 24px; }
}

/* ============================================================
   LIFESTYLE — Berlin Tech-Hipster Agency Theme
   Anwendung: <body class="ls-theme"> auf lifestyle.html
   ============================================================ */
.ls-theme {
  --bg: #F5F5F7;
  --fg: #0A0A0E;
  --muted: #6E6E76;
  --line: rgba(10, 10, 14, 0.10);
  --line-strong: rgba(10, 10, 14, 0.22);
  --accent: #0A0A0E;
  --accent-soft: #6366F1;
  --accent-tint: rgba(99, 102, 241, 0.06);
  --accent-glow: rgba(99, 102, 241, 0.18);
  --ls-chrome-light: #FCFCFD;
  --ls-chrome-mid:   #B5B5BA;
  --ls-chrome-dark:  #2A2A2E;
  --ls-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  background: var(--bg);
  color: var(--fg);
}

.ls-theme em { color: var(--accent-soft); font-style: italic; }
.ls-theme .eyebrow { color: var(--accent-soft); font-family: var(--ls-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.ls-theme .brand-header { background: rgba(245, 245, 247, 0.85); border-bottom-color: var(--line); }
.ls-theme .brand-header.transparent { background: transparent; }
.ls-theme .brand-nav a { color: var(--fg); }
.ls-theme .brand-nav a:hover { color: var(--accent-soft); }
.ls-theme .lang-switch { border-color: var(--line); }
.ls-theme .lang-switch a.active { background: var(--fg); color: var(--bg); }

.ls-theme .btn-primary {
  background: var(--fg); color: var(--bg);
  border-radius: 0;
  font-family: var(--ls-mono); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}
.ls-theme .btn-primary:hover { background: var(--accent-soft); box-shadow: 0 8px 24px var(--accent-glow); }
.ls-theme .btn-ghost {
  background: transparent; color: var(--fg); border: 1px solid var(--fg); border-radius: 0;
  font-family: var(--ls-mono); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}
.ls-theme .btn-ghost:hover { background: var(--fg); color: var(--bg); }
.ls-theme .btn-light { background: var(--ls-chrome-light); color: var(--fg); border-color: var(--line); border-radius: 0; }

.ls-theme .card {
  background: var(--ls-chrome-light); border-color: var(--line); border-radius: 4px;
}
.ls-theme .card .pic { color: var(--accent-soft); font-family: var(--ls-mono); }
.ls-theme .card-accent {
  background: linear-gradient(135deg, rgba(99,102,241,0.06), white);
  border-color: var(--accent-soft);
}
.ls-theme .badge--live { background: rgba(99,102,241,0.12); color: var(--accent-soft); font-family: var(--ls-mono); border-radius: 0; }
.ls-theme .badge--draft { background: #FEF3C7; color: #B45309; font-family: var(--ls-mono); border-radius: 0; }
.ls-theme .badge--soon { background: rgba(10,10,14,0.06); color: var(--muted); font-family: var(--ls-mono); border-radius: 0; }

/* Lifestyle Hero — chrome surface, grosse Typo */
.ls-hero {
  position: relative;
  padding: clamp(80px, 14vw, 144px) 0 clamp(56px, 10vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(99,102,241,0.10), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #ECECEF 100%);
}
.ls-hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 14ch;
}
.ls-hero h1 em {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  color: var(--accent-soft);
  letter-spacing: -0.02em;
}
.ls-hero .lead { max-width: 640px; color: var(--muted); }
.ls-hero .ls-tag {
  display: inline-block;
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--ls-chrome-light); border: 1px solid var(--line);
  margin-right: 8px; margin-bottom: 8px;
}

/* Chrome Surface — metallic accent for hero side panel */
.ls-chrome-surface {
  position: relative;
  border-radius: 4px;
  padding: 40px 32px;
  background:
    linear-gradient(135deg, var(--ls-chrome-light) 0%, #ECECEF 30%, var(--ls-chrome-mid) 50%, #ECECEF 70%, var(--ls-chrome-light) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(10,10,14,0.08),
    0 18px 48px rgba(10,10,14,0.08);
  font-family: var(--ls-mono);
  font-size: 13px;
  color: var(--ls-chrome-dark);
  min-height: 420px;
}
.ls-chrome-surface::before {
  content: ''; position: absolute; inset: 0; border-radius: 4px; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  opacity: 0.5; mix-blend-mode: overlay;
  animation: chromeShimmer 8s ease-in-out infinite;
}
@keyframes chromeShimmer {
  0%, 100% { transform: translateX(-15%); }
  50%      { transform: translateX(15%); }
}
@media (prefers-reduced-motion: reduce) { .ls-chrome-surface::before { animation: none; } }
.ls-chrome-surface .ls-spec-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid rgba(10,10,14,0.08); position: relative; z-index: 1;
}
.ls-chrome-surface .ls-spec-row:last-child { border-bottom: 0; }
.ls-chrome-surface .ls-spec-key { color: var(--muted); }
.ls-chrome-surface .ls-spec-val { color: var(--accent-soft); font-weight: 500; }
.ls-chrome-surface h4 {
  font-family: var(--sans); font-weight: 500; font-size: 24px;
  color: var(--fg); margin-bottom: 16px;
  position: relative; z-index: 1;
  letter-spacing: -0.02em;
}

/* Marquee ticker for capabilities/use cases */
.ls-ticker {
  background: var(--fg); color: var(--bg);
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
  position: relative;
}
.ls-ticker-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ls-ticker-track > span {
  font-family: var(--ls-mono); font-size: 14px; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 12px;
}
.ls-ticker-track > span::before {
  content: '◆'; color: var(--accent-soft); font-size: 10px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ls-ticker-track { animation: none; } }
.ls-ticker:hover .ls-ticker-track { animation-play-state: paused; }

/* Section dark for Lifestyle */
.ls-theme .section-dark {
  background: var(--fg); color: var(--bg);
  padding: clamp(72px, 11vw, 128px) 0;
}
.ls-theme .section-dark h2 { color: var(--bg); }
.ls-theme .section-dark .lead, .ls-theme .section-dark p { color: rgba(255,255,255,0.78); }
.ls-theme .section-dark .eyebrow { color: var(--accent-soft); }
.ls-theme .section-dark .card {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12);
}
.ls-theme .section-dark .card h4, .ls-theme .section-dark .card h3 { color: var(--bg); }
.ls-theme .section-dark .card p { color: rgba(255,255,255,0.78); }

/* Headline overrides for Lifestyle (more techy) */
.ls-theme h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.ls-theme h2 em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--accent-soft); letter-spacing: -0.01em; }
.ls-theme h3 { font-family: var(--sans); font-weight: 500; letter-spacing: -0.02em; }
.ls-theme h4 { font-family: var(--sans); font-weight: 500; letter-spacing: -0.01em; }

/* Asymmetric grid for use-cases */
.ls-theme .case-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.ls-theme .case-grid > .case--lg { grid-column: span 7; }
.ls-theme .case-grid > .case--md { grid-column: span 5; }
.ls-theme .case-grid > .case--sm { grid-column: span 4; }
@media (max-width: 800px) {
  .ls-theme .case-grid { grid-template-columns: 1fr; }
  .ls-theme .case-grid > .case--lg, .ls-theme .case-grid > .case--md, .ls-theme .case-grid > .case--sm { grid-column: span 1; }
}
.ls-theme .case {
  background: var(--ls-chrome-light); border: 1px solid var(--line);
  padding: 32px; border-radius: 4px;
  position: relative; transition: border-color .25s ease, transform .15s ease;
}
.ls-theme .case:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.ls-theme .case .case-num { font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 18px; }
.ls-theme .case h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 12px; }
.ls-theme .case .case-meta { font-family: var(--ls-mono); font-size: 12px; color: var(--accent-soft); margin-top: 16px; }
.ls-theme .case--feature {
  background: var(--fg); color: var(--bg);
}
.ls-theme .case--feature h3, .ls-theme .case--feature p { color: var(--bg); }
.ls-theme .case--feature p { color: rgba(255,255,255,0.78); }
.ls-theme .case--feature .case-num { color: rgba(255,255,255,0.4); }
.ls-theme .case--feature em { color: var(--accent-soft); }

/* Footer for Lifestyle stays dark green for brand continuity, but with chrome accent */
.ls-theme .site-footer { background: var(--fg); color: var(--bg); }
.ls-theme .site-footer h5 { color: var(--accent-soft); }
.ls-theme .site-footer a:hover { color: var(--accent-soft); }

/* ============================================================
   v4 — LIFESTYLE NYC EDITORIAL-TECH (überschreibt v3 Berlin-Theme)
   Anwendung: <body class="ls-theme"> (gleiche Klasse wie v3)
   ============================================================ */

.ls-theme {
  --bg: #F8F5EE;                  /* warmer stone cream */
  --fg: #1A1A1F;                  /* tieferes Schwarz, weniger blau */
  --muted: #6B6359;
  --line: rgba(26, 26, 31, 0.10);
  --line-strong: rgba(26, 26, 31, 0.20);
  --accent: #1A1A1F;
  --accent-soft: #D97706;         /* deep saffron — editorial NYC */
  --accent-tint: rgba(217, 119, 6, 0.08);
  --accent-glow: rgba(217, 119, 6, 0.18);
  --ls-stone-light: #FCFAF5;
  --ls-stone-mid:   #E8E2D4;
  --ls-stone-dark:  #2A2A2E;
  --ls-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  background: var(--bg);
  color: var(--fg);
}

.ls-theme em { color: var(--accent-soft); font-style: italic; }
.ls-theme .eyebrow {
  color: var(--accent-soft);
  font-family: var(--ls-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
}

.ls-theme .brand-header { background: rgba(248, 245, 238, 0.85); border-bottom-color: var(--line); }
.ls-theme .brand-nav a:hover { color: var(--accent-soft); }
.ls-theme .lang-switch { border-color: var(--line); }
.ls-theme .lang-switch a.active { background: var(--fg); color: var(--bg); }

/* Buttons — editorial pill (round again, but warmer) */
.ls-theme .btn-primary {
  background: var(--fg); color: var(--bg);
  border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.ls-theme .btn-primary:hover { background: var(--accent-soft); color: var(--fg); box-shadow: 0 8px 24px var(--accent-glow); }
.ls-theme .btn-ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--fg); border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  text-transform: none;
}
.ls-theme .btn-ghost:hover { background: var(--fg); color: var(--bg); }
.ls-theme .btn-light {
  background: var(--ls-stone-light); color: var(--fg); border-color: var(--line);
  border-radius: 999px;
}

/* Cards — editorial paper feel */
.ls-theme .card {
  background: var(--ls-stone-light);
  border-color: var(--line);
  border-radius: 8px;
}
.ls-theme .card .pic { color: var(--accent-soft); font-family: var(--ls-mono); }
.ls-theme .card-accent {
  background: linear-gradient(135deg, rgba(217,119,6,0.06), white);
  border-color: var(--accent-soft);
}
.ls-theme .badge--live { background: rgba(217,119,6,0.12); color: var(--accent-soft); font-family: var(--ls-mono); border-radius: 4px; }
.ls-theme .badge--draft { background: #FEF3C7; color: #B45309; font-family: var(--ls-mono); border-radius: 4px; }
.ls-theme .badge--soon { background: rgba(26,26,31,0.06); color: var(--muted); font-family: var(--ls-mono); border-radius: 4px; }

/* Hero — editorial-magazine layout */
.ls-hero {
  position: relative;
  padding: clamp(80px, 14vw, 144px) 0 clamp(56px, 10vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(217,119,6,0.12), transparent 45%),
    radial-gradient(circle at 8% 88%, rgba(217,119,6,0.06), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #F2EEE3 100%);
}

/* Editorial display serif takeover for Lifestyle */
.ls-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.ls-hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
}
.ls-hero .lead {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

/* Editorial issue tags */
.ls-issue-tag {
  display: inline-block;
  font-family: var(--ls-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--ls-stone-light);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-right: 6px; margin-bottom: 8px;
  color: var(--fg);
}
.ls-issue-tag--accent {
  background: var(--accent-soft);
  color: var(--bg);
  border-color: var(--accent-soft);
}

/* Editorial side panel — replaces chrome surface */
.ls-edit-panel {
  position: relative;
  border-radius: 8px;
  padding: 36px 32px;
  background:
    linear-gradient(180deg, var(--ls-stone-light) 0%, #F2EEE3 100%);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(26,26,31,0.06);
  font-family: var(--ls-mono);
  font-size: 13px;
  color: var(--fg);
  min-height: 420px;
}
.ls-edit-panel h4 {
  font-family: var(--serif); font-weight: 400; font-size: 1.5rem;
  color: var(--fg); margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.ls-edit-panel .ls-edit-issue {
  font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-soft);
  margin-bottom: 4px;
}
.ls-edit-panel .ls-spec-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid rgba(26,26,31,0.08);
}
.ls-edit-panel .ls-spec-row:last-child { border-bottom: 0; }
.ls-edit-panel .ls-spec-key { color: var(--muted); }
.ls-edit-panel .ls-spec-val { color: var(--accent-soft); font-weight: 500; }

/* Marquee ticker — saffron accent */
.ls-theme .ls-ticker {
  background: var(--fg); color: var(--bg);
  padding: 22px 0;
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong);
}
.ls-theme .ls-ticker-track > span::before {
  content: '★'; color: var(--accent-soft); font-size: 11px;
}

/* Editorial section numbers */
.ls-theme .section-head .eyebrow .section-num {
  color: var(--accent-soft); font-weight: 600; margin-right: 8px;
}

/* Display headlines — editorial serif throughout Lifestyle */
.ls-theme h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.02em;
}
.ls-theme h2 em { font-style: italic; color: var(--accent-soft); }
.ls-theme h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: -0.01em; }
.ls-theme h4 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; letter-spacing: -0.005em; }

/* Pull-quote section — editorial magazine style */
.ls-theme .ls-pullquote {
  padding: clamp(72px, 12vw, 144px) 0;
  text-align: center;
  background: var(--ls-stone-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ls-theme .ls-pullquote .quote-mark {
  font-family: var(--serif); font-size: 5rem;
  line-height: 0.5; color: var(--accent-soft);
  display: block; margin-bottom: 20px;
}
.ls-theme .ls-pullquote blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.15; max-width: 920px; margin: 0 auto 20px;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.ls-theme .ls-pullquote blockquote em { color: var(--accent-soft); }
.ls-theme .ls-pullquote cite { font-family: var(--ls-mono); font-size: 12px; color: var(--muted); font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; }

/* Section dark — for contrast moments */
.ls-theme .section-dark {
  background: var(--fg); color: var(--bg);
  padding: clamp(72px, 11vw, 128px) 0;
}
.ls-theme .section-dark h2 { color: var(--bg); }
.ls-theme .section-dark .lead, .ls-theme .section-dark p { color: rgba(255,255,255,0.78); }
.ls-theme .section-dark .eyebrow { color: var(--accent-soft); }
.ls-theme .section-dark .card {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12);
}
.ls-theme .section-dark .card h4, .ls-theme .section-dark .card h3 { color: var(--bg); }
.ls-theme .section-dark .card p { color: rgba(255,255,255,0.78); }
.ls-theme .section-dark .card .pic { color: var(--accent-soft); }

/* Asymmetric case grid — editorial */
.ls-theme .case-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.ls-theme .case-grid > .case--lg { grid-column: span 7; }
.ls-theme .case-grid > .case--md { grid-column: span 5; }
.ls-theme .case-grid > .case--sm { grid-column: span 4; }
@media (max-width: 800px) {
  .ls-theme .case-grid { grid-template-columns: 1fr; }
  .ls-theme .case-grid > .case--lg, .ls-theme .case-grid > .case--md, .ls-theme .case-grid > .case--sm { grid-column: span 1; }
}
.ls-theme .case {
  background: var(--ls-stone-light); border: 1px solid var(--line);
  padding: 36px; border-radius: 8px;
  position: relative; transition: border-color .25s ease, transform .15s ease;
}
.ls-theme .case:hover { border-color: var(--accent-soft); transform: translateY(-3px); }
.ls-theme .case .case-num {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--muted); margin-bottom: 22px;
}
.ls-theme .case h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  margin-bottom: 14px;
}
.ls-theme .case .case-meta {
  font-family: var(--ls-mono); font-size: 12px;
  color: var(--accent-soft); margin-top: 18px;
}
.ls-theme .case--feature {
  background: var(--fg); color: var(--bg);
  background-image: radial-gradient(circle at 80% 20%, rgba(217,119,6,0.18), transparent 50%);
}
.ls-theme .case--feature h3, .ls-theme .case--feature p { color: var(--bg); }
.ls-theme .case--feature p { color: rgba(255,255,255,0.78); }
.ls-theme .case--feature .case-num { color: rgba(255,255,255,0.5); }
.ls-theme .case--feature em { color: var(--accent-soft); }

/* Footer for Lifestyle — slightly warmer */
.ls-theme .site-footer { background: var(--fg); color: var(--bg); }
.ls-theme .site-footer h5 { color: var(--accent-soft); }
.ls-theme .site-footer a:hover { color: var(--accent-soft); }

/* ============================================================
   v5 — LIFESTYLE CINEMATIC: Motion, Video, Scale
   Aufbauend auf v4 Saffron — pusht Visual-Drama
   ============================================================ */

/* Animated gradient mesh hero */
.ls-hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(80px, 14vw, 144px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}
.ls-mesh-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(217,119,6,0.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(217,119,6,0.18), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(26,26,31,0.04), transparent 60%),
    linear-gradient(135deg, var(--bg) 0%, #F2EEE3 100%);
  filter: blur(0px);
  animation: meshFlow 18s ease-in-out infinite;
}
@keyframes meshFlow {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0 0; }
  33%      { background-position: 30% 20%, 60% 80%, 70% 30%, 0 0; }
  66%      { background-position: 70% 60%, 40% 30%, 30% 70%, 0 0; }
}
@media (prefers-reduced-motion: reduce) { .ls-mesh-bg { animation: none; } }

.ls-mesh-noise {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero headline — kinetic */
.ls-hero-cinematic h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.6rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 14ch;
  position: relative;
}
.ls-hero-cinematic h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .ls-hero-cinematic h1 em { animation: none; -webkit-text-fill-color: var(--accent-soft); background: none; }
}

.ls-hero-cinematic .lead { max-width: 580px; color: var(--muted); font-size: clamp(1.1rem, 1.7vw, 1.3rem); }

/* Big video showreel slot — hero side */
.ls-video-slot {
  position: relative;
  aspect-ratio: 9/12;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ls-stone-light);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}
.ls-video-slot:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(217, 119, 6, 0.18); }
.ls-video-slot video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.ls-video-slot .ls-video-fallback {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(217,119,6,0.18), transparent 40%),
    radial-gradient(circle at 30% 30%, rgba(217,119,6,0.4), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(26,26,31,0.3), transparent 60%),
    linear-gradient(180deg, var(--ls-stone-mid), var(--fg));
  background-size: 200% 200%;
  animation: meshFlow 14s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.95);
}
.ls-video-slot .ls-video-fallback .play-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ls-video-slot .ls-video-fallback .play-icon::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--fg);
  margin-left: 4px;
}
.ls-video-slot .ls-video-meta {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  z-index: 2;
}
.ls-video-slot .ls-video-corner {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) { .ls-video-slot .ls-video-fallback { animation: none; } }

/* Big marquee — multi-row, kinetic typography */
.ls-marquee-big {
  background: var(--fg); color: var(--bg);
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
}
.ls-marquee-row {
  display: flex; gap: 60px; white-space: nowrap;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  width: max-content;
  animation: marqueeBig 32s linear infinite;
  margin-bottom: 8px;
}
.ls-marquee-row:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 38s;
  font-style: normal;
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(2rem, 6vw, 5rem);
  color: var(--accent-soft);
}
.ls-marquee-row > span {
  display: inline-flex; align-items: center; gap: 30px;
}
.ls-marquee-row > span::after {
  content: '✶'; font-size: 0.6em; color: var(--accent-soft);
  font-style: normal;
  font-family: var(--sans);
}
.ls-marquee-row:nth-child(2) > span::after { color: var(--bg); }
@keyframes marqueeBig {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ls-marquee-row { animation: none; } }

/* Case cards with video on hover */
.ls-case-cinematic {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--fg);
  cursor: pointer;
  transition: transform .35s ease;
}
.ls-case-cinematic:hover { transform: scale(1.01); }
.ls-case-cinematic .ls-case-video,
.ls-case-cinematic .ls-case-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ls-case-cinematic .ls-case-bg {
  background-size: 200% 200%;
  animation: meshFlow 12s ease-in-out infinite;
  filter: brightness(0.85);
  transition: filter .35s ease;
}
.ls-case-cinematic:hover .ls-case-bg { filter: brightness(1) saturate(1.15); }
.ls-case-cinematic .ls-case-video { opacity: 0; transition: opacity .4s ease; }
.ls-case-cinematic:hover .ls-case-video { opacity: 1; }
.ls-case-cinematic .ls-case-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.85) 100%);
  color: white;
}
.ls-case-cinematic .ls-case-num {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.ls-case-cinematic h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.05;
  color: white;
  margin-bottom: 8px;
}
.ls-case-cinematic h3 em { color: var(--accent-soft); }
.ls-case-cinematic .ls-case-desc { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.ls-case-cinematic .ls-case-meta {
  font-family: var(--ls-mono); font-size: 11px;
  color: var(--accent-soft); letter-spacing: 0.06em;
}

/* Backgrounds for fallback case cards (keine Videos vorhanden) */
.ls-case-bg--popedia    { background: radial-gradient(circle at 30% 30%, #D97706, transparent 60%), linear-gradient(135deg, #1A1A1F, #2A1A0E); }
.ls-case-bg--starbook   { background: radial-gradient(circle at 70% 30%, #F59E0B, transparent 55%), linear-gradient(135deg, #2A1A0E, #1A1A1F); }
.ls-case-bg--ernaehrung { background: radial-gradient(circle at 50% 50%, #EA580C, transparent 50%), linear-gradient(135deg, #1A1A1F, #3A2A1E); }
.ls-case-bg--wellness   { background: radial-gradient(circle at 70% 70%, #FB923C, transparent 50%), linear-gradient(135deg, #2A1A0E, #1A0A0E); }
.ls-case-bg--video      { background: radial-gradient(circle at 20% 80%, #F97316, transparent 50%), linear-gradient(135deg, #1A1A1F, #2A2A1E); }

/* Asymmetric cinematic case grid */
.ls-cases-cinematic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.ls-cases-cinematic > .case-feature { grid-column: span 8; aspect-ratio: 16/9; }
.ls-cases-cinematic > .case-side    { grid-column: span 4; aspect-ratio: 4/5; }
.ls-cases-cinematic > .case-tile    { grid-column: span 4; aspect-ratio: 1/1; }
@media (max-width: 900px) {
  .ls-cases-cinematic { grid-template-columns: 1fr; }
  .ls-cases-cinematic > .case-feature, .ls-cases-cinematic > .case-side, .ls-cases-cinematic > .case-tile { grid-column: span 1; aspect-ratio: 16/10; }
}

/* Magnetic button (CSS-only fake) */
.btn-magnetic {
  position: relative; isolation: isolate;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.btn-magnetic::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, #D97706, #F59E0B, #EA580C, #D97706);
  background-size: 300% 300%;
  opacity: 0; transition: opacity .3s ease;
  animation: gradientShift 5s ease-in-out infinite;
}
.btn-magnetic:hover { transform: translateY(-2px) scale(1.02); }
.btn-magnetic:hover::before { opacity: 0.6; }

/* Scroll-triggered reveal */
.scroll-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.scroll-reveal.in-view { opacity: 1; transform: translateY(0); }
.scroll-reveal.delay-1 { transition-delay: .1s; }
.scroll-reveal.delay-2 { transition-delay: .25s; }
.scroll-reveal.delay-3 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .scroll-reveal { opacity: 1; transform: none; } }

/* Number counter section */
.ls-stats-cinematic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; padding: clamp(48px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .ls-stats-cinematic { grid-template-columns: repeat(2, 1fr); } }
.ls-stats-cinematic > .stat .num {
  font-family: var(--serif); font-size: clamp(3rem, 6vw, 5rem); line-height: 1;
  color: var(--fg);
  display: block; margin-bottom: 8px;
}
.ls-stats-cinematic > .stat .num em { color: var(--accent-soft); font-style: italic; }
.ls-stats-cinematic > .stat .label {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}

/* Scroll hint at hero bottom */
.ls-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: scrollBob 2.4s ease-in-out infinite;
}
.ls-scroll-cue::after {
  content: ''; width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--accent-soft), transparent);
}

/* ============================================================
   v7 — LIFESTYLE CLEAN + DARK
   Linear/Vercel-Aesthetic mit Phone-Mockups
   Wird durch <body class="ls-theme ls-v7"> aktiviert
   ============================================================ */

.ls-v7 {
  --bg: #0A0A0E;
  --fg: #F5F5F7;
  --muted: #8E8E96;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --accent: #F5F5F7;
  --accent-soft: #E89B3C;
  --accent-tint: rgba(232, 155, 60, 0.10);
  --accent-glow: rgba(232, 155, 60, 0.25);
  --surface: #131318;
  --surface-2: #1A1A20;
  background: var(--bg);
  color: var(--fg);
}
.ls-v7 em { color: var(--accent-soft); font-style: italic; }
.ls-v7 .text-muted { color: var(--muted); }

.ls-v7 .brand-header {
  background: rgba(10, 10, 14, 0.7);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.ls-v7 .brand-nav a { color: rgba(245,245,247,0.75); }
.ls-v7 .brand-nav a:hover { color: var(--accent-soft); }
.ls-v7 .lang-switch { border-color: var(--line-strong); }
.ls-v7 .lang-switch a { color: var(--muted); }
.ls-v7 .lang-switch a.active { background: var(--fg); color: var(--bg); }

/* Buttons — clean pill */
.ls-v7 .btn-primary { background: var(--fg); color: var(--bg); border-radius: 999px; font-family: var(--sans); font-weight: 500; }
.ls-v7 .btn-primary:hover { background: var(--accent-soft); color: var(--bg); }
.ls-v7 .btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); border-radius: 999px; }
.ls-v7 .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--fg); }
.ls-v7 .btn-light { background: var(--surface); color: var(--fg); border: 1px solid var(--line); }

/* Eyebrow */
.ls-v7 .eyebrow {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-soft); font-weight: 500;
}

/* Display Typography */
.ls-v7 h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96; letter-spacing: -0.03em;
  color: var(--fg);
}
.ls-v7 h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1; letter-spacing: -0.025em;
}
.ls-v7 h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.ls-v7 h4 { font-family: var(--sans); font-weight: 500; letter-spacing: -0.005em; }
.ls-v7 .lead { color: var(--muted); }

/* HERO — minimal, big, centered */
.ls-v7-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden; isolation: isolate;
}
.ls-v7-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 75% 35%, rgba(232,155,60,0.18), transparent 50%),
    radial-gradient(ellipse at 25% 75%, rgba(232,155,60,0.08), transparent 60%),
    var(--bg);
}
.ls-v7-hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.ls-v7-hero-row {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
@media (max-width: 900px) { .ls-v7-hero-row { grid-template-columns: 1fr; } }

.ls-v7-hero h1 {
  margin-bottom: 28px; max-width: 14ch;
}
.ls-v7-hero h1 em { font-style: italic; color: var(--accent-soft); }
.ls-v7-hero .lead { max-width: 520px; font-size: clamp(1rem, 1.5vw, 1.18rem); margin-bottom: 32px; }
.ls-v7-hero .badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.ls-v7-hero .badge-row .tag {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  padding: 6px 12px; border: 1px solid var(--line-strong); border-radius: 999px;
}

/* PHONE MOCKUP — central component */
.phone-mockup {
  position: relative;
  width: 100%; max-width: 320px;
  aspect-ratio: 9/19;
  margin: 0 auto;
  background: #1A1A1F;
  border-radius: 44px;
  padding: 12px;
  border: 1px solid #2A2A30;
  box-shadow:
    0 60px 100px -30px rgba(0,0,0,0.7),
    0 30px 50px -20px rgba(232,155,60,0.15),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.phone-mockup::before {
  /* notch (Dynamic Island style) */
  content: '';
  position: absolute;
  top: 24px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-mockup .phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.phone-mockup .phone-screen video,
.phone-mockup .phone-screen .phone-fallback {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.phone-mockup .phone-fallback {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.phone-mockup .phone-fallback::before {
  content: ''; position: absolute; inset: 0;
  background-size: 200% 200%;
  animation: meshFlow 14s ease-in-out infinite;
}
.phone-mockup .phone-fallback .phone-label {
  position: relative; z-index: 1;
  font-family: var(--ls-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center; padding: 0 16px;
}
.phone-mockup--tilt-l { transform: perspective(1400px) rotateY(8deg) rotateX(-2deg); }
.phone-mockup--tilt-r { transform: perspective(1400px) rotateY(-8deg) rotateX(-2deg); }
.phone-mockup:hover { transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-6px); }

/* Phone fallback colors (per case) */
.phone-fallback--popedia    { background: linear-gradient(135deg, #1A0A0E, #3A1F0E, #0A0A0E); }
.phone-fallback--popedia::before    { background: radial-gradient(circle at 30% 30%, rgba(232,155,60,0.5), transparent 50%); }
.phone-fallback--starbook   { background: linear-gradient(135deg, #2A1A0E, #1A1A1F, #0A0A0E); }
.phone-fallback--starbook::before   { background: radial-gradient(circle at 70% 30%, rgba(232,155,60,0.4), transparent 55%); }
.phone-fallback--ernaehrung { background: linear-gradient(135deg, #1A2A1E, #0A1A1F, #0A0A0E); }
.phone-fallback--ernaehrung::before { background: radial-gradient(circle at 50% 70%, rgba(232,155,60,0.3), transparent 55%); }
.phone-fallback--wellness   { background: linear-gradient(135deg, #2A1A2A, #1A0A1F, #0A0A0E); }
.phone-fallback--wellness::before   { background: radial-gradient(circle at 70% 70%, rgba(232,155,60,0.4), transparent 50%); }
.phone-fallback--video      { background: linear-gradient(135deg, #1A1A2A, #0A0A1F, #0A0A0E); }
.phone-fallback--video::before      { background: radial-gradient(circle at 30% 70%, rgba(232,155,60,0.3), transparent 60%); }
.phone-fallback--showreel   { background: linear-gradient(135deg, #2A0E1A, #1A1A1F, #0A0A0E); }
.phone-fallback--showreel::before   { background: radial-gradient(circle at 50% 50%, rgba(232,155,60,0.45), transparent 50%); }

/* SECTION — base */
.ls-v7 .section { padding: clamp(80px, 11vw, 144px) 0; }
.ls-v7 .section-head { max-width: 720px; margin-bottom: 56px; }
.ls-v7 .section-head h2 { margin-bottom: 16px; }
.ls-v7 .section-head .lead { margin-bottom: 0; }

/* PILLARS — 3 minimal cards */
.ls-v7 .pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
@media (max-width: 800px) { .ls-v7 .pillar-grid { grid-template-columns: 1fr; } }
.ls-v7 .pillar {
  background: var(--surface);
  padding: 36px 32px; transition: background .3s ease;
}
.ls-v7 .pillar:hover { background: var(--surface-2); }
.ls-v7 .pillar .num { font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent-soft); margin-bottom: 24px; }
.ls-v7 .pillar h3 { font-size: 1.6rem; margin-bottom: 14px; }
.ls-v7 .pillar p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.ls-v7 .pillar .pillar-meta { font-family: var(--ls-mono); font-size: 11px; color: var(--accent-soft); padding-top: 16px; border-top: 1px solid var(--line); }

/* CASES — Phone gallery */
.ls-v7 .cases-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: end;
}
@media (max-width: 1100px) { .ls-v7 .cases-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .ls-v7 .cases-gallery { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.ls-v7 .case-item {
  display: flex; flex-direction: column; gap: 20px;
  text-align: left;
}
.ls-v7 .case-item .phone-mockup { max-width: 100%; }
.ls-v7 .case-item:nth-child(2) { transform: translateY(20px); }
.ls-v7 .case-item:nth-child(4) { transform: translateY(20px); }
@media (max-width: 700px) { .ls-v7 .case-item:nth-child(n) { transform: none; } }
.ls-v7 .case-item .case-info { padding: 0 8px; }
.ls-v7 .case-item .case-num {
  font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.ls-v7 .case-item h4 {
  font-family: var(--serif); font-weight: 400; font-size: 1.25rem;
  letter-spacing: -0.01em; color: var(--fg);
  margin-bottom: 6px;
}
.ls-v7 .case-item h4 em { color: var(--accent-soft); }
.ls-v7 .case-item .case-meta {
  font-family: var(--ls-mono); font-size: 11px; color: var(--accent-soft);
}

/* PROCESS — minimal stepped */
.ls-v7 .process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .ls-v7 .process-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ls-v7 .process-list { grid-template-columns: 1fr; } }
.ls-v7 .process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.ls-v7 .process-step:last-child { border-right: 0; }
@media (max-width: 900px) {
  .ls-v7 .process-step:nth-child(2) { border-right: 0; }
  .ls-v7 .process-step:nth-child(1), .ls-v7 .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.ls-v7 .process-step .step-num {
  font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--accent-soft); margin-bottom: 24px;
}
.ls-v7 .process-step h4 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin-bottom: 10px; }
.ls-v7 .process-step p { font-size: 13px; color: var(--muted); }
.ls-v7 .process-step .duration { font-family: var(--ls-mono); font-size: 11px; color: var(--accent-soft); margin-top: 16px; }

/* PRICING — single card, clean */
.ls-v7 .pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  max-width: 560px; margin: 0 auto;
  position: relative;
}
.ls-v7 .pricing-card::before {
  content: ''; position: absolute; top: -1px; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
}
.ls-v7 .pricing-card .pricing-eyebrow { font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent-soft); margin-bottom: 12px; }
.ls-v7 .pricing-card h3 { font-size: 2rem; margin-bottom: 16px; }
.ls-v7 .pricing-card p { color: var(--muted); margin-bottom: 24px; }
.ls-v7 .pricing-card .price-list { display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.ls-v7 .pricing-card .price-row { display: flex; justify-content: space-between; font-family: var(--ls-mono); font-size: 13px; }
.ls-v7 .pricing-card .price-row .label { color: var(--muted); }
.ls-v7 .pricing-card .price-row .value { color: var(--fg); }
.ls-v7 .pricing-card .price-row .value em { color: var(--accent-soft); font-style: normal; }

/* FINAL CTA — clean */
.ls-v7 .final-cta { padding: clamp(80px, 12vw, 144px) 0; text-align: center; position: relative; overflow: hidden; }
.ls-v7 .final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(232,155,60,0.16), transparent 55%),
    radial-gradient(ellipse at center bottom, rgba(232,155,60,0.06), transparent 55%);
  pointer-events: none;
}
.ls-v7 .final-cta > .container { position: relative; z-index: 1; }
.ls-v7 .final-cta h2 { margin-bottom: 20px; }
.ls-v7 .final-cta p { color: var(--muted); max-width: 540px; margin: 0 auto 32px; }

/* FOOTER override for dark */
.ls-v7 .site-footer { background: #050507; color: var(--fg); border-top: 1px solid var(--line); padding: 64px 0 32px; }
.ls-v7 .site-footer h5 { color: var(--accent-soft); }
.ls-v7 .site-footer a { color: rgba(245,245,247,0.78); }
.ls-v7 .site-footer a:hover { color: var(--accent-soft); }
.ls-v7 .site-footer .meta { border-top-color: var(--line); color: rgba(245,245,247,0.5); }

/* Logo dark theme */
.ls-v7 .brand-logo { color: var(--fg); }

/* ============================================================
   v8 — LIFESTYLE CHROME + BLUE
   Linear / Apple Vision Pro / Cursor Aesthetic
   Aktivierung: <body class="ls-theme ls-v7 ls-v8">
   Chrome-silber Surfaces + Electric Blue Akzent + Deep Navy
   ============================================================ */

.ls-v8 {
  /* Override v7 dark with NAVY-CHROME Aesthetic */
  --bg: #0A0F1C;                    /* deep navy */
  --bg-2: #0F1525;                  /* one shade up */
  --fg: #F2F4F8;                    /* cool white */
  --muted: #8892A5;                 /* slate */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #F2F4F8;
  --accent-soft: #3B82F6;           /* electric blue */
  --accent-cyan: #22D3EE;            /* cyan pop */
  --accent-tint: rgba(59, 130, 246, 0.10);
  --accent-glow: rgba(59, 130, 246, 0.30);
  --chrome-light: #F5F6FA;
  --chrome-mid:   #B0B4C4;
  --chrome-dark:  #2A3144;
  --surface:   #131A2B;
  --surface-2: #182040;
  cursor: none;
  background: var(--bg);
  color: var(--fg);
}
.ls-v8 a, .ls-v8 button, .ls-v8 input, .ls-v8 video { cursor: none; }
.ls-v8 em { color: var(--accent-soft); font-style: italic; }
.ls-v8 .text-muted { color: var(--muted); }

/* Header navy-chrome */
.ls-v8 .brand-header { background: rgba(10, 15, 28, 0.7); border-bottom-color: var(--line); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); }
.ls-v8 .brand-nav a { color: rgba(242,244,248,0.72); }
.ls-v8 .brand-nav a:hover { color: var(--accent-soft); }
.ls-v8 .lang-switch { border-color: var(--line-strong); }
.ls-v8 .lang-switch a { color: var(--muted); }
.ls-v8 .lang-switch a.active { background: var(--fg); color: var(--bg); }
.ls-v8 .brand-logo { color: var(--fg); }

/* Buttons — chrome treatment */
.ls-v8 .btn-primary {
  background: linear-gradient(180deg, var(--chrome-light) 0%, #DDE0EC 50%, var(--chrome-mid) 100%);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--sans); font-weight: 600;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 24px rgba(0,0,0,0.3);
  text-transform: none;
  position: relative; overflow: hidden;
}
.ls-v8 .btn-primary:hover {
  background: linear-gradient(180deg, var(--accent-soft) 0%, #2563EB 100%);
  color: var(--fg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 24px var(--accent-glow);
}
.ls-v8 .btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); border-radius: 999px; font-family: var(--sans); font-weight: 500; text-transform: none; }
.ls-v8 .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--accent-soft); color: var(--accent-soft); }
.ls-v8 .btn-light { background: var(--surface); color: var(--fg); border: 1px solid var(--line); }

/* Eyebrow */
.ls-v8 .eyebrow {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-soft); font-weight: 500;
}

/* Display Typography */
.ls-v8 h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.96; letter-spacing: -0.03em; color: var(--fg); }
.ls-v8 h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.025em; }
.ls-v8 h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.ls-v8 h4 { font-family: var(--sans); font-weight: 500; letter-spacing: -0.005em; }
.ls-v8 .lead { color: var(--muted); }

/* Custom cursor */
.ls-cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; width: 6px; height: 6px; background: var(--accent-soft); border-radius: 50%; transform: translate(-50%, -50%); transition: width .25s cubic-bezier(.2,.8,.2,1), height .25s cubic-bezier(.2,.8,.2,1), background .2s ease; box-shadow: 0 0 12px var(--accent-soft); }
.ls-cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; width: 32px; height: 32px; border: 1px solid rgba(59,130,246,0.4); border-radius: 50%; transform: translate(-50%, -50%); transition: width .35s cubic-bezier(.2,.8,.2,1), height .35s cubic-bezier(.2,.8,.2,1), border-color .25s ease; }
.ls-cursor.over { width: 28px; height: 28px; background: rgba(59,130,246,0.5); }
.ls-cursor-ring.over { width: 0; height: 0; border-color: transparent; }
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .ls-v8 { cursor: auto; }
  .ls-v8 a, .ls-v8 button { cursor: pointer; }
  .ls-cursor, .ls-cursor-ring { display: none; }
}

/* Pulse dot — chrome-blue */
.pulse-dot { display: inline-block; width: 8px; height: 8px; background: var(--accent-cyan); border-radius: 50%; position: relative; vertical-align: middle; margin-right: 8px; box-shadow: 0 0 10px var(--accent-cyan); }
.pulse-dot::after { content: ''; position: absolute; inset: -4px; background: var(--accent-cyan); border-radius: 50%; opacity: 0.4; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:0.5;} 50%{transform:scale(2.4);opacity:0;} }

.live-badge { display: inline-flex; align-items: center; font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-cyan); padding: 6px 12px; background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.28); border-radius: 999px; }

/* HERO bento */
.ls-v8-hero { position: relative; padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 6vw, 80px); overflow: hidden; isolation: isolate; }
.ls-v8-hero-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.20), transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(34,211,238,0.08), transparent 60%), var(--bg); }
.ls-v8-hero-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%); }

.ls-v8-hero-bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(140px, auto); gap: 18px; }
@media (max-width: 1000px) { .ls-v8-hero-bento { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 700px)  { .ls-v8-hero-bento { grid-template-columns: 1fr; } }

.ls-v8-hero-bento .bento {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease;
}
.ls-v8-hero-bento .bento:hover { border-color: rgba(59,130,246,0.35); }
.ls-v8-hero-bento .bento::before {
  /* chrome top-edge highlight */
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.bento-headline { grid-column: span 7; grid-row: span 3; padding: 40px 44px; }
.bento-terminal { grid-column: span 5; grid-row: span 3; padding: 0; background: linear-gradient(180deg, #0A1020 0%, #050813 100%); }
.bento-tags     { grid-column: span 5; grid-row: span 1; }
.bento-stats    { grid-column: span 7; grid-row: span 1; padding: 24px 32px; }

@media (max-width: 1000px) {
  .bento-headline { grid-column: span 6; grid-row: span 2; }
  .bento-terminal { grid-column: span 6; grid-row: span 2; }
  .bento-tags     { grid-column: span 6; grid-row: span 1; }
  .bento-stats    { grid-column: span 6; grid-row: span 1; }
}

.bento-headline h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); letter-spacing: -0.03em; margin-bottom: 24px; }
.bento-headline h1 em { color: transparent; background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-soft) 50%, #6366F1 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bento-headline .lead { max-width: 460px; margin-bottom: 28px; }
.bento-headline .badge-row { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }

/* Terminal */
.terminal { width: 100%; height: 100%; min-height: 360px; font-family: var(--ls-mono); font-size: 13px; line-height: 1.65; padding: 24px 28px; color: rgba(242,244,248,0.85); display: flex; flex-direction: column; }
.terminal-header { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.terminal-header .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(242,244,248,0.18); }
.terminal-header .dot.live { background: var(--accent-cyan); box-shadow: 0 0 8px var(--accent-cyan); }
.terminal-header .label { margin-left: 8px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.terminal-body { flex: 1; overflow: hidden; }
.terminal-line { display: block; white-space: pre-wrap; }
.terminal-line.tag-init { color: var(--accent-soft); }
.terminal-line.tag-ok   { color: var(--accent-cyan); }
.terminal-line.tag-gen  { color: rgba(242,244,248,0.55); }
.terminal-line.cmd      { color: var(--fg); }
.terminal-line.cmd::before { content: '> '; color: var(--accent-cyan); }
.terminal-cursor { display: inline-block; width: 8px; height: 1em; vertical-align: -2px; background: var(--accent-cyan); animation: termBlink 1s step-start infinite; margin-left: 2px; box-shadow: 0 0 6px var(--accent-cyan); }
@keyframes termBlink { 50% { opacity: 0; } }

/* Tag cloud */
.bento-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 24px 32px; }
.bento-tags .chip { font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,244,248,0.75); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.02); transition: all .25s ease; }
.bento-tags .chip:hover { border-color: var(--accent-soft); color: var(--accent-soft); background: rgba(59,130,246,0.08); }

/* Stats bento */
.bento-stats { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.bento-stats .stat { display: flex; flex-direction: column; gap: 4px; }
.bento-stats .stat .num { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; color: var(--fg); }
.bento-stats .stat .num em { color: var(--accent-soft); font-style: italic; }
.bento-stats .stat .label { font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* Cases — bento */
.ls-v8-cases-bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(240px, auto); gap: 18px; }
@media (max-width: 1000px) { .ls-v8-cases-bento { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 700px)  { .ls-v8-cases-bento { grid-template-columns: 1fr; grid-auto-rows: auto; } }

.bento-case {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.bento-case::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); z-index: 4; }
.bento-case:hover { border-color: rgba(59,130,246,0.35); transform: translateY(-3px); }
.bento-case .bento-case-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  background: linear-gradient(180deg, transparent 30%, rgba(10,15,28,0.78) 75%, rgba(10,15,28,0.95) 100%);
  color: var(--fg);
}
.bento-case .bento-case-num { font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(242,244,248,0.7); }
.bento-case h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.05; color: var(--fg); margin-bottom: 6px; }
.bento-case h3 em { color: var(--accent-cyan); }
.bento-case .desc { font-size: 13px; color: rgba(242,244,248,0.72); margin-bottom: 8px; }
.bento-case .meta { font-family: var(--ls-mono); font-size: 11px; color: var(--accent-cyan); }
.bento-case .case-bg-art { position: absolute; inset: 0; z-index: 1; }

.case-feature   { grid-column: span 8; grid-row: span 2; }
.case-tall      { grid-column: span 4; grid-row: span 2; }
.case-quote     { grid-column: span 4; grid-row: span 1; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.case-stat      { grid-column: span 4; grid-row: span 1; padding: 28px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 8px; }
.case-square    { grid-column: span 4; grid-row: span 1; }
@media (max-width: 1000px) { .case-feature, .case-tall, .case-quote, .case-stat, .case-square { grid-column: span 6; grid-row: span 1; } }

.case-quote .quote-text { font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.4; color: var(--fg); margin-bottom: 12px; }
.case-quote .quote-meta { font-family: var(--ls-mono); font-size: 11px; color: var(--muted); }
.case-stat .stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--accent-cyan); font-style: italic; }
.case-stat .stat-label { font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* Phone mockup chrome bezel — overrides v7 phone */
.ls-v8 .phone-mockup {
  background: linear-gradient(135deg, var(--chrome-mid) 0%, var(--chrome-light) 25%, var(--chrome-mid) 50%, var(--chrome-light) 75%, var(--chrome-mid) 100%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 60px 100px -30px rgba(0,0,0,0.7),
    0 30px 50px -20px rgba(59,130,246,0.20),
    inset 0 0 0 1.5px rgba(255,255,255,0.4);
}
.ls-v8 .phone-mockup .phone-screen { background: var(--bg); }

.case-feature .phone-bento { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; }
.case-feature .phone-bento .phone-mockup { max-width: 240px; pointer-events: none; }

/* Phone fallback chrome-cyan */
.ls-v8 .phone-fallback--popedia    { background: linear-gradient(135deg, #1A2A4A, #0A0F1C, #050813); }
.ls-v8 .phone-fallback--popedia::before    { background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.5), transparent 50%); }
.ls-v8 .phone-fallback--starbook   { background: linear-gradient(135deg, #1A2540, #0A0F1C, #050813); }
.ls-v8 .phone-fallback--starbook::before   { background: radial-gradient(circle at 70% 30%, rgba(34,211,238,0.4), transparent 55%); }
.ls-v8 .phone-fallback--ernaehrung { background: linear-gradient(135deg, #0E1F2A, #0A0F1C, #050813); }
.ls-v8 .phone-fallback--ernaehrung::before { background: radial-gradient(circle at 50% 70%, rgba(34,211,238,0.32), transparent 55%); }
.ls-v8 .phone-fallback--wellness   { background: linear-gradient(135deg, #1A1A40, #0A0F1C, #050813); }
.ls-v8 .phone-fallback--wellness::before   { background: radial-gradient(circle at 70% 70%, rgba(99,102,241,0.4), transparent 50%); }
.ls-v8 .phone-fallback--video      { background: linear-gradient(135deg, #0E1A40, #0A0F1C, #050813); }
.ls-v8 .phone-fallback--video::before      { background: radial-gradient(circle at 30% 70%, rgba(59,130,246,0.32), transparent 60%); }
.ls-v8 .phone-fallback--showreel   { background: linear-gradient(135deg, #1A2A4A, #0A0F1C, #050813); }
.ls-v8 .phone-fallback--showreel::before   { background: radial-gradient(circle at 50% 50%, rgba(59,130,246,0.5), transparent 50%); }

/* Bento case art — chrome-blue */
.ls-v8 .case-art--popedia    { background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.45), transparent 50%), linear-gradient(135deg, #1A2A4A, #0A0F1C); }
.ls-v8 .case-art--starbook   { background: radial-gradient(circle at 70% 60%, rgba(34,211,238,0.30), transparent 55%), linear-gradient(135deg, #0F1525, #1A2540); }
.ls-v8 .case-art--ernaehrung { background: radial-gradient(circle at 50% 50%, rgba(34,211,238,0.18), transparent 60%), linear-gradient(135deg, #0E1F2A, #0A0F1C); }
.ls-v8 .case-art--wellness   { background: radial-gradient(circle at 60% 70%, rgba(99,102,241,0.30), transparent 55%), linear-gradient(135deg, #1A1A40, #0A0F1C); }
.ls-v8 .case-art--video      { background: radial-gradient(circle at 30% 70%, rgba(59,130,246,0.28), transparent 55%), linear-gradient(135deg, #0E1A40, #0A0F1C); }

.case-feature .live-mark { position: absolute; top: 28px; right: 28px; z-index: 3; display: inline-flex; align-items: center; font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-cyan); padding: 6px 12px; background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.30); border-radius: 999px; }

/* Sections inherit dark navy now */
.ls-v8 .section { padding: clamp(80px, 11vw, 144px) 0; }
.ls-v8 .section-head { max-width: 720px; margin-bottom: 56px; }
.ls-v8 .pillar-grid { background: var(--line); border-color: var(--line); }
.ls-v8 .pillar { background: var(--surface); }
.ls-v8 .pillar:hover { background: var(--surface-2); }
.ls-v8 .pillar .num { color: var(--accent-cyan); }
.ls-v8 .pillar .pillar-meta { color: var(--accent-cyan); }

/* Process — chrome accents */
.ls-v8 .process-step .step-num { color: var(--accent-cyan); }
.ls-v8 .process-step .duration { color: var(--accent-cyan); }

/* Pricing — chrome card */
.ls-v8 .pricing-card { background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%); border: 1px solid var(--line); }
.ls-v8 .pricing-card::before { background: linear-gradient(90deg, transparent, var(--accent-soft), transparent); }
.ls-v8 .pricing-card .pricing-eyebrow { color: var(--accent-cyan); }
.ls-v8 .pricing-card .price-row .value em { color: var(--accent-cyan); }

/* Final CTA chrome-glow */
.ls-v8 .final-cta::before {
  background:
    radial-gradient(ellipse at center top, rgba(59,130,246,0.20), transparent 55%),
    radial-gradient(ellipse at center bottom, rgba(34,211,238,0.08), transparent 55%);
}

/* Footer */
.ls-v8 .site-footer { background: #050813; border-top: 1px solid var(--line); }
.ls-v8 .site-footer h5 { color: var(--accent-cyan); }
.ls-v8 .site-footer a:hover { color: var(--accent-soft); }

/* ============================================================
   v9 — LIFESTYLE CONTENT-RICH
   Animierte Phone-UIs + Chrome-Treatments + Foto-Slots
   Aktivierung: <body class="ls-theme ls-v7 ls-v8 ls-v9">
   ============================================================ */

/* Trust bar — chrome strip */
.ls-v9 .trust-bar {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.ls-v9 .trust-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.ls-v9 .trust-label {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.ls-v9 .trust-tech {
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  font-family: var(--ls-mono); font-size: 13px; color: rgba(242,244,248,0.65);
}
.ls-v9 .trust-tech .tech-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}
.ls-v9 .trust-tech .tech-item::before {
  content: ''; position: absolute; top: 0; left: 12px; right: 12px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.ls-v9 .trust-tech .tech-item:hover { border-color: var(--accent-soft); color: var(--fg); }

/* Manifesto */
.ls-v9 .manifesto {
  padding: clamp(72px, 11vw, 128px) 0;
  position: relative; overflow: hidden;
}
.ls-v9 .manifesto::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(59,130,246,0.10), transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(34,211,238,0.06), transparent 55%);
}
.ls-v9 .manifesto-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .ls-v9 .manifesto-grid { grid-template-columns: 1fr; } }
.ls-v9 .manifesto h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 24px;
}
.ls-v9 .manifesto-points {
  display: grid; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--line);
  margin-top: 24px;
}
.ls-v9 .manifesto-points .point {
  display: grid; grid-template-columns: 60px 1fr; gap: 18px;
  font-size: 14px; color: var(--muted);
}
.ls-v9 .manifesto-points .point .num { font-family: var(--ls-mono); color: var(--accent-cyan); font-size: 12px; letter-spacing: 0.16em; }
.ls-v9 .manifesto-points .point strong { color: var(--fg); font-weight: 500; }

/* Photo placeholder — chrome-framed */
.photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}
.photo-frame::before {
  /* chrome top edge */
  content: ''; position: absolute; top: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  z-index: 3;
}
.photo-frame img, .photo-frame video {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-frame .photo-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(59,130,246,0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(34,211,238,0.10), transparent 60%),
    linear-gradient(135deg, var(--surface), var(--bg-2));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 32px;
}
.photo-frame .photo-fallback .icon {
  width: 56px; height: 56px; border: 1.5px solid var(--accent-soft);
  border-radius: 50%; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-soft); font-size: 24px;
}
.photo-frame .photo-fallback .label {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.photo-frame .photo-fallback .brief {
  font-size: 12px; color: var(--muted); max-width: 240px; margin-top: 8px;
  line-height: 1.5;
}

/* Capabilities deep-dive */
.ls-v9 .cap-deep {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
}
@media (max-width: 800px) { .ls-v9 .cap-deep { grid-template-columns: 1fr; } }
.ls-v9 .cap-deep > .cap {
  background: var(--surface);
  padding: 36px 32px;
  transition: background .3s ease;
  position: relative;
}
.ls-v9 .cap-deep > .cap:hover { background: var(--surface-2); }
.ls-v9 .cap-deep > .cap::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.ls-v9 .cap .cap-num {
  font-family: var(--ls-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--accent-cyan); margin-bottom: 16px;
}
.ls-v9 .cap h4 {
  font-family: var(--serif); font-weight: 400; font-size: 1.6rem;
  letter-spacing: -0.015em; margin-bottom: 12px;
}
.ls-v9 .cap p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.ls-v9 .cap .stack-line {
  font-family: var(--ls-mono); font-size: 11px;
  color: var(--accent-soft);
  padding-top: 16px; border-top: 1px solid var(--line);
}

/* Animated phone-UI overlays — replace static fallback */
.phone-ui {
  position: absolute; inset: 0;
  padding: 18px 14px; display: flex; flex-direction: column;
  font-family: var(--sans); font-size: 11px; color: var(--fg);
  background: linear-gradient(180deg, #0A0F1C, #050813);
}
.phone-ui-status {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ls-mono); font-size: 9px; color: var(--muted);
  padding-top: 18px; padding-bottom: 14px;
}
.phone-ui-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.phone-ui-header .avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-soft), var(--accent-cyan)); }
.phone-ui-header .name { font-size: 11px; font-weight: 500; }
.phone-ui-header .sub { font-size: 9px; color: var(--muted); margin-left: auto; }

/* Animated Chat-bubbles UI */
.phone-ui-chat { display: flex; flex-direction: column; gap: 8px; flex: 1; overflow: hidden; }
.phone-ui-chat .bubble {
  max-width: 78%; padding: 8px 11px; border-radius: 12px;
  font-size: 10px; line-height: 1.35;
  opacity: 0; animation: bubbleIn .4s cubic-bezier(.2,.8,.2,1) forwards;
}
.phone-ui-chat .bubble.user { background: rgba(255,255,255,0.06); align-self: flex-start; border-bottom-left-radius: 4px; }
.phone-ui-chat .bubble.bot  { background: linear-gradient(135deg, var(--accent-soft), #2563EB); align-self: flex-end; border-bottom-right-radius: 4px; color: var(--fg); }
.phone-ui-chat .bubble.b1 { animation-delay: .3s; }
.phone-ui-chat .bubble.b2 { animation-delay: 1.2s; }
.phone-ui-chat .bubble.b3 { animation-delay: 2.2s; }
.phone-ui-chat .bubble.b4 { animation-delay: 3.4s; }
.phone-ui-chat .typing {
  align-self: flex-end; background: linear-gradient(135deg, var(--accent-soft), #2563EB);
  border-radius: 12px; padding: 8px 11px;
  display: inline-flex; gap: 3px;
  opacity: 0; animation: bubbleIn .4s cubic-bezier(.2,.8,.2,1) forwards .8s;
}
.phone-ui-chat .typing span {
  width: 4px; height: 4px; border-radius: 50%; background: var(--fg);
  animation: typingDot 1s infinite ease-in-out;
}
.phone-ui-chat .typing span:nth-child(2) { animation-delay: .15s; }
.phone-ui-chat .typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot { 0%, 100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-3px); opacity: 1; } }
@keyframes bubbleIn { to { opacity: 1; } }

/* Animated stats-dashboard UI (Popedia) */
.phone-ui-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.phone-ui-stats .stat-tile {
  background: rgba(255,255,255,0.04);
  border-radius: 10px; padding: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.phone-ui-stats .stat-tile .num {
  font-family: var(--serif); font-size: 22px; line-height: 1;
  color: var(--accent-cyan);
  display: inline-block;
}
.phone-ui-stats .stat-tile .label {
  font-family: var(--ls-mono); font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.phone-ui-stats .stat-tile .bar {
  height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
  margin-top: 6px;
}
.phone-ui-stats .stat-tile .bar::after {
  content: ''; display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent-cyan));
  width: 0;
  animation: barFill 2.4s ease-in-out forwards .8s;
}
.phone-ui-stats .stat-tile.b1 .bar::after { animation-delay: .6s; --w: 78%; }
.phone-ui-stats .stat-tile.b2 .bar::after { animation-delay: 1s;  --w: 92%; }
.phone-ui-stats .stat-tile.b3 .bar::after { animation-delay: 1.4s; --w: 64%; }
.phone-ui-stats .stat-tile.b4 .bar::after { animation-delay: 1.8s; --w: 88%; }
@keyframes barFill { to { width: var(--w, 80%); } }

/* Animated wave UI (Voice) */
.phone-ui-wave { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; padding: 32px 16px; }
.phone-ui-wave .bar {
  width: 4px; background: linear-gradient(180deg, var(--accent-cyan), var(--accent-soft));
  border-radius: 2px;
  animation: waveBar 1.2s ease-in-out infinite;
}
.phone-ui-wave .bar:nth-child(1) { height: 30%; animation-delay: 0s;     }
.phone-ui-wave .bar:nth-child(2) { height: 60%; animation-delay: .1s; }
.phone-ui-wave .bar:nth-child(3) { height: 90%; animation-delay: .2s; }
.phone-ui-wave .bar:nth-child(4) { height: 70%; animation-delay: .3s; }
.phone-ui-wave .bar:nth-child(5) { height: 100%; animation-delay: .4s; }
.phone-ui-wave .bar:nth-child(6) { height: 80%; animation-delay: .5s; }
.phone-ui-wave .bar:nth-child(7) { height: 50%; animation-delay: .6s; }
.phone-ui-wave .bar:nth-child(8) { height: 90%; animation-delay: .7s; }
.phone-ui-wave .bar:nth-child(9) { height: 60%; animation-delay: .8s; }
.phone-ui-wave .bar:nth-child(10){ height: 30%; animation-delay: .9s; }
@keyframes waveBar { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

/* Animated video-thumbnail UI */
.phone-ui-video { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; }
.phone-ui-video::before {
  content: ''; position: absolute; inset: 16px;
  background:
    radial-gradient(circle at 30% 40%, rgba(59,130,246,0.25), transparent 50%),
    linear-gradient(135deg, #0E1A40, #050813);
  border-radius: 12px;
}
.phone-ui-video .play {
  position: relative; z-index: 1;
  width: 48px; height: 48px;
  background: linear-gradient(180deg, #F5F6FA, #B0B4C4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(255,255,255,0.4), inset 0 1px 0 rgba(255,255,255,0.6);
}
.phone-ui-video .play::after {
  content: ''; width: 0; height: 0;
  border-style: solid; border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent var(--bg);
  margin-left: 3px;
}

/* Animated map UI (Wellness — heartbeat / activity) */
.phone-ui-pulse { flex: 1; padding: 16px 8px; display: flex; flex-direction: column; gap: 12px; }
.phone-ui-pulse .heart {
  text-align: center; font-family: var(--serif); font-size: 36px; color: var(--accent-cyan);
  animation: heartPulse 1.6s ease-in-out infinite;
}
@keyframes heartPulse { 0%, 100% { transform: scale(1); } 25% { transform: scale(1.15); } 50% { transform: scale(1); } 75% { transform: scale(1.08); } }
.phone-ui-pulse .pulse-line svg { width: 100%; height: 40px; }
.phone-ui-pulse .pulse-line path { stroke: var(--accent-cyan); stroke-width: 1.5; fill: none; stroke-dasharray: 200; stroke-dashoffset: 200; animation: pulseDraw 3s ease-in-out infinite; }
@keyframes pulseDraw { 0% { stroke-dashoffset: 200; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -200; } }
.phone-ui-pulse .stat-row { display: flex; justify-content: space-between; gap: 8px; }
.phone-ui-pulse .stat-row > div { flex: 1; padding: 8px; background: rgba(255,255,255,0.04); border-radius: 8px; }
.phone-ui-pulse .stat-row .num { font-family: var(--serif); font-size: 14px; color: var(--accent-cyan); }
.phone-ui-pulse .stat-row .lab { font-family: var(--ls-mono); font-size: 8px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* Animated rag UI (Nutrition) */
.phone-ui-rag { flex: 1; padding-top: 4px; display: flex; flex-direction: column; gap: 6px; }
.phone-ui-rag .source-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 6px; padding: 4px 8px; font-size: 9px;
  color: var(--muted); width: fit-content;
  opacity: 0; animation: bubbleIn .4s cubic-bezier(.2,.8,.2,1) forwards;
}
.phone-ui-rag .source-chip .pulse-dot { width: 5px; height: 5px; margin-right: 4px; box-shadow: 0 0 6px var(--accent-cyan); }
.phone-ui-rag .source-chip.s1 { animation-delay: .4s; }
.phone-ui-rag .source-chip.s2 { animation-delay: .8s; }
.phone-ui-rag .source-chip.s3 { animation-delay: 1.2s; }
.phone-ui-rag .ans {
  background: linear-gradient(135deg, var(--accent-soft), #2563EB);
  border-radius: 10px; padding: 8px 11px; margin-top: 8px;
  font-size: 10px; line-height: 1.4;
  opacity: 0; animation: bubbleIn .5s cubic-bezier(.2,.8,.2,1) forwards 1.6s;
}

/* Tech stack section */
.ls-v9 .tech-stack {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 48px;
  position: relative; overflow: hidden;
}
.ls-v9 .tech-stack::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.ls-v9 .tech-stack h3 { font-size: 1.8rem; margin-bottom: 8px; }
.ls-v9 .tech-stack p { color: var(--muted); margin-bottom: 28px; max-width: 560px; }
.ls-v9 .stack-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 800px) { .ls-v9 .stack-grid { grid-template-columns: repeat(2, 1fr); } }
.ls-v9 .stack-tile {
  padding: 18px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .25s ease;
}
.ls-v9 .stack-tile:hover { border-color: var(--accent-soft); }
.ls-v9 .stack-tile .stack-cat { font-family: var(--ls-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-cyan); }
.ls-v9 .stack-tile .stack-name { font-family: var(--sans); font-weight: 500; font-size: 14px; color: var(--fg); }
.ls-v9 .stack-tile .stack-role { font-size: 11px; color: var(--muted); }

/* Team grid */
.ls-v9 .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .ls-v9 .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .ls-v9 .team-grid { grid-template-columns: 1fr; } }
.ls-v9 .team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.ls-v9 .team-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }
.ls-v9 .team-card .photo { aspect-ratio: 4/5; }
.ls-v9 .team-card .info { padding: 18px 20px; }
.ls-v9 .team-card .role { font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 6px; }
.ls-v9 .team-card h4 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; letter-spacing: -0.01em; }
.ls-v9 .team-card .desc { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.ls-v9 .team-card .photo-frame { aspect-ratio: auto; height: 100%; border-radius: 0; border: 0; }
.ls-v9 .team-card .photo-frame::before { display: none; }

/* Insights / Blog preview */
.ls-v9 .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .ls-v9 .insights-grid { grid-template-columns: 1fr; } }
.ls-v9 .insight-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
  cursor: none;
}
.ls-v9 .insight-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }
.ls-v9 .insight-card .cover { aspect-ratio: 16/10; }
.ls-v9 .insight-card .photo-frame { aspect-ratio: auto; height: 100%; border-radius: 0; border: 0; }
.ls-v9 .insight-card .photo-frame::before { display: none; }
.ls-v9 .insight-card .content { padding: 22px 24px 26px; }
.ls-v9 .insight-card .meta { font-family: var(--ls-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 8px; }
.ls-v9 .insight-card h4 { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 8px; }
.ls-v9 .insight-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ls-v9 .insight-card .read { display: inline-block; margin-top: 14px; font-family: var(--ls-mono); font-size: 11px; color: var(--accent-cyan); }

/* FAQ */
.ls-v9 .faq-grid { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.ls-v9 .faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 28px;
  cursor: none; transition: border-color .25s, background .25s;
}
.ls-v9 .faq-item:hover, .ls-v9 .faq-item[open] { border-color: var(--accent-soft); background: var(--surface-2); }
.ls-v9 .faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  font-family: var(--serif); font-size: 1.2rem; line-height: 1.3;
  color: var(--fg);
}
.ls-v9 .faq-item summary::-webkit-details-marker { display: none; }
.ls-v9 .faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent-cyan);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.ls-v9 .faq-item[open] summary::after { transform: rotate(45deg); }
.ls-v9 .faq-item .faq-body { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Highlight stripe */
.ls-v9 .stripe {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(34,211,238,0.04) 50%, transparent 100%);
}
.ls-v9 .stripe-text {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 2rem); line-height: 1.2;
  color: var(--fg); text-align: center;
  letter-spacing: -0.01em;
}
.ls-v9 .stripe-text em { color: var(--accent-cyan); }


/* ============================================================
   HERO — COMPOSED (Healthcare): blurry Praxis-Bg + Hand+Phone
   + transparente Sprechblasen + zentraler Play-Button
   ============================================================ */
.hero.hero--composed {
  position: relative;
  isolation: isolate;
  padding: 0;
  overflow: hidden;
}
/* Praxis-Bild geht über volle Breite, Crème kommt als weicher Gradient-Overlay
   — kein harter Schnitt, sondern fließender Übergang wie im Mockup */
.hero--composed .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('bilder/praxis-blurry.jpg');
  background-size: cover;
  background-position: 50% 42%;
  filter: saturate(1.15) contrast(1.04);
  z-index: 0;
}
.hero--composed .hero-overlay {
  position: absolute; inset: 0;
  /* Linearer 2-Stop-Verlauf — keine Zwischenstops, kein sichtbarer Streifen */
  background: linear-gradient(95deg,
    var(--bg) 30%,
    rgba(250,248,244,0) 70%);
  z-index: 1;
  pointer-events: none;
}
.hero--composed .container { position: relative; z-index: 2; }

.hero-stage {
  position: relative;  /* Anker für absolut positionierte Bubbles */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: stretch;
  min-height: clamp(720px, 88vh, 880px);
  padding: clamp(72px, 8vw, 110px) 0 0;
}
.hero-stage__text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(72px, 8vw, 110px);  /* Text behält Boden-Luft */
}

/* Phone rechts in der Visual-Spalte — Praxis-Szene links sichtbar (MFA + Patientin + Tresen-Telefon).
   Negativer margin-right lässt Phone leicht am rechten Hero-Rand austreten,
   overflow: hidden auf .hero cuttet sauber ab. */
.hero-stage__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 0;
  margin-right: clamp(-80px, -5vw, -20px);
}
.hero-stage__phone {
  position: relative;
  display: inline-block;
}
.hero-stage__phone img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 36px 70px rgba(15, 30, 50, 0.38));
  user-select: none;
  -webkit-user-drag: none;
}

/* Audio-Pill — klein und subtil, sitzt unten leicht rechts der Mitte */
.hero-stage__audio-pill {
  position: absolute;
  bottom: 18px;
  left: 38%;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(76,175,125,0.45);
  box-shadow: 0 10px 26px rgba(15,30,50,0.14), 0 0 0 0 rgba(76,175,125,0.45);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  z-index: 4;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  animation: audioPillPulse 2.4s ease-in-out infinite;
}
@keyframes audioPillPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(15,30,50,0.14), 0 0 0 0 rgba(76,175,125,0.45); }
  50% { box-shadow: 0 10px 26px rgba(15,30,50,0.14), 0 0 0 10px rgba(76,175,125,0); }
}
.hero-stage__audio-pill:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}
.hero-stage__audio-play {
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.hero-stage__audio-play::before {
  content: '';
  width: 0; height: 0;
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}
.hero-stage__audio-pill:hover .hero-stage__audio-play::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(76,175,125,0.4);
  animation: pulseRing 1.6s ease-out infinite;
}
.hero-stage__audio-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
}
@keyframes pulseRing {
  0%   { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Sprechblasen — schweben rechts vom Phone, loopen sequenziell (immer nur eine sichtbar) */
.hero-stage__bubble {
  position: absolute;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  width: 200px;
  color: var(--fg);
  box-shadow: 0 10px 30px rgba(15,30,50,0.14);
  border: 1px solid rgba(255,255,255,0.7);
  z-index: 3;
  opacity: 0;
  animation: bubbleAppear 0.6s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-stage__bubble--ella  { animation-delay: 0.4s; }
.hero-stage__bubble--user  { animation-delay: 1.4s; }
.hero-stage__bubble--ella2 { animation-delay: 2.4s; }

@keyframes bubbleAppear {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage__bubble { animation: none; opacity: 1; }
}
.hero-stage__bubble .role {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
/* Gespräch-Kasten — ein Container statt einzelne Sprechblasen */
.conv-feed {
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 20%;
  width: clamp(240px, 24vw, 300px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 22px 20px;
  background: rgba(255,255,255,0.62);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15,30,50,0.10);
  pointer-events: none;
}
.conv-msg {
  font-size: 13px;
  line-height: 1.4;
  color: var(--fg);
  opacity: 0.38;
  transition: opacity 0.35s ease, color 0.35s ease;
}
.conv-msg .role {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 6px;
}
.conv-msg--user .role { color: rgba(15,30,50,0.55); }
.conv-msg.is-active { opacity: 1; }
.conv-msg.is-active .role { color: var(--accent); }
.conv-msg--user.is-active .role { color: var(--fg); }

@media (prefers-reduced-motion: reduce) {
  .hero-stage__bubble { animation: none; opacity: 1; }
}

/* Caption unter dem Phone */
.hero-stage__caption {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.7);
  z-index: 3;
}
.hero-stage__caption .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* Mobile/Tablet */
@media (max-width: 900px) {
  /* Header Mobile: Nur Demo-Button + DE/EN verstecken, Sprungmarken bleiben.
     Scope-Text ("Healthcare") raus, sonst keine Platz für Nav. */
  .brand-logo { flex-shrink: 0; }
  .brand-logo .scope { display: none; }
  .brand-nav {
    min-width: 0;
    flex: 1 1 auto;
    gap: 14px;
    font-size: 13px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    /* dezente Andeutung rechts, dass es weiter scrollbar ist */
    mask-image: linear-gradient(to right, black calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 24px), transparent 100%);
  }
  .brand-nav::-webkit-scrollbar { display: none; }
  .brand-nav a { white-space: nowrap; flex-shrink: 0; }
  .brand-nav .lang-switch,
  .brand-nav > .btn { display: none; }

  /* Verteilerseite (Hub): keine Sprungmarken, daher Sprach-Switch im Header sichtbar */
  .hub-page .brand-nav { justify-content: flex-end; mask-image: none; -webkit-mask-image: none; }
  .hub-page .brand-nav .lang-switch { display: inline-flex; gap: 8px; font-size: 12px; }
  .hub-page .brand-nav .lang-switch a { padding: 4px 8px; border-radius: 999px; }
  .hub-page .brand-nav .lang-switch a.active { background: var(--fg); color: var(--bg); }
  .hub-page .brand-nav > .btn { display: none; }

  /* Hero auf Mobile: Single-Column, Text oben, Phone-Visual darunter, eng */
  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(48px, 8vw, 80px) 0 0;
    gap: 24px;
  }
  .hero-stage__text {
    padding-bottom: 0;
  }
  .hero--composed .hero-bg {
    background-position: 60% 35%;
  }
  /* Overlay: weicher Verlauf, oben Crème, unten Bild durchscheinend */
  .hero--composed .hero-overlay {
    background: linear-gradient(180deg,
      rgba(250,248,244,0.96) 0%,
      rgba(250,248,244,0.85) 35%,
      rgba(250,248,244,0.55) 100%);
  }
  /* Hero hat Desktop-padding-bottom, das auf Mobile eine Crème-Lücke unter der Hand erzeugt */
  .hero.hero--composed { padding-bottom: 0; }
  /* Visual: Phone klebt am Hero-Boden — keine Lücke zwischen Crème und Hand. */
  .hero-stage__visual {
    justify-content: center;
    align-items: flex-end;
    margin-right: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 0;
  }
  .hero-stage__phone img {
    max-width: 340px;
  }
  /* Audio-Pille im Hero ist auf Mobile redundant — Hörprobe-Button in der Sticky-Bar übernimmt */
  .hero-stage__audio-pill {
    display: none;
  }
  /* Hero-CTAs auf Mobile raus — Sticky-Bar unten übernimmt Demo + Anrufen */
  .hero .cta-row { display: none; }
}

/* ============================================================
   FINAL CTA MIT VIDEO-HINTERGRUND
   ============================================================ */
.final-cta--video {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0;
  background: var(--accent); /* Fallback solange Video lädt */
  padding: clamp(80px, 12vw, 140px) 0;
}
.final-cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.final-cta__overlay {
  position: absolute; inset: 0;
  /* Dunkles Forest-Green Overlay damit Text klar lesbar */
  background:
    linear-gradient(180deg, rgba(15, 40, 30, 0.55) 0%, rgba(15, 40, 30, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}
.final-cta__content {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .final-cta__video { display: none; }
}

/* Live-Dot vor „Selbst anrufen" — Signal: Ella ist sofort dran */
.btn .live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #16a34a; /* live-green */
  margin-right: 8px;
  position: relative;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
  animation: liveDotPulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}
@keyframes liveDotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(22, 163, 74, 0.55); }
  60%  { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(22, 163, 74, 0);   }
}
@media (prefers-reduced-motion: reduce) {
  .btn .live-dot { animation: none; }
}

/* ============================================================
   Cookie Banner (DSGVO)
   Fixed bottom, light card with shadow, three buttons.
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  background: var(--bg, #FAF8F4);
  border: 1px solid var(--line, rgba(107,96,88,0.16));
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(3, 2, 19, 0.18);
  padding: 20px clamp(20px, 3vw, 28px);
  z-index: 9999;
  font-family: var(--sans, 'Space Grotesk', system-ui, sans-serif);
  color: var(--fg, #030213);
  max-width: 1100px;
  margin: 0 auto;
  animation: cookieIn 0.32s ease-out;
}
.cookie-banner--leaving { opacity: 0; transform: translateY(8px); transition: opacity 0.2s, transform 0.2s; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-banner__title {
  font-family: var(--serif, 'Instrument Serif', Georgia, serif);
  font-size: 1.2rem;
  margin: 0 0 6px;
  line-height: 1.1;
}
.cookie-banner__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted, #6B6058);
  margin: 0;
}
.cookie-banner__text a {
  color: var(--accent, #1A4A3A);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(107,96,88,0.16));
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.cookie-btn:hover { border-color: var(--accent, #1A4A3A); }
.cookie-btn--primary {
  background: var(--accent, #1A4A3A);
  color: var(--bg, #FAF8F4);
  border-color: var(--accent, #1A4A3A);
}
.cookie-btn--primary:hover { background: #133829; border-color: #133829; }
.cookie-btn--ghost { background: transparent; }
.cookie-banner__settings {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line, rgba(107,96,88,0.16));
}
.cookie-options { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cookie-options li label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.cookie-options li input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent, #1A4A3A);
}
.cookie-opt-label strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cookie-opt-label em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--muted, #6B6058);
  line-height: 1.45;
}
@media (max-width: 720px) {
  .cookie-banner { padding: 16px; }
  .cookie-banner__inner { grid-template-columns: 1fr; gap: 12px; }
  .cookie-banner__actions { justify-content: flex-start; }
  .cookie-btn { flex: 1 1 auto; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { animation: none; }
}

/* ============================================================
   Vision-Section (Invest – Konzentrische Ringe)
   ============================================================ */
.vision-section { background: var(--bg, #FAF8F4); }
.vision-section .section-head { max-width: 760px; margin-left: 0; }
.vision-section .section-head h2 { line-height: 1.05; }

.rings-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: 64px;
}
.rings-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
}
.rings-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.rings-text {
  display: grid;
  gap: 18px;
}
.ring-card {
  padding: 22px 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ring-card:hover { box-shadow: 0 12px 28px rgba(3,2,19,0.06); transform: translateY(-2px); }
.ring-card .ring-status {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}
.ring-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--fg);
}
.ring-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.vision-crosscutting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--accent-tint, #EAF1EE);
  border-radius: 18px;
}
.crosscut .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.crosscut h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  margin: 0 0 14px;
}
.crosscut p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg);
  margin: 0;
}

@media (max-width: 900px) {
  .rings-layout { grid-template-columns: 1fr; gap: 32px; }
  .vision-crosscutting { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}

/* ============================================================
   Position-Section (Invest – V5)
   Tagline-zentrisch, Dreiwort-Anker, Pfeiler, Outlook, MK-Quote
   ============================================================ */
.position-section {
  background: var(--bg, #FAF8F4);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.position-head {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.position-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.position-tagline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--fg);
}
.position-tagline em {
  font-style: italic;
  color: var(--accent);
}
.position-sublead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 56px;
}

/* Dreiwort-Anker */
.position-anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  margin-bottom: 56px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.position-anchor span {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.005em;
}

/* Drei Pfeiler */
.position-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}
.position-pillar h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--fg);
}
.position-pillar h3 span {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.005em;
}
.position-pillar p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg);
  margin: 0;
}

/* Was uns trennt — Value-Proposition-Block mit MK-Sprache */
.position-difference {
  max-width: 820px;
  margin: 0 auto 64px;
  padding: clamp(32px, 4.5vw, 52px) clamp(28px, 4.5vw, 56px);
  background: var(--accent-tint, #EAF1EE);
  border-radius: 18px;
  text-align: left;
}
.position-difference__label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.position-difference p {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--fg);
}
.position-difference__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.35;
  margin: 28px 0 24px;
  padding: 14px 0 14px 22px;
  border-left: 3px solid var(--accent);
  color: var(--fg);
}
.position-difference__horizon {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 74, 58, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.position-difference__horizon p {
  font-size: 14px !important;
  line-height: 1.5;
  margin: 0;
  color: var(--fg);
}
.position-difference__horizon strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25em;
  color: var(--accent);
  margin-bottom: 4px;
}
@media (max-width: 700px) {
  .position-difference__horizon { grid-template-columns: 1fr; gap: 14px; }
}

/* MK-Quote als Closing */
.position-quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 40px);
}
.position-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  font-style: italic;
  color: var(--fg);
  margin: 0 0 16px;
}
.position-quote blockquote em {
  color: var(--accent);
}
.position-quote figcaption {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

@media (max-width: 800px) {
  .position-pillars { grid-template-columns: 1fr; gap: 28px; }
  .position-anchor { gap: 18px; }
}

/* ============================================================
   Produkt-Section (Invest) — Drei Integrationstiefen
   ============================================================ */
.product-tiers-section {
  background: var(--accent-tint, #EAF1EE);
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
}
.product-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 8px;
}
.product-tier {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
}
.product-tier--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(26,74,58,0.04) 100%);
  position: relative;
}
.product-tier--featured::before {
  content: "Häufigste Konfiguration";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.product-tier__num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.product-tier h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--fg);
}
.product-tier__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.35;
  color: var(--accent);
  margin: 0 0 22px;
}
.product-tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.product-tier__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg);
}
.product-tier__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}
.product-tier__meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-tiers__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 36px;
  font-style: italic;
}
@media (max-width: 900px) {
  .product-tiers { grid-template-columns: 1fr; gap: 18px; }
  .product-tier--featured::before { font-size: 9px; padding: 3px 10px; }
}

/* Beispielgespräch-Note auf Healthcare — dezent, fast Fließtext-untergeordnet */
.hero-stage__audio-note {
  max-width: 440px;
  margin: 14px 0 0;
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--muted);
  opacity: 0.68;
  text-align: left;
  letter-spacing: 0.005em;
}
.hero-stage__audio-note sup {
  font-size: 9px;
  vertical-align: super;
  margin-right: 1px;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 900px) {
  .hero-stage__audio-note {
    margin-top: 12px;
    font-size: 11px;
    max-width: 100%;
  }
}

/* Mobile-CTA Emoji statt SVG */
.btn-emoji {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  margin-right: 2px;
}

/* ============================================================
   Hero-Video (ganz oben auf Healthcare, Markenfilm)
   ============================================================ */
.hero-video {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  line-height: 0;
}
.hero-video__player {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
  background: #000;
}
.hero-video::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-video__caption {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(32px, 5vw, 64px);
  color: #fff;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-video__line { display: block; }
.hero-video__line--serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero-video__line--sans {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  opacity: 0.95;
}
@media (max-width: 640px) {
  .hero-video__player { max-height: 56vh; }
  .hero-video__line--serif { font-size: 22px; }
  .hero-video__line--sans { font-size: 14px; }
}

/* ============================================================
   Healthcare Hero (Text-zentriert, Mensch zuerst, Handy danach)
   ============================================================ */
.hero.hero--text-only {
  position: relative;
  isolation: isolate;
  padding: clamp(96px, 12vw, 150px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero--text-only .hero-bg {
  position: absolute; inset: 0;
  background-image: url('bilder/praxis-blurry.jpg');
  background-size: cover;
  background-position: 50% 42%;
  filter: saturate(1.1) contrast(1.04);
  z-index: 0;
  opacity: 0.45;
}
.hero--text-only .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(250,248,244,0.85) 0%,
    rgba(250,248,244,0.95) 50%,
    var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--text-only .container { position: relative; z-index: 2; }

.hero-text-center {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-text-center h1 {
  margin-top: 16px;
}
.hero-text-center .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.hero-text-center .cta-row {
  justify-content: center;
}

/* ============================================================
   Proof-Section: Split-Screen-Bild mit Caption
   ============================================================ */
.proof-section {
  padding: clamp(32px, 4vw, 56px) 0 clamp(56px, 7vw, 96px);
  background: var(--bg);
}
.proof-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.proof-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 56px rgba(15,30,50,0.16);
}
.proof-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.proof-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32;
  color: var(--fg);
}
.proof-sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted, #6B6058);
}

/* ============================================================
   Phone-Demo-Section: Handy-Visual + Beispielgespräch
   (verschoben aus Hero, zweiter Content-Block)
   ============================================================ */
.phone-demo-section {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #F3EFEB;
  position: relative;
  isolation: isolate;
}
.phone-demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: stretch;
}
.phone-demo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phone-demo-text h2 {
  margin: 12px 0 16px;
}
.phone-demo-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted, #6B6058);
  margin: clamp(56px, 7vw, 96px) auto 0;
  max-width: 600px;
  text-align: center;
}
.phone-demo-head { text-align: center; margin: 0 auto clamp(32px, 4vw, 52px); }
.phone-demo-head .lead { margin-left: auto; margin-right: auto; }
.phone-demo-duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px); align-items: center; justify-items: center;
}
@media (max-width: 860px) { .phone-demo-duo { grid-template-columns: 1fr; gap: 56px; } }
/* Dashboard-Mock: kompaktes echtes Ella-Dashboard (Actions). Inhalt wechselt per .b-swap mit dem Branchen-Filter */
.dash-mock { width: 100%; max-width: 440px; }
/* App-Kopfzeile */
.dash-mock__bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.72); border: 1px solid var(--line); border-bottom: none;
  border-radius: 16px 16px 0 0; padding: 11px 15px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.dash-mock__logo { width: 30px; height: 30px; border-radius: 50%; background: var(--red, #DC2626); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.dash-mock__crumb { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--fg); }
.dash-mock__crumb svg { width: 17px; height: 17px; color: var(--accent); }
.dash-mock__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); background: var(--accent-tint); border: 1px solid var(--accent-soft, #C1D5CF); border-radius: 999px; padding: 4px 10px; }
/* Karte + Zeilen */
.dash-mock__card {
  position: relative;
  background: rgba(255,255,255,0.85); border: 1px solid var(--line); border-radius: 0 0 16px 16px;
  padding: 8px; box-shadow: 0 22px 46px rgba(15,30,50,0.10);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
}
.dm-row { padding: 13px 14px; border-radius: 11px; }
.dm-row + .dm-row { border-top: 1px solid var(--line); border-radius: 0; }
.dm-row--live { position: relative; min-height: 120px; background: var(--accent-tint); border: 1px solid var(--accent-soft, #C1D5CF); border-radius: 11px; }
.dm-row__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dm-title { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--fg); }
.dm-title__ico { display: inline-flex; color: var(--accent); }
.dm-title__ico svg { width: 17px; height: 17px; }
.dm-statusline { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin: 9px 0 0; }
.dm-kv { font-size: 13px; color: var(--muted); margin-top: 7px; line-height: 1.45; }
.dm-kv b { color: var(--fg); font-weight: 600; }
.dm-kv--sub { margin-top: 5px; }
.dm-result { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--accent); margin-top: 10px; }
.dm-result::before { content: "✓"; font-size: 11px; width: 17px; height: 17px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-grid; place-items: center; flex: none; }
.dm-row__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--accent-soft, #C1D5CF); }
.dm-caller { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg); }
.dm-caller__pic { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.7); color: var(--accent); display: grid; place-items: center; flex: none; }
.dm-caller__pic svg { width: 15px; height: 15px; }
.dm-time { font-size: 12px; color: var(--muted); }
/* Status-Badges wie im echten Dashboard */
.dm-badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; border: 1px solid; white-space: nowrap; }
.dm-badge--offen { background: #FBF1DA; color: #927524; border-color: #ECDCB3; }
.dm-badge--prog { background: rgba(255,255,255,0.6); color: #3F6357; border-color: var(--accent-soft, #C1D5CF); }
/* Kontext-Zeilen gedimmt */
.dm-row--ghost { opacity: .6; }
.dm-row--ghost .dm-title { font-size: 13.5px; }
.dash-mock__caption { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }
/* Live-Füllen: nur aktiv wenn JS die Klasse js-fill setzt (ohne JS bleibt alles sichtbar) */
.dash-mock.js-fill [data-step] { opacity: 0; transform: translateY(8px); transition: opacity .8s ease, transform .8s ease; }
.dash-mock.js-fill [data-step].is-shown { opacity: 1; transform: none; }
.dash-mock__livedot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: dashPulse 1.8s ease-out infinite; flex: none; }
@keyframes dashPulse { 0% { box-shadow: 0 0 0 0 rgba(106,149,136,0.40); } 70% { box-shadow: 0 0 0 7px rgba(106,149,136,0); } 100% { box-shadow: 0 0 0 0 rgba(106,149,136,0); } }
.dash-mock__skeleton { display: none; }
.dash-mock.js-fill .dash-mock__skeleton { display: flex; flex-direction: column; gap: 14px; position: absolute; inset: 16px; transition: opacity .5s ease; z-index: 1; }
.dash-mock.js-fill.is-live .dash-mock__skeleton { opacity: 0; pointer-events: none; }
.dash-mock__skeleton span { height: 12px; border-radius: 6px; background: rgba(106,149,136,0.18); }
.dash-mock__skeleton span:nth-child(1) { width: 52%; }
.dash-mock__skeleton span:nth-child(2) { width: 82%; }
.dash-mock__skeleton span:nth-child(3) { width: 64%; }
.dash-mock__skeleton span:nth-child(4) { width: 70%; }
.phone-demo-note sup {
  font-size: 11px;
  color: #4CAF7D;
  margin-right: 2px;
}
.phone-demo-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 360px;
}
/* Desktop: Hand-Visual nach links, Text nach rechts */
@media (min-width: 861px) {
  .phone-demo-visual { order: -1; }
  .phone-demo-text { justify-content: center; }
}
.phone-demo-phone img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(15,30,50,0.32));
  user-select: none;
  -webkit-user-drag: none;
}
/* iOS-Anrufbildschirm als CSS-Handy; Name, Initialen und Dauer wechseln per .b-swap mit dem Branchen-Filter */
.ios-phone {
  position: relative;
  width: 100%; max-width: 288px; aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  border-radius: 46px; background: #05080a; padding: 10px;
  box-shadow: 0 30px 60px rgba(15,30,50,0.34), inset 0 0 0 2px rgba(255,255,255,0.05);
}
.ios-phone__island {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 30%; height: 24px; background: #000; border-radius: 14px; z-index: 3;
}
.ios-phone__screen {
  width: 100%; height: 100%; border-radius: 38px; overflow: hidden; color: #fff;
  background: radial-gradient(120% 75% at 50% 0%, #1c2a24 0%, #0a100e 58%, #060a09 100%);
}
.ios-call { display: flex; flex-direction: column; height: 100%; padding: 22px 18px 20px; }
.ios-call__statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.92); padding: 0 6px;
}
.ios-call__sig { display: inline-flex; align-items: center; gap: 5px; }
.ios-call__sig svg { fill: #fff; display: block; }
.ios-call__sig i { position: relative; display: inline-block; width: 22px; height: 11px; border: 1.5px solid rgba(255,255,255,0.9); border-radius: 3px; }
.ios-call__sig i::before { content: ''; position: absolute; top: 2px; bottom: 2px; left: 2px; right: 4px; background: #fff; border-radius: 1px; }
.ios-call__sig i::after { content: ''; position: absolute; right: -3.5px; top: 50%; transform: translateY(-50%); width: 2px; height: 4px; background: rgba(255,255,255,0.9); border-radius: 0 1px 1px 0; }
.ios-call__top { text-align: center; margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.ios-call__avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(150deg, #717c77, #424b47);
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; font-weight: 600; color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}
.ios-call__name { font-size: 20px; font-weight: 600; line-height: 1.2; max-width: 230px; }
.ios-call__status { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 3px; }
.ios-call__timer { font-size: 13px; color: rgba(255,255,255,0.55); }
.ios-call__grid {
  margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px 8px; justify-items: center; padding: 0 2px;
}
.ios-call__grid span { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 9.5px; color: rgba(255,255,255,0.82); text-align: center; line-height: 1.1; }
.ios-call__grid i { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.13); display: flex; align-items: center; justify-content: center; }
.ios-call__grid svg { width: 21px; height: 21px; fill: #fff; opacity: 0.95; }
.ios-call__hangup { width: 58px; height: 58px; border-radius: 50%; background: #ff3b30; margin: 16px auto 0; display: flex; align-items: center; justify-content: center; }
.ios-call__hangup svg { width: 26px; height: 26px; fill: #fff; transform: rotate(135deg); }
@media (max-width: 860px) {
  .ios-phone { max-width: 268px; }
}
/* CSS-Handy ohne Hand (mobil-sicher, kein abgeschnittenes Handgelenk) */
.demo-phone {
  position: relative;
  width: 100%; max-width: 290px; aspect-ratio: 290 / 590;
  border-radius: 46px; background: #0d1a13; padding: 12px;
  box-shadow: 0 28px 56px rgba(15,30,50,0.32);
}
.demo-phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: #0d1a13; border-radius: 0 0 16px 16px; z-index: 2;
}
.demo-phone-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: linear-gradient(180deg, var(--accent) 0%, #11362a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 36px 22px; color: #fff;
}
.demo-phone-status { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); }
.demo-phone-avatar {
  width: 88px; height: 88px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.demo-phone-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.demo-phone-caller { font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.demo-phone-sub { font-size: 14px; color: rgba(255,255,255,0.82); }
.phone-demo-pill {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(76,175,125,0.45);
  box-shadow: 0 10px 26px rgba(15,30,50,0.14), 0 0 0 0 rgba(76,175,125,0.45);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  z-index: 4;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  animation: audioPillPulse 2.4s ease-in-out infinite;
}
.phone-demo-pill:hover {
  transform: translateX(-50%) translateY(-1px);
  background: rgba(255,255,255,1);
}
.phone-demo-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #4CAF7D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.phone-demo-play::before {
  content: '';
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  margin-left: 2px;
}
/* Laeuft ein Beispiel, wird das Play-Dreieck zur Pause (zwei Balken) */
.phone-demo-pill.is-playing .phone-demo-play::before {
  width: 4px; height: 11px;
  border-top: 0; border-bottom: 0;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  margin-left: 0;
}
.phone-demo-pill-text sup {
  font-size: 10px;
  color: #4CAF7D;
  margin-left: 1px;
}
.phone-demo-pill-meta {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted, #6B6058);
  margin-left: 4px;
}

/* Responsive */
@media (max-width: 860px) {
  .phone-demo-stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .phone-demo-visual {
    min-height: 320px;
  }
  .phone-demo-phone img {
    max-width: 280px;
  }
  .proof-caption {
    font-size: 20px;
  }
  .hero-text-center h1 {
    font-size: clamp(36px, 8vw, 56px);
  }
}

/* Investoren-Podcast — Mock-Player (Folgen folgen) */
.podcast-player { display: flex; gap: clamp(20px, 3vw, 36px); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px); }
.podcast-cover { flex-shrink: 0; width: 120px; height: 120px; border-radius: var(--r-md); overflow: hidden; }
.podcast-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.podcast-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.podcast-ep { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.podcast-ep:last-child { border-bottom: none; }
.podcast-play { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-tint); border: 1px solid var(--accent-soft); flex-shrink: 0; position: relative; }
.podcast-play::before { content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid var(--accent); }
.podcast-ep-text { display: flex; flex-direction: column; }
.podcast-ep-text strong { font-weight: 600; }
.podcast-ep-text span { font-size: 13px; color: var(--muted); }
@media (max-width: 600px) { .podcast-player { flex-direction: column; align-items: stretch; } .podcast-cover { width: 100%; height: 120px; } }

/* Hardware: Ella Box (Invest) */
.hardware-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hardware-points { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.hardware-points li { display: flex; flex-direction: column; }
.hardware-points li strong { font-weight: 600; }
.hardware-points li span { font-size: 14px; color: var(--muted); }
.hardware-visual img { display: block; width: 100%; max-width: 640px; height: auto; margin: 0 auto; filter: drop-shadow(0 30px 48px rgba(15,30,50,0.18)); }
@media (max-width: 860px) { .hardware-grid { grid-template-columns: 1fr; } .hardware-visual { order: -1; } }
