/* ============================================================
   Airoflex – Shared Styles für Landing-/Unterseiten
   Identisches Design-System wie die Startseite (Tokens, Nav,
   Footer, Buttons) + Landing-Page-Komponenten. Eigenständig –
   keine Abhängigkeit von der Inline-CSS der index.html.
   ============================================================ */

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

:root {
  --bg:    #050C18;
  --bg2:   #081220;
  --bg3:   #0C1A2E;
  --blue:  #2563EB;
  --blue2: #3B82F6;
  --blue3: #60A5FA;
  --glow:  rgba(37,99,235,.4);
  --text:  #E8EEF7;
  --muted: #8B9CB6;
  --border: rgba(37,99,235,.18);
  --r: 14px;
  --r2: 22px;
  --maxw: 1380px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* Dezenter Atmosphäre-Glow im Hintergrund */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(37,99,235,.10), transparent 70%),
    radial-gradient(50% 50% at 0% 30%, rgba(96,165,250,.06), transparent 70%);
}

/* ── NAV ───────────────────────────── */
/* Nur die Hauptnavigation (#nav) ist fixiert – NICHT jedes <nav>,
   sonst würde z. B. die Breadcrumb-<nav> oben aufs Logo gepinnt. */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(5,12,24,.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 60px;
  border-bottom-color: var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--text); }
.logo-full-img { height: 38px; width: auto; }
.logo-full-img-lg { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: .88rem; font-weight: 500; letter-spacing: .015em;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--blue2); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 10px 22px !important; border-radius: 100px !important;
  font-weight: 600 !important; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { background: var(--blue2) !important; transform: translateY(-1px); box-shadow: 0 6px 24px var(--glow); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; background: transparent;
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer; padding: 0; z-index: 300;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .25s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; background: rgba(5,12,24,.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  z-index: 250; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity .35s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700;
  color: var(--muted); text-decoration: none; letter-spacing: -.025em; transition: color .2s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .nav-cta-mob { background: var(--blue); color: #fff !important; padding: 14px 40px; border-radius: 100px; font-size: 1.1rem; margin-top: 8px; }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px; background: transparent;
  border: 1px solid var(--border); border-radius: 10px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  font-size: 1.2rem; cursor: pointer; transition: color .2s, border-color .2s;
}
.nav-mobile-close:hover { color: var(--text); border-color: var(--blue); }

/* ── BUTTONS ───────────────────────── */
.btn-p, .btn-s {
  font-size: .97rem; font-weight: 700; text-decoration: none;
  border-radius: 100px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.btn-p { background: var(--blue); color: #fff; padding: 17px 38px; border: none; transition: background .2s, transform .25s, box-shadow .25s; }
.btn-p:hover { background: var(--blue2); transform: translateY(-3px); box-shadow: 0 12px 40px var(--glow); }
.btn-s { background: transparent; color: var(--text); padding: 16px 38px; border: 1px solid var(--border); transition: background .2s, border-color .2s, transform .25s; }
.btn-s:hover { background: rgba(37,99,235,.08); border-color: var(--blue2); transform: translateY(-3px); }

/* ── SECTION-HEADER ────────────────── */
.section-wrap { padding: 110px 60px; max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 5; }
.stag { display: inline-flex; align-items: center; gap: 10px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue3); margin-bottom: 22px; }
.stag::before { content: ''; display: block; width: 22px; height: 2px; background: var(--blue3); border-radius: 1px; }
.sh { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1.08; letter-spacing: -.035em; margin-bottom: 22px; }
.hl { background: linear-gradient(130deg, var(--blue2), var(--blue3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ss { font-size: 1.08rem; color: var(--muted); line-height: 1.75; max-width: 620px; }

/* ── HERO ──────────────────────────── */
.lp-hero { position: relative; z-index: 5; padding: 180px 60px 90px; max-width: var(--maxw); margin: 0 auto; }
.lp-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.lp-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 700; line-height: 1.04; letter-spacing: -.04em; margin-bottom: 26px; }
.lp-hero p.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 38px; }
.lp-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.lp-hero-aside {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 34px; position: relative; overflow: hidden;
}
.lp-hero-aside::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue3), transparent); }
.lp-hero-aside h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.lp-check { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.lp-check li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--muted); line-height: 1.5; }
.lp-check li::before { content: '✓'; color: var(--blue3); font-weight: 800; flex-shrink: 0; }

