/* social by karbach.digital — Landing Page Styles v2
 * Design-DNA der App + Landing-Erweiterungen (Accent, größere Hero-Type, Animationen)
 */

/* Self-hosted Fonts (DSGVO Schrems-II) — Inter + JetBrains Mono + Caveat,
   identisch zur App (web/public/fonts). KEIN Google-Fonts-CDN mehr.
   @font-face lädt lazy: nicht referenzierte Schnitte werden nie gefetcht. */
@import url("/fonts/fonts.css");

/* ── Design Tokens ───────────────────────────────────────────────────────────── */
:root {
  --bg:        #faf9f7;
  --bg-card:   #ffffff;
  --bg-soft:   #f4f3f0;
  --bg-deep:   #0a0a0a;
  --white:     #ffffff;
  --ink:       #0a0a0a;
  --ink-2:     #27272a;
  --ink-3:     #52525b;
  --ink-4:     #71717a;
  --ink-5:     #a1a1aa;
  --ink-6:     #d4d4d8;
  --line:      #e8e7e3;
  --line-2:    #d4d4d8;
  --brand-green:       #00C16E;  /* kanonisch — identisch zur App (tokens.css) */
  --brand-green-hover: #00a85e;  /* an App-Hover angeglichen (war #009955) */
  --accent:    var(--brand-green);       /* Alias: Bestandscode der Landing nutzt --accent */
  --accent-dk: var(--brand-green-hover);
  --grn:       #15803d;
  --grn-bg:    #ecfdf5;
  --rd:        #b91c1c;
  --r-sm:  6px;
  --r:     10px;
  --rl:    14px;
  --rxl:   20px;
  --fnt:   "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --fnm:   "JetBrains Mono", monospace;
  --fnh:   "Caveat", cursive;
  --fs-hero: clamp(3rem, 7.5vw, 5.75rem);
  --fs-h1:   1.875rem;
  --fs-h2:   1.5rem;
  --fs-h3:   1.125rem;
  --fs-body: 0.9375rem;
  --fs-sm:   0.8125rem;
  --fs-xs:   0.6875rem;
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px;  --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.04);
  --shadow-hover: 0 2px 4px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.08);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fnt);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ───────────────────────────────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

