/* ═══════════════════════════════════════════════════════════
   Hey Alfred — Website V2 (Groq-inspired Premium)
   Lädt zusätzlich zu styles.css und überschreibt Tokens,
   Typografie, Spacing und ausgewählte Sektions-Styles.

   Designphilosophie:
   - Warm-Premium (Alfred Seele) + Groq-Kühle (Whitespace,
     mutige Typografie, monochrom-klarer Body).
   - Cream als Akzent-Fläche (Hero, Divider), Weiß als
     Hauptfläche für Content-Atmung.
   - Große, selbstbewusste Headlines. Stille Eyebrows.
     Flache Cards, weniger Schatten, mehr Ruhe.
   ═══════════════════════════════════════════════════════════ */

/* ─── Inter (Groq-ähnliche Typo-Basis) ────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

/* ─── V2 Tokens (überschreiben styles.css) ────────────────── */
:root {
  /* Farbwelt: weißerer Body, Cream als akzentuierte Flächen */
  --bg: #ffffff;
  --bg-alt: #f5f1ec;
  --bg-warm: #faf6f0;
  --card: #ffffff;
  --dark: #0a0a0a;

  --text: #0a0a0a;
  --text-2: #5e5a54;
  --text-3: #9a948b;

  --border: rgba(10, 10, 10, 0.07);
  --border-strong: rgba(10, 10, 10, 0.11);

  /* Akzent (via Theme-Switcher überschreibbar) — Alfred-Seele */
  --accent: #ef5a3c;
  --accent-hover: #db4a2d;
  --accent-rgb: 239, 90, 60;
  --accent-light: rgba(var(--accent-rgb), 0.08);
  --accent-ink: #ffffff; /* Textfarbe AUF Accent-Flächen */
}

/* Theme: Hot Coral (peppig, rosa-rot) */
body[data-theme="hotcoral"] {
  --accent: #ff3d6e;
  --accent-hover: #e5265a;
  --accent-rgb: 255, 61, 110;
  --accent-ink: #ffffff;
}

/* Theme: Electric Lime (mutig, jung) */
body[data-theme="lime"] {
  --accent: #c6ff00;
  --accent-hover: #a8e000;
  --accent-rgb: 198, 255, 0;
  --accent-ink: #0a0a0a; /* Lime ist zu hell für weiße Buttons */
}

:root {

  /* Typo-Stack: Inter (Groq-Look) + SF Pro als natürliches Fallback */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont,
    "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", "Palatino",
    "Georgia", serif;

  /* Container etwas weiter, aber mit mehr Seitenluft */
  --container: 1240px;

  /* Rundungen ruhiger */
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Schatten dezenter */
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow: 0 2px 10px rgba(10, 10, 10, 0.04);
  --shadow-lg: 0 24px 60px rgba(10, 10, 10, 0.08);
}

/* ─── Base Reset Anpassungen ──────────────────────────────── */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--text);
}

.container {
  padding: 0 32px;
}

/* ─── Section System (mehr Luft, kühler) ──────────────────── */
.section {
  padding: 140px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 88px 0;
  }
}

.section-alt {
  background: var(--bg-alt);
}

.section-warm {
  background: var(--bg-warm);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

/* Eyebrow: kleiner, stiller, mehr Tracking */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 20px;
}

.section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
}

/* Section Headings — Groq-mutig */
.section-head {
  text-align: left;
  max-width: 780px;
  margin: 0 0 80px;
}

.section-head.centered {
  text-align: center;
  margin: 0 auto 80px;
}

.section-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.section-head .section-sub {
  color: var(--text-2);
  font-size: 19px;
  line-height: 1.5;
  max-width: 640px;
  margin: 0;
}

.section-head.centered .section-sub {
  margin: 0 auto;
}

/* ─── Header (cleaner, höherer Kontrast) ──────────────────── */
.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 88px;
}

.site-header .logo-wordmark {
  height: 80px;
}

.nav-links {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  gap: 36px;
}

.nav-links a {
  position: relative;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--text);
}

/* ─── Buttons (Groq-clean, weniger Glow) ──────────────────── */
.btn {
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition: all 0.18s ease;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-primary {
  background: var(--dark);
  color: #fff !important;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #fff !important;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: var(--dark);
  color: #fff !important;
  border-color: var(--dark);
}

.btn-link {
  background: transparent;
  color: var(--text) !important;
  padding: 13px 8px;
  text-decoration: none;
  position: relative;
}

.btn-link::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.18s ease;
  display: inline-block;
}

