/* ═══════════════════════════════════════════════════════════
   burnin.net — Ganzheitliche KI-Beratung
   Version 2 („Ganzheitlich", 03.07.2026)

   Design-Idee: Zwei Farben, eine Flamme.
   Blau  = Klarheit, Technik, Präzision (Markenfarbe „blaue Flamme")
   Warm  = Mensch, Wärme, Bewusstsein (Bernstein-Akzent)

   Standard ist der HELLE Modus (freundlich, offen) —
   der dunkle Modus bleibt über den Umschalter im Menü erhalten.

   Regel (Felix, 02.07.2026): Hover-Rückmeldung NUR auf echten
   Knöpfen, Links und FAQ-Zeilen — Karten sind keine Knöpfe.
   ═══════════════════════════════════════════════════════════ */

/* ─── Heller Modus (Standard) ─── */
:root {
  --bg: #FBFAF7;
  --bg-alt: #F4F1EA;
  --surface: #FFFFFF;
  --surface-2: #F8F6F1;
  --line: #E5E0D4;
  --text: #232B3E;
  --text-dim: #56607B;
  --text-faint: #8B92A8;
  --header-bg: rgba(251, 250, 247, 0.9);
  --ember: #2563EB;
  --ember-bright: #1D5BDB;
  --amber: #8FD0FF;
  --warm: #C97C2E;
  --warm-bright: #E8963C;
  --grad: linear-gradient(115deg, #2563EB 0%, #4F8DFF 55%, #8FD0FF 100%);
  --grad-warm: linear-gradient(115deg, #E8963C 0%, #F2B366 100%);
  --shadow-soft: 0 10px 34px rgba(35, 43, 62, 0.07);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --radius: 18px;
  --container: 1120px;
}

/* ─── Dunkler Modus (über den Knopf im Menü) ─── */
:root[data-theme="dark"] {
  --bg: #0A1120;
  --bg-alt: #0F1829;
  --surface: #152238;
  --surface-2: #1B2B47;
  --line: #263A5C;
  --text: #EDF2FA;
  --text-dim: #A9B7CE;
  --text-faint: #6B7C99;
  --header-bg: rgba(10, 17, 32, 0.86);
  --ember-bright: #4F8DFF;
  --warm: #E8963C;
  --warm-bright: #F2B366;
  --shadow-soft: 0 12px 38px rgba(2, 8, 20, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }

h1, h2, h3, .brand-name, .btn, .eyebrow, .price, .badge, .card-num {
  font-family: var(--font-display);
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
h2 { font-size: clamp(1.65rem, 3.3vw, 2.4rem); line-height: 1.18; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.5em; }
h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.45em; }

/* Vorzeile über Überschriften — Gestaltungselement mit Farbbalken */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ember-bright);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 3px;
  background: var(--grad);
  border-radius: 2px;
  flex: none;
}
.eyebrow.warm { color: var(--warm); }
.eyebrow.warm::before { background: var(--grad-warm); }
.center .eyebrow { justify-content: center; }

.lead { font-size: 1.2rem; color: var(--text-dim); max-width: 44em; }
.section-sub { color: var(--text-dim); max-width: 44em; margin-bottom: 2.4rem; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 18px; height: 72px; }
/* Reihenfolge: Marke · Menü-Links · Hell/Dunkel · Sprachwähler (ganz rechts) · Mobil-Menü */
.nav .brand { order: -2; }
.nav .nav-links { order: -1; }
.nav .theme-toggle { order: 1; }
.nav .lang-menu { order: 2; }
.nav .nav-toggle { order: 3; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); margin-right: auto; }
.brand-flame { display: grid; place-items: center; }
.brand-name { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
.brand-dot { color: var(--ember-bright); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.25s; }

/* ─── Hell-/Dunkel-Umschalter ─── */
.theme-toggle {
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  width: 40px; height: 40px;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
  flex: none;
}
.theme-toggle:hover { border-color: var(--ember); color: var(--ember-bright); }

/* ─── Sprachwähler: Weltkugel-Knopf mit Aufklapp-Liste (Flaggen) ─── */
.lang-menu { position: relative; flex: none; }
.lang-btn {
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  width: 40px; height: 40px;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}
.lang-btn:hover, .lang-menu.open .lang-btn { border-color: var(--ember); color: var(--ember-bright); }
.lang-btn svg { width: 19px; height: 19px; }
.lang-list {
  position: absolute; top: 50px; right: 0;
  min-width: 158px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(35, 43, 62, 0.14);
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-menu.open .lang-list { display: grid; gap: 2px; }
.lang-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.93rem; font-weight: 500;
  white-space: nowrap;
}
.lang-item:hover { background: var(--surface-2); color: var(--text); }
.lang-item.active { color: var(--text); font-weight: 600; }
.lang-item.active::after { content: "✓"; margin-left: auto; padding-left: 12px; color: var(--ember-bright); font-weight: 700; }
.flag { width: 20px; height: 15px; border-radius: 3px; flex: none; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.10); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ─── Knöpfe ─── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
}
.btn-primary { background: var(--grad); color: #04102A; box-shadow: 0 6px 24px rgba(37, 99, 235, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37, 99, 235, 0.42); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--ember); color: var(--ember-bright); }
.btn-small { padding: 9px 20px !important; font-size: 0.9rem; background: var(--grad); color: #04102A !important; }
.btn-large { padding: 18px 42px; font-size: 1.1rem; }

/* ─── Hero ─── */
.hero { position: relative; padding: 100px 0 80px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -220px; right: -160px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13) 0%, rgba(143, 208, 255, 0.05) 45%, transparent 70%);
  pointer-events: none;
}
.hero-glow-warm {
  position: absolute; bottom: -260px; left: -200px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(232, 150, 60, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
:root[data-theme="dark"] .hero-glow { background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(143, 208, 255, 0.07) 45%, transparent 70%); }
.hero-inner { position: relative; max-width: 800px; }
.hero .lead { margin: 1.6rem 0 2.2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 1rem; }

/* ─── Namens-Geschichte („Warum burnin?") ─── */
.story { padding: 0; }
.story-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  margin: 3.2rem 0 0;
}
.story-visual {
  display: grid; place-items: center;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
}
.story-visual img { max-width: 100%; max-height: 260px; object-fit: contain; display: block; filter: drop-shadow(0 10px 30px rgba(37, 99, 235, 0.25)); }

