/* ─────────────────────────────────────────────────────────────────────────
   Landing Page (index.php, ehemals index_v9.php) — übernimmt die Preis-/
   Vertrauens-Bausteine von index_v8.php (früher style_lp_v5.css, archiviert
   in public/old/), im Design-System des app-shell-Redesigns (1:1 Token-Set
   aus css/style_production.css).

   Vollständig eigenständig — kein style_app.css-Link mehr auf index.php
   (seit 2026-07-21, davor u.a. für die Cookie-Consent-Box geladen, die jetzt
   ebenfalls hier unten definiert ist). Da damit keine Kollisionsgefahr mehr
   mit style_app.css-Klassen (`.hero`, `.btn`, `.burger`,
   `.calc-row`/`.calc-line`/`.calc-summary`, `.contact-form`/`.form-row`,
   `.int-card`, `.pricing-note`, `.step-num` usw.) besteht, wurde das
   ehemalige `v6-`-Präfix (analog `v4-`/`v5-` bei index_v7/index_v8) entfernt
   — Klassennamen sind jetzt kurz. Scoping-Wurzel ist `body.lp-page` (ehemals
   `body.v6-page`) + ein gezielter `button`-Reset, der alle Basis-Elemente
   aus einem etwaigen globalen Reset herausholt, statt einzelne Properties
   mit `!important` zu überschreiben.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --ground: #f5f7fa; --surface: #ffffff; --surface-2: #eef1f6;
  --ink: #161b24; --ink-2: #56616f; --ink-3: #8a94a3;
  --border: #e2e7ee; --border-strong: #cfd6e0;
  --blue: #2f66d0; --blue-soft: #e7eefb;
  --gold: #b3822b; --gold-soft: #f6ecd6;
  --good: #2b9466; --good-soft: #e2f2ea;
  --warn: #c67d1e; --warn-soft: #f8ecd8;
  --danger: #c0392b; --danger-soft: #fbeceb;
  --wire: #dfe4ec;
  --shadow: 0 1px 2px rgba(20,27,40,.04), 0 8px 24px rgba(20,27,40,.05);
  --shadow-lg: 0 4px 10px rgba(20,27,40,.06), 0 16px 32px rgba(20,27,40,.08);
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --navh: 64px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0d1017; --surface: #151a23; --surface-2: #1c222e;
    --ink: #eaeef4; --ink-2: #9aa5b4; --ink-3: #6b7686;
    --border: #262d3a; --border-strong: #333c4c;
    --blue: #5f8ef0; --blue-soft: #16233c; --gold: #e0a94a; --gold-soft: #2e2510;
    --good: #48b587; --good-soft: #12271d; --warn: #dd9a3c; --warn-soft: #2c220f;
    --danger: #e0605a; --danger-soft: #2c1614; --wire: #232a36;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 30px rgba(0,0,0,.35);
    --shadow-lg: 0 4px 14px rgba(0,0,0,.35), 0 20px 40px rgba(0,0,0,.4);
  }
}
:root[data-theme="light"] {
  --ground:#f5f7fa; --surface:#fff; --surface-2:#eef1f6; --ink:#161b24; --ink-2:#56616f; --ink-3:#8a94a3;
  --border:#e2e7ee; --border-strong:#cfd6e0; --blue:#2f66d0; --blue-soft:#e7eefb; --gold:#b3822b; --gold-soft:#f6ecd6;
  --good:#2b9466; --good-soft:#e2f2ea; --warn:#c67d1e; --warn-soft:#f8ecd8; --danger:#c0392b; --danger-soft:#fbeceb; --wire:#dfe4ec;
}
:root[data-theme="dark"] {
  --ground:#0d1017; --surface:#151a23; --surface-2:#1c222e; --ink:#eaeef4; --ink-2:#9aa5b4; --ink-3:#6b7686;
  --border:#262d3a; --border-strong:#333c4c; --blue:#5f8ef0; --blue-soft:#16233c; --gold:#e0a94a; --gold-soft:#2e2510;
  --good:#48b587; --good-soft:#12271d; --warn:#dd9a3c; --warn-soft:#2c220f; --danger:#e0605a; --danger-soft:#2c1614; --wire:#232a36;
}

body.lp-page { margin: 0; padding: 0; background: var(--ground); color: var(--ink); font-family: var(--sans);
  line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.lp-page, .lp-page *, .lp-page *::before, .lp-page *::after { box-sizing: border-box; }
.lp-page h1, .lp-page h2, .lp-page h3, .lp-page h4 { text-wrap: balance; margin: 0; letter-spacing: -.01em; }
.lp-page p { margin: 0; }
.lp-page a { color: var(--blue); text-decoration: none; }
.lp-page svg { display: block; flex-shrink: 0; }
.lp-page ul { margin: 0; padding: 0; list-style: none; }
.lp-page :focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
/* Löst style_app.css `button { width:100%; border:1px solid ...; background:...; }` ab */
.lp-page button { all: unset; box-sizing: border-box; display: inline-flex; align-items: center;
  justify-content: center; cursor: pointer; font-family: inherit; }