/* ── TRUST STRIP ───────────────────── */
.lp-trust { border-block: 1px solid var(--border); background: linear-gradient(to bottom, var(--bg), var(--bg2)); position: relative; z-index: 5; }
.lp-trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 36px 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.lp-stat .n { font-family: 'Space Grotesk', sans-serif; font-size: 2.1rem; font-weight: 700; letter-spacing: -.02em; }
.lp-stat .n span { color: var(--blue3); }
.lp-stat .l { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ── FEATURE-/BENTO-GRID ───────────── */
.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 30px; transition: transform .3s, border-color .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.lp-card:hover { transform: translateY(-6px); border-color: var(--blue2); box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.lp-card .ic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: rgba(37,99,235,.14); border: 1px solid var(--border); margin-bottom: 18px;
}
.lp-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.lp-card p { font-size: .92rem; color: var(--muted); line-height: 1.65; }

/* ── PROZESS-STEPS (Karten + Timeline) ──────── */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; position: relative; padding-top: 34px; }
/* Verbindungslinie durch die Kreis-Zentren, HINTER den Karten (nur in den Lücken sichtbar) */
.lp-steps::before, .lp-steps::after { content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; }
.lp-steps::before { background: var(--border); z-index: 0; }
.lp-steps::after {
  background: linear-gradient(90deg, var(--blue), var(--blue3));
  z-index: 0; transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1) .15s;
}
.lp-steps.in::after { transform: scaleX(1); }
/* Karte um jeden Schritt */
/* Animierte Rahmen-Eigenschaft (für das „Zeichnen" der blauen Umrandung) */
@property --bdr { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.lp-step {
  position: relative; z-index: 1;
  border: 1.5px solid transparent; border-radius: var(--r2);
  background:
    linear-gradient(var(--bg2), var(--bg2)) padding-box,
    conic-gradient(from -90deg, var(--blue2) var(--bdr), var(--border) var(--bdr)) border-box;
  padding: 46px 24px 28px; text-align: center;
  transition: box-shadow .35s ease;
}
/* Blaue Umrandung „zeichnet" sich beim Reveal – gestaffelt Karte 1 → 4 (Fluss) */
.lp-step.in { animation: drawBorder 1.3s cubic-bezier(.45,0,.25,1) forwards; }
.lp-step:nth-child(1).in { animation-delay: .15s; }
.lp-step:nth-child(2).in { animation-delay: .6s; }
.lp-step:nth-child(3).in { animation-delay: 1.05s; }
.lp-step:nth-child(4).in { animation-delay: 1.5s; }
.lp-step:hover { box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 0 1px var(--blue2); }
@keyframes drawBorder { from { --bdr: 0deg; } to { --bdr: 360deg; } }
/* Nummern-Kreis als Badge, mittig über der Kartenkante */
.lp-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -29px; left: 50%; transform: translateX(-50%);
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--blue3); background: var(--bg3); border: 1px solid var(--border); z-index: 3;
  transition: background .5s ease, color .5s ease, border-color .5s ease, transform .35s ease, box-shadow .5s ease;
}
.lp-step.in::before { background: linear-gradient(135deg, var(--blue), var(--blue3)); color: #fff; border-color: transparent; box-shadow: 0 8px 24px var(--glow); }
.lp-step:hover::before { transform: translateX(-50%) translateY(-4px) scale(1.05); }
.lp-step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.lp-step p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── SPLIT (Warum wir) ─────────────── */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.lp-why { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.lp-why li { display: flex; gap: 16px; align-items: flex-start; }
.lp-why .ic { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; background: rgba(37,99,235,.14); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.lp-why strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.lp-why span { font-size: .92rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ-ACCORDION ─────────────────── */
.lp-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.lp-faq details { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .25s; }
.lp-faq details[open] { border-color: var(--blue2); }
.lp-faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px; font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; font-size: 1.5rem; color: var(--blue3); transition: transform .25s; line-height: 1; }
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq .faq-a { padding: 0 26px 24px; color: var(--muted); font-size: .96rem; line-height: 1.7; }

/* ── CTA-BAND ──────────────────────── */
.lp-cta { position: relative; z-index: 5; max-width: var(--maxw); margin: 0 auto 110px; padding: 0 60px; }
.lp-cta-box {
  background: linear-gradient(135deg, var(--bg3), var(--bg2)); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 64px; text-align: center; position: relative; overflow: hidden;
}
.lp-cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(37,99,235,.16), transparent 60%); pointer-events: none; }
.lp-cta-box h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 16px; position: relative; }
.lp-cta-box p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; position: relative; }
.lp-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── BREADCRUMB ────────────────────── */
.lp-crumb { max-width: var(--maxw); margin: 0 auto; padding: 0 60px; position: relative; z-index: 5; }
.lp-crumb ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.lp-crumb a { color: var(--muted); text-decoration: none; }
.lp-crumb a:hover { color: var(--text); }
.lp-crumb li:not(:last-child)::after { content: '›'; margin-left: 8px; color: var(--blue3); }
.lp-crumb [aria-current] { color: var(--blue3); }

