/* =====================================================================
   SNAPFACH – Landing-Page Styles
   Stilrichtung: "Bautafel-Editorial" – dunkler Kampagnen-Hero (Ink-Navy)
   mit Blueprint-Raster, darunter warme Papier-Sektionen mit Hairlines.
   Motion: transform/opacity only, Reveals via IntersectionObserver-Klassen.
   ===================================================================== */

:root {
  --ink: #16182B;
  --ink-2: #1E2138;
  --ink-3: #262A48;
  --paper: #F6F6F3;
  --white: #FFFFFF;
  --line: #E9EAEE;
  --line-ink: rgba(255, 255, 255, .12);
  --sun: #FFD25F;
  --sun-press: #F8C84B;
  --sun-soft: #FFF3D3;
  --violet: #6C5CE7;
  --green: #1B9C5F;
  --green-deep: #17854F;
  --muted: #5F6377;
  --muted-ink: #A9AEC7;
  --r-lg: 20px;
  --r-md: 14px;
  --shadow-card: 0 18px 40px -18px rgba(22, 24, 43, .28);
  --font: "Inter", "Inter Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; }
img, svg { max-width: 100%; }

.container { max-width: 1120px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.ic { width: 22px; height: 22px; flex: none; display: block; }

:focus-visible { outline: 2.5px solid var(--ink); outline-offset: 2px; border-radius: 6px; }
.on-ink :focus-visible, .hero :focus-visible, .cta-band :focus-visible, .topbar :focus-visible { outline-color: var(--sun); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--sun); color: var(--ink); font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 12px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------------
   Reveals (IntersectionObserver setzt .is-in, JS setzt transition-delay)
   Ohne JS (kein html.js) bleibt alles sichtbar.
   ------------------------------------------------------------------ */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}
html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
}
html.js [data-reveal].did-reveal { transition: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
}

/* ------------------------------------------------------------------
   Topbar – Navy-Markenleiste, bleibt über allen Sektionen
   ------------------------------------------------------------------ */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(22, 24, 43, .88);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.topbar.is-scrolled { border-bottom-color: var(--line-ink); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 66px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -.01em;
  color: #fff; text-decoration: none;
  padding: 8px 0; /* Touch-Ziel >= 44px */
}
.brand .logo-svg { width: 32px; height: 32px; display: block; border-radius: 9px; box-shadow: 0 0 0 1px var(--line-ink); }
@media (max-width: 380px) {
  .brand { font-size: 17px; gap: 8px; }
  .brand .logo-svg { width: 28px; height: 28px; }
  .topbar .btn-sm { padding: 9px 14px; font-size: 13.5px; }
}
.topnav { display: none; gap: 28px; }
.topnav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--muted-ink); transition: color .2s ease; }
.topnav a:hover { color: #fff; }
@media (min-width: 760px) { .topnav { display: flex; } }

/* ------------------------------------------------------------------
   Buttons & Pills
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 15px 28px; min-height: 48px;
  font-family: var(--font); font-weight: 700; font-size: 16px; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--sun); color: var(--ink);
  box-shadow: 0 10px 26px -8px rgba(255, 210, 95, .55);
}
.btn-primary:hover { background: var(--sun-press); transform: translateY(-2px); }
.btn-ghost { background: var(--white); border-color: #D8DAE2; color: var(--ink); }
.btn-ghost:hover { background: var(--paper); transform: translateY(-2px); }
.btn-ghost-ink { background: transparent; border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn-ghost-ink:hover { border-color: rgba(255, 255, 255, .6); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; min-height: 44px; font-size: 14.5px; }
.btn-lg { padding: 17px 34px; font-size: 17px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 13.5px; font-weight: 600;
}
.pill .ic { width: 17px; height: 17px; color: var(--green); }
.pill-ink { background: rgba(255, 255, 255, .06); border-color: var(--line-ink); color: #EDEEF6; }
.pill-ink .ic { color: var(--sun); }

/* ------------------------------------------------------------------
   Hero – Kampagnen-Erlebnis auf Ink-Navy mit Blueprint-Raster
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: clip;
  padding: 44px 0 0;
}
@media (min-width: 980px) { .hero { padding-top: 64px; } }

/* Blueprint-Gitter */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 100%);
}

/* Parallaktische Licht-Flecken (nur transform animiert) */
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px); }
.hero-glow.g1 { width: 480px; height: 480px; left: -160px; top: -120px; background: rgba(255, 210, 95, .13); animation: drift-a 22s ease-in-out infinite alternate; }
.hero-glow.g2 { width: 420px; height: 420px; right: -140px; top: 30%; background: rgba(108, 92, 231, .16); animation: drift-b 26s ease-in-out infinite alternate; }
@keyframes drift-a { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(70px, 50px, 0) scale(1.12); } }
@keyframes drift-b { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-60px, -70px, 0) scale(1.08); } }

