:root {
  --bg: #0a0e0d;
  --bg-2: #0c1311;
  --surface: #111a16;
  --surface-2: #18221d;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --fg: #e9f0ec;
  --fg-soft: rgba(233, 240, 236, 0.82);
  --muted: #93a49a;
  --accent: #11a874;
  --accent-hi: #1fd49a;
  --accent-2: #0c8a5e;
  --accent-glow: rgba(20, 190, 130, 0.28);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1140px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-hi);
  background: var(--accent-glow); border: 1px solid rgba(31, 212, 154, 0.25);
  padding: 6px 12px; border-radius: 999px;
}
.muted { color: var(--muted); }
.accent { color: var(--accent-hi); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 0.98rem;
  padding: 13px 22px; border-radius: 14px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-2));
  color: #03150e;
  box-shadow: 0 10px 30px -8px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 14px 38px -8px var(--accent-glow); }
.btn-ghost { background: var(--surface-2); color: var(--fg); border-color: var(--border-2); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.28); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; border-radius: 16px; }
.btn-block { width: 100%; }

/* ---------- Header (Floating + Glas-Pill) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  padding: 14px 0;
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 9px 0; }
/* Header spannt weiter auf als der Content -> Logo weiter links, Pill weiter rechts */
.site-header .container { max-width: 1600px; padding: 0 24px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; min-height: 52px; }