.lp-page .w { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.lp-page .wm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.lp-page .eyebrow {
  display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); padding: 5px 12px; border-radius: 999px;
}
.lp-page .sec { padding-top: 96px; padding-bottom: 96px; border-top: 1px solid var(--border); }
.lp-page .sec:first-of-type { border-top: none; }
.lp-page .ctr { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 56px; }
.lp-page .h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 660; max-width: 34ch; }
.lp-page .lead { color: var(--ink-2); font-size: 1.05rem; max-width: 46ch; }

.lp-page .btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 640; font-size: .92rem;
  padding: 12px 22px; border-radius: 9px; border: none; cursor: pointer;
  transition: background .15s ease, opacity .15s ease, transform .1s ease; }
.lp-page .btn:active { transform: scale(.98); }
.lp-page .btn.primary { background: var(--blue); color: #fff; }
.lp-page .btn.primary:hover { background: #2856b3; }
.lp-page .btn.gold { background: var(--gold); color: #fff; }
.lp-page .btn.gold:hover { background: #96701f; }
.lp-page .btn.ghost { background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--ink-2); }
.lp-page .btn.ghost:hover { background: var(--border); }
.lp-page .btn.lg { padding: 14px 26px; font-size: .98rem; }
.lp-page .btn > svg { width: 16px; height: 16px; }

.lp-page .card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); }

.lp-page .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.lp-page .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .lp-page .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Nav ─────────────────────────────────────────────────── */
.lp-page .nav-wire {
  position: sticky; top: 0; z-index: 500; display: flex; align-items: center; gap: 20px;
  justify-content: space-between;
  height: var(--navh); padding: 0 24px; background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
}
.lp-page .nlogo { font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); flex-shrink: 0; }
.lp-page .nlogo span { color: var(--blue); }
.lp-page .nlinks { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.lp-page .nl { font-size: .86rem; font-weight: 500; color: var(--ink-2); padding: 8px 13px; border-radius: 7px;
  background: none; border: none; cursor: pointer; }
.lp-page .nl:hover { color: var(--ink); background: var(--surface-2); }
.lp-page .nactions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lp-page .nlogin { font-size: .86rem; font-weight: 600; color: var(--ink-2); background: none; border: none; cursor: pointer; padding: 8px 6px; }
.lp-page .nlogin:hover { color: var(--ink); }
/* Burger-Icon: 3 echte Spans + Transform-Animation zum X, gleiches Pattern wie
   index_v7.php (.v4-burger.open span:nth-child(...)) statt der vorherigen
   ::before/::after-Pseudoelement-Variante. */
.lp-page .burger { display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border-strong);
  background: var(--surface); cursor: pointer; }
.lp-page .burger span { display: block; width: 16px; height: 2px; background: var(--ink-2);
  border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.lp-page .burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lp-page .burger.open span:nth-child(2) { opacity: 0; }
.lp-page .burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Ein einziger Umschaltpunkt statt eines Gedränge-Zwischenzustands: unter 900px
   verschwindet nicht nur die Link-Leiste, sondern auch Login + CTA-Button komplett
   aus der Nav-Zeile (beide leben identisch in der Drawer weiter) — sonst bliebe
   "Login" als einzelner, unstyled Text neben dem Burger stehen. 900px statt der
   früheren 1180px, weil die Nav-Leiste seit der Reduktion auf 5 Links (statt 8)
   gemessen nur noch ~840px ungewrappt benötigt. */
@media (max-width: 900px) {
  .lp-page .nlinks { display: none; }
  .lp-page .nlogin { display: none; }
  .lp-page .nactions .btn.primary.desk-only { display: none; }
  .lp-page .burger { display: flex; }
}
.lp-page .drawer { position: fixed; inset: var(--navh) 0 0 0; background: var(--surface); z-index: 490;
  transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  display: flex; flex-direction: column; padding: 10px 20px 24px; gap: 2px; }
.lp-page .drawer.open { opacity: 1; transform: none; pointer-events: auto; }
.lp-page .drawer .nl { justify-content: flex-end; text-align: right; width: 100%; padding: 12px 10px; font-size: .96rem; }
.lp-page .drawer .sep { height: 1px; background: var(--border); margin: 8px 0; }

/* ── Hero (Video-Hintergrund, wie index_v8.php) ─────────────── */
.lp-page .hero {
  position: relative; overflow: hidden; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: calc(var(--navh) + 3rem) 24px 4rem; text-align: center; background: var(--ink);
}
.lp-page .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1.0; pointer-events: none; }
.lp-page .hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,16,23,.35) 0%, rgba(13,16,23,.78) 100%); pointer-events: none; }
.lp-page .hero > *:not(.hero-video):not(.hero-overlay):not(.hero-scrolldown) { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .lp-page .hero-video { display: none; } }
/* Mobile: min-height muss var(--navh) abziehen, exakt wie beim Desktop-Fix weiter unten
   (Zeile ~177) — .nav-wire steht VOR .hero im Dokumentenfluss und beansprucht ihre
   64px bereits reguär, ein zusätzliches 100svh auf der Hero-Box selbst zählt sie doppelt.
   Ohne diesen Abzug ragt die Hero-Box (und mit ihr das Hintergrundvideo) permanent 64px
   über die untere Sichtkante hinaus — Ursache für "Video zu hoch, Scroll-Hinweis nicht
   sichtbar" auf Mobile-Hochkant. */