.btn-link:hover {
  color: var(--accent) !important;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* ─── HERO V2 (Groq-monumental, warm akzentuiert) ─────────── */
.hero.hero-v2 {
  padding: 88px 0 72px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(var(--accent-rgb), 0.06) 0%, transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--border);
  transition: background 0.45s ease;
}

.hero-v2 .hero-center {
  max-width: 1040px;
  text-align: center;
}

/* Stiller Intro-Pill statt großer Platform-Pills */
.hero-v2 .platform-pills {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 8px 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin: 0 0 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-v2 .platform-label {
  padding: 4px 6px 4px 0;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-v2 .platform-pill {
  background: transparent;
  border: 0;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  gap: 6px;
  box-shadow: none;
}

.hero-v2 .platform-pill:hover {
  transform: none;
  box-shadow: none;
  background: rgba(10, 10, 10, 0.04);
  border-radius: 999px;
}

.hero-v2 .platform-pill svg {
  width: 13px;
  height: 13px;
}

/* Monumentale Headline */
.hero-v2 .display {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.2vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin: 0 0 28px;
}

.hero-v2 .display .underline-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  white-space: nowrap;
}

.hero-v2 .display .underline-accent::after {
  content: none;
}

/* Lede größer, aber leichter */
.hero-v2 .lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  max-width: 660px;
  margin: 0 auto 44px;
  color: var(--text-2);
  font-weight: 400;
}

/* CTA-Row: Ein Hauptbutton + Sekundär-Link, mehr Groq-Style */
.hero-v2 .cta-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 0 0 24px;
  flex-wrap: wrap;
}

.hero-v2 .cta-row .btn-icon {
  width: 17px;
  height: 17px;
}

/* Availability-Zeile als stille Metadata */
.hero-v2 .hero-availability {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
  letter-spacing: 0;
}

.hero-v2 .hero-signature {
  max-width: 260px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ─── Trust Strip (neue Sektion) ──────────────────────────── */
.trust-strip {
  padding: 56px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.trust-strip .trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin: 0 0 28px;
}

.trust-strip .trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.trust-strip .trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.trust-strip .trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ─── Apps-Sektion (Weiß, luftiger) ───────────────────────── */
.apps-section {
  padding: 140px 0;
  background: var(--bg);
}

.apps-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: 88px;
}

.apps-grid h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}

.apps-grid .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 0 36px;
}

.apps-list li {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  font-size: 13px;
  padding: 9px 15px;
}

.apps-list li:hover {
  background: var(--card);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: none;
}

/* ─── Speed Compare (monumental typography) ───────────────── */
.speed-section {
  padding: 160px 0;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.speed-section .section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.speed-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.speed-section .section-eyebrow::before {
  background: var(--accent);
}

.speed-section h2 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 20px;
}

.speed-section h2 .underline-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.speed-section h2 .underline-accent::after {
  content: none;
}

.speed-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
}

.speed-compare {
  grid-template-columns: 1fr 1.35fr;
  gap: 20px;
  max-width: 1080px;
}

.speed-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 44px 36px;
  min-height: 340px;
  color: #fff;
  box-shadow: none;
}

.speed-card .speed-label {
  color: rgba(255, 255, 255, 0.55);
}

.speed-card .speed-number {
  font-size: clamp(72px, 10vw, 128px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 8px 0;
}

.speed-card .speed-unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.speed-card .speed-demo {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.speed-card.winner {
  background: linear-gradient(155deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: 0;
  box-shadow: 0 30px 80px rgba(var(--accent-rgb), 0.35);
}

.speed-card.winner .speed-label,
.speed-card.winner .speed-unit,
.speed-card.winner .speed-number,
.speed-card.winner .speed-demo {
  color: var(--accent-ink);
}

.speed-card.winner .speed-label,
.speed-card.winner .speed-unit {
  opacity: 0.75;
}

.speed-card.winner .speed-label,
.speed-card.winner .speed-unit {
  color: rgba(255, 255, 255, 0.8);
}

.speed-card.winner .speed-number,
.speed-card.winner .speed-demo {
  color: #fff;
}

/* ─── Understand / Before-After (cleaner) ─────────────────── */
.understand {
  padding: 160px 0;
  background: var(--bg);
}

.understand .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.understand .section-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto 88px;
}

.ba-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: none;
}

.ba-card.ba-after {
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.06);
}