/* Flammen-Video — zwei Darstellungen je Modus:
   HELL:   Video füllt die linke Karten-Spalte komplett (dunkle „Bühne",
           sauber durch die Kartenkante abgegrenzt — kein Fleck im Weiß).
   DUNKEL: Ränder verlaufen per Maske weich in den Seitenhintergrund —
           die Flamme scheint frei im Dunkel zu schweben. */
.story-visual:has(.flame-video) { padding: 0; background: #020A1A; }
.flame-video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 300px;
  object-fit: cover;
  display: block;
}
:root[data-theme="dark"] .story-visual:has(.flame-video) { background: transparent; }
:root[data-theme="dark"] .flame-video {
  -webkit-mask-image: radial-gradient(ellipse 58% 56% at 50% 52%, #000 34%, transparent 74%);
  mask-image: radial-gradient(ellipse 58% 56% at 50% 52%, #000 34%, transparent 74%);
}
.story-text { padding: 34px 38px; align-self: center; }
.story-text h2 { font-size: 1.45rem; margin-bottom: 0.5em; }
.story-text p { color: var(--text-dim); max-width: 56em; }
.story-text strong { color: var(--text); }

/* ─── Kennzahlen-Leiste ─── */
.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 3rem;
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.stats li { display: flex; flex-direction: column; gap: 4px; }
.stats strong {
  font-family: var(--font-display);
  font-size: 1.85rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats li:nth-child(odd) strong { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; }
.stats span { color: var(--text-dim); font-size: 0.88rem; line-height: 1.45; }
.stats-note { color: var(--text-dim); font-size: 0.92rem; margin-top: 14px; font-family: var(--font-display); }

/* ─── Sektionen ─── */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid { display: grid; gap: 22px; margin-top: 2.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Karten (bewusst OHNE Hover — Karten sind keine Knöpfe) ─── */
.card, .case {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}
.card p, .case p { color: var(--text-dim); font-size: 0.99rem; }
.card-num {
  font-size: 1.45rem; font-weight: 700; letter-spacing: 0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.case h3 { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }

/* ─── Drei Säulen („Ganzheitlich heißt") ─── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 2.6rem; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.pillar-icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(143, 208, 255, 0.14));
  color: var(--ember-bright);
}
.pillar:nth-child(2) .pillar-icon {
  background: linear-gradient(135deg, rgba(232, 150, 60, 0.13), rgba(242, 179, 102, 0.16));
  color: var(--warm);
}
.pillar-icon svg { width: 30px; height: 30px; }
.pillar p { color: var(--text-dim); font-size: 0.99rem; }

/* ─── Haltung (vier Prinzipien) ─── */
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 2.6rem; }
.value {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.value-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 8px;
}
.value h3 { font-size: 1.28rem; }
.value p { color: var(--text-dim); }

/* ─── Zitat ─── */
.quote {
  margin: 3rem auto 0;
  max-width: 720px;
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.55;
  color: var(--text);
}
.quote blockquote::before { content: "„"; color: var(--warm-bright); font-size: 1.4em; }
.quote blockquote::after { content: "\201C"; color: var(--warm-bright); font-size: 1.4em; }
.quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--text-faint);
}

/* ─── Schritte ─── */
.steps { list-style: none; counter-reset: step; display: grid; gap: 0; margin-top: 2.4rem; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 26px 0 26px 84px;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 24px;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.steps h3 span {
  display: inline-block; margin-left: 12px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--ember-bright);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px;
  vertical-align: middle;
}
.steps p { color: var(--text-dim); max-width: 56em; }

/* ─── Beleg-Kasten ─── */
.proof {
  margin-top: 3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--warm-bright);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow-soft);
}
.proof-title { font-family: var(--font-display); font-weight: 600; margin-bottom: 12px; }
.proof ul { list-style: none; display: grid; gap: 8px; }
.proof li { color: var(--text-dim); padding-left: 22px; position: relative; }
.proof li::before { content: "▸"; position: absolute; left: 0; color: var(--ember-bright); }
.proof strong { color: var(--text); }