@media (max-width: 640px) { .lp-page .hero { min-height: calc(100svh - var(--navh)); padding: calc(var(--navh) + 2rem) 16px 3rem; } }

/* Desktop: Hero verzichtet auf volle Bildschirmhöhe, damit der Stat-Streifen direkt
   darunter beim Laden ohne Scrollen sichtbar ist (Platz wird geteilt statt dass
   Hero allein 100svh beansprucht). 156px ≈ gemessene Höhe von .stats-inner
   (Padding 26px oben/unten + Zahl + zweizeiliges Label, einreihiges 4er-Grid),
   var(--navh) weil die sticky Nav trotzdem eigenen Platz im Dokumentenfluss
   beansprucht (100svh deckt nur den Viewport, nicht Nav+Hero+Stats zusammen).
   Padding-Top verzichtet hier bewusst auf die var(--navh)-Reservierung der
   Basisregel (die war für ein Overlay über einer fixed Nav gedacht — .nav-wire
   ist aber sticky und nimmt ihre 64px bereits regulär im Dokumentenfluss ein,
   die zusätzliche Reservierung in der Hero-Box selbst wäre doppelt gezählt).
   Gleicher Breakpoint (901px) wie die bestehende Nav-Umschaltung oben. */
@media (min-width: 901px) {
  .lp-page .hero {
    min-height: calc(100svh - var(--navh) - 156px);
    padding: 2rem 24px 2rem;
  }
}

