/* Belegwart — Redesign 2026-07-03.
   Konzept: „frisches Formular" — Tannengrün-Bühne, Papierweiß, Beleg-Motiv.
   Typo: Bricolage Grotesque (Display) + IBM Plex Sans (Body), self-hosted.
   Zielgruppe 50+: 18px+ Basis, AA-Kontraste, Tastatur-Fokus, ruhige Motion. */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/fonts/bricolage-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/fonts/bricolage-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/fonts/plex-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/fonts/plex-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('/fonts/plex-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --tanne: #0f3d2a;
  --tanne-tief: #0a2c1e;
  --gruen: #1f7a4d;
  --gruen-dunkel: #14522c;
  --gruen-hell: #eaf4ee;
  --creme: #fbfaf7;          /* Papierweiß (Name aus v1 beibehalten) */
  --papier-karte: #ffffff;
  --ink: #1c2420;
  --ink-muted: #55635b;
  --border: #dfe6e0;
  --weiss: #ffffff;
  --schatten: 0 1px 2px rgba(15, 61, 42, 0.06), 0 8px 24px -12px rgba(15, 61, 42, 0.18);
  --radius: 14px;
  --display: 'Bricolage Grotesque', 'Segoe UI', Arial, sans-serif;
  --body: 'IBM Plex Sans', -apple-system, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--creme);
}

h1, h2, h3 { font-family: var(--display); font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2rem, 5.4vw, 3.1rem); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2rem); line-height: 1.2; margin-bottom: 0.7em; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4em; }
p { margin-bottom: 1em; }
a { color: var(--gruen-dunkel); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--gruen); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--gruen);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 22px; }
section { padding: 72px 0; }
section:nth-of-type(even) { background: var(--weiss); }