/* ── Buttons ──────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 100px;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: .01em;
  cursor: pointer; transition: all .18s var(--ease);
  white-space: nowrap; border: none;
}
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn--ghost-light {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost-light:hover { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn--ghost-dark {
  background: transparent; color: var(--ink-2);
  border: 1.5px solid var(--line-2);
}
.btn--ghost-dark:hover { border-color: var(--ink-3); }
.btn--lg { padding: 14px 28px; font-size: var(--fs-body); }

/* ── Navigation ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav__brand {
  font-family: var(--fnh); font-size: 1.7rem; font-weight: 700; letter-spacing: 0;
  color: var(--white); flex-shrink: 0; line-height: 1; display: inline-flex; align-items: baseline; gap: 6px;
}
.nav__brand span {
  font-family: var(--fnt); font-size: 0.8125rem; font-weight: 400;
  letter-spacing: -.01em; color: rgba(255,255,255,.45);
}
.nav__links {
  display: flex; gap: var(--sp-6); align-items: center;
}
.nav__links a {
  font-size: var(--fs-sm); color: rgba(255,255,255,.65);
  transition: color .15s;
}
.nav__links a:hover { color: var(--white); }
.nav__right { display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0; }
.nav__login {
  font-size: var(--fs-sm); font-weight: 600; color: rgba(255,255,255,.72);
  transition: color .15s; white-space: nowrap;
}
.nav__login:hover { color: var(--white); }
.nav__cta { flex-shrink: 0; }

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--bg-deep);
  display: flex; align-items: center;
  padding: calc(var(--sp-9) + 48px) var(--sp-5) var(--sp-9);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 65% 42%, rgba(0,193,110,.13) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 12% 82%, rgba(0,193,110,.06) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.028) 1px, transparent 0);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero__inner {
  max-width: 1080px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px;
  align-items: center; gap: var(--sp-8);
}
.hero__eyebrow {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-4);
  display: flex; align-items: center; gap: 8px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block; width: 20px; height: 1.5px; background: var(--accent);
}
.hero__h1 {
  font-size: var(--fs-hero); font-weight: 800; letter-spacing: -.04em; line-height: 1.04;
  color: var(--white); margin-bottom: var(--sp-5);
}
.hero__h1 em {
  font-style: normal; color: var(--accent);
  animation: glow-pulse 3s ease-in-out infinite;
}
.hero__sub {
  font-size: 1.0625rem; color: rgba(255,255,255,.6); line-height: 1.72;
  max-width: 460px; margin-bottom: var(--sp-6);
}
.hero__actions {
  display: flex; gap: var(--sp-3); flex-wrap: wrap; align-items: center;
}

/* Hero App Mockup */
.hero-mockup {
  background: #141414; border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rl); padding: var(--sp-4);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 32px 64px rgba(0,0,0,.6), 0 0 60px rgba(0,193,110,.08);
  position: relative;
  animation: float 7s ease-in-out infinite;
}
.mock-titlebar {
  display: flex; align-items: center; gap: 6px; margin-bottom: var(--sp-4);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-title-label {
  margin-left: var(--sp-3); font-size: 11px; color: rgba(255,255,255,.3);
  font-family: var(--fnm);
}
.mock-channels {
  display: flex; gap: 6px; margin-bottom: var(--sp-4);
}
.mock-ch {
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  letter-spacing: .03em;
}
.mock-ch--li { background: rgba(0,119,181,.2); color: #60a5fa; }
.mock-ch--ig { background: rgba(225,48,108,.15); color: #f472b6; }
.mock-ch--fb { background: rgba(24,119,242,.15); color: #93c5fd; }
.mock-ch--active { background: rgba(0,193,110,.15); color: var(--accent); }
.mock-posts { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--sp-4); }
.mock-post { display: flex; align-items: center; gap: 10px; }
.mock-post-line {
  height: 32px; border-radius: 6px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
  flex: 1; display: flex; align-items: center; padding: 0 10px;
}
.mock-post-dot { width: 6px; height: 6px; border-radius: 50%; margin-right: 8px; flex-shrink: 0; }
.mock-post-dot--li { background: #60a5fa; }
.mock-post-dot--ig { background: #f472b6; }
.mock-post-dot--fb { background: #93c5fd; }
.mock-post-text { font-size: 10px; color: rgba(255,255,255,.35); font-family: var(--fnm); }
.mock-post-time { font-size: 10px; color: rgba(255,255,255,.25); font-family: var(--fnm); white-space: nowrap; }
.mock-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--sp-3); border-top: 1px solid rgba(255,255,255,.06);
}
.mock-badge {
  font-size: 10px; font-weight: 600; color: var(--accent);
  background: rgba(0,193,110,.12); padding: 4px 10px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
}
.mock-create {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06); padding: 4px 10px; border-radius: 100px;
}

/* ── Stat Strip ───────────────────────────────────────────────────────────────── */
.stat-strip {
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  padding: var(--sp-7) var(--sp-5);
}
.stat-strip__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5);
  text-align: center;
}
.stat-item__num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.04em;
  color: var(--ink); line-height: 1; display: block; margin-bottom: 6px;
}
.stat-item__num em { font-style: normal; color: var(--accent); }
.stat-item__label {
  font-size: var(--fs-sm); color: var(--ink-4); line-height: 1.4;
}

/* ── Platform Bar ─────────────────────────────────────────────────────────────── */
.platform-bar {
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: var(--sp-5) var(--sp-5);
  overflow: hidden;
}
.platform-bar__inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-5); flex-wrap: wrap;
}
.platform-bar__label {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-5); white-space: nowrap;
}
.platform-bar__platforms {
  display: flex; gap: var(--sp-4); align-items: center; flex-wrap: wrap; justify-content: center;
}
.platform-chip {
  display: flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-4);
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--bg-soft);
  transition: all .18s;
}
.platform-chip:hover { border-color: var(--ink-6); color: var(--ink-3); }
.platform-chip svg { width: 14px; height: 14px; }