/* ── DIVIDER ───────────────────────── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0 60px; position: relative; z-index: 5; }

/* ── FOOTER ────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 72px 60px 40px; position: relative; z-index: 5; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: var(--muted); font-size: .86rem; line-height: 1.75; margin-top: 18px; max-width: 280px; }
.footer-col h4 { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { color: var(--muted); font-size: .86rem; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { color: var(--muted); font-size: .8rem; line-height: 1.55; }
.footer-bottom p span { color: var(--blue3); }

/* ── RESPONSIVE ────────────────────── */
@media (max-width: 1100px) {
  #nav, #nav.scrolled { padding-left: 32px; padding-right: 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-wrap { padding: 80px 32px; }
  .lp-hero { padding: 140px 32px 70px; }
  .lp-trust-inner, footer { padding-left: 32px; padding-right: 32px; }
  .lp-cta, .lp-crumb { padding-left: 32px; padding-right: 32px; }
  .divider { margin: 0 32px; }
  .lp-hero-grid, .lp-split { grid-template-columns: 1fr; gap: 44px; }
  .lp-grid, .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .section-wrap { padding: 64px 20px; }
  .lp-hero { padding: 120px 20px 56px; }
  .lp-hero h1, .sh { hyphens: manual; overflow-wrap: break-word; }
  .lp-hero p.lead, .ss, .lp-card p, .lp-step p, .lp-why span, .faq-a { hyphens: manual; overflow-wrap: break-word; }
  .lp-trust-inner { grid-template-columns: 1fr 1fr; gap: 22px; padding: 28px 20px; }
  .lp-grid, .lp-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .lp-cta-box { padding: 40px 24px; }
  .lp-cta, .lp-crumb { padding-left: 20px; padding-right: 20px; }
  .divider { margin: 0 20px; }
  .lp-hero-btns, .lp-cta-btns { width: 100%; }
  .lp-hero-btns a, .lp-cta-btns a { flex: 1; justify-content: center; }
}
/* ── ENTRANCE & SCROLL ANIMATIONS ──────────────────────────────────
   Anfangszustände greifen NUR wenn JS aktiv ist (.js auf <html>).
   Ohne JS bleibt alles sichtbar → Google + Fallback sehen den Inhalt. */