/* Schwebende Zettel im Hintergrund */
.hero-sheet { position: absolute; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .07); border-radius: 6px; pointer-events: none; }
.hero-sheet.s1 { width: 46px; height: 58px; left: 6%; top: 58%; transform: rotate(-10deg); animation: floaty 9s ease-in-out infinite alternate; }
.hero-sheet.s2 { width: 34px; height: 44px; right: 9%; top: 12%; transform: rotate(14deg); animation: floaty 11s ease-in-out .8s infinite alternate; }
.hero-sheet.s3 { width: 26px; height: 34px; left: 42%; top: 8%; transform: rotate(6deg); animation: floaty 13s ease-in-out .4s infinite alternate; }
@keyframes floaty { to { transform: translate3d(0, -22px, 0) rotate(2deg); } }

.hero-grid { position: relative; display: grid; gap: 30px; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 48px; } }

.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }

.hero h1 {
  font-size: clamp(34px, 9vw, 64px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.03;
  margin: 22px 0 18px;
  overflow-wrap: break-word;
  hyphens: manual;
}
/* Zweispaltig: so groß wie möglich, ohne dass "Zettelwirtschaft." bricht */
@media (min-width: 980px) { .hero h1 { font-size: clamp(48px, 5.15vw, 66px); } }
.hero .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero .line-inner { display: inline-block; will-change: transform; }
.hero .accent { color: var(--sun); }

.hero-sub { font-size: clamp(16.5px, 1.5vw, 18.5px); color: var(--muted-ink); max-width: 34em; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 18px; margin-bottom: 8px; font-size: 14px; color: var(--muted-ink); }

/* Szene: das Logo wird zur Story */
.scene-wrap { position: relative; max-width: 520px; width: 100%; margin: 0 auto; }
.scene { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; }
.scene text { font-family: var(--font); }
#sc-doc { filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .32)); }
#sc-chip { filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .3)); }
.sc-chip-text { font-size: 15px; font-weight: 700; fill: var(--ink); }
.sc-done-text { font-size: 14px; font-weight: 700; fill: #fff; }
.sc-doc-strong { font-size: 13px; font-weight: 800; fill: var(--ink); }
.sc-doc-small { font-size: 9.5px; font-weight: 600; fill: #6B6E85; }

/* Ticker – Kampagnenband am Hero-Ende (Belt = Navy-Zone hinter dem Band) */
.ticker-belt { position: relative; padding: 40px 0 34px; overflow: clip; }
.ticker {
  position: relative;
  background: var(--sun);
  color: var(--ink);
  overflow: clip;
  transform: rotate(-1.2deg) scale(1.02);
  border-top: 1px solid rgba(22, 24, 43, .15);
  border-bottom: 1px solid rgba(22, 24, 43, .15);
}
.ticker-track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker-seq { display: flex; align-items: center; white-space: nowrap; padding: 13px 0; font-weight: 800; font-size: 15.5px; letter-spacing: .01em; }
.ticker-seq span { display: inline-flex; align-items: center; }
.ticker-seq span::after { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--ink); margin: 0 18px; opacity: .55; }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ------------------------------------------------------------------
   Sektionen
   ------------------------------------------------------------------ */
.section { padding: 72px 0; }
@media (min-width: 880px) { .section { padding: 112px 0; } }
.section.soft { background: var(--paper); }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
@media (min-width: 880px) { .section-head { margin-bottom: 60px; } }
.kicker {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.kicker .knum { font-size: 13px; font-weight: 800; color: var(--ink); background: var(--sun); border-radius: 6px; padding: 1px 7px; letter-spacing: 0; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.03em; margin: 16px 0 12px; }
.section-head .sub { color: var(--muted); font-size: 17px; }

/* Karten mit Tiefen-Hover: Schatten liegt auf ::after (nur Opacity animiert) */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .28s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transition: opacity .28s ease;
}
.card:hover { transform: translateY(-5px); }
.card:hover::after { opacity: 1; }
@media (hover: none) { .card:hover { transform: none; } }

.icbox {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--sun-soft); color: var(--ink);
  display: grid; place-items: center;
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1);
}
.card:hover .icbox { transform: rotate(-5deg) scale(1.07); }