/* ─── Pakete ─── */
.pricing { align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.price-card.featured {
  background: var(--surface-2);
  border-color: var(--ember);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.14);
}
.badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #04102A;
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price { font-size: 2rem; font-weight: 700; margin: 6px 0 18px; }
.price-card ul { list-style: none; display: grid; gap: 9px; margin-bottom: 26px; flex-grow: 1; }
.price-card li { color: var(--text-dim); font-size: 0.96rem; padding-left: 24px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--ember-bright); font-weight: 700; }
.price-card .btn { text-align: center; }

/* ─── Gründe / Zweispalter ─── */
.reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 44px; margin-top: 2.4rem; }
.reason h3 { color: var(--ember-bright); }
.reason p { color: var(--text-dim); }

/* ─── FAQ ─── */
.faq-list { margin-top: 2.2rem; display: grid; gap: 12px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 52px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--ember-bright); }
.faq-list summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--ember-bright);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 24px 22px; color: var(--text-dim); }

/* ─── Kontakt ─── */
.contact { padding-bottom: 120px; }
.contact .lead { margin: 1.2rem auto 2.4rem; }
.contact-actions { margin-bottom: 1.6rem; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.contact-note { color: var(--text-dim); font-size: 0.95rem; }
.contact-note a { color: var(--ember-bright); }

/* ─── Fußzeile (dreispaltig: Marke · Seiten · Rechtliches) ─── */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-alt); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 36px;
}
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; margin-top: 10px; max-width: 30em; }
.footer-brand-row { display: flex; align-items: center; gap: 9px; }
.footer-contact { margin-top: 14px; }
.footer-contact a { color: var(--ember-bright); text-decoration: none; font-family: var(--font-display); font-size: 0.95rem; }
.footer-contact a:hover { text-decoration: underline; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.footer-col a { color: var(--text-dim); text-decoration: none; font-family: var(--font-display); font-size: 0.93rem; }
.footer-col a:hover { color: var(--ember-bright); }
/* Alt-Klasse (falls noch irgendwo verwendet) */
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-dim); text-decoration: none; font-family: var(--font-display); font-size: 0.92rem; }
.footer-nav a:hover { color: var(--ember-bright); }
.footer-legal { padding: 0 24px 36px; border-top: 1px solid var(--line); }
.footer-legal p { color: var(--text-faint); font-size: 0.85rem; padding-top: 18px; }

/* ─── Rechtsseiten ─── */
.legal-page { padding: 80px 0 120px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 1.4rem; }
.legal-page h2 { font-size: 1.35rem; margin: 2.2rem 0 0.6rem; }
.legal-page h3 { font-size: 1.08rem; margin: 1.6rem 0 0.4rem; }
.legal-page p, .legal-page li { color: var(--text-dim); }
.legal-page ul, .legal-page ol { padding-left: 22px; display: grid; gap: 6px; margin: 0.6rem 0 1rem; }
.legal-note {
  margin-top: 2.5rem;
  padding: 16px 20px;
  border: 1px dashed var(--warm-bright);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: var(--surface);
}