/* Logo links – freistehend, etwas weiter links, passt sich der Section-Farbe an */
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-2));
  display: grid; place-items: center; box-shadow: 0 6px 18px -6px var(--accent-glow);
}
.brand .mark svg { width: 19px; height: 19px; }
.site-header .brand { margin-left: -10px; color: #ffffff; transition: color 0.3s ease; }
.site-header .nav-pill { margin-right: -8px; }
.site-header .brand .mark { width: auto; height: 56px; border-radius: 0; background: none; box-shadow: none; transition: none; }
.site-header .brand .mark svg { width: 56px; height: 56px; fill: currentColor; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35)); }
.site-header .brand:hover .mark { transform: none; box-shadow: none; }
.site-header .brand-name { display: none; }
/* Über hellen Sections: Logo dunkel */
.site-header.over-light .brand { color: #0c1512; }
.site-header.over-light .brand .mark svg { filter: drop-shadow(0 1px 6px rgba(0,0,0,0.12)); }

/* Nav rechts – am Hero-Top frei schwebend (transparent), Hintergrund erst beim Scrollen */
.nav-pill {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 6px 6px 24px;
  background: transparent;
  border: 1px solid transparent; border-radius: 999px;
  box-shadow: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled .nav-pill {
  background: rgba(17, 26, 22, 0.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 14px 36px -20px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav-links { display: flex; align-items: center; gap: 26px; padding-right: 8px; }
.nav-links a { color: rgba(233,240,236,0.82); font-size: 0.92rem; font-weight: 500; transition: color 0.15s ease; }
.nav-links a:hover { color: #ffffff; }
.nav-pill .btn-primary { padding: 9px 18px; border-radius: 999px; font-size: 0.92rem; }
.nav-toggle { display: none; background: none; border: 0; color: #e9f0ec; padding: 6px; cursor: pointer; }
/* Über hellen Sections (beim Scrollen): Pill hell */
.site-header.scrolled.over-light .nav-pill {
  background: rgba(255,255,255,0.72);
  border-color: rgba(12,30,22,0.12);
  box-shadow: 0 14px 36px -24px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.7);
}
.site-header.over-light .nav-links a { color: rgba(12,21,18,0.74); }
.site-header.over-light .nav-links a:hover { color: #0c1512; }
.site-header.over-light .nav-toggle { color: #0c1512; }
/* Geöffnetes Mobile-Menü ist immer dunkel -> Links hell halten */
.site-header.over-light .nav.open .nav-links a { color: rgba(233,240,236,0.82); }
.site-header.over-light .nav.open .nav-links a:hover { color: #ffffff; }

/* ---------- Hero ---------- */
/* Top-Padding lässt Platz für den frei schwebenden (fixed) Header */
.hero { position: relative; padding: 112px 0 70px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  background: radial-gradient(60% 60% at 70% 10%, var(--accent-glow), transparent 70%),
              radial-gradient(40% 40% at 15% 0%, rgba(31, 212, 154, 0.10), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.85rem); font-weight: 800; margin-top: 22px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent-hi), #7af0c4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.15rem; color: var(--fg-soft); margin-top: 20px; max-width: 32em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 28px; color: var(--muted); font-size: 0.9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent-hi); }

/* ---------- Phone mockup ---------- */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-wrap::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: var(--accent-glow); filter: blur(70px); z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.phone {
  position: relative;
  width: 300px; border-radius: 48px; padding: 11px;
  background: linear-gradient(160deg, #2a3531, #0b110f);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), inset 0 0 0 2px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.10);
}
/* Dynamic Island */
.phone-island {
  position: absolute; top: 21px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; border-radius: 14px; background: #000; z-index: 4;
}
.phone-screen { position: relative; background: var(--bg-2); border-radius: 38px; overflow: hidden; height: 588px; display: flex; flex-direction: column; }
/* iOS-Statusleiste */
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  height: 46px; padding: 0 24px 0 26px; color: var(--fg); flex: none;
}
.ps-time { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.01em; }
.ps-icons { display: inline-flex; align-items: center; gap: 6px; }
.ps-icons svg { width: 17px; height: 15px; }
.ps-icons .ps-batt { width: 24px; height: 15px; }
.phone-top { display: flex; align-items: center; gap: 10px; padding: 2px 16px 11px; border-bottom: 1px solid var(--border); flex: none; }
.phone-top .dot { width: 36px; height: 36px; border-radius: 9px; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); display:grid; place-items:center; flex: none; }
.phone-top .dot svg { width: 36px; height: 36px; }
.pt-name { display: flex; flex-direction: column; justify-content: center; line-height: 1.05; }
.phone-top b { font-size: 0.95rem; line-height: 1.1; }
.phone-top small { color: var(--accent-hi); font-size: 0.72rem; line-height: 1.1; margin-top: 1px; }
.phone-chat { flex: 1; padding: 14px 14px 6px; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; overflow: hidden; }
.bubble { max-width: 80%; padding: 10px 13px; border-radius: 16px; font-size: 0.86rem; line-height: 1.45; }
.bubble.coach { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--border); border-bottom-left-radius: 5px; }
.bubble.me { align-self: flex-end; background: linear-gradient(135deg, var(--accent-2), #0a6f4c); color: #eafff6; border-bottom-right-radius: 5px; }
.bubble.card { align-self: flex-start; background: var(--surface); border: 1px solid var(--border-2); width: 86%; max-width: 86%; padding: 12px; border-radius: 14px; }
.food { display: flex; align-items: center; gap: 11px; }
.food .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--accent-glow); display: grid; place-items: center; flex: none; }
.food .ic svg { width: 19px; height: 19px; color: var(--accent-hi); }
.food b { font-size: 0.84rem; }
.macros { display: flex; gap: 6px; margin-top: 10px; }
.macros span { flex: 1; text-align: center; background: var(--surface-2); border-radius: 9px; padding: 6px 2px; font-size: 0.7rem; color: var(--muted); }
.macros b { display: block; color: var(--fg); font-size: 0.92rem; }

/* Schreib-Indikator vor jeder Nachricht (per JS ein-/ausgeblendet) */
.typing-bubble { align-self: flex-start; display: inline-flex; align-items: center; background: var(--surface-2); border: 1px solid var(--border); padding: 12px 14px; border-radius: 16px; border-bottom-left-radius: 5px; animation: typingIn 0.3s var(--ease-out) both; }
@keyframes typingIn { from { opacity: 0; transform: translateY(8px) scale(0.96); } to { opacity: 1; transform: none; } }
.typing-bubble.me { align-self: flex-end; background: linear-gradient(135deg, var(--accent-2), #0a6f4c); border: 0; border-bottom-right-radius: 5px; border-bottom-left-radius: 16px; }
.typing-bubble.me .typing span { background: rgba(234,255,246,0.9); }

/* Eingabefeld unten (wie echter Chat) */
.phone-input {
  display: flex; align-items: center; gap: 8px; flex: none;
  padding: 10px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border); background: var(--bg-2);
}
.pi-field {
  flex: 1; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 15px; color: var(--muted); font-size: 0.82rem;
}
.pi-send {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-2));
  display: grid; place-items: center; box-shadow: 0 6px 16px -6px var(--accent-glow);
}
.pi-send svg { width: 17px; height: 17px; color: #03150e; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 84px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 800; margin-top: 16px; }
.section-head p { color: var(--fg-soft); font-size: 1.08rem; margin-top: 16px; }

/* Stats strip */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; }
.stat { text-align: center; }
.stat b { display: block; font-size: 1.85rem; font-weight: 800; letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   Funktionen – Sticky-Scrollytelling (links Text, rechts Visual)
   ============================================================ */
.feature-scroll { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fs-stage { position: relative; }
.fs-sticky { padding: 72px 0; }
.fs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Links: Beschreibungen */
.fs-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin-top: 16px; }
.fs-items { position: relative; margin-top: 28px; }
.fs-item { margin-bottom: 26px; }
.fs-no { display: inline-block; font-size: 0.95rem; font-weight: 800; letter-spacing: 0.1em; color: var(--accent-hi); }
.fs-item h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; margin-top: 6px; }
.fs-item p { color: var(--fg-soft); margin-top: 12px; font-size: 1.05rem; max-width: 30em; }

/* Fortschritts-Dots (nur mit JS) */
.fs-dots { display: none; gap: 10px; margin-top: 30px; }
.fs-dot { width: 28px; height: 6px; border-radius: 999px; border: 0; padding: 0; background: var(--surface-2); cursor: pointer; transition: background 0.3s ease, width 0.3s var(--ease-out); }
.fs-dot.active { background: linear-gradient(90deg, var(--accent-hi), var(--accent-2)); width: 46px; }

/* Rechts: Visual-Stage */
.fs-visual { position: relative; }
.fs-img { margin: 0; display: grid; place-items: center; }
.mock { width: 100%; max-width: 380px; background: linear-gradient(170deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-2); border-radius: var(--radius-lg); box-shadow: 0 40px 80px -42px rgba(0,0,0,0.7); padding: 20px; }

/* --- JS aktiv: gepinntes Scrollytelling + Crossfade --- */
html.js .fs-stage { height: 460vh; }
html.js .fs-sticky { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; padding: 92px 0; }
html.js .fs-items { min-height: 300px; }
html.js .fs-item { position: absolute; inset: 0; margin: 0; opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); pointer-events: none; }
html.js .fs-item.active { opacity: 1; transform: none; pointer-events: auto; }
html.js .fs-dots { display: flex; }
html.js .fs-visual { aspect-ratio: 1 / 1; }
html.js .fs-img { position: absolute; inset: 0; opacity: 0; transform: translateY(20px) scale(0.97); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); pointer-events: none; }
html.js .fs-img.active { opacity: 1; transform: none; }

/* --- Mockups --- */
.mock-bar { display: flex; align-items: center; gap: 9px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.mb-av { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); display: grid; place-items: center; flex: none; }
.mb-av svg { width: 18px; height: 18px; }
.mock-bar b { font-size: 0.95rem; }
.mock-bar small { color: var(--accent-hi); font-size: 0.72rem; margin-left: auto; }
.mb-body { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
.mb-bubble { max-width: 84%; padding: 10px 13px; border-radius: 14px; font-size: 0.85rem; line-height: 1.45; }
.mb-bubble.coach { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--border); border-bottom-left-radius: 5px; }
.mb-bubble.me { align-self: flex-end; background: linear-gradient(135deg, var(--accent-2), #0a6f4c); color: #eafff6; border-bottom-right-radius: 5px; }

.mf-photo { position: relative; height: 168px; border-radius: 14px; background: linear-gradient(135deg, #1d3a2e, #0f231b); display: grid; place-items: center; overflow: hidden; }
.mf-emoji { font-size: 3.6rem; }
.mf-scan { position: absolute; inset: 16px; border: 2px solid rgba(31, 212, 154, 0.6); border-radius: 10px; }
.fs-img.active .mf-scan { animation: scanPulse 1.9s ease-in-out infinite; }
@keyframes scanPulse { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }
.mf-result { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.mf-result b { font-size: 0.95rem; }
.mf-result small { color: var(--muted); }
.mf-macros { display: flex; gap: 8px; margin-top: 12px; }
.mf-macros span { flex: 1; text-align: center; background: var(--surface-2); border-radius: 10px; padding: 8px 2px; font-size: 0.72rem; color: var(--muted); }
.mf-macros b { display: block; color: var(--fg); font-size: 0.95rem; }

.mp-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.mp-head b { font-size: 1.05rem; }
.mp-head small { color: var(--muted); }
.mock-plan ul { display: flex; flex-direction: column; gap: 9px; }
.mock-plan li { display: flex; justify-content: space-between; align-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: 11px; padding: 12px 14px; font-size: 0.92rem; }
.mock-plan li em { font-style: normal; color: var(--accent-hi); font-weight: 700; font-size: 0.85rem; }
.mock-plan li.done { opacity: 0.55; }

.ml-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.ml-head b { font-size: 1.05rem; }
.ml-head small { color: var(--muted); }
.mock-list ul { display: flex; flex-direction: column; gap: 11px; }
.mock-list li { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; color: var(--fg-soft); }
.mock-list li i { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--border-2); flex: none; position: relative; }
.mock-list li.on i { background: var(--accent); border-color: var(--accent); }
.mock-list li.on i::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mock-list li.on { color: var(--fg); }

.mc-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.mc-head b { font-size: 1.05rem; }
.mc-head small { color: var(--accent-hi); font-weight: 600; }
.mc-bars { display: flex; align-items: flex-end; gap: 8px; height: 158px; }
.mc-bars span { flex: 1; height: 8px; min-height: 8px; background: linear-gradient(180deg, var(--accent-hi), var(--accent-2)); border-radius: 6px 6px 0 0; transition: height 0.7s var(--ease-out); }
.fs-img.active .mc-bars span { height: var(--h); }
.fs-img.active .mc-bars span:nth-child(2) { transition-delay: 0.05s; }
.fs-img.active .mc-bars span:nth-child(3) { transition-delay: 0.1s; }
.fs-img.active .mc-bars span:nth-child(4) { transition-delay: 0.15s; }
.fs-img.active .mc-bars span:nth-child(5) { transition-delay: 0.2s; }
.fs-img.active .mc-bars span:nth-child(6) { transition-delay: 0.25s; }
.fs-img.active .mc-bars span:nth-child(7) { transition-delay: 0.3s; }
.mc-legend { display: flex; justify-content: space-between; margin-top: 10px; color: var(--muted); font-size: 0.78rem; }

.mr-toast { display: flex; align-items: center; gap: 12px; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 14px; padding: 14px; }
.mr-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-glow); display: grid; place-items: center; flex: none; }
.mr-ic svg { width: 20px; height: 20px; color: var(--accent-hi); }
.mr-toast b { font-size: 0.92rem; }
.mr-toast small { color: var(--muted); display: block; }
.mr-timer { position: relative; width: 132px; height: 132px; margin: 24px auto 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.mr-ring { position: absolute; inset: 0; border-radius: 50%; border: 6px solid var(--surface-2); border-top-color: var(--accent-hi); }
.fs-img.active .mr-ring { animation: spin 2.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.mr-timer b { font-size: 1.5rem; font-weight: 800; }
.mr-timer small { color: var(--muted); font-size: 0.72rem; }

/* --- Mobil: Pin aufloesen, als einfache Liste zeigen --- */
@media (max-width: 860px) {
  html.js .fs-stage { height: auto; }
  html.js .fs-sticky { position: static; min-height: 0; padding: 64px 0; }
  .fs-grid { grid-template-columns: 1fr; gap: 8px; }
  html.js .fs-item { position: static; inset: auto; opacity: 1; transform: none; pointer-events: auto; }
  html.js .fs-items { min-height: 0; }
  html.js .fs-dots { display: none; }
  .fs-visual { display: none; }
}

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; }
.step .num {
  counter-increment: step; width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); color: #03150e;
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; margin-bottom: 18px;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--fg-soft); margin-top: 10px; font-size: 0.97rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; max-width: 920px; margin: 0 auto; }
.price {
  display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px; position: relative;
}
.price.featured { border-color: rgba(31, 212, 154, 0.5); background: linear-gradient(180deg, rgba(20,190,130,0.08), var(--surface)); box-shadow: 0 20px 50px -28px var(--accent-glow); }
.price .badge {
  position: absolute; top: -11px; left: 22px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); color: #03150e; padding: 4px 11px; border-radius: 999px;
}
.price h3 { font-size: 1.1rem; font-weight: 700; }
.price-name { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.price .save {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1;
  color: var(--accent-hi); background: var(--accent-glow);
  border: 1px solid rgba(31, 212, 154, 0.3); padding: 4px 9px; border-radius: 999px;
}
.price .amount { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; }
.price .amount b { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; }
.price .amount span { color: var(--muted); font-size: 0.9rem; }
.price .sub { color: var(--fg-soft); font-size: 0.88rem; margin-top: 6px; min-height: 2.6em; }
.price ul { margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.price li { display: flex; gap: 9px; font-size: 0.9rem; color: var(--fg-soft); }
.price li svg { width: 17px; height: 17px; color: var(--accent-hi); flex: none; margin-top: 3px; }
.price .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 26px; }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.quote .stars { color: var(--accent-hi); letter-spacing: 2px; font-size: 0.95rem; }
.quote p { margin-top: 14px; font-size: 1rem; color: var(--fg); }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-2), #0a6f4c); display: grid; place-items: center; font-weight: 700; color: #eafff6; }
.quote .who b { font-size: 0.92rem; }
.quote .who small { color: var(--muted); display: block; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 20px;
  transition: border-color 0.2s ease;
}
details[open] { border-color: var(--border-2); }
summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 1.04rem;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
summary::-webkit-details-marker { display: none; }
summary .chev { transition: transform 0.2s ease; color: var(--accent-hi); flex: none; }
details[open] summary .chev { transform: rotate(180deg); }
details p { color: var(--fg-soft); padding-bottom: 20px; font-size: 0.98rem; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(135deg, rgba(20,190,130,0.14), rgba(12,18,16,0.6));
  border: 1px solid rgba(31, 212, 154, 0.28); border-radius: 30px; padding: 60px 40px; text-align: center;
  position: relative;
}
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, var(--accent-glow), transparent 70%); pointer-events: none; }
.cta-inner h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 800; position: relative; }
.cta-inner p { color: var(--fg-soft); font-size: 1.1rem; margin-top: 16px; position: relative; }
.cta-inner .hero-cta { justify-content: center; position: relative; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand { margin-bottom: 14px; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--fg-soft); font-size: 0.94rem; padding: 5px 0; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--fg); }
.footer-about { color: var(--muted); font-size: 0.92rem; max-width: 30em; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.86rem; }
.disclaimer { color: var(--muted); font-size: 0.82rem; max-width: 60em; margin-top: 10px; }