.ba-card .ba-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin: 0 0 16px;
}

.ba-card.ba-after .ba-label {
  color: var(--accent);
}

.ba-card .ba-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

.ba-card.ba-before .ba-text {
  color: var(--text-2);
  font-style: italic;
}

.understand-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.up-item {
  text-align: left;
}

.up-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--bg-alt);
  border-radius: 10px;
  margin: 0 0 20px;
  color: var(--accent);
}

.up-item h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.up-item p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* ─── Features (typografisches Statement-Grid) ────────────── */
.section[id="features"] {
  background: var(--bg-alt);
  padding: 160px 0;
}

.section[id="features"] .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border-strong);
  border-left: 1px solid var(--border-strong);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
}

.feature-card {
  background: var(--bg);
  border: 0;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
  padding: 44px 36px;
  transition: background 0.2s ease;
  box-shadow: none;
}

.feature-card:hover {
  background: var(--bg-alt);
  transform: none;
  box-shadow: none;
}

.feature-card .feature-icon {
  width: 36px;
  height: 36px;
  font-size: 20px;
  background: transparent;
  color: var(--accent);
  border-radius: 0;
  margin: 0 0 20px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-card h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}

/* ─── Why-Sektion (stillere Pillars) ──────────────────────── */
.section:not(.section-alt):not(.section-dark) .pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  text-align: left;
  padding: 0;
}

.pillar h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}

.pillar h3::before {
  content: "—";
  color: var(--accent);
  margin-right: 10px;
  font-weight: 400;
}

.pillar p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ─── Showcase (weißer + ruhiger) ─────────────────────────── */
.section-dark {
  background: var(--dark);
}

.section-dark .section-head h2 {
  color: #fff;
  font-size: clamp(40px, 5.5vw, 72px);
}

.section-dark .section-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.section-dark .section-eyebrow::before {
  background: var(--accent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 0 24px;
  align-items: start;
}

.placeholder-showcase {
  aspect-ratio: 9 / 16;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* V2-Polish: stärkerer Glow rund um die Phones auf dunklem BG */
.section-dark .phone-showcase {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.10) inset,
    0 40px 80px -20px rgba(0, 0, 0, 0.85),
    0 22px 45px -12px rgba(var(--accent-rgb), 0.28);
}

.section-dark .phone-showcase:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 55px 100px -20px rgba(0, 0, 0, 0.9),
    0 28px 60px -12px rgba(var(--accent-rgb), 0.35);
}

/* ─── FAQ (ruhiger, mehr Tippo-Fokus) ─────────────────────── */
#faq.section-alt {
  background: var(--bg-warm);
  padding: 160px 0;
}

#faq .section-head {
  text-align: center;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.faq-item summary {
  padding: 28px 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}

.faq-item p {
  padding: 0 4px 28px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── Download CTA (monumentaler Abschluss) ───────────────── */
#download.section {
  background: var(--bg);
  padding: 180px 0;
}

.download-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 48px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%),
    var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.download-card h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.download-card p {
  color: var(--text-2);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.download-card .cta-row {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.download-card .btn-dark {
  background: var(--dark);
}

.download-card .btn-primary {
  background: var(--accent);
}

/* ─── Footer (stiller) ────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  color: var(--text-2);
}

.site-footer h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin: 0 0 14px;
}

.site-footer a {
  color: var(--text-2);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-tag {
  color: var(--text-2);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-3);
}

/* ─── V2 Debug Banner (temporär während Review) ───────────── */
.v2-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9999;
  background: var(--dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.v2-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   Unterseiten (Pricing, FAQ, Schnellstart) — V2 Overrides
   ═══════════════════════════════════════════════════════════ */

/* ─── Faq/Pricing Hero (Unterseiten-Head) ────────────────── */
.faq-hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-rgb), 0.05) 0%, transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.faq-hero .section-eyebrow {
  display: inline-flex;
  color: var(--text-3);
  margin: 0 0 20px;
  justify-content: center;
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Pricing-Grid ───────────────────────────────────────── */
.section-warm {
  background: var(--bg-warm);
  padding: 120px 0 160px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.06);
}

.price-card-featured {
  border: 2px solid var(--dark);
  background: var(--dark);
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(10, 10, 10, 0.25);
}

.price-card-featured h3,
.price-card-featured .price-amount {
  color: #fff;
}

.price-card-featured .price-period,
.price-card-featured .price-sub {
  color: rgba(255, 255, 255, 0.65);
}

.price-card-featured .price-features li {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.price-card-featured .price-features li::before {
  color: var(--accent);
}

.price-card-featured .badge {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.35);
}

.price-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 20px;
}