/* ─── Scroll-Einblendung ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── Unterseiten-Hero (gleiche Licht-Stimmung wie Startseite) ─── */
.page-hero { padding: 84px 0 54px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; top: -260px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::before {
  content: ""; position: absolute; bottom: -240px; left: -200px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232, 150, 60, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
:root[data-theme="dark"] .page-hero::after { background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, transparent 70%); }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.page-hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero .lead { margin-top: 1.3rem; }

/* ─── Leistungs-Seiten ─── */
.service-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 1.2rem; }
.service-head h2 { margin-bottom: 0; }
.service > p { color: var(--text-dim); max-width: 58em; }
.service-price {
  margin-top: 1.6rem;
  font-family: var(--font-display); font-weight: 600;
  color: var(--ember-bright);
}
.mini-steps { margin: 1.8rem 0; }
.mini-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-soft);
}
.mini-step strong { font-family: var(--font-display); color: var(--ember-bright); }
.mini-step span { color: var(--text-dim); font-size: 0.88rem; line-height: 1.45; }

.check-list { list-style: none; display: grid; gap: 10px; margin: 1.4rem 0; }
.check-list li { color: var(--text-dim); padding-left: 28px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ember-bright); font-weight: 700; }
.check-list strong { color: var(--text); }

.text-link { color: var(--ember-bright); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.text-link:hover { text-decoration: underline; }
.section-cta { margin-top: 2.4rem; text-align: center; }

/* ─── Bild-/Video-Slots ───
   Slots blenden sich selbst aus, solange die Datei fehlt (onerror im HTML). */
.media-slot {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.media-slot img, .media-slot video { display: block; width: 100%; height: auto; max-height: 520px; object-fit: cover; }
.media-slot figcaption { display: none; }

/* ─── Gründer-Sektion ─── */
.founder { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; }
.founder.no-media { grid-template-columns: 1fr; }
.founder-media img {
  width: 100%; display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.founder-text p { color: var(--text-dim); margin-bottom: 1.1rem; }
.founder-text strong { color: var(--text); }

/* ─── Zwei-Welten-Sektion (Über uns) ─── */
.worlds { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 2.4rem 0; }
.world {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
}
.world-label {
  font-family: var(--font-display);
  font-size: 0.86rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.world:first-child .world-label { color: var(--warm); }
.world:last-child .world-label { color: var(--ember-bright); }
.world p { color: var(--text-dim); font-size: 0.99rem; }
.world ul { list-style: none; display: grid; gap: 8px; margin-top: 12px; }
.world li { color: var(--text-dim); font-size: 0.96rem; padding-left: 22px; position: relative; }
.world:first-child li::before { content: "✦"; position: absolute; left: 0; color: var(--warm-bright); }
.world:last-child li::before { content: "▸"; position: absolute; left: 0; color: var(--ember-bright); }

/* ─── KI-Potenzial-Check ─── */
.check-questions { list-style: none; counter-reset: q; display: grid; gap: 12px; }
.check-questions li {
  counter-increment: q;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.check-questions label {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; cursor: pointer; color: var(--text-dim);
  line-height: 1.6;
}
.check-questions label::before {
  content: counter(q, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  flex: none;
  margin-top: 1px;
  min-width: 30px;
}
.check-questions label > span { flex: 1; }
.check-questions label:hover { color: var(--text); }
.check-questions strong { color: var(--text); }
.check-questions input[type="checkbox"] {
  appearance: none; flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 2px;
  border: 2px solid var(--line); border-radius: 6px;
  background: var(--bg); cursor: pointer;
  display: grid; place-items: center;
}
.check-questions input[type="checkbox"]:checked {
  background: var(--grad); border-color: var(--ember);
}
.check-questions input[type="checkbox"]:checked::after {
  content: "✓"; color: #04102A; font-weight: 800; font-size: 0.85rem;
}
.check-result { margin-top: 1.6rem; text-align: center; }
.check-count { font-family: var(--font-display); font-size: 1.2rem; }
.check-count strong { font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ─── Responsiv ─── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .worlds { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: 1fr; }
  .service-head { flex-direction: column; gap: 6px; }
  .founder { grid-template-columns: 1fr; }
  .founder-media { max-width: 300px; }
  .story-card { grid-template-columns: 1fr; }
  .story-visual { min-height: 180px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px; gap: 18px;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 70px 0 60px; }
  .section { padding: 64px 0; }
  .steps li { padding-left: 60px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