/* ── Section Commons ──────────────────────────────────────────────────────────── */
.section { padding: var(--sp-9) 0; }
.section--dark { background: var(--bg-deep); }
.section--soft { background: var(--bg-soft); }
.section-eyebrow {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-5); margin-bottom: var(--sp-3);
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow--accent { color: var(--accent); }
.section-title {
  font-size: var(--fs-h1); font-weight: 800; letter-spacing: -.03em;
  color: var(--ink); line-height: 1.15; margin-bottom: var(--sp-4);
}
.section-title--lg { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
.section-title--light { color: var(--white); }
.section-sub {
  font-size: var(--fs-body); color: var(--ink-3); line-height: 1.72; max-width: 560px;
  margin-bottom: var(--sp-7);
}
.section-sub--light { color: rgba(255,255,255,.6); }

/* ── Für wen — Cards ──────────────────────────────────────────────────────────── */
.fuer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--sp-4); margin-top: var(--sp-6);
}
.fuer-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--rl); padding: var(--sp-5);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s;
  cursor: pointer;
}
.fuer-card:hover {
  box-shadow: var(--shadow-hover); transform: translateY(-3px);
  border-color: rgba(0,193,110,.25);
}
.fuer-card__icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); margin-bottom: var(--sp-4);
  transition: background .2s, color .2s;
}
.fuer-card:hover .fuer-card__icon { background: rgba(0,193,110,.1); color: var(--accent); }
.fuer-card__icon svg { width: 22px; height: 22px; }
.fuer-card__name { font-size: var(--fs-body); font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.fuer-card__desc { font-size: var(--fs-sm); color: var(--ink-4); line-height: 1.55; }

/* ── Feature Trio ─────────────────────────────────────────────────────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center;
  max-width: 1080px; margin: 0 auto; padding: var(--sp-7) var(--sp-5);
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row--reverse .feature-visual { order: 2; }
.feature-row--reverse .feature-content { order: 1; }
.feature-visual {
  background: var(--bg-soft); border-radius: var(--rl);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  min-height: 260px; position: relative; overflow: hidden;
}
.feature-visual__icon {
  width: 72px; height: 72px; color: var(--ink-3);
  position: relative; z-index: 1;
}
.feature-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,193,110,.07) 0%, transparent 65%);
}
.feature-content__tag {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-3); display: flex; align-items: center; gap: 8px;
}
.feature-content__tag::before {
  content: ''; display: inline-block; width: 16px; height: 1.5px; background: var(--accent);
}
.feature-content__title {
  font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.025em;
  color: var(--ink); line-height: 1.2; margin-bottom: var(--sp-4);
}
.feature-content__text {
  font-size: var(--fs-body); color: var(--ink-3); line-height: 1.75; margin-bottom: var(--sp-5);
}
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--fs-sm); color: var(--ink-3); line-height: 1.5;
}
.feature-list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ── Compare Table ────────────────────────────────────────────────────────────── */
.compare-wrap {
  overflow-x: auto; border-radius: var(--rl);
  border: 1px solid var(--line); background: var(--bg-card);
  box-shadow: var(--shadow-card);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.compare-table th {
  padding: var(--sp-4) var(--sp-5); text-align: center;
  font-size: var(--fs-sm); font-weight: 700; color: var(--ink-4);
  border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.col-social {
  color: var(--ink); background: rgba(0,193,110,.06);
  border-bottom: 2px solid var(--accent);
}
.compare-table td {
  padding: var(--sp-4) var(--sp-5); text-align: center;
  border-bottom: 1px solid var(--line); font-size: var(--fs-sm); vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--ink-2); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-soft); }
.val-ok { color: var(--accent); font-weight: 700; }
.val-ok svg { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
.val-bad { color: var(--ink-5); font-size: var(--fs-xs); letter-spacing: .02em; }
.val-warn { color: var(--ink-4); font-size: var(--fs-sm); }

/* ── Billing Toggle ───────────────────────────────────────────────────────────── */
.billing-toggle-wrap { display: flex; justify-content: center; margin-bottom: var(--sp-7); }
.billing-toggle {
  display: flex; gap: 4px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 100px; padding: 4px;
}
.billing-btn {
  padding: 8px 20px; border-radius: 100px; border: none;
  font-size: var(--fs-sm); font-weight: 600; cursor: pointer;
  background: transparent; color: var(--ink-4);
  transition: all .18s var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.billing-btn.active {
  background: var(--bg-card); color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.billing-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: .04em;
  background: rgba(0,193,110,.12); color: var(--accent);
  padding: 2px 8px; border-radius: 100px; white-space: nowrap;
}
.pkg-monthly-eq {
  font-size: var(--fs-xs); color: var(--ink-5); margin-top: 3px;
}
.config-monthly-eq {
  font-size: var(--fs-sm); color: var(--ink-4); margin-top: 4px;
}

/* ── Pricing ──────────────────────────────────────────────────────────────────── */
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4); margin-bottom: var(--sp-6);
}
.pkg-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--rl); padding: var(--sp-6);
  cursor: pointer; transition: all .2s var(--ease);
  display: flex; flex-direction: column; gap: var(--sp-3);
  position: relative;
}
.pkg-card--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 100px; white-space: nowrap;
}
.dsee-hint {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r); padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm); color: var(--ink-3); line-height: 1.55;
  margin-bottom: var(--sp-6);
}
.dsee-hint svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.pkg-card:hover {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,193,110,.1);
  transform: translateY(-2px);
}
.pkg-card.selected {
  border-color: var(--accent); background: rgba(0,193,110,.04);
  box-shadow: 0 0 0 3px rgba(0,193,110,.15);
}
.pkg-name {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
}
.pkg-headline {
  font-size: var(--fs-h3); font-weight: 800; letter-spacing: -.02em; color: var(--ink);
}
.pkg-tagline { font-size: var(--fs-sm); color: var(--ink-3); line-height: 1.55; flex: 1; }
.pkg-details {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: var(--sp-3); border-top: 1px solid var(--line);
  margin-top: auto;
}
.pkg-detail {
  display: flex; align-items: center; gap: 7px;
  font-size: var(--fs-sm); color: var(--ink-3);
}
.pkg-detail svg { width: 14px; height: 14px; color: var(--ink-5); flex-shrink: 0; }
.pkg-detail--feature { color: var(--ink-2); }
.pkg-detail--feature svg { color: var(--accent); }
.pkg-ab {
  font-size: var(--fs-sm); color: var(--ink-4); margin-top: var(--sp-2);
}
.pkg-ab strong {
  font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.03em; color: var(--ink);
}