.price-card-featured h3 {
  color: rgba(255, 255, 255, 0.6);
}

.price {
  margin: 0 0 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--text-2);
  font-weight: 500;
}

.price-sub {
  color: var(--text-2);
  font-size: 14px;
  margin: 4px 0 32px;
}

.price-features {
  margin: 0 0 32px;
}

.price-features li {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.price-features li::before {
  color: var(--accent);
  font-weight: 700;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.price-card-featured .btn-primary {
  background: #fff;
  color: var(--dark) !important;
}

.price-card-featured .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.price-card .btn-ghost {
  border-color: var(--border-strong);
}

.price-card .btn-ghost:hover {
  background: var(--dark);
  color: #fff !important;
  border-color: var(--dark);
}

.pricing-trust {
  margin-top: 64px;
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
}

/* ─── Quickstart Steps (FAQ-Page) ────────────────────────── */
.steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.step {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: none;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.step p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ─── Legal Pages (Impressum, Datenschutz, AGB) ──────────── */
.legal-content,
.legal-section,
main.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 96px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  margin: 0 0 32px;
}

.legal-content h2 {
  font-size: 22px;
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--text-2);
  font-size: 16px;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .apps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .speed-compare {
    grid-template-columns: 1fr;
  }
  .before-after {
    grid-template-columns: 1fr;
  }
  .ba-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .understand-pillars,
  .feature-grid,
  .section:not(.section-alt):not(.section-dark) .pillars,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .hero.hero-v2 {
    padding: 64px 0 48px;
  }
  .hero-v2 .display {
    font-size: clamp(36px, 9.5vw, 56px);
    letter-spacing: -0.035em;
  }
  .hero-v2 .display .underline-accent {
    white-space: normal;
  }
  .hero-v2 .platform-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 4px;
    padding: 8px 12px;
    max-width: 100%;
  }
  .hero-v2 .platform-label {
    flex-basis: 100%;
    padding: 0 0 4px;
    text-align: center;
  }
  .download-card {
    padding: 64px 24px;
  }
  #download.section,
  .apps-section,
  .speed-section,
  .understand,
  .section[id="features"],
  #faq.section-alt {
    padding: 88px 0;
  }
  .section-head,
  .section-head.centered {
    margin-bottom: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════
   Accent-Kontrastsicherheit (wichtig für Lime-Theme)
   ═══════════════════════════════════════════════════════════ */

.btn-accent,
.download-card .btn-primary,
.price-card-featured .badge,
.speed-card.winner {
  color: var(--accent-ink) !important;
}

.btn-accent:hover {
  color: var(--accent-ink) !important;
}

/* Hero-CTA (dunkler Primary) — unabhängig vom Theme kontrastreich */
.hero-v2 .cta-row .btn-primary {
  background: var(--dark);
  color: #fff !important;
}

/* Audience-CTA & Download-CTA folgen der Akzentfarbe */
.audience-cta,
.download-card .btn-primary {
  background: var(--accent);
}

.audience-cta:hover,
.download-card .btn-primary:hover {
  background: var(--accent-hover);
}

/* Pricing: Featured-Card CTA bleibt weiß für Lesbarkeit */
.price-card-featured .btn-primary {
  color: var(--dark) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO-SPLIT (archiviert) — aktiv ist wieder .hero-center
   Diese Regeln greifen nur, wenn der Hero zurück auf Split
   geschaltet wird (Phone-Mockup-Block).
   ═══════════════════════════════════════════════════════════ */

.hero-v2 .hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 80px;
  align-items: center;
}

.hero-v2 .hero-text {
  text-align: left;
  max-width: 620px;
}

.hero-v2 .hero-split .hero-text .platform-pills {
  margin-bottom: 28px;
}

.hero-v2 .hero-split .display {
  text-align: left;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
}

.hero-v2 .hero-split .display .underline-accent {
  display: inline-block;
}

.hero-v2 .hero-split .lede {
  text-align: left;
  margin: 0 0 36px;
  font-size: clamp(16px, 1.4vw, 19px);
}

.hero-v2 .hero-split .cta-row {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.hero-v2 .hero-split .hero-availability {
  text-align: left;
  margin-bottom: 0;
}

/* ─── Animated Phone (rechts) ─────────────────────────────── */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 580px;
  background: #0a0a0a;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.04),
    0 50px 90px -20px rgba(10, 10, 10, 0.45),
    0 24px 40px -10px rgba(var(--accent-rgb), 0.22);
  transform: rotate(-3deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.hero-phone:hover .phone-frame {
  transform: rotate(-1.5deg) translateY(-4px);
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* Chat-Header (oben) */
.chat-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 46px 20px 14px;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar svg {
  width: 100%;
  height: 100%;
}

.chat-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.chat-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

/* Chat-Messages */
.chat-messages {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
  position: relative;
}

.chat-bubble.received {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.95);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}

.chat-bubble.sent {
  background: var(--accent);
  color: var(--accent-ink);
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}

.chat-bubble.msg-1 { animation-delay: 0.4s; }
.chat-bubble.msg-2 { animation-delay: 2.6s; }
.chat-bubble.msg-3 { animation-delay: 4.6s; }
.chat-bubble.msg-4 { animation-delay: 5.6s; }

@keyframes bubbleIn {
  0%   { opacity: 0; transform: translateY(10px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Cleaner-Text "faded in" nach Rohtext */
.msg-text {
  display: block;
}

.msg-text-raw {
  animation: textFadeOut 0.3s ease 3.4s forwards;
}

.msg-text-clean {
  position: absolute;
  inset: 10px 14px;
  opacity: 0;
  animation: textFadeIn 0.4s ease 3.7s forwards;
}

@keyframes textFadeOut {
  to { opacity: 0; }
}

@keyframes textFadeIn {
  to { opacity: 1; }
}

/* Typing-Dots */
.typing-dots {
  display: inline-flex;
  gap: 4px;
  padding: 2px 0;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  animation: dotPulse 1.2s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes dotPulse {
  0%, 60%, 100% { transform: scale(0.7); opacity: 0.4; }
  30% { transform: scale(1); opacity: 1; }
}

/* Chat-Input-Bar */
.chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.chat-input-field {
  flex: 1;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.chat-mic {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.35);
  animation: micPulse 2.4s infinite ease-in-out;
}

.chat-mic svg {
  width: 15px;
  height: 15px;
}

@keyframes micPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.35); }
  50%      { transform: scale(1.06); box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.55); }
}

/* Mic-Overlay (erscheint während msg-2 entsteht) */
.mic-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(var(--accent-rgb), 0.22) 0%, transparent 70%),
    rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  animation: overlayCycle 7.5s infinite ease-in-out;
  animation-delay: 1.8s;
}

@keyframes overlayCycle {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  45%  { opacity: 1; }
  60%  { opacity: 0; }
  100% { opacity: 0; }
}

.mic-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 64px;
}