/* ---------- Power-Features (mehr als Chat) ---------- */
.power-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.power {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; transition: transform 0.25s var(--ease-out), border-color 0.25s ease, background 0.25s ease;
}
.power:hover { transform: translateY(-4px); border-color: var(--border-2); background: var(--surface-2); }
.power-ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid rgba(31, 212, 154, 0.22);
}
.power-ic svg { width: 23px; height: 23px; color: var(--accent-hi); }
.power h3 { font-size: 1.05rem; font-weight: 700; }
.power p { color: var(--fg-soft); margin-top: 8px; font-size: 0.92rem; line-height: 1.55; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .phone-wrap { order: -1; }
  .features-grid, .steps, .quotes { grid-template-columns: repeat(2, 1fr); }
  .power-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-pill { padding: 6px; gap: 4px; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    background: rgba(12, 19, 17, 0.96);
    backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
    border: 1px solid var(--border-2); border-radius: 20px; padding: 20px 22px; gap: 18px;
    box-shadow: 0 28px 56px -26px rgba(0,0,0,0.75);
  }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .features-grid, .steps, .quotes, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .power-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 44px 22px; }
  .hero-cta .btn, .cta-inner .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  html.js .phone-chat .bubble.show { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Helle Sections (Theme-Override via CSS-Variablen)
   ============================================================ */
.sec-light {
  --bg-2: #eef3f0;
  --surface: #ffffff;
  --surface-2: #f0f5f2;
  --border: rgba(12, 30, 22, 0.10);
  --border-2: rgba(12, 30, 22, 0.18);
  --fg: #0c1512;
  --fg-soft: rgba(12, 21, 18, 0.72);
  --muted: #5b6b62;
  --accent-glow: rgba(17, 168, 116, 0.13);
  background: #f4f8f6;
  color: var(--fg);
}
.sec-light .eyebrow { color: var(--accent-2); border-color: rgba(12, 138, 94, 0.28); }
.sec-light .link-more { color: var(--accent-2); }

/* ---------- Trust-Bar ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust-bar { display: flex; align-items: center; gap: 32px; padding: 30px 0; flex-wrap: wrap; }
.trust-rating { display: flex; align-items: center; gap: 14px; padding-right: 32px; border-right: 1px solid var(--border); }
.trust-rating .stars { color: var(--accent-hi); letter-spacing: 2px; font-size: 1.25rem; }
.trust-rating-meta b { display: block; font-size: 1.1rem; font-weight: 800; }
.trust-rating-meta span { color: var(--muted); font-size: 0.84rem; }
.trust .stats-grid { flex: 1; padding: 0; min-width: 320px; }

/* ---------- Probleme & Zielgruppe ---------- */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.problem .pic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-glow); display: grid; place-items: center; margin-bottom: 16px; }
.problem .pic svg { width: 22px; height: 22px; color: var(--accent); }
.problem h3 { font-size: 1.08rem; font-weight: 700; }
.problem p { color: var(--fg-soft); margin-top: 8px; font-size: 0.94rem; }
.audience {
  display: flex; gap: 20px; align-items: flex-start; margin-top: 26px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 28px;
}
.audience-ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); display: grid; place-items: center; flex: none; }
.audience-ic svg { width: 26px; height: 26px; color: #03150e; }
.audience h3 { font-size: 1.15rem; font-weight: 700; }
.audience p { color: var(--fg-soft); margin-top: 8px; }

/* ---------- Umdeutung / Reframe ---------- */
.reframe { max-width: 780px; margin: 48px auto 0; text-align: center; }
.reframe-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px;
}
.reframe p { font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 700; line-height: 1.35; letter-spacing: -0.01em; color: var(--fg); }
.reframe .hl {
  background: linear-gradient(120deg, var(--accent), var(--accent-hi));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Ziel / Vision ---------- */
.vision {
  margin-top: 48px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent-glow), transparent 70%), var(--surface);
  border: 1px solid rgba(17, 168, 116, 0.22); border-radius: var(--radius-lg); padding: 44px 40px;
}
.vision-head { text-align: center; margin-bottom: 30px; }
.vision-head h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; margin-top: 14px; letter-spacing: -0.01em; }
.vision-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px;
  max-width: 880px; margin: 0 auto;
}
.vision-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 1.06rem; color: var(--fg); line-height: 1.45; }
.vision-list em { font-style: normal; color: var(--accent-2); font-weight: 700; }
.vision-list strong { font-weight: 800; }
.vision-list .vic {
  flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 1px;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-2));
  display: grid; place-items: center; box-shadow: 0 4px 12px -4px var(--accent-glow);
}
.vision-list .vic svg { width: 15px; height: 15px; color: #03150e; }
.vision-foot { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 34px; text-align: center; }
.vision-note { color: var(--muted); font-size: 0.92rem; }

/* ---------- Lösung / Methode (Kreislauf-Layout) ---------- */
.method-orbit { position: relative; max-width: 960px; min-height: 660px; margin: 0 auto; }
/* langsam rotierender, gestrichelter Orbit-Ring */
.method-orbit::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 400px; height: 400px;
  border: 2px dashed rgba(31, 212, 154, 0.22); border-radius: 50%;
  transform: translate(-50%, -50%); animation: orbitSpin 44s linear infinite;
}
.method-orbit::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  border-radius: 50%; transform: translate(-50%, -50%); filter: blur(20px); pointer-events: none;
}
@keyframes orbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Zentraler Hub */
.method-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 212px; height: 212px; border-radius: 50%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; text-align: center;
  background: radial-gradient(circle at 50% 32%, rgba(31, 212, 154, 0.16), var(--surface) 72%);
  border: 1px solid rgba(31, 212, 154, 0.3);
  box-shadow: 0 30px 70px -30px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.method-hub .hub-ring { position: absolute; inset: -14px; border-radius: 50%; border: 1px solid rgba(31, 212, 154, 0.25); animation: hubPulse 3.6s ease-in-out infinite; }