/* ── Header ─────────────────────────────────────────────────────────────── */
header.site {
  background: var(--tanne);
  padding: 16px 0;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.logo {
  font-family: var(--display); font-weight: 800; font-size: 1.35rem;
  color: #fff; text-decoration: none; letter-spacing: -0.01em;
}
.logo span { color: #7fd6a4; }
header.site nav a { color: #d9eadf; font-weight: 600; text-decoration: none; }
header.site nav a:hover { color: #fff; text-decoration: underline; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--gruen); color: #fff;
  box-shadow: 0 2px 0 var(--gruen-dunkel), var(--schatten);
}
.btn-primary:hover { background: var(--gruen-dunkel); transform: translateY(-1px); }
.btn-secondary {
  background: var(--weiss); color: var(--gruen-dunkel); border-color: var(--gruen);
}
.btn-secondary:hover { background: var(--gruen-hell); }
.btn[disabled], .btn.disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-groups { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 16px; }

/* ── Hero: Tannengrün-Bühne + Beleg-Signatur ────────────────────────────── */
.hero {
  background: linear-gradient(168deg, var(--tanne) 0%, var(--tanne-tief) 100%);
  padding: 84px 0 76px;
  color: #eef6f0;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; }
.hero .wrap.hero-grid { display: grid; align-items: center; }
.hero h1 { color: #fff; }
.hero .sub { font-size: 1.18rem; color: #cfe3d6; max-width: 34em; margin-top: 18px; }
.hero .trust { font-size: 0.95rem; color: #a9c9b6; }
.hero .btn-secondary { background: transparent; color: #fff; border-color: #5da57f; }
.hero .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }
.hero a { color: #bfe3cd; }

/* Signatur: Belegstapel — Chaos wird Ordnung */
.belegstapel { position: relative; min-height: 300px; }
.beleg {
  position: absolute; left: 50%; width: min(280px, 100%);
  background: var(--weiss); color: var(--ink);
  border-radius: 8px;
  padding: 18px 20px 14px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.55);
  font-size: 0.82rem;
}
.beleg::before {                    /* Perforationskante oben */
  content: ""; position: absolute; top: -5px; left: 12px; right: 12px; height: 5px;
  background: radial-gradient(circle at 5px 5px, transparent 3.2px, var(--weiss) 3.4px);
  background-size: 14px 5px;
}
.beleg .kopfzeile { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-weight: 700; font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 8px; white-space: nowrap; min-width: 0; }
.beleg .kopfzeile span:first-child { overflow: hidden; text-overflow: ellipsis; }
.beleg .kopfzeile span:last-child { font-size: 0.68em; font-weight: 600; flex-shrink: 0; letter-spacing: 0.02em; }
.beleg .zeile { height: 7px; background: #e8ede9; border-radius: 4px; margin: 7px 0; }
.beleg .zeile.kurz { width: 62%; }
.beleg .betrag { display: flex; justify-content: space-between; font-weight: 700; border-top: 1.5px solid var(--border); padding-top: 8px; margin-top: 10px; }
.beleg-1 { transform: translateX(-64%) rotate(-7deg); top: 66px; opacity: 0.45; }
.beleg-2 { transform: translateX(-42%) rotate(4deg); top: 40px; opacity: 0.7; }
.beleg-3 { transform: translateX(-50%) rotate(0deg); top: 0; z-index: 2; }
.beleg .stempel {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; padding: 5px 11px;
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  border: 1.5px solid var(--gruen); border-radius: 999px;
  font-weight: 700; font-size: 0.76rem; letter-spacing: 0.02em;
}

/* ── Inhalts-Bausteine ──────────────────────────────────────────────────── */
ul.checks { list-style: none; }
ul.checks li { padding-left: 2em; position: relative; margin-bottom: 0.9em; }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0.05em;
  width: 1.35em; height: 1.35em; border-radius: 50%;
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  font-weight: 700; font-size: 0.85em;
  display: flex; align-items: center; justify-content: center;
}

/* Zitate als Notizzettel */
blockquote {
  background: var(--papier-karte);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gruen);
  padding: 16px 20px;
  margin: 0 0 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--schatten);
  font-style: italic;
  color: var(--ink);
}

/* Schritt-Karten (echte Sequenz 1→2→3) */
.schritt {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--papier-karte);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--schatten);
}
.schritt .nr {
  flex: 0 0 52px; height: 52px; border-radius: 14px;
  background: var(--tanne); color: #7fd6a4;
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}

/* Preis-Karten */
.preise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: 10px 0 18px; }
.preis-karte {
  background: var(--papier-karte);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--schatten);
  display: flex; flex-direction: column;
}
.preis-karte.hervor { border-color: var(--gruen); border-width: 2px; position: relative; }
.preis-karte.hervor::before {
  content: "Für die meisten Vereine";
  position: absolute; top: -13px; left: 24px;
  background: var(--gruen); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  padding: 3px 12px; border-radius: 999px;
}
.preis-karte .plan { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--ink-muted); }
.preis-karte .preis {
  font-family: var(--display); font-weight: 800; font-size: 2.5rem; color: var(--tanne);
  letter-spacing: -0.02em; margin: 6px 0 2px;
}
.preis-karte .preis small { font-size: 1rem; font-weight: 600; color: var(--ink-muted); letter-spacing: 0; }
.preis-karte ul.checks { margin-top: 16px; font-size: 0.95rem; }
.preis-karte ul.checks li { margin-bottom: 0.7em; }

/* Preis-/Datentabellen (Fallback, weiter unterstützt) */
.tbl-scroll { overflow-x: auto; }
table.preise { width: 100%; border-collapse: collapse; background: var(--weiss); font-size: 1rem;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); }
table.preise th, table.preise td { border-bottom: 1px solid var(--border); padding: 12px 16px; text-align: left; }
table.preise th { background: var(--gruen-hell); font-family: var(--body); font-weight: 700; }
table.preise td.preis { font-family: var(--display); font-size: 1.25rem; font-weight: 800; color: var(--tanne); }