.lp-page .hero-tag { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 650;
  color: #fff; background: rgba(255,255,255,.14); padding: 6px 13px 6px 10px; border-radius: 999px; margin-bottom: 1.6rem; }
.lp-page .hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.lp-page .hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 700; line-height: 1.1; color: #fff; max-width: 18ch; margin: 0 auto; }
.lp-page .hero h1 em { font-style: normal; color: #8fb0ef; }
.lp-page .hero-sub { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 52ch; margin: 1.3rem auto 0; }
.lp-page .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 1.8rem; }
.lp-page .hero .btn.ghost { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; }
.lp-page .hero .btn.ghost:hover { background: rgba(255,255,255,.2); }
.lp-page .hero-trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 1.6rem; }
.lp-page .hero-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.85); font-weight: 550; }
.lp-page .hero-trust svg { color: #6ee7b7; }

/* Scroll-Down-Hinweis: nur auf Mobile-Hochkant nötig, wo der Hero (anders als
   Desktop/Landscape seit den obigen Fixes) weiterhin die volle 100svh belegt
   und dadurch nichts vom Stat-Streifen ins erste Sichtfeld hereinragt — ohne
   diesen Hinweis ist auf einem One-Pager nicht erkennbar, dass es weitergeht. */
.lp-page .hero-scrolldown { display: none; }
@media (max-width: 640px) and (orientation: portrait) {
  /* position:fixed statt absolute: .hero hat auf Mobile bewusst
     min-height:100svh, liegt aber NACH der eigenen, separat 64px hohen
     .nav-wire im Dokumentenfluss — die Hero-Box selbst reicht dadurch
     technisch 64px über den sichtbaren Viewport hinaus. Ein an der Hero-Box
     verankertes "bottom:16px" (position:absolute) würde deshalb unsichtbar
     unterhalb der Faltkante landen. Fixed löst das, indem es sich am
     tatsächlichen Viewport statt an der Box orientiert; JS blendet es aus,
     sobald #hero aus dem Sichtfeld scrollt (siehe IntersectionObserver). */
  .lp-page .hero-scrolldown {
    display: flex; align-items: center; justify-content: center;
    position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
    width: 32px; height: 32px; z-index: 50;
    background: none; border: none;
    color: rgba(255,255,255,.85); cursor: pointer; animation: scrolldown-bounce 1.8s ease-in-out infinite;
    opacity: 1; transition: opacity .2s ease;
  }
  .lp-page .hero-scrolldown.is-hidden { opacity: 0; pointer-events: none; }
  .lp-page .hero-scrolldown:hover { color: #fff; }
}
@keyframes scrolldown-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (prefers-reduced-motion: reduce) { .lp-page .hero-scrolldown { animation: none; } }

/* Kurze Desktop-Viewports (z.B. 1366×768/1280×768-Laptops): Hero-Inhalt selbst
   (Tag+Headline+Sub+Buttons+Trust-Zeile) ist bei üblichen Abständen bereits
   ca. 510px hoch — bei 768px Viewporthöhe bleibt nach Nav+Stats kaum noch
   Padding-Budget übrig. Trust-Zeile hier ausblenden + Abstände straffen,
   analog zum bestehenden Mobil-Quer-Pattern weiter unten (max-height statt
   max-width), damit der Stat-Streifen auch auf diesen Auflösungen ohne
   Scrollen sichtbar bleibt. Muss NACH den Basisregeln oben stehen (gleiche
   Spezifität, sonst gewinnt bei Kaskaden-Gleichstand die spätere Regel). */
@media (min-width: 901px) and (max-height: 860px) {
  .lp-page .hero-tag { margin-bottom: .9rem; }
  .lp-page .hero-sub { margin-top: .9rem; }
  .lp-page .hero-btns { margin-top: 1.1rem; }
  .lp-page .hero-trust { display: none; }
}

/* Mobil quer (kurze Bildschirmhöhe): Hero teilt sich die Höhe mit dem Stat-
   Streifen (gleiches calc(100svh - ...)-Prinzip wie beim Desktop-Fix weiter
   oben) statt wie zuvor per "min-height: auto" nur auf den eigenen Inhalt zu
   schrumpfen — dadurch ragt der Streifen jetzt auch in Landscape ins erste
   Sichtfeld, UND die Formel skaliert automatisch mit der tatsächlichen
   Gerätehöhe (320–480px), statt bei jeder Höhe gleich viel/wenig Luft zu
   lassen. Nur EIN Budget nötig (~90px) statt vorher zwei Breiten-Tiers, weil
   der Stat-Streifen dank des Fixes weiter unten (Grid bleibt in Landscape
   einzeilig statt auf 2 Zeilen umzubrechen) jetzt breitenunabhängig konstant
   ~85px hoch ist — genau das hatte vorher die Quetsch-Optik verursacht.
   Sub-Text/Vertrauens-Zeile entfallen weiterhin, Überschrift bleibt kompakt.
   Portrait/Desktop bleiben von dieser Regel unberührt. Muss NACH den
   Basisregeln oben stehen: gleiche Spezifität, sonst gewinnt bei Kaskaden-
   Gleichstand die spätere unconditional Regel wieder. */
@media (max-height: 480px) and (orientation: landscape) {
  .lp-page .hero { min-height: calc(100svh - var(--navh) - 90px); padding: .75rem 20px; }
  .lp-page .hero-tag { margin-bottom: .6rem; }
  .lp-page .hero h1 { font-size: clamp(1.1rem, 2.6vw, 1.4rem); max-width: 46ch; line-height: 1.2; }
  .lp-page .hero-sub { display: none; }
  .lp-page .hero-trust { display: none; }
  .lp-page .hero-btns { margin-top: .8rem; }
  .lp-page .hero-btns .btn { padding: 9px 16px; font-size: .82rem; }
}

/* ── Stat strip: 4 eigene, belegbare Produktfakten (keine unbelegten
   Branchenzahlen mehr — siehe Git-Historie: "Quelle folgt" stand hier von
   Anfang an ohne Quelle). Reihenfolge: Risiko raus (€0) → Tempo (15 Min.)
   → Qualität (4K) → Auswahl (15 Kamerafahrten) — deckt die drei größten
   Kaufeinwände (Preis/Zeit/Qualität) plus den breitesten Feature-Vorteil. */
.lp-page .stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.lp-page .stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.lp-page .stat { padding: 12px; text-align: center; border-left: 1px solid var(--border); }
.lp-page .stat:first-child { border-left: none; }
.lp-page .stat-num { font-family: var(--mono); font-size: 1.6rem; font-weight: 700; color: var(--blue); font-variant-numeric: tabular-nums; }
.lp-page .stat-label { font-size: .8rem; color: var(--ink-2); margin-top: 4px; line-height: 1.4; }
@media (max-width: 800px) and (min-width: 481px) { .lp-page .stats-inner { grid-template-columns: 1fr 1fr; } .lp-page .stat:nth-child(even) { border-left: none; } .lp-page .stat:nth-child(1), .lp-page .stat:nth-child(2) { border-bottom: 1px solid var(--border); } }
@media (max-width: 480px) { .lp-page .stats-inner { grid-template-columns: 1fr; } .lp-page .stat { border-left: none; border-top: 1px solid var(--border); } .lp-page .stat:first-child { border-top: none; } }

/* Landscape-Mobile: Stats bleiben einzeilig (schmalere Spalten statt Umbruch
   auf 2 Zeilen wie im Hochformat/Tablet-Breakpoint oben) — in Querformat ist
   die Höhe der Engpass, nicht die Breite. 2 Zeilen würden den Hero darüber
   unnötig weit zusammenquetschen (Ursache des Screenshot-Problems). Muss
   NACH den beiden Regeln oben stehen, um deren Spalten-Umbruch zu gewinnen. */
@media (max-height: 480px) and (orientation: landscape) {
  .lp-page .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .lp-page .stat { border-left: 1px solid var(--border); border-bottom: none; padding: 10px 8px; }
  .lp-page .stat:first-child { border-left: none; }
  .lp-page .stat-num { font-size: 1.15rem; }
  .lp-page .stat-label { font-size: .68rem; }
}

/* ── How it works ────────────────────────────────────────── */
.lp-page .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 800px) { .lp-page .steps { grid-template-columns: 1fr; } }
.lp-page .step-card { padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.lp-page .step-top { display: flex; align-items: center; gap: 12px; }
.lp-page .step-num { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: .82rem;
  font-weight: 700; color: var(--ink-2); flex-shrink: 0; }
.lp-page .step-ico { color: var(--blue); }
.lp-page .step-card h3 { font-size: 1.02rem; font-weight: 650; }
.lp-page .step-card p { color: var(--ink-2); font-size: .9rem; }

/* ── Pricing / calculator ────────────────────────────────── */
.lp-page .pricing-note { text-align: center; color: var(--ink-2); font-size: .86rem; margin-top: 28px; }
.lp-page .pricing-note button { background: none; border: none; color: var(--blue); font: inherit; cursor: pointer; text-decoration: underline; }

.lp-page .calc-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; }
@media (max-width: 860px) { .lp-page .calc-grid { grid-template-columns: 1fr; } }
.lp-page .calc-card { padding: 26px 28px; }
.lp-page .calc-card h3 { font-size: .96rem; font-weight: 650; margin-bottom: 18px; }
.lp-page .calc-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; padding: 14px 0; border-top: 1px solid var(--border); }
.lp-page .calc-row > div:first-child { flex: 1 1 200px; min-width: 0; }
.lp-page .calc-row:first-of-type { border-top: none; padding-top: 0; }
.lp-page .calc-row-label { font-size: .88rem; font-weight: 560; }
.lp-page .calc-row-sub { font-size: .76rem; color: var(--ink-3); margin-top: 2px; }
.lp-page .stepper { display: flex; align-items: center; gap: 10px; }
.lp-page .stepper button { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--border-strong);
  background: var(--surface-2); color: var(--ink); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lp-page .stepper button:hover { background: var(--border); }