.mic-waveform span {
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
  animation: waveBar 1.1s infinite ease-in-out;
}

.mic-waveform span:nth-child(1)  { height: 16px; animation-delay: 0.05s; }
.mic-waveform span:nth-child(2)  { height: 32px; animation-delay: 0.12s; }
.mic-waveform span:nth-child(3)  { height: 48px; animation-delay: 0.22s; }
.mic-waveform span:nth-child(4)  { height: 24px; animation-delay: 0.32s; }
.mic-waveform span:nth-child(5)  { height: 58px; animation-delay: 0.42s; }
.mic-waveform span:nth-child(6)  { height: 40px; animation-delay: 0.52s; }
.mic-waveform span:nth-child(7)  { height: 20px; animation-delay: 0.62s; }
.mic-waveform span:nth-child(8)  { height: 48px; animation-delay: 0.72s; }
.mic-waveform span:nth-child(9)  { height: 32px; animation-delay: 0.82s; }
.mic-waveform span:nth-child(10) { height: 54px; animation-delay: 0.92s; }
.mic-waveform span:nth-child(11) { height: 26px; animation-delay: 1.02s; }
.mic-waveform span:nth-child(12) { height: 42px; animation-delay: 1.12s; }
.mic-waveform span:nth-child(13) { height: 18px; animation-delay: 1.22s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

.mic-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Dekorative App-Icons rund ums Phone */
.phone-orbit {
  position: absolute;
  inset: -30px;
  pointer-events: none;
}

.orbit-mini {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.12), 0 2px 6px rgba(10, 10, 10, 0.08);
  object-fit: contain;
  animation: orbitFloat 6s infinite ease-in-out;
}