@keyframes hubPulse { 0%,100% { transform: scale(1); opacity: 0.75; } 50% { transform: scale(1.09); opacity: 0.15; } }
.method-hub .hub-core { width: 78px; height: 78px; border-radius: 22px; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); display: grid; place-items: center; box-shadow: 0 12px 30px -10px var(--accent-glow); }
.method-hub .hub-core svg { width: 42px; height: 42px; }
.method-hub small { color: var(--fg-soft); font-size: 0.84rem; font-weight: 600; line-height: 1.3; }

/* Cards rund um den Hub */
.method-step { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 24px; }
.method-orbit .method-step { position: absolute; width: 300px; z-index: 1; }
.method-orbit .pos-1 { top: 0; left: 50%; margin-left: -150px; }
.method-orbit .pos-2 { bottom: 0; right: 0; }
.method-orbit .pos-3 { bottom: 0; left: 0; }
.method-no { display: inline-block; font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(120deg, var(--accent-hi), #7af0c4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.method-step h3 { font-size: 1.18rem; font-weight: 700; margin-top: 8px; }
.method-step p { color: var(--fg-soft); margin-top: 10px; font-size: 0.97rem; }

/* Mobil / Tablet: Kreislauf wird zum gestapelten Ablauf */
@media (max-width: 980px) {
  .method-orbit { min-height: 0; display: flex; flex-direction: column; align-items: center; gap: 18px; }
  .method-orbit::before, .method-orbit::after { display: none; }
  .method-hub { position: static; transform: none; }
  .method-orbit .method-step { position: static; width: 100%; max-width: 460px; margin: 0; }
}

.section-foot { text-align: center; margin-top: 38px; }
.link-more { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-hi); font-weight: 600; font-size: 1rem; transition: gap 0.15s ease; }
.link-more:hover { gap: 12px; }
.link-more svg { width: 18px; height: 18px; }

/* ---------- Vergleichstabelle ---------- */
.compare-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 8px 4px 4px; }
.compare { min-width: 600px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 24px 60px -40px rgba(0,0,0,0.3); }
.compare-head, .compare-row { display: grid; grid-template-columns: 1.5fr 1.1fr 1fr 1fr; align-items: stretch; }
.compare-head > div, .compare-row > div { padding: 15px 14px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 0.94rem; }
.compare-head { background: var(--surface-2); font-weight: 700; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.compare-head .compare-col { color: var(--muted); line-height: 1.25; }
.compare-row { border-top: 1px solid var(--border); }
.compare-row:hover { background: rgba(12, 30, 22, 0.025); }
.compare-feature { justify-content: flex-start !important; text-align: left !important; font-weight: 600; color: var(--fg); }
.compare-col.muted { color: var(--muted); font-weight: 600; }

/* Forge-Spalte hervorgehoben */
.compare-col.forge { background: linear-gradient(180deg, rgba(31,212,154,0.15), rgba(31,212,154,0.05)); border-inline: 1.5px solid rgba(31,212,154,0.35); font-weight: 800; color: var(--fg); }
.compare-head .compare-col.forge {
  flex-direction: column; gap: 7px; color: var(--fg);
  background: linear-gradient(180deg, rgba(31,212,154,0.26), rgba(31,212,154,0.1));
  border-top: 1.5px solid rgba(31,212,154,0.4); border-radius: 16px 16px 0 0;
}
.compare-row:last-child .compare-col.forge { border-bottom: 1.5px solid rgba(31,212,154,0.35); border-radius: 0 0 16px 16px; }
.compare-tag { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: #03150e; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); padding: 3px 9px; border-radius: 999px; }
.mark.sm { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); display: grid; place-items: center; }
.mark.sm svg { width: 17px; height: 17px; }

.yes, .no { display: inline-block; width: 24px; height: 24px; border-radius: 50%; position: relative; }
.yes { background: var(--accent); box-shadow: 0 4px 12px -4px var(--accent-glow); }
.no { background: rgba(120, 130, 124, 0.22); }
.yes::after { content: ""; position: absolute; left: 8px; top: 5px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.no::after { content: ""; position: absolute; left: 7px; top: 10.5px; width: 10px; height: 2.5px; background: #fff; border-radius: 2px; }

/* ---------- Social Media ---------- */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.social-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 18px; transition: transform 0.2s ease, border-color 0.2s ease; }
.social-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.social-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-glow); display: grid; place-items: center; margin-bottom: 8px; }
.social-ic svg { width: 26px; height: 26px; color: var(--accent-hi); }
.social-card b { font-size: 1rem; }
.social-card small { color: var(--muted); }