.lp-page .stepper output { font-family: var(--mono); font-weight: 700; min-width: 26px; text-align: center; font-variant-numeric: tabular-nums; }
.lp-page .qual-toggle { display: inline-flex; border: 1px solid var(--border-strong); border-radius: 9px; padding: 3px; gap: 3px; background: var(--surface-2); }
.lp-page .qual-opt { border: none; background: none; padding: 7px 13px; border-radius: 6px; font-size: .8rem; font-weight: 640; color: var(--ink-2); cursor: pointer; }
.lp-page .qual-opt.active { background: var(--surface); box-shadow: var(--shadow); color: var(--ink); }
.lp-page .qual-opt.active.premium { color: var(--gold); }
.lp-page .qual-opt .spark { width: 11px; height: 11px; vertical-align: -1px; margin-right: 3px; }
.lp-page .toggle-pill { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.lp-page .toggle-pill input { display: none; }
.lp-page .toggle-track { width: 36px; height: 21px; border-radius: 999px; background: var(--border-strong); position: relative; transition: background .15s ease; flex-shrink: 0; }
.lp-page .toggle-track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 17px; height: 17px; border-radius: 50%; background: var(--surface); transition: transform .15s ease; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.lp-page .toggle-pill input:checked + .toggle-track { background: var(--blue); }
.lp-page .toggle-pill input:checked + .toggle-track::after { transform: translateX(15px); }

.lp-page .calc-summary { background: var(--surface-2); }
.lp-page .calc-line { display: flex; justify-content: space-between; font-size: .86rem; padding: 8px 0; color: var(--ink-2); }
.lp-page .calc-line span:last-child { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--ink); }
.lp-page .calc-line.dim { opacity: .45; }
.lp-page .calc-div { height: 1px; background: var(--border); margin: 10px 0; }
.lp-page .calc-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 4px; }
.lp-page .calc-total .lbl { font-size: .92rem; font-weight: 650; }
.lp-page .calc-total .val { font-family: var(--mono); font-size: 1.9rem; font-weight: 700; letter-spacing: -.02em; }
.lp-page .calc-foot { font-size: .78rem; color: var(--ink-3); margin-top: 16px; line-height: 1.5; }