/* Founding-Karte */
.founding {
  background: linear-gradient(160deg, var(--tanne) 0%, var(--tanne-tief) 100%);
  color: #e7f2ea;
  border-radius: 20px;
  padding: 44px 38px;
  box-shadow: 0 24px 60px -28px rgba(15, 61, 42, 0.55);
}
.founding h2 { color: #fff; }
.founding a { color: #bfe3cd; }
.founding ul.checks li::before { background: rgba(127, 214, 164, 0.18); color: #7fd6a4; }
.founding .btn-secondary { background: transparent; color: #fff; border-color: #5da57f; }

/* FAQ */
details.faq {
  background: var(--papier-karte);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--schatten);
}
details.faq summary {
  cursor: pointer; font-weight: 700; font-size: 1.02rem;
  padding: 18px 48px 18px 20px;
  list-style: none; position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
details.faq[open] summary::after { content: "–"; }
details.faq[open] summary { border-bottom: 1px solid var(--border); }
details.faq .a { padding: 16px 20px; }

/* Formulare */
form.lead { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
form.lead input[type="email"], form.lead input[type="text"] {
  flex: 1 1 240px; padding: 14px 16px; font-size: 1rem;
  border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--weiss); font-family: var(--body); color: var(--ink);
}
form.lead input:focus { border-color: var(--gruen); }
.form-msg { font-size: 0.95rem; margin-top: 8px; min-height: 1.4em; }
.form-msg.ok { color: var(--gruen-dunkel); font-weight: 700; }
.form-msg.err { color: #a33a2a; font-weight: 700; }
input[type="date"], input[type="number"], select {
  padding: 13px 14px; font-size: 1rem; font-family: var(--body);
  border: 1.5px solid var(--border); border-radius: 12px; background: var(--weiss); color: var(--ink);
}

/* Footer */
footer.site { background: var(--tanne-tief); color: #b9cfc1; padding: 44px 0; font-size: 0.95rem; }
footer.site a { color: #e2efe7; }
footer.site .links { display: flex; gap: 8px 22px; flex-wrap: wrap; margin-bottom: 14px; }

.hinweis { font-size: 0.9rem; color: var(--ink-muted); }
.hero .hinweis, .founding .hinweis { color: #a9c9b6; }
.badge {
  display: inline-block; background: rgba(127, 214, 164, 0.15); color: #7fd6a4;
  border: 1px solid rgba(127, 214, 164, 0.4);
  font-weight: 700; font-size: 0.82rem; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
section .badge { background: var(--gruen-hell); color: var(--gruen-dunkel); border-color: var(--gruen); }

/* ── Selbsttest / Tools ─────────────────────────────────────────────────── */
.progress { height: 10px; background: var(--border); border-radius: 999px; margin: 18px 0 26px; overflow: hidden; }
.progress > div { height: 100%; background: var(--gruen); transition: width 0.3s; border-radius: 999px; }
.frage-optionen { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.frage-optionen button {
  text-align: left; padding: 16px 18px; font-size: 1.02rem;
  background: var(--weiss); color: var(--ink);
  border: 1.5px solid var(--border); border-radius: 12px;
  cursor: pointer; font-family: var(--body); font-weight: 600;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  box-shadow: var(--schatten);
}
.frage-optionen button:hover { border-color: var(--gruen); background: var(--gruen-hell); transform: translateY(-1px); }

.zeitstrahl { list-style: none; margin: 20px 0; padding-left: 26px; border-left: 3px solid var(--gruen); }
.zeitstrahl li { margin-bottom: 18px; position: relative; padding-left: 14px; }
.zeitstrahl li::before {
  content: ""; position: absolute; left: -35px; top: 5px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--gruen); border: 3px solid var(--gruen-hell);
}
.zeitstrahl .jahr { font-family: var(--display); font-weight: 800; color: var(--tanne); }

/* Hero-Varianten für Unterseiten: helle Bühne */
.hero.hell, section.hero.hell {
  background: var(--creme); color: var(--ink); padding: 64px 0 48px;
}
.hero.hell h1 { color: var(--ink); }
.hero.hell .sub { color: var(--ink-muted); }
.hero.hell .trust { color: var(--ink-muted); }
.hero.hell a { color: var(--gruen-dunkel); }
.hero.hell .btn-secondary { background: var(--weiss); color: var(--gruen-dunkel); border-color: var(--gruen); }
.hero.hell .hinweis { color: var(--ink-muted); }

@media (max-width: 760px) {
  section { padding: 48px 0; }
  .hero { padding: 56px 0 48px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 28px; }
  .belegstapel { min-height: 240px; max-width: 320px; margin: 0 auto; width: 100%; }
  .btn { width: 100%; }
}
@media print {
  header.site, footer.site, .btn, form.lead, .bruecke, .dropzone { display: none !important; }
  body { background: #fff; }
}

/* ── Motion (nur wenn Nutzer Bewegung erlaubt) ──────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  /* Hero: weicher, wandernder Lichtschein */
  .hero:not(.hell)::after {
    content: ""; position: absolute; inset: -30%;
    background: radial-gradient(640px circle at 72% 28%, rgba(127, 214, 164, 0.16), transparent 62%);
    animation: glowDrift 16s ease-in-out infinite alternate;
    pointer-events: none;
  }
  @keyframes glowDrift {
    from { transform: translate(0, 0); }
    to   { transform: translate(-6%, 5%); }
  }

  /* Belegstapel: Belege fliegen nacheinander ein, Stempel poppt, dann sanftes Schweben */
  @keyframes ein1 {
    from { opacity: 0; transform: translateX(-64%) rotate(-14deg) translateY(70px); }
    to   { opacity: 0.45; transform: translateX(-64%) rotate(-7deg) translateY(0); }
  }
  @keyframes ein2 {
    from { opacity: 0; transform: translateX(-42%) rotate(11deg) translateY(70px); }
    to   { opacity: 0.7; transform: translateX(-42%) rotate(4deg) translateY(0); }
  }
  @keyframes ein3 {
    from { opacity: 0; transform: translateX(-50%) rotate(-3deg) translateY(70px); }
    to   { opacity: 1; transform: translateX(-50%) rotate(0deg) translateY(0); }
  }
  .beleg-1 { animation: ein1 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
  .beleg-2 { animation: ein2 0.7s 0.35s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
  .beleg-3 { animation: ein3 0.7s 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
  @keyframes stempelPop {
    0%   { opacity: 0; transform: scale(0.3); }
    70%  { opacity: 1; transform: scale(1.12); }
    100% { opacity: 1; transform: scale(1); }
  }
  .beleg .stempel { animation: stempelPop 0.45s 1.25s cubic-bezier(0.34, 1.56, 0.64, 1) backwards; }
  @keyframes schweben {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
  }
  .belegstapel { animation: schweben 7s ease-in-out 2.2s infinite; }

  /* Scroll-Reveal (Klassen setzt /reveal.js) — Grundzustand SICHTBAR,
     die Einblendung ist eine reine Zugabe beim Betreten des Viewports */
  @keyframes hereinGleiten { from { opacity: 0; transform: translateY(26px); } }
  .reveal.sichtbar { animation: hereinGleiten 0.6s ease backwards; }

  /* Hero-Text: sanfter Auftritt */
  @keyframes auftritt { from { opacity: 0; transform: translateY(18px); } }
  .hero:not(.hell) h1 { animation: auftritt 0.6s 0.05s ease-out backwards; }
  .hero:not(.hell) .sub { animation: auftritt 0.6s 0.18s ease-out backwards; }
  .hero:not(.hell) .btn-groups { animation: auftritt 0.6s 0.3s ease-out backwards; }
  .hero:not(.hell) .trust { animation: auftritt 0.6s 0.42s ease-out backwards; }

  details.faq summary::after { transition: transform 0.2s ease, background 0.2s ease; }
  details.faq[open] summary::after { transform: translateY(-50%) rotate(180deg); }
  .preis-karte, .schritt { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .preis-karte:hover, .schritt:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(15,61,42,0.08), 0 18px 40px -16px rgba(15,61,42,0.25); }
}

/* ══ Premium-Schicht (2026-07-03): Agentur-Finish ═══════════════════════ */

::selection { background: var(--gruen); color: #fff; }

/* Eyebrow-Labels über Überschriften */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gruen); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gruen); border-radius: 2px; }
.hero .eyebrow { color: #7fd6a4; }
.hero .eyebrow::before { background: #7fd6a4; }

/* Feinkorn-Textur für dunkle Flächen */
.grain { position: relative; isolation: isolate; }
.grain::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

section { padding: 96px 0; }
.hero { padding: 96px 0 110px; }
@media (min-width: 761px) {
  .hero .wrap.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; }
  h1 { font-size: clamp(2.2rem, 5.6vw, 3.5rem); }
}

/* App-Mockup: Belegwart-Archiv als Produktfenster */
.app-fenster {
  background: #fdfdfc;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 30px 80px -20px rgba(0, 0, 0, 0.65),
    0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  color: var(--ink);
  font-size: 0.8rem;
  transform: rotate(1.2deg);
}
.app-titelleiste {
  display: flex; align-items: center; gap: 8px;
  background: #eef1ee; border-bottom: 1px solid var(--border);
  padding: 10px 14px; font-size: 0.72rem; color: var(--ink-muted);
}
.app-titelleiste .punkt { width: 10px; height: 10px; border-radius: 50%; }
.app-titelleiste .url {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 2px 12px; margin-left: 8px; font-weight: 600;
}
.app-kopf {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px 10px; border-bottom: 1px solid var(--border);
}
.app-kopf .titel { font-family: var(--display); font-weight: 700; font-size: 0.95rem; }
.app-kopf .chip {
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  font-weight: 700; font-size: 0.7rem; padding: 4px 10px; border-radius: 999px;
}
.app-zeile {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid #f0f2f0;
}
.app-zeile .doc {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.app-zeile .wer { font-weight: 600; }
.app-zeile .was { color: var(--ink-muted); font-size: 0.72rem; }
.app-zeile .summe { margin-left: auto; font-weight: 700; white-space: nowrap; }
.app-zeile .ok {
  color: var(--gruen-dunkel); background: var(--gruen-hell);
  border-radius: 999px; padding: 2px 9px; font-size: 0.68rem; font-weight: 700; white-space: nowrap;
}
.app-fuss {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; background: #f7f9f7; font-size: 0.72rem; color: var(--ink-muted);
}
.app-fuss .knopf {
  background: var(--gruen); color: #fff; border-radius: 8px;
  padding: 6px 12px; font-weight: 700; font-size: 0.72rem;
}
.mockup-buehne { position: relative; }
.mockup-buehne .beleg {
  width: 224px; font-size: 0.68rem; left: auto; right: -10px; top: auto; bottom: -34px;
  transform: rotate(-4deg); z-index: 3;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6);
}

/* Trust-Band unter dem Hero */
.trustband { background: var(--tanne-tief); color: #cfe3d6; padding: 0; }
.trustband .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 34px; padding-bottom: 34px;
  border-top: 1px solid rgba(127, 214, 164, 0.18);
}
.trustband .zahl {
  font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: #fff;
  letter-spacing: -0.01em; line-height: 1.1;
}
.trustband .label { font-size: 0.85rem; color: #a9c9b6; }

/* Feature-Kacheln */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature {
  background: var(--papier-karte); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--schatten); position: relative; overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gruen), transparent 70%);
  opacity: 0; transition: opacity 0.2s ease;
}
.feature:hover::after { opacity: 1; }
.feature .icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.feature p { margin-bottom: 0; font-size: 0.95rem; color: var(--ink-muted); }

/* Preis-Karte M: invertiert = Premium-Fokus */
.preis-karte.hervor {
  background: linear-gradient(165deg, var(--tanne) 0%, var(--tanne-tief) 100%);
  color: #e7f2ea; border: none;
  box-shadow: 0 28px 60px -24px rgba(15, 61, 42, 0.6);
}
.preis-karte.hervor .plan { color: #7fd6a4; }
.preis-karte.hervor .preis { color: #fff; }
.preis-karte.hervor .preis small, .preis-karte.hervor .hinweis { color: #a9c9b6; }
.preis-karte.hervor ul.checks li::before { background: rgba(127, 214, 164, 0.18); color: #7fd6a4; }
.preis-karte.hervor::before { background: #7fd6a4; color: var(--tanne-tief); }

/* Struktur-Footer */
footer.site { padding: 64px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #7fd6a4; margin-bottom: 14px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; font-size: 0.92rem; }
.footer-grid a { text-decoration: none; color: #cfe0d5; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-marke .logo { font-size: 1.4rem; }
.footer-marke p { color: #a9c9b6; font-size: 0.92rem; margin-top: 12px; max-width: 26em; }
.footer-unten {
  border-top: 1px solid rgba(127, 214, 164, 0.15);
  padding-top: 22px; font-size: 0.85rem; color: #8fa89a;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

@media (prefers-reduced-motion: no-preference) {
  /* Mockup-Zeilen treffen nacheinander ein — Belege kommen an */
  @keyframes zeileEin { from { opacity: 0; transform: translateX(26px); } }
  .app-zeile { animation: zeileEin 0.5s ease-out backwards; }
  .app-zeile:nth-child(1) { animation-delay: 0.7s; }
  .app-zeile:nth-child(2) { animation-delay: 0.9s; }
  .app-zeile:nth-child(3) { animation-delay: 1.1s; }
  .app-zeile:nth-child(4) { animation-delay: 1.3s; }
  @keyframes fensterEin { from { opacity: 0; transform: rotate(1.2deg) translateY(34px); } }
  .app-fenster { animation: fensterEin 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
  .mockup-buehne .beleg { animation: ein3 0.6s 1.5s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
  .mockup-buehne { animation: schweben 8s ease-in-out 2.6s infinite; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0 72px; }
  .trustband .wrap { grid-template-columns: 1fr; gap: 14px; }
  .mockup-buehne { max-width: 420px; margin: 0 auto; width: 100%; }
  .mockup-buehne .beleg { right: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Mobil-Härtung: nichts ragt je aus dem Viewport ─────────────────────── */
h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
p, li, summary, .betrifft, .hinweis { overflow-wrap: break-word; }
img, svg, video { max-width: 100%; height: auto; }
pre, code { overflow-wrap: anywhere; white-space: pre-wrap; }
body { overflow-x: clip; }

/* ══ Hochformat-Pass (2026-07-03): eigene Mobil-Komposition ═══════════════ */

/* Display-Typo: keine Auto-Silbentrennung (Umbrüche nur an &shy;) */
h1, h2, h3 { hyphens: manual; }

/* Hero-Grid mit benannten Bereichen */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: "copy mock" "actions mock";
  gap: 12px 56px;
  align-items: center;
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-actions { grid-area: actions; align-self: start; }
.mockup-buehne { grid-area: mock; }

/* Header: dezent haftend mit Blur (App-Gefühl) */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 61, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(127, 214, 164, 0.14);
}

@media (max-width: 760px) {
  /* Reihenfolge: Headline → Produkt → Handlung */
  .hero { padding: 40px 0 64px; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "mock" "actions";
    gap: 0;
  }
  h1 { font-size: clamp(1.9rem, 8.4vw, 2.3rem); }
  .hero .sub { font-size: 1.05rem; margin-top: 12px; }
  .mockup-buehne { margin: 30px auto 40px; max-width: 100%; }
  .app-fenster { transform: rotate(0.6deg); font-size: 0.76rem; }
  .mockup-buehne .beleg { width: 190px; right: 2px; bottom: -26px; font-size: 0.64rem; }
  .hero-actions .btn-groups { margin-top: 4px; }
  .hero .trust { font-size: 0.85rem; }

  /* Trust-Band: kompakte Zeilen mit Akzentkante statt Textwüste */
  .trustband .wrap { gap: 0; padding-top: 8px; padding-bottom: 8px; border-top: none; }
  .trustband .wrap > div {
    display: flex; align-items: baseline; gap: 12px;
    padding: 13px 0 13px 16px;
    border-left: 3px solid var(--gruen);
    margin: 8px 0;
  }
  .trustband .zahl { font-size: 1.25rem; white-space: nowrap; }
  .trustband .label { font-size: 0.82rem; line-height: 1.4; }

  /* Karten & Sektionen: mobile Polster */
  section { padding: 52px 0; }
  h2 { font-size: clamp(1.35rem, 6vw, 1.7rem); }
  .schritt { padding: 18px; gap: 14px; }
  .schritt .nr { flex-basis: 42px; height: 42px; font-size: 1.2rem; border-radius: 11px; }
  .feature { padding: 20px; }
  .feature .icon { width: 40px; height: 40px; font-size: 1.05rem; margin-bottom: 10px; }
  .preis-karte { padding: 24px 20px; }
  .preis-karte .preis { font-size: 2.1rem; }
  .founding { padding: 30px 22px; border-radius: 16px; }
  blockquote { padding: 14px 16px; }
  details.faq summary { padding: 15px 44px 15px 16px; font-size: 0.98rem; }
  details.faq .a { padding: 14px 16px; }
  form.lead { gap: 8px; }
  .btn { padding: 14px 20px; }
  .footer-grid { gap: 20px; }
  footer.site { padding: 44px 0 32px; }
}

/* SVG-Icon-Set (eigenes Stroke-Set, ersetzt Emojis) */
.ico {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  display: block;
}
.app-zeile .doc .ico { width: 16px; height: 16px; }

/* Leitfaden: PDF-Cover-Mockup */
.leitfaden-grid { max-width: 1020px; }
@media (min-width: 761px) {
  .leitfaden-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 56px; align-items: center; }
}
.pdf-buehne { position: relative; max-width: 330px; margin: 36px auto 0; }
.pdf-cover {
  position: relative; z-index: 3;
  aspect-ratio: 210 / 260;
  background: linear-gradient(165deg, var(--tanne) 0%, var(--tanne-tief) 100%);
  border-radius: 10px;
  box-shadow: 0 24px 60px -20px rgba(15, 61, 42, 0.55);
  color: #eef6f0;
  padding: 26px 24px;
  display: flex; flex-direction: column;
  transform: rotate(-2deg);
}
.pdf-logo { font-family: var(--display); font-weight: 800; font-size: 1rem; color: #fff; }
.pdf-logo span { color: #7fd6a4; }
.pdf-titel { font-family: var(--display); font-weight: 800; font-size: 1.55rem; line-height: 1.15; margin-top: auto; color: #fff; }
.pdf-sub { color: #a9c9b6; font-size: 0.9rem; margin-top: 8px; }
.pdf-linien { margin-top: 18px; }
.pdf-linien i { display: block; height: 6px; border-radius: 3px; background: rgba(127, 214, 164, 0.25); margin: 7px 0; }
.pdf-fuss { margin-top: 18px; font-size: 0.72rem; color: #7fa88f; border-top: 1px solid rgba(127,214,164,0.2); padding-top: 10px; }
.pdf-seite {
  position: absolute; inset: 0; z-index: 2;
  background: #fff; border-radius: 10px;
  box-shadow: 0 10px 30px -12px rgba(15, 61, 42, 0.3);
  transform: rotate(1.5deg) translate(8px, 6px);
}
.pdf-seite.zwei { z-index: 1; transform: rotate(4deg) translate(17px, 12px); background: #f2efe8; }
@media (prefers-reduced-motion: no-preference) {
  .pdf-buehne { animation: schweben 8s ease-in-out 1.5s infinite; }
}

/* Problem-Sektion mit Illustration */
.problem-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 761px) {
  .problem-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 48px; }
}
.problem-illu {
  width: 100%; height: auto; border-radius: var(--radius);
  box-shadow: var(--schatten);
}

/* ── Burger-Menü ────────────────────────────────────────────────────────── */
.burger {
  width: 44px; height: 44px; border: none; cursor: pointer;
  background: rgba(127, 214, 164, 0.12);
  border-radius: 10px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  margin-left: 8px;
}
.burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: #d9eadf;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger:hover { background: rgba(127, 214, 164, 0.22); }
.burger.offen span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.offen span:nth-child(2) { opacity: 0; }
.burger.offen span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menue {
  position: fixed; inset: 0; z-index: 100;
  background: linear-gradient(168deg, var(--tanne) 0%, var(--tanne-tief) 100%);
  color: #e7f2ea;
  padding: 18px 22px 44px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.menue.offen { opacity: 1; visibility: visible; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .menue { transition: none; transform: none; } }
.menue-kopf {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1020px; margin: 0 auto 30px;
}
.menue-zu {
  width: 44px; height: 44px; border: none; cursor: pointer;
  background: rgba(127, 214, 164, 0.12); color: #fff;
  border-radius: 10px; font-size: 1.15rem;
}
.menue-zu:hover { background: rgba(127, 214, 164, 0.22); }
.menue-grid {
  max-width: 1020px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px;
}
.menue-grid h4 {
  font-family: var(--body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #7fd6a4; margin-bottom: 14px;
}
.menue-grid ul { list-style: none; }
.menue-grid li { margin-bottom: 4px; }
.menue-grid a {
  display: block; padding: 9px 10px; margin-left: -10px;
  color: #eef6f0; text-decoration: none;
  font-size: 1.08rem; font-weight: 600; border-radius: 8px;
}
.menue-grid a:hover { background: rgba(127, 214, 164, 0.12); color: #fff; }

/* Zielgruppen-Illustration */
.zg-illu {
  width: 100%; height: auto; max-height: 380px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--schatten); margin: 10px 0 22px;
}