/* ---------- Standort ---------- */
.location { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.location-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; margin-top: 14px; }
.location-info > p { color: var(--fg-soft); margin-top: 14px; font-size: 1.05rem; }
.location-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.location-list li { display: flex; align-items: center; gap: 10px; color: var(--fg-soft); font-size: 0.98rem; }
.location-list svg { width: 20px; height: 20px; color: var(--accent-2); flex: none; }
.location-list a { color: var(--accent-2); font-weight: 600; }
.location-map {
  aspect-ratio: 1 / 1; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: radial-gradient(circle at 50% 40%, var(--accent-glow), var(--surface) 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--accent-2);
}
.location-map svg { width: 64px; height: 64px; }
.location-map span { font-weight: 700; color: var(--fg); letter-spacing: 0.02em; }

/* ---------- Footer Social ---------- */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; color: var(--fg-soft); transition: color 0.15s ease, border-color 0.15s ease; }
.footer-social a:hover { color: var(--accent-hi); border-color: var(--border-2); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Responsive (neue Sections) ---------- */
@media (max-width: 940px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .location { grid-template-columns: 1fr; gap: 28px; }
  .location-map { max-width: 360px; width: 100%; }
}
@media (max-width: 720px) {
  .trust-bar { gap: 20px; }
  .trust-rating { border-right: 0; padding-right: 0; width: 100%; justify-content: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
  .problems-grid, .method-grid { grid-template-columns: 1fr; }
  .vision-list { grid-template-columns: 1fr; }
  .vision { padding: 32px 22px; }
  .audience { flex-direction: column; gap: 14px; }
  .compare-head > div, .compare-row > div { padding: 13px 9px; font-size: 0.86rem; }
}

/* ============================================================
   MOTION & MICRO-INTERACTIONS
   Premium-Easing: cubic-bezier(0.16, 1, 0.3, 1)
   Alle Effekte respektieren prefers-reduced-motion (siehe oben).
   ============================================================ */
:root { --ease-out: cubic-bezier(0.16, 1, 0.3, 1); }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
/* Gestaffelte Kinder (Cards, Steps, Preise …) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.34s; }

/* ---------- Hero-Entrance (gestaffelt beim Laden) ---------- */
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero .eyebrow,
.hero h1,
.hero-sub,
.hero-cta,
.hero-trust { animation: heroIn 0.8s var(--ease-out) both; }
.hero h1 { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.18s; }
.hero-cta { animation-delay: 0.28s; }
.hero-trust { animation-delay: 0.38s; }
.phone-wrap { animation: heroIn 1s var(--ease-out) 0.2s both; }

/* ---------- Animierter Gradient-Text ---------- */
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent-hi), #7af0c4, var(--accent-hi));
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Ambientes Glühen im Hero ---------- */
.hero::before { animation: glowDrift 14s ease-in-out infinite alternate; }
@keyframes glowDrift {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: 0.9; }
  100% { transform: translate3d(-3%, 4%, 0) scale(1.08); opacity: 1; }
}