/* ── Konfigurator ─────────────────────────────────────────────────────────────── */
.configurator {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--rl); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.config-header {
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  padding: var(--sp-5) var(--sp-6);
}
.config-header h3 {
  font-size: var(--fs-h3); font-weight: 700; letter-spacing: -.02em; color: var(--ink);
}
.config-header p { font-size: var(--fs-sm); color: var(--ink-4); margin-top: 4px; }
.config-body {
  padding: var(--sp-6); display: flex; gap: var(--sp-8);
  flex-wrap: wrap;
}
.config-step { flex: 1; min-width: 220px; }
.config-label {
  display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2);
  margin-bottom: var(--sp-3);
}
.config-slider-wrap { display: flex; flex-direction: column; gap: 10px; }
.config-slider-header { display: flex; align-items: baseline; gap: 8px; }
.config-slider-val {
  font-size: 2.75rem; font-weight: 800; letter-spacing: -.05em;
  color: var(--ink); line-height: 1;
}
.config-slider-unit { font-size: var(--fs-sm); color: var(--ink-4); font-weight: 500; }
.config-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px; border-radius: 3px;
  background: var(--line-2); outline: none; cursor: pointer;
}
.config-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(0,193,110,.15);
  transition: box-shadow .15s;
}
.config-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 7px rgba(0,193,110,.2); }
.config-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: none;
  box-shadow: 0 0 0 4px rgba(0,193,110,.15);
}
.config-slider-ticks {
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: var(--ink-5); margin-top: -2px;
}
.config-toggles { display: flex; flex-direction: column; gap: var(--sp-3); }
.config-toggle { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.config-toggle input[type="checkbox"] {
  width: 18px; height: 18px; border: 1.5px solid var(--line-2);
  border-radius: 4px; accent-color: var(--accent);
  cursor: pointer; flex-shrink: 0; margin-top: 1px;
}
.config-toggle-text { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.5; }
.config-toggle-text strong { font-weight: 700; display: block; }
.config-toggle-text span { color: var(--ink-4); font-size: var(--fs-xs); }
.config-result {
  background: var(--bg-soft); border-top: 1px solid var(--line);
  padding: var(--sp-5) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  flex-wrap: wrap;
}
.config-price-block { display: flex; align-items: baseline; gap: 8px; }
.config-price-label { font-size: var(--fs-sm); color: var(--ink-4); }
.config-price {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.04em;
  color: var(--ink); transition: all .2s var(--ease);
}
.config-price-unit { font-size: var(--fs-sm); color: var(--ink-4); }

/* ── DSGVO Grid ───────────────────────────────────────────────────────────────── */
.dsgvo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4); margin-top: var(--sp-6);
}
.dsgvo-block {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--rl); padding: var(--sp-5);
}
.dsgvo-block__icon {
  width: 40px; height: 40px; border-radius: var(--r);
  background: rgba(0,193,110,.08); display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: var(--sp-4);
}
.dsgvo-block__icon svg { width: 20px; height: 20px; }
.dsgvo-block__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-5); margin-bottom: 4px; }
.dsgvo-block__val { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.dsgvo-block__sub { font-size: var(--fs-xs); color: var(--ink-4); line-height: 1.5; }

/* ── FAQ ──────────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  padding: var(--sp-5) 0; cursor: pointer;
  font-size: var(--fs-body); font-weight: 600; color: var(--ink);
  user-select: none; list-style: none; transition: color .15s;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--ink-2); }
.faq-chevron {
  width: 20px; height: 20px; color: var(--ink-5); flex-shrink: 0;
  transition: transform .3s var(--ease);
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-body {
  padding-bottom: var(--sp-5); font-size: var(--fs-sm); color: var(--ink-3);
  line-height: 1.75; max-width: 680px;
}

/* ── CTA Bottom ───────────────────────────────────────────────────────────────── */
.cta-bottom {
  background: var(--bg-deep); padding: var(--sp-9) var(--sp-5);
  text-align: center; position: relative; overflow: hidden;
}
.cta-bottom::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,193,110,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-bottom__inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-bottom__eyebrow {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-4);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-bottom__h2 {
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.04em;
  line-height: 1.1; color: var(--white); margin-bottom: var(--sp-4);
}
.cta-bottom__h2 em { font-style: normal; color: var(--accent); }
.cta-bottom__sub {
  font-size: var(--fs-body); color: rgba(255,255,255,.5); margin-bottom: var(--sp-7);
  line-height: 1.65;
}
.cta-bottom__actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-soft); border-top: 1px solid var(--line);
  padding: var(--sp-6) var(--sp-5);
}
.footer__inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); flex-wrap: wrap;
}
.footer__brand {
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: -.01em; color: var(--ink);
}
.footer__brand span { color: var(--ink-5); font-weight: 400; }
.footer__links {
  display: flex; gap: var(--sp-5); align-items: center; flex-wrap: wrap;
}
.footer__links a { font-size: var(--fs-sm); color: var(--ink-4); transition: color .15s; }
.footer__links a:hover { color: var(--ink-2); }