/* ── Example videos: Vorher-Nachher (Fotos → Video), wie marton.ai ────── */
.lp-page .ex-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 940px) { .lp-page .ex-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-page .ex-grid { grid-template-columns: 1fr; } }
.lp-page .ex-card { overflow: hidden; }
.lp-page .ex-source-label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); padding: 12px 14px 0; }
.lp-page .ex-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 8px 14px 0; }
.lp-page .ex-photo { aspect-ratio: 1; border-radius: 6px; position: relative; overflow: hidden; }
.lp-page .ex-photo svg { position: absolute; inset: 0; margin: auto; width: 14px; height: 14px; color: rgba(255,255,255,.8); }
.lp-page .ex-photo.p1 { background: linear-gradient(140deg,#7590c9,#425c8f); }
.lp-page .ex-photo.p2 { background: linear-gradient(140deg,#8fa5b8,#4c6070); }
.lp-page .ex-photo.p3 { background: linear-gradient(140deg,#9ea8a0,#5c6a5e); }
.lp-page .ex-arrow { display: flex; align-items: center; justify-content: center; padding: 8px 0; color: var(--ink-3); gap: 6px; font-size: .68rem; font-weight: 650; text-transform: uppercase; letter-spacing: .04em; }
.lp-page .ex-video { position: relative; aspect-ratio: 16/10; margin: 0 14px; border-radius: 8px; overflow: hidden; }
.lp-page .ex-video.v1 { background: linear-gradient(155deg,#5f7aa8,#2c3c5c); }
.lp-page .ex-video.v2 { background: linear-gradient(155deg,#3a3f52,#161b24); }
.lp-page .ex-badge { position: absolute; top: 8px; left: 8px; font-size: .64rem; font-weight: 700; padding: 3px 8px;
  border-radius: 999px; background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(3px); }
.lp-page .ex-badge--premium { background: var(--gold); display: inline-flex; align-items: center; gap: 3px; }
.lp-page .ex-badge--premium svg { width: 8px; height: 8px; }
.lp-page .ex-play { position: absolute; inset: 0; margin: auto; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.lp-page .ex-play svg { width: 12px; height: 12px; margin-left: 2px; }
.lp-page .ex-body { padding: 10px 14px 16px; }
.lp-page .ex-body h4 { font-size: .88rem; font-weight: 650; }
.lp-page .ex-body p { font-size: .78rem; color: var(--ink-3); margin-top: 3px; }

/* ── Bento features ──────────────────────────────────────── */
.lp-page .bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(150px, auto); gap: 18px; }
@media (max-width: 820px) { .lp-page .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-page .bento { grid-template-columns: 1fr; } }
.lp-page .bcard { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.lp-page .bcard.wide { grid-column: span 2; }
@media (max-width: 560px) { .lp-page .bcard.wide { grid-column: span 1; } }
.lp-page .bcard.accent { background: var(--blue-soft); border-color: transparent; }
.lp-page .bcard.dark { background: var(--ink); color: var(--ground); border-color: transparent; }
.lp-page .bcard.dark .b-p { color: color-mix(in srgb, var(--ground) 62%, transparent); }
.lp-page .b-ico { width: 38px; height: 38px; border-radius: 9px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.lp-page .bcard.accent .b-ico { background: rgba(255,255,255,.55); }
.lp-page .bcard.dark .b-ico { background: rgba(255,255,255,.1); color: var(--gold); }
.lp-page .b-h { font-size: 1rem; font-weight: 650; }
.lp-page .b-p { font-size: .86rem; color: var(--ink-2); }
.lp-page .b-bignum { font-family: var(--mono); font-size: 2.1rem; font-weight: 700; line-height: 1; }
.lp-page .b-bignum small { font-size: 1.1rem; opacity: .55; font-weight: 600; }

/* ── Integrations ────────────────────────────────────────── */
.lp-page .int-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 800px) { .lp-page .int-grid { grid-template-columns: 1fr; } }
.lp-page .int-card { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.lp-page .int-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.lp-page .int-card h3 { font-size: .98rem; font-weight: 650; }
.lp-page .int-card p { font-size: .86rem; color: var(--ink-2); }

/* ── Product preview strip ───────────────────────────────── */
.lp-page .pv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .lp-page .pv-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.lp-page .pv-card { overflow: hidden; }
.lp-page .pv-shot { aspect-ratio: 16/10; background: var(--surface-2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; padding: 18px; }
.lp-page .pv-shot svg { width: 100%; height: 100%; }
.lp-page .pv-body { padding: 18px 20px 20px; }
.lp-page .pv-step { font-family: var(--mono); font-size: .72rem; font-weight: 700; color: var(--blue); letter-spacing: .04em; }
.lp-page .pv-body h3 { font-size: .96rem; font-weight: 650; margin-top: 6px; }
.lp-page .pv-body p { font-size: .85rem; color: var(--ink-2); margin-top: 5px; }

/* ── Tutorials ───────────────────────────────────────────── */
.lp-page .tut-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 940px) { .lp-page .tut-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-page .tut-grid { grid-template-columns: 1fr; } }
.lp-page .tut-card { overflow: hidden; cursor: pointer; border: 1px solid var(--border); transition: box-shadow .18s ease, transform .18s ease; }
.lp-page .tut-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.lp-page .tut-thumb { position: relative; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.lp-page .tut-thumb.u1 { background: linear-gradient(155deg,#6f8fc9,#38507e); }
.lp-page .tut-thumb.u2 { background: linear-gradient(155deg,#c99a6f,#7e5738); }
.lp-page .tut-thumb.u3 { background: linear-gradient(155deg,#7ec98d,#3c7e4e); }
.lp-page .tut-thumb.u4 { background: linear-gradient(155deg,#2b3550,#161b24); }
.lp-page .tut-play { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.22); transition: transform .15s ease; }
.lp-page .tut-play svg { width: 13px; height: 13px; margin-left: 2px; }
.lp-page .tut-card:hover .tut-play { transform: scale(1.08); }
.lp-page .tut-body { padding: 14px 16px 16px; }
.lp-page .tut-step { font-family: var(--mono); font-size: .7rem; font-weight: 700; color: var(--blue); letter-spacing: .04em; }
.lp-page .tut-body h3 { font-size: .92rem; font-weight: 650; margin-top: 5px; }
.lp-page .tut-body p { font-size: .8rem; color: var(--ink-2); margin-top: 4px; }

.lp-page .vid-overlay { position: fixed; inset: 0; background: rgba(13,16,23,.82); z-index: 800; display: flex;
  align-items: center; justify-content: center; padding: 32px; opacity: 0; pointer-events: none; transition: opacity .18s ease; }
.lp-page .vid-overlay.open { opacity: 1; pointer-events: auto; }
.lp-page .vid-modal { position: relative; width: 100%; max-width: 780px; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; color: #fff; text-align: center; }
.lp-page .vid-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 1.8rem;
  cursor: pointer; line-height: 1; opacity: .8; }
.lp-page .vid-close:hover { opacity: 1; }
.lp-page .vid-modal.u1 { background: linear-gradient(155deg,#6f8fc9,#38507e); }
.lp-page .vid-modal.u2 { background: linear-gradient(155deg,#c99a6f,#7e5738); }
.lp-page .vid-modal.u3 { background: linear-gradient(155deg,#7ec98d,#3c7e4e); }
.lp-page .vid-modal.u4 { background: linear-gradient(155deg,#2b3550,#161b24); }
.lp-page .vid-modal h3 { font-size: 1.15rem; font-weight: 680; }
.lp-page .vid-modal .tut-play { width: 54px; height: 54px; }
.lp-page .vid-modal .tut-play svg { width: 18px; height: 18px; }
.lp-page .vid-modal p { color: rgba(255,255,255,.7); font-size: .86rem; max-width: 40ch; }
body.tut-vid-open { overflow: hidden; }

/* ── Social Proof: ehrlicher Leer-Zustand statt erfundener Testimonials
   (noch keine echten Referenzkunden) ─────────────────────────────────── */
.lp-page .proof-empty { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--surface); border: 1px dashed var(--border-strong); border-radius: 16px; padding: 44px 32px; }
.lp-page .proof-empty-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.lp-page .proof-empty .btn { margin-top: 6px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.lp-page .faq-list { display: flex; flex-direction: column; gap: 10px; }
.lp-page .faq-item { border-radius: 12px; border: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.lp-page .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 20px;
  font-size: .94rem; font-weight: 620; cursor: pointer; }
.lp-page .faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--surface-2); color: var(--ink-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.05rem; transition: transform .2s ease, background .2s ease; }
.lp-page .faq-item.open .faq-icon { background: var(--blue-soft); color: var(--blue); transform: rotate(45deg); }
.lp-page .faq-body { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.lp-page .faq-item.open .faq-body { max-height: 240px; }
.lp-page .faq-body p { padding: 0 20px 18px; font-size: .88rem; color: var(--ink-2); }

/* ── CTA strip ───────────────────────────────────────────── */
.lp-page .cta-strip { background: var(--ink); color: var(--ground); padding: 72px 24px; text-align: center; }
.lp-page .cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 660; max-width: 30ch; margin: 0 auto; }
.lp-page .cta-strip p { color: color-mix(in srgb, var(--ground) 65%, transparent); margin-top: 12px; font-size: 1rem; }
.lp-page .cta-strip .btn { margin-top: 24px; }
.lp-page .cta-strip .btn.primary { box-shadow: 0 10px 30px rgba(47,102,208,.3); }
.lp-page .cta-note { font-size: .78rem; color: color-mix(in srgb, var(--ground) 50%, transparent); margin-top: 14px; }

/* ── Contact ─────────────────────────────────────────────── */
.lp-page .contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
@media (max-width: 780px) { .lp-page .contact-grid { grid-template-columns: 1fr; } }
.lp-page .contact-info h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 660; }
.lp-page .contact-info p { color: var(--ink-2); margin-top: 12px; font-size: .95rem; }
.lp-page .contact-meta { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; font-size: .9rem; }
.lp-page .contact-meta strong { font-weight: 650; }
.lp-page .field { display: flex; flex-direction: column; gap: 6px; }
.lp-page .field label { font-size: .8rem; font-weight: 620; color: var(--ink-2); }
.lp-page .inp { font-family: inherit; font-size: .92rem; padding: 11px 13px; border-radius: 9px;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--ink); width: 100%; }
.lp-page .inp:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.lp-page .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .lp-page .form-row { grid-template-columns: 1fr; } }
.lp-page .contact-form { display: flex; flex-direction: column; gap: 14px; }

/* ── Footer ──────────────────────────────────────────────── */
.lp-page .footer { border-top: 1px solid var(--border); padding: 26px 24px; }
.lp-page .footer-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: .82rem; color: var(--ink-3); }
.lp-page .footer-inner .nlogo { font-size: .92rem; }
.lp-page .footer-links { display: flex; gap: 18px; }
.lp-page .footer-links a { color: var(--ink-3); }
.lp-page .footer-links a:hover { color: var(--ink); }

/* ── Modals (1:1 aus dem app-shell-Redesign übernommen: .pconfirm/.pcd-*-Klassen
   aus style_production.css/style_projects.css, hier als .pmodal-* benannt um
   nicht mit dem generischen .modal-*-System aus script_modal.js zu kollidieren,
   das auf anderen Seiten noch geladen wird). Bewusst OHNE Opacity-Transition
   und OHNE Body-Scroll-Lock — genau wie im Redesign: reines display:none⇄flex über
   die .open-Klasse, kein `_lockScroll()`/`body.modal-open`. Das war der Auslöser des
   "Scroll geht nach dem Schließen nicht mehr"-Bugs im alten script_modal.js-System
   (body.classList blieb unter bestimmten Bedingungen hängen) — hier durch Verzicht
   auf jeglichen Scroll-Lock von vornherein vermieden, nicht "repariert". ── */
.lp-page .pmodal-overlay { display: none; position: fixed; inset: 0; z-index: 1150; background: rgba(10,12,16,.55); align-items: center; justify-content: center; padding: 20px; }
.lp-page .pmodal-overlay.open { display: flex; }
.lp-page .pmodal-box { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 26px 26px 22px; width: 100%; max-width: 400px; max-height: 88vh; overflow-y: auto; position: relative; }
.lp-page .pmodal-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 8px; border: none; background: var(--surface-2); color: var(--ink-2); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; line-height: 1; }
.lp-page .pmodal-close:hover { background: var(--border); color: var(--ink); }
.lp-page .pmodal-box h2 { font-size: 1.1rem; font-weight: 660; margin: 0 0 16px; padding-right: 30px; }
.lp-page .pmodal-box form { display: flex; flex-direction: column; gap: 4px; }
.lp-page .pmodal-box label { font-size: .8rem; font-weight: 620; color: var(--ink); margin: 10px 0 4px; }
.lp-page .pmodal-box label:first-of-type { margin-top: 0; }
.lp-page .pmodal-box input[type="text"],
.lp-page .pmodal-box input[type="email"],
.lp-page .pmodal-box input[type="password"] {
  font: inherit; font-size: .9rem; padding: 10px 12px; border-radius: 8px;
  border: 1.5px solid var(--border-strong); background: var(--surface); color: var(--ink); width: 100%;
}
.lp-page .pmodal-box input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
/* style_app.css definiert ein globales, unscoped `.error{display:none}`/`.success{display:none}`
   (altes System, das per JS .style.display umschaltet) — hier explizit auf block gesetzt, sonst
   blieben Fehler-/Erfolgstexte unsichtbar, egal was per JS in .textContent geschrieben wird. */
.lp-page .pmodal-box .error { display: block; font-size: .82rem; color: var(--danger); min-height: 1.1em; margin: 2px 0 6px; padding: 0; background: none; border-radius: 0; text-align: left; }
.lp-page .pmodal-box .error:empty { display: block; margin: 0; min-height: 0; }
.lp-page .pmodal-box .success { display: block; font-size: .84rem; color: var(--good); font-weight: 640; margin: 2px 0 6px; padding: 0; background: none; border-radius: 0; text-align: left; }
.lp-page .pmodal-box .success:empty { display: none; }
.lp-page .pmodal-box .btn.primary { justify-content: center; margin-top: 14px; }
.lp-page .pmodal-box .modal-link { display: inline-block; margin-top: 12px; font-size: .84rem; color: var(--blue); text-align: center; cursor: pointer; }
.lp-page .pmodal-box .modal-link:hover { text-decoration: underline; }
.lp-page .agb-check a { color: var(--blue); }
.lp-page .agb-check input[type="checkbox"] { accent-color: var(--blue); }
/* Fehlte bisher komplett in dieser Datei (nie portiert, nicht durch das
   v6-Stripping verursacht) — ohne eigene Regel fällt der reCAPTCHA-Pflichthinweis
   auf die normale Fließtextgröße zurück statt als Fine-Print zu erscheinen. */
.lp-page .recaptcha-notice { font-size: .74rem; color: var(--ink-3); margin-top: 8px; }
.lp-page .recaptcha-notice a { color: inherit; text-decoration: underline; }
/* reCAPTCHA v3 zeigt sonst ein fixed Badge unten rechts — durch obigen
   Pflicht-Hinweistext ersetzt (Google-Vorgabe: Badge darf ausgeblendet werden,
   wenn der Hinweis stattdessen sichtbar bei der geschützten Aktion steht).
   Gleiches Muster wie style_legal.css/style_app.css, unscoped da Google das
   Badge direkt an <body> hängt. */
.grecaptcha-badge { visibility: hidden !important; }

/* ── Modal-Register: 2-Spalten-Paar (gleiches Pattern wie style_lp_v4.css) ── */
.lp-page .v4-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0 .75rem; }

/* ── Cookie-Consent-Banner (consent.php) — 1:1 aus style_legal.css übernommen,
   damit index.php ohne style_app.css auskommt (einziger echter Grund, warum
   die Datei bisher zusätzlich geladen wurde). ──────────────────────────── */
.lp-page #consent-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; display: none; justify-content: center; padding: 16px; }
.lp-page .consent-box { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); max-width: 400px; width: 100%; padding: 18px; border-radius: 12px; text-align: center; }
.lp-page .consent-box h2 { font-size: 1rem; margin-bottom: 8px; }
.lp-page .consent-box p { font-size: .8rem; color: var(--ink-2); margin-bottom: 16px; line-height: 1.5; }
.lp-page .consent-actions { display: flex; justify-content: center; gap: 10px; }
.lp-page .consent-actions button { padding: 8px 16px; font-size: .86rem; border: none; border-radius: 8px; cursor: pointer; font-weight: 620; }
.lp-page .consent-actions .accept { background: var(--good); color: #fff; }
.lp-page .consent-actions .accept:hover { background: #227a55; }
.lp-page .consent-actions .deny { background: var(--surface-2); color: var(--ink-2); }
.lp-page .consent-actions .deny:hover { background: var(--border); }