.js .section-wrap .stag,
.js .section-wrap .sh,
.js .section-wrap .ss,
.js .lp-trust .lp-stat,
.js .lp-grid .lp-card,
.js .lp-steps .lp-step,
.js .lp-faq details,
.js .lp-why li,
.js .lp-cta-box {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.js .in { opacity: 1 !important; transform: none !important; }

/* Hero: gestaffelter Auftritt beim Laden */
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.js .lp-hero .stag         { animation: heroRise .7s cubic-bezier(.16,1,.3,1) both; }
.js .lp-hero h1            { animation: heroRise .75s .08s cubic-bezier(.16,1,.3,1) both; }
.js .lp-hero .lead         { animation: heroRise .75s .18s cubic-bezier(.16,1,.3,1) both; }
.js .lp-hero .lp-hero-btns { animation: heroRise .75s .28s cubic-bezier(.16,1,.3,1) both; }
.js .lp-hero-aside         { animation: heroRise .85s .34s cubic-bezier(.16,1,.3,1) both; }

/* FAQ-Antwort sanft einblenden */
.lp-faq details[open] .faq-a { animation: faqIn .35s cubic-bezier(.16,1,.3,1) both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Card: Akzentlinie + Icon-Lift beim Hover */
.lp-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue3), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.lp-card:hover::after { transform: scaleX(1); }
.lp-card .ic { transition: transform .3s ease, background .3s ease; }
.lp-card:hover .ic { transform: translateY(-3px) scale(1.04); }

/* Hand-gezeichnete Unterstreichung (kräftiges Lila #7c3aed), klar UNTER den
   Wörtern (überdeckt keine Unterlängen). Bewegung wie aus einem Stift:
   oberer Strich links→rechts, dann unterer Strich rechts→zurück nach links. */
.mark {
  position: relative; display: inline-block; isolation: isolate;
  background: linear-gradient(130deg, var(--blue2), var(--blue3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mark::before, .mark::after {
  content: ''; position: absolute; pointer-events: none; z-index: -1;
  background-repeat: no-repeat; background-position: center; background-size: 100% 100%;
  transform: scaleX(0);
}
/* Oberer Strich: volle Breite, zeichnet von LINKS nach rechts */
.mark::before {
  left: -.04em; right: -.04em; bottom: -.08em; height: .09em;
  transform-origin: left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'%3E%3Cpath d='M4,5 Q100,2 196,4' fill='none' stroke='%237c3aed' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  transition: transform .6s cubic-bezier(.22,1,.36,1) .2s;
}
/* Unterer Strich: etwas kürzer, zeichnet von RECHTS zurück nach links (startet erst danach) */
.mark::after {
  left: 14%; right: -.02em; bottom: -.19em; height: .08em;
  transform-origin: right;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 8' preserveAspectRatio='none'%3E%3Cpath d='M4,4 Q85,2 166,5' fill='none' stroke='%237c3aed' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  transition: transform .5s cubic-bezier(.22,1,.36,1) .8s;
}
.in .mark::before, .in .mark::after { transform: scaleX(1); }
.js .lp-hero .mark::before { animation: markDraw .6s cubic-bezier(.22,1,.36,1) .55s both; }
.js .lp-hero .mark::after  { animation: markDraw .5s cubic-bezier(.22,1,.36,1) 1.15s both; }
@keyframes markDraw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Prozess-Schritte mobil: gestapelte Karten mit Badge-Kreis oben */
@media (max-width: 760px) {
  .lp-steps { grid-template-columns: 1fr; gap: 46px; padding-top: 34px; }
  .lp-steps::before, .lp-steps::after { display: none; }
}

/* Primär-Button: Pfeil-Nudge */
.btn-p svg { transition: transform .25s ease; }
.btn-p:hover svg { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .001s !important;
    animation-duration: .001s !important;
    scroll-behavior: auto !important;
  }
  /* Reveal-Ziele dauerhaft sichtbar bei reduzierter Bewegung */
  .js .section-wrap .stag, .js .section-wrap .sh, .js .section-wrap .ss,
  .js .lp-trust .lp-stat, .js .lp-grid .lp-card, .js .lp-steps .lp-step,
  .js .lp-faq details, .js .lp-why li, .js .lp-cta-box,
  .js .lp-hero .stag, .js .lp-hero h1, .js .lp-hero .lead,
  .js .lp-hero .lp-hero-btns, .js .lp-hero-aside {
    opacity: 1 !important; transform: none !important;
  }
  .lp-steps::after, .mark::before, .mark::after { transform: scaleX(1) !important; }
  .lp-step { --bdr: 360deg !important; }
  .lp-step.in { animation-delay: 0s !important; }
}