/* ── Keyframe Animations ──────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(-0.4deg); }
  66% { transform: translateY(-6px) rotate(0.25deg); }
}
@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 18px rgba(0,193,110,.22); }
  50% { text-shadow: 0 0 38px rgba(0,193,110,.55), 0 0 80px rgba(0,193,110,.18); }
}

/* ── Reveal Animations ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
  .stat-strip__inner { grid-template-columns: repeat(3, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-visual { order: 0; }
  .feature-row--reverse .feature-content { order: 0; }
  .feature-visual { min-height: 180px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .stat-strip__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .config-body { flex-direction: column; gap: var(--sp-5); }
  .config-result { flex-direction: column; align-items: flex-start; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ── Unterseiten-Bridge: Alt-Klassen der /fuer/-, /dsgvo/- und /facts/-Seiten ───
   Diese Seiten nutzen historische Klassennamen, die das v2-System nicht kennt.
   Hier auf die v2-Optik gemappt, bis die Markups vollständig konsolidiert sind. */

/* Sub-Nav: solide + sticky, weil Unterseiten kein Dark-Hero/Scroll-Script haben
   (sonst weißer Nav-Text unsichtbar auf hellem Grund + Fixed-Overlap). */
.nav--sub {
  position: sticky; top: 0;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav__inner {
  max-width: 1080px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
}
.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink-2); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink-3); }
.section-label {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-5); margin-bottom: var(--sp-3); display: block;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--rl); padding: var(--sp-5);
}
.feature-card__icon { font-size: 1.75rem; line-height: 1; margin-bottom: var(--sp-3); }
.feature-card__title { font-size: var(--fs-body); font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-card__desc { font-size: var(--fs-sm); color: var(--ink-4); line-height: 1.6; }
.dsgvo-trust {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--rl); padding: var(--sp-6);
}
.dsgvo-trust .dsgvo-grid { margin-top: 0; }
.dsgvo-item__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-5); margin-bottom: 4px; }
.dsgvo-item__value { font-size: var(--fs-body); font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.dsgvo-item__note { font-size: var(--fs-sm); color: var(--ink-4); line-height: 1.6; }

/* cta-bottom auf Unterseiten nutzt .section-title/.section-sub/.btn--ghost auf
   dunklem Grund — Text/Border hier auf hell umstellen (greift NICHT auf index,
   da dort .cta-bottom__h2/__sub statt .section-title verwendet wird). */
.cta-bottom .section-title { color: var(--white); }
.cta-bottom .section-sub { color: rgba(255,255,255,.6); }
.cta-bottom .btn--ghost { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.28); }
.cta-bottom .btn--ghost:hover { color: var(--white); border-color: rgba(255,255,255,.6); }