/* ---------- Glow-Puls (Phone selbst bleibt ruhig) ---------- */
.phone-wrap::after { animation: glowPulse 5s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.12); } }

/* Online-Status pulsiert sanft */
.phone-top small { animation: onlinePulse 2.4s ease-in-out infinite; }
@keyframes onlinePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ---------- Chat-Bubbles erscheinen nacheinander (JS-gesteuert) ---------- */
/* Nur wenn JS aktiv: vor dem Abspielen verborgen (kein Flackern, kein FOUC). */
html.js .phone-chat .bubble { opacity: 0; transform: translateY(12px) scale(0.98); }
html.js .phone-chat .bubble.show { animation: bubbleIn 0.45s var(--ease-out) forwards; }
@keyframes bubbleIn { to { opacity: 1; transform: none; } }

/* Tipp-Indikator */
.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: typingDot 1.2s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* ---------- Button: Shine-Sweep + Lift ---------- */
.btn-primary { position: relative; overflow: hidden; transition: transform 0.18s var(--ease-out), box-shadow 0.25s ease; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::after { animation: shine 0.85s var(--ease-out); }
@keyframes shine { from { left: -120%; } to { left: 140%; } }
.btn-ghost { transition: transform 0.18s var(--ease-out), border-color 0.2s ease, background 0.2s ease; }
.btn-ghost:hover { transform: translateY(-2px); background: var(--surface); }

/* ---------- Card-Hover: Glow-Rand ---------- */
.feature, .social-card, .price, .problem, .quote, .method-step {
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover, .social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 212, 154, 0.4);
  box-shadow: 0 22px 48px -28px var(--accent-glow);
}
.price:not(.featured):hover { transform: translateY(-6px); border-color: rgba(31, 212, 154, 0.35); box-shadow: 0 22px 48px -30px var(--accent-glow); }
.quote:hover, .problem:hover, .method-step:hover { transform: translateY(-4px); border-color: var(--border-2); }
.feature .fic, .social-ic { transition: transform 0.3s var(--ease-out); }
.feature:hover .fic, .social-card:hover .social-ic { transform: scale(1.08) rotate(-4deg); }