/* ---------- Schritte ---------- */
.steps { position: relative; display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.step { padding: 28px; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sun); color: var(--ink);
  display: grid; place-items: center; font-weight: 800; font-size: 16px;
}
.step h3 { font-size: 19px; margin: 18px 0 8px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step .ghost {
  position: absolute; top: 10px; right: 18px;
  font-size: 84px; font-weight: 800; letter-spacing: -.05em; line-height: 1;
  color: var(--ink); opacity: .05; user-select: none; pointer-events: none;
}
.step > .ic { position: absolute; top: 30px; right: 28px; width: 24px; height: 24px; opacity: .55; }

/* ---------- Dokumenttypen ---------- */
.docs { display: grid; grid-template-columns: 1fr; gap: 14px; }
.docs > * { min-width: 0; }
@media (min-width: 400px) { .docs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .docs { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.doc { padding: 22px 20px; }
@media (min-width: 880px) { .doc { padding: 26px 24px; } }
.doc h3 { font-size: 16.5px; margin: 14px 0 6px; }
.doc p { font-size: 14px; color: var(--muted); }

/* ---------- Feature-Grid ---------- */
.features { display: grid; gap: 16px; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .features { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.feature { padding: 26px; }
.feature h3 { font-size: 17px; margin: 14px 0 6px; }
.feature p { font-size: 14.5px; color: var(--muted); }
.badge-premium {
  position: absolute; top: 18px; right: 18px;
  background: var(--violet); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px; padding: 4px 10px;
}

/* ---------- Fakten-Band (CountUp) ---------- */
.facts { background: var(--ink); color: #fff; position: relative; overflow: clip; }
.facts::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
}
.facts-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 20px; padding: 64px 0; text-align: center; }
@media (min-width: 880px) { .facts-grid { grid-template-columns: repeat(4, 1fr); padding: 80px 0; } }
.fact-num {
  font-size: clamp(44px, 6vw, 68px); font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: var(--sun); font-variant-numeric: tabular-nums;
}
.fact-label { margin-top: 10px; font-size: 14.5px; color: var(--muted-ink); font-weight: 600; }

/* ---------- Preise ---------- */
.toggle-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 40px; }
.toggle { display: inline-flex; background: #ECECE6; border-radius: 999px; padding: 4px; gap: 4px; }
.toggle button {
  appearance: none; border: 0; background: transparent; border-radius: 999px;
  padding: 10px 18px; min-height: 44px;
  font-family: var(--font); font-weight: 700; font-size: 14.5px; color: var(--muted);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.toggle button:active { transform: scale(.97); }
.toggle button.is-active { background: var(--white); color: var(--ink); box-shadow: 0 2px 8px rgba(22, 24, 43, .10); }
.save { background: var(--green-deep); color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 3px 8px; }
.billing-hint { font-size: 13.5px; color: var(--muted); text-align: center; }

.plans { display: grid; gap: 20px; max-width: 940px; margin: 0 auto; }
@media (min-width: 880px) { .plans { grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; } }
.plan { padding: 30px; }
@media (max-width: 520px) { .plan { padding: 24px 18px; } }
.plan.premium { border-color: #DCD6F9; }
.plan.premium::after { opacity: .55; }
.plan.premium:hover::after { opacity: 1; }
.badge-reco {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--violet); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .03em;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 22px; }
.plan-tag { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.plan-plus { font-size: 12.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-top: 22px; }
.plan-plus.violet { color: var(--violet); }
.plan ul { list-style: none; margin: 12px 0 20px; padding: 0; display: grid; gap: 9px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.8px; }
.plan li .ic { width: 18px; height: 18px; color: var(--green); margin-top: 3px; }
.pkgs { border-top: 1px solid var(--line); }
.pkg { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 13px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.pkg:last-child { border-bottom: 0; }
.pkg-l b { font-size: 15.5px; }
.pkg-l span { display: block; font-size: 13px; color: var(--muted); }
.pkg-r { display: flex; align-items: baseline; gap: 8px; margin-left: auto; }
.old { display: none; color: var(--muted); font-size: 13.5px; }
.is-yearly .old { display: inline; }
.price { font-size: 22px; font-weight: 800; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.per { font-size: 13px; color: var(--muted); }
.plan .btn { width: 100%; margin-top: 18px; }
.both-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.enterprise {
  max-width: 940px; margin: 20px auto 0; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  background: var(--paper); border: 1px dashed #D5D7DF; border-radius: var(--r-md);
}
.ent-l b { display: block; font-size: 16.5px; }
.ent-l span { font-size: 14px; color: var(--muted); }

/* ---------- Vertrauen ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 16px; max-width: 980px; margin: 0 auto; }
@media (min-width: 880px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; padding: 10px; }
.trust-item .icbox { margin: 0 auto; background: var(--white); border: 1px solid var(--line); }
.trust-item h3 { font-size: 15.5px; margin: 12px 0 4px; }
.trust-item p { font-size: 13.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 0 20px; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; min-height: 44px; font-weight: 700; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { width: 20px; height: 20px; flex: none; color: var(--muted); transition: transform .25s ease; }
.faq details[open] .plus { transform: rotate(45deg); }
.faq .faq-body { color: var(--muted); font-size: 15px; padding-bottom: 18px; }
.faq details[open] .faq-body { animation: faq-in .35s ease both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-foot { text-align: center; margin-top: 30px; font-size: 14.5px; color: var(--muted); }
.faq-foot a { font-weight: 600; color: var(--ink); display: inline-block; padding: 14px 4px; margin: -14px -4px; /* Touch-Ziel >= 44px */ }

/* ---------- Abschluss-CTA ---------- */
.cta-band { position: relative; background: var(--ink); color: #fff; overflow: clip; text-align: center; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(110% 110% at 50% 100%, #000 30%, transparent 100%);
  mask-image: radial-gradient(110% 110% at 50% 100%, #000 30%, transparent 100%);
}
.cta-inner { position: relative; padding: 88px 0 96px; }
@media (min-width: 880px) { .cta-inner { padding: 112px 0 120px; } }
.cta-logo { width: 76px; height: 76px; margin: 0 auto 26px; display: block; filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .5)); animation: floaty 7s ease-in-out infinite alternate; }
.cta-band h2 { font-size: clamp(30px, 5vw, 56px); font-weight: 800; letter-spacing: -.03em; }
.cta-band .accent { color: var(--sun); }
.cta-band .sub { margin: 16px auto 0; max-width: 34em; color: var(--muted-ink); font-size: 17px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .hero-note { margin-bottom: 0; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 36px 0 46px; background: var(--white); }
.foot { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.foot-l { display: flex; align-items: center; gap: 10px; font-weight: 700; flex-wrap: wrap; }
.foot-l .logo-svg { width: 28px; height: 28px; display: block; }
.foot-claim { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.foot-r { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.foot-r a { text-decoration: none; display: inline-block; padding: 11px 2px; margin: -11px -2px; /* Touch-Ziel >= 44px */ }
.foot-r a:hover { color: var(--ink); text-decoration: underline; }

/* ------------------------------------------------------------------
   Rechtsseiten (Impressum / Datenschutz)
   ------------------------------------------------------------------ */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 20px 80px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; }
.legal .legal-sub { color: var(--muted); margin-bottom: 40px; }
.legal h2 { font-size: 21px; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--ink); font-weight: 600; }
.todo {
  display: inline-block;
  background: var(--sun-soft); border: 1px dashed var(--sun-press);
  border-radius: 6px; padding: 1px 8px;
  color: var(--ink); font-weight: 600; font-size: 14.5px;
}

/* ===== Vorher/Nachher-Slider (Sektion 03) ===== */
.ba {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 36px;
  align-items: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.ba-copy h3 { font-size: 1.45rem; margin: 0 0 12px; letter-spacing: -0.01em; }
.ba-copy p { color: var(--muted); margin: 0 0 10px; max-width: 46ch; }
.ba-note { font-size: .78rem; color: var(--muted); opacity: .7; }
.ba-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  --ba: 50%;
  touch-action: none;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-top { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--ba)); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba);
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(22,24,43,.18);
  pointer-events: none;
}
.ba-handle::after {
  content: "\2194";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px -6px rgba(22,24,43,.45);
}
.ba-tag {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-tag-l { left: 14px; background: rgba(22,24,43,.78); color: var(--white); }
.ba-tag-r { right: 14px; background: var(--sun); color: var(--ink); }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}
.ba-range:focus-visible ~ .ba-handle,
.ba-frame:has(.ba-range:focus-visible) .ba-handle { outline: 3px solid var(--ink); outline-offset: -3px; }
@media (max-width: 820px) {
  .ba { grid-template-columns: 1fr; gap: 22px; }
  .ba-frame { max-width: 420px; width: 100%; margin: 0 auto; }
}

/* "Bald"-Hinweis in Feature-Karten (z. B. DATEV-Export) */
.soon { margin: 12px 0 0; font-size: .85rem; color: var(--muted); }
.soon-badge {
  display: inline-block;
  background: var(--sun-soft);
  color: var(--ink);
  border: 1px solid var(--sun);
  border-radius: 999px;
  padding: 1px 10px;
  margin-right: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: 1px;
}

/* Topbar: Login-Link neben dem CTA */
.topbar-actions { display: flex; align-items: center; gap: 18px; }
.login-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  padding: 10px 4px;
  opacity: .85;
  transition: opacity .15s ease;
}
.login-link:hover, .login-link:focus-visible { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