/* ── Self-Service-Signup-Modal ─────────────────────────────────────────────── */
body.modal-open { overflow: hidden; }
.signup-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: var(--sp-4);
}
.signup-modal.open { display: flex; }
.signup-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  animation: su-fade 0.2s ease;
}
.signup-modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 440px;
  background: var(--bg-card); border-radius: var(--rl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  max-height: calc(100vh - 32px); overflow-y: auto;
  animation: su-rise 0.25s var(--ease);
}
@keyframes su-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes su-rise { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.signup-modal__close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border: none; background: transparent; color: var(--ink-4); cursor: pointer;
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
}
.signup-modal__close:hover { background: var(--bg-soft); color: var(--ink); }
.signup-modal__head { text-align: center; margin-bottom: var(--sp-5); }
.signup-modal__brand { font-family: var(--fnh); font-size: 1.9rem; color: var(--ink); line-height: 1; }
.signup-modal__brand span { font-family: var(--fnt); font-size: 0.78rem; color: var(--ink-5); }
.signup-modal__head h2 {
  font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); margin-top: var(--sp-3);
}
.signup-modal__sub { font-size: var(--fs-sm); color: var(--ink-4); margin-top: 4px; }
.signup-field { margin-bottom: var(--sp-3); }
.signup-field label { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.signup-field .opt { font-weight: 400; color: var(--ink-5); }
.signup-field input {
  width: 100%; padding: 10px 12px; font-size: 1rem;
  border: 1px solid var(--line-2); border-radius: var(--r);
  background: var(--bg-card); color: var(--ink); font-family: var(--fnt);
}
.signup-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 193, 110, 0.12); }
.signup-check { display: flex; gap: 8px; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-3); margin: var(--sp-3) 0; line-height: 1.5; cursor: pointer; }
.signup-check input { margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.signup-check a { color: var(--accent-dk); text-decoration: underline; }
.signup-error { background: var(--rd-bg); color: var(--rd); font-size: var(--fs-sm); padding: 10px 12px; border-radius: var(--r); margin-bottom: var(--sp-3); line-height: 1.45; }
.signup-fineprint { text-align: center; font-size: var(--fs-xs); color: var(--ink-5); margin-top: var(--sp-3); }