/* Featured Preis: sanftes Dauer-Glühen */
.price.featured { animation: featuredGlow 4s ease-in-out infinite; }
@keyframes featuredGlow {
  0%,100% { box-shadow: 0 20px 50px -28px var(--accent-glow); }
  50%     { box-shadow: 0 24px 60px -26px rgba(20,190,130,0.5); }
}

/* ---------- Header: Logo-Hover (nur außerhalb des Headers, z. B. Footer) ---------- */
.brand .mark { transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease; }
.brand:hover .mark { transform: rotate(-8deg) scale(1.06); box-shadow: 0 8px 22px -6px var(--accent-glow); }
.site-header .brand:hover .mark { box-shadow: none; transform: none; }

/* Nav-Links: animierter Unterstrich */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
  background: linear-gradient(90deg, var(--accent-hi), var(--accent-2)); border-radius: 2px;
  transition: right 0.25s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }

/* ---------- Stat count-up: kein Layout-Shift ---------- */
.stat b, .trust-rating-meta b { font-variant-numeric: tabular-nums; }

/* ---------- Mobiles Menü: sanftes Einklappen ---------- */
.nav.open .nav-links { animation: menuIn 0.3s var(--ease-out) both; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- FAQ: Inhalt gleitet auf ---------- */
details[open] p { animation: faqIn 0.35s var(--ease-out) both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Stern-Rating: kurzes Aufleuchten beim Reveal ---------- */
.reveal.in .stars { animation: starsPop 0.6s var(--ease-out) 0.2s both; }
@keyframes starsPop { 0% { opacity: 0; transform: scale(0.85); } 60% { transform: scale(1.06); } 100% { opacity: 1; transform: scale(1); } }

/* ============================================================
   B2B / Unternehmensseite + Klick-Funnel
   ============================================================ */
/* Hero-Visual: Team-Dashboard */
.biz-card {
  width: 100%; max-width: 380px; background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-2); border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -34px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05); padding: 22px;
}
.biz-card-head { display: flex; align-items: center; gap: 11px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.biz-ic { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); display: grid; place-items: center; flex: none; }
.biz-ic svg { width: 21px; height: 21px; color: #03150e; }
.biz-card-head b { font-size: 0.98rem; }
.biz-card-head small { font-size: 0.74rem; }
.biz-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.biz-stats div { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 6px; text-align: center; }
.biz-stats b { display: block; font-size: 1.35rem; font-weight: 800; color: var(--accent-hi); letter-spacing: -0.02em; }
.biz-stats span { color: var(--muted); font-size: 0.72rem; }
.biz-bars { display: flex; align-items: flex-end; gap: 7px; height: 92px; margin-top: 18px; }
.biz-bars span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--accent-hi), var(--accent-2)); border-radius: 5px 5px 0 0; }
.biz-note { color: var(--muted); font-size: 0.74rem; margin-top: 14px; }