.orbit-mini--claude   { top: 12%;  left: -24px; animation-delay: 0s; }
.orbit-mini--chatgpt  { top: 36%;  right: -28px; animation-delay: 1.2s; }
.orbit-mini--gmail    { bottom: 28%; left: -32px; animation-delay: 2.4s; }
.orbit-mini--slack    { bottom: 8%;  right: -20px; animation-delay: 3.6s; }

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-10px) rotate(4deg); }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES als typografische Statements (Option A · Groq-style)
   Ersetzt das alte .feature-grid Kachel-Layout.
   ═══════════════════════════════════════════════════════════ */

.features-statements-section {
  padding: 160px 0;
}

.features-statements-section .section-head {
  margin-bottom: 72px;
}

.feature-statements {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1040px;
  counter-reset: feature;
}

.feature-statement {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 48px;
  align-items: baseline;
  padding: 56px 0;
  border-bottom: 1px solid var(--border-strong);
}

.feature-statement:first-child {
  border-top: 1px solid var(--border-strong);
}

.feature-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
  font-feature-settings: "tnum";
  padding-top: 14px;
}

.feature-statement-body {
  display: block;
}

.feature-statement-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--text);
}

.feature-statement-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.feature-statement-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  max-width: 680px;
}

@media (max-width: 768px) {
  .features-statements-section {
    padding: 96px 0;
  }
  .feature-statement {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 44px 0;
  }
  .feature-num {
    padding-top: 0;
  }
  .feature-statement-title {
    font-size: clamp(26px, 7vw, 38px);
  }
}

/* ═══════════════════════════════════════════════════════════
   AUDIENCE-SEKTION (Vibe Coding & Co.)
   ═══════════════════════════════════════════════════════════ */

.audience {
  padding: 140px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.audience-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-left h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.audience-left .underline-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.audience-intro {
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.55;
  max-width: 500px;
  margin: 0 0 36px;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}

.audience-pill {
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.18s ease;
}

.audience-pill:hover {
  background: var(--bg-warm);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(10, 10, 10, 0.06);
}

.audience-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.28);
}