/* ---------- Funnel ---------- */
.funnel { max-width: 680px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 30px 30px 24px; box-shadow: 0 30px 70px -40px rgba(0,0,0,0.7); }
.funnel-progress { height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.funnel-progress span { display: block; height: 100%; width: 25%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-hi), var(--accent-2)); transition: width 0.4s var(--ease-out); }
.funnel-meta { color: var(--muted); font-size: 0.82rem; font-weight: 600; margin: 12px 0 22px; }

.funnel-step { display: none; animation: faqIn 0.4s var(--ease-out) both; }
.funnel-step.active { display: block; }
.funnel-step h3 { font-size: clamp(1.25rem, 2.6vw, 1.55rem); font-weight: 800; margin-bottom: 20px; }

.funnel-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.funnel-opt {
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--fg); text-align: left;
  background: var(--surface-2); border: 1.5px solid var(--border-2); border-radius: 14px;
  padding: 18px 18px; cursor: pointer; transition: transform 0.15s var(--ease-out), border-color 0.2s ease, background 0.2s ease;
}
.funnel-opt:hover { transform: translateY(-2px); border-color: rgba(31,212,154,0.5); }
.funnel-opt.selected { border-color: var(--accent-hi); background: linear-gradient(135deg, rgba(31,212,154,0.16), rgba(31,212,154,0.05)); box-shadow: 0 8px 24px -12px var(--accent-glow); }

/* Formularfelder */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--fg-soft); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.98rem; color: var(--fg);
  background: var(--bg-2); border: 1.5px solid var(--border-2); border-radius: 12px; padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-hi); box-shadow: 0 0 0 3px var(--accent-glow); }
.field textarea { resize: vertical; min-height: 80px; }
.field-check { display: flex; align-items: flex-start; gap: 11px; font-size: 0.86rem; color: var(--fg-soft); margin-top: 4px; }
.field-check input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.field-check a { color: var(--accent-hi); }
.funnel-error { color: #ff8b7a; font-size: 0.88rem; margin-top: 12px; }

.funnel-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.funnel-nav .btn { min-width: 120px; }
.funnel-nav #funnelNext, .funnel-nav #funnelSubmit { margin-left: auto; }

/* Erfolg */
.funnel-success { text-align: center; padding: 14px 0; }
.funnel-success-ic { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--accent-hi), var(--accent-2)); display: grid; place-items: center; box-shadow: 0 12px 30px -10px var(--accent-glow); }
.funnel-success-ic svg { width: 30px; height: 30px; color: #03150e; }
.funnel-success p { color: var(--fg-soft); margin-top: 12px; }
.funnel-fallback { font-size: 0.88rem; }
.funnel-fallback a { color: var(--accent-hi); }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--accent-hi); cursor: pointer; text-decoration: underline; }

@media (max-width: 600px) {
  .funnel { padding: 24px 18px 20px; }
  .funnel-options, .field-row { grid-template-columns: 1fr; }
  .funnel-nav .btn { min-width: 0; flex: 1; }
}