.audience-pill-hint {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: rgba(10, 10, 10, 0.06);
  color: var(--text-2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.audience-pill.is-active .audience-pill-hint {
  background: rgba(255, 255, 255, 0.25);
  color: var(--accent-ink);
}

.audience-right {
  position: sticky;
  top: 100px;
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow:
    0 30px 80px rgba(10, 10, 10, 0.08),
    0 4px 10px rgba(10, 10, 10, 0.04);
  transition: box-shadow 0.3s ease;
}

.audience-card-head {
  margin-bottom: 24px;
}

.audience-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audience-card h3 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.audience-card p {
  color: var(--text-2);
  font-size: 16.5px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.audience-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.audience-bullets li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.audience-bullets li:last-child {
  border-bottom: 0;
}

.audience-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.audience-cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 960px) {
  .hero-v2 .hero-split {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .hero-v2 .hero-split .hero-text {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-v2 .hero-split .hero-text .platform-pills,
  .hero-v2 .hero-split .display,
  .hero-v2 .hero-split .lede,
  .hero-v2 .hero-split .cta-row,
  .hero-v2 .hero-split .hero-availability {
    text-align: center;
  }
  .hero-v2 .hero-split .cta-row {
    justify-content: center;
  }
  .hero-phone {
    min-height: 560px;
  }
  .audience-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .audience-right {
    position: static;
  }
}

@media (max-width: 640px) {
  .audience { padding: 88px 0; }
  .phone-frame {
    width: 240px;
    height: 500px;
  }
  .orbit-mini {
    width: 44px;
    height: 44px;
    padding: 7px;
  }
}

/* ═══════════════════════════════════════════════════════════
   V2-BANNER · Theme-Switcher (unten rechts)
   ═══════════════════════════════════════════════════════════ */

.v2-banner {
  padding: 8px 8px 8px 14px;
  gap: 8px;
}

.v2-banner-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-right: 4px;
}

.theme-switch {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.18s ease;
}

.theme-btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.theme-btn--coral::before     { background: #ef5a3c; }
.theme-btn--hotcoral::before  { background: #ff3d6e; }
.theme-btn--lime::before      { background: #c6ff00; }

.theme-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.theme-btn.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.v2-banner-link {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 4px;
  text-decoration: none;
}

.v2-banner-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .v2-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-OPTIMIERUNGEN
   Phones cappen, Tooltips re-anchor, Touch-Targets, Spacing.
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Showcase: Grid und Phones bleiben auf einer sinnvollen Größe.
     Ohne Cap wären Phones bei 1-Spalten-Layout die ganze Container-
     Breite breit (≈335px) und damit ~726px hoch. */
  .showcase-grid {
    max-width: 280px;
    gap: 28px;
    padding: 16px 0 8px;
  }
  .phone-showcase {
    max-width: 260px;
    margin: 0 auto;
  }

  /* Tooltips (ⓘ in der Pricing-Tabelle): rechtsbündig kann auf
     Mobile aus dem Viewport laufen → mittig ankern, max-Breite cappen. */
  .info-tip::after {
    width: min(280px, calc(100vw - 48px));
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
  }
  .info-tip:hover::after,
  .info-tip:focus-visible::after {
    transform: translateX(-50%) translateY(0);
  }

  /* Touch-Targets: Apple HIG empfiehlt min. 44x44 px für Tap-Areas */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  .lang-switch button {
    min-height: 36px;
    padding: 6px 12px;
  }

  /* Hero-CTA-Buttons: nicht in eine Zeile quetschen */
  .hero.hero-v2 .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero.hero-v2 .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* FAQ-Items kompakter */
  .faq-item summary {
    padding: 18px 16px;
    font-size: 16px;
  }
  .faq-item p {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  /* Pricing-Cards: Featured nicht mehr Skalieren auf Mobile */
  .price-card-featured {
    transform: none;
  }
  .price-card {
    padding: 32px 24px;
  }
  .price-amount {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  /* Phones noch etwas kleiner für sehr schmale Viewports */
  .showcase-grid {
    max-width: 240px;
  }
  .phone-showcase {
    max-width: 220px;
  }

  /* Section-Head etwas straffer */
  .section-head,
  .section-head.centered {
    margin-bottom: 56px;
  }
  .section-head h2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  /* Lede kleiner */
  .hero-v2 .lede {
    font-size: 16px;
  }

  /* Container-Padding auf 16px */
  .container {
    padding: 0 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-CENTERING
   Alles zentriert auf Mobile — außer den .audience-card
   (Kacheln in 'Für wen'), die links bleiben.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .apps-text,
  .apps-text .lede,
  .apps-section .section-eyebrow,
  .speed-section .section-head,
  .speed-section .section-head h2,
  .speed-section .section-head p,
  .speed-card,
  .speed-card .speed-label,
  .speed-card .speed-number,
  .speed-card .speed-unit,
  .speed-card .speed-demo,
  .before-after .ba-card,
  .ba-card .ba-label,
  .ba-card .ba-text,
  .up-item,
  .up-item h3,
  .up-item p,
  .audience-left,
  .audience-intro,
  .feature-statement,
  .feature-statement-title,
  .feature-statement-desc,
  .feature-num,
  .pillar,
  .pillar p,
  .pillar h3 {
    text-align: center;
  }

  .apps-list,
  .audience-pills {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .audience-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-statement-desc {
    margin-left: auto;
    margin-right: auto;
  }

  /* Section-Eyebrow-Dot zentrieren (hat ::before-Marker links) */
  .apps-section .section-eyebrow,
  .audience-left .section-eyebrow {
    display: inline-block;
    padding-left: 14px;
  }

  /* Audience-Kachel bleibt links (explizite Ausnahme) */
  .audience-card,
  .audience-card h3,
  .audience-card p,
  .audience-bullets,
  .audience-bullets li {
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════
   APPS-ORBIT: Phone + Icons auf Mobile kleiner & innerhalb
   des Viewports halten.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .apps-section {
    overflow-x: hidden;
  }
  .apps-orbit {
    max-width: 240px;
    margin: 24px auto 0;
  }
  .orbit-icon--whatsapp,
  .orbit-icon--messenger,
  .orbit-icon--slack,
  .orbit-icon--applemail,
  .orbit-icon--gmail,
  .orbit-icon--notes,
  .orbit-icon--signal,
  .orbit-icon--teams,
  .orbit-icon--outlook,
  .orbit-icon--chatgpt,
  .orbit-icon--claude {
    width: 40px;
    height: 40px;
  }
}
