/* ═══════════════════════════════════════════════════════════
   avui.io – Verkaufs-Landingpage /sale  |  style.css
   CI: #6E2654 (primary) · #993371 (accent) · #F4F4F4 (bg)
   Marke 1:1 von avui.io. Poppins + Richmond Display.
═══════════════════════════════════════════════════════════ */

/* ── 1. FONTS ── */
@font-face { font-family:'Poppins'; src:url('assets/fonts/Poppins-Regular.woff2') format('woff2');  font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Poppins'; src:url('assets/fonts/Poppins-Medium.woff2') format('woff2');   font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Poppins'; src:url('assets/fonts/Poppins-SemiBold.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Poppins'; src:url('assets/fonts/Poppins-Bold.woff2') format('woff2');     font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Richmond Display'; src:url('assets/fonts/Richmond-Display-Italic.woff2') format('woff2'); font-weight:400; font-style:italic; font-display:swap; }

/* ── 2. TOKENS ── */
:root {
  --primary:   #6E2654;
  --primary-900:#3f1330;
  --accent:    #993371;
  --accent-100:#f3e3ee;
  --gradient:  linear-gradient(135deg, #6E2654 0%, #993371 100%);
  --gradient-hero: linear-gradient(150deg, #5a1f45 0%, #6E2654 48%, #973270 100%);
  --bg:        #F4F4F4;
  --white:     #FFFFFF;
  --black:     #000000;
  --text:      #1A1A1A;
  --muted:     #666666;
  --border:    #E2E2E2;
  --ok:        #16A34A;
  --err:       #DC2626;

  --font:      'Poppins', system-ui, -apple-system, sans-serif;
  --font-deco: 'Richmond Display', Georgia, serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(110,38,84,.18);

  --trans: 200ms ease;

  --fs-body: 1.05rem;   /* 16.8px – Standard-Copy */
  --fs-meta: 0.9rem;    /* 14.4px – Labels, Captions, Footer */

  --container: 1200px;

  /* CMS-Token-Vertrag (Namen fix fürs avui-Ökosystem) */
  --radius-md-cms: 14px;
}

/* ── 3. RESET ── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { -webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:88px; }
body {
  font-family:var(--font);
  font-size:var(--fs-body);
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
html.nav-open, body.nav-open { overflow:hidden; }
img, svg { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; color:inherit; }
input, textarea, select { appearance:none; -webkit-appearance:none; font-family:inherit; font-size:1rem; }
textarea { resize:vertical; }
:focus-visible { outline:3px solid var(--accent); outline-offset:2px; border-radius:4px; }

/* ── 4. LAYOUT & UTILS ── */
.container { width:100%; max-width:var(--container); margin-inline:auto; padding-inline:1.25rem; }
.hidden { display:none !important; }
.visually-hidden {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.skip-link {
  position:absolute; left:1rem; top:-3rem; z-index:1000;
  background:var(--white); color:var(--primary); padding:.6rem 1rem;
  border-radius:var(--radius-sm); font-weight:600; box-shadow:var(--shadow-md);
  transition:top var(--trans);
}
.skip-link:focus { top:1rem; }

/* ── 5. SCROLL REVEAL ── */
[data-reveal] { opacity:0; transform:translateY(22px); }
[data-reveal].is-visible {
  opacity:1; transform:none;
  transition:opacity .5s ease .05s, transform .5s ease .05s;
}
[data-reveal][data-delay="80"].is-visible  { transition-delay:.14s; }
[data-reveal][data-delay="160"].is-visible { transition-delay:.22s; }
[data-reveal][data-delay="240"].is-visible { transition-delay:.3s; }

@keyframes heroUp    { from{opacity:0; transform:translateY(20px);} to{opacity:1; transform:none;} }
@keyframes floatA    { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
@keyframes floatB    { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
@keyframes floatC    { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-13px);} }
@keyframes orbPulse  { 0%,100%{opacity:.55; transform:scale(1);} 50%{opacity:.8; transform:scale(1.12);} }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(255,210,74,.55);} 70%{box-shadow:0 0 0 8px rgba(255,210,74,0);} 100%{box-shadow:0 0 0 0 rgba(255,210,74,0);} }

@media (prefers-reduced-motion: reduce) {
  * { animation:none !important; scroll-behavior:auto !important; }
  [data-reveal], [data-reveal].is-visible { opacity:1; transform:none; transition:none; }
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAFIE-GRUNDGERÜST
═══════════════════════════════════════════════════════════ */
h1,h2,h3,h4 { font-weight:700; line-height:1.15; letter-spacing:-.01em; }
h1 em, h2 em, .section-title em, .hero-headline em {
  font-family:var(--font-deco); font-style:italic; font-weight:400;
  font-size:110%; display:inline-block;
  padding:0.12em 0.3em 0.05em 0.1em; margin:-0.12em -0.2em -0.05em -0.1em;
  letter-spacing:0; color:var(--accent);
}
p { text-wrap:pretty; }
strong { font-weight:600; }

/* ── SEKTIONS-SHELL (bewusst variierender Rhythmus – Anti-KI) ── */
.section { padding-block:4.5rem; }
.section--tight { padding-block:3rem; }
.section--roomy { padding-block:6.5rem; }
.section--bg    { background:var(--bg); }
.section--white { background:var(--white); }
.section--dark  { position:relative; overflow:hidden; background:#0e0e0e; color:var(--white); }
.section--dark .section-desc { color:rgba(255,255,255,.62); }
.section--dark .section-title { color:var(--white); }
.section--dark .section-title em {
  background:linear-gradient(135deg,#d46aab 0%,#f0a0cc 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
/* dezente Orbs für dunkle Sektionen */
.section--dark .dark-orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; z-index:0; }
.section--dark .dark-orb--a { width:520px; height:520px; background:radial-gradient(circle, rgba(153,51,113,.26) 0%, transparent 70%); top:-180px; right:-120px; }
.section--dark .dark-orb--b { width:420px; height:420px; background:radial-gradient(circle, rgba(110,38,84,.24) 0%, transparent 70%); bottom:-180px; left:-100px; }
.section--dark .container { position:relative; z-index:1; }

.section-head { max-width:640px; margin-bottom:2.75rem; }
.section-head--center { margin-inline:auto; text-align:center; }
.section-head--wide { max-width:900px; }
.section-eyebrow {
  display:inline-block; font-size:.75rem; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; color:var(--accent);
  margin-bottom:.6rem;
}
.section--dark .section-eyebrow { color:#f0c9e2; }
.section-title { font-size:clamp(1.75rem, 4vw, 2.5rem); line-height:1.2; margin-bottom:.75rem; }
.section-desc  { color:var(--muted); font-size:var(--fs-body); }
.section-head--center .section-desc { margin-inline:auto; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  font-weight:600; font-size:1rem; line-height:1; text-align:center;
  padding:.95rem 1.75rem; border-radius:100px; min-height:48px;
  transition:transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  touch-action:manipulation; cursor:pointer;
}
.btn svg { width:20px; height:20px; flex:none; }
.btn-primary { background:var(--gradient); color:var(--white); box-shadow:var(--shadow-lg); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 12px 34px rgba(110,38,84,.28); }
.btn-primary .arrow { transition:transform var(--trans); }
.btn-primary:hover .arrow { transform:translateX(4px); }

.btn-secondary { background:var(--white); color:var(--primary); border:1.5px solid var(--border); }
.btn-secondary:hover { border-color:var(--accent); color:var(--accent); }

/* Auf dunklem Hero/Sektion */
.btn-on-dark { background:var(--white); color:var(--primary); box-shadow:0 10px 30px rgba(0,0,0,.22); }
.btn-on-dark:hover { transform:translateY(-2px); }
.btn-ghost-dark { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.55); }
.btn-ghost-dark:hover { border-color:#fff; background:rgba(255,255,255,.08); }

.btn-block { width:100%; }

/* ═══════════════════════════════════════════════════════════
   HEADER (reduziert: Logo + 1 CTA, sticky, kein Menü)
═══════════════════════════════════════════════════════════ */
.site-header {
  position:fixed; top:1.1rem; left:50%; transform:translateX(-50%); z-index:200;
  width:min(1300px, calc(100vw - 2rem));
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,.13); border-radius:100px;
  transition:background var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.site-header .header-inner {
  display:flex; align-items:center; gap:2rem;
  padding-block:.7rem; padding-inline:.7rem .8rem; padding-left:1.6rem;
  max-width:1200px; margin-inline:auto;
}
.header-logo { display:inline-flex; align-items:center; margin-right:auto; }
.header-logo img { height:30px; width:auto; }
.header-logo .logo-on-light { display:none; }
.header-logo .logo-on-dark  { display:block; }

.site-header.light {
  background:rgba(255,255,255,.93); border-color:rgba(0,0,0,.07);
  box-shadow:0 2px 24px rgba(0,0,0,.08);
}
.site-header.light .logo-on-light { display:block; }
.site-header.light .logo-on-dark  { display:none; }
/* Header-CTA in normaler Button-Größe (wie alle anderen Buttons) */
.header-cta { box-shadow:none; white-space:nowrap; }
.header-cta:hover { box-shadow:var(--shadow-lg); transform:none; }

/* ═══════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position:relative; overflow:hidden;
  background:#0e0e0e; color:var(--white);
  padding-top:8.5rem; padding-bottom:4.5rem;
}
.hero-orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; }
.hero-orb--1 { width:680px; height:680px; background:radial-gradient(circle, rgba(153,51,113,.30) 0%, transparent 70%); top:-220px; right:-140px; animation:orbPulse 8s ease-in-out infinite; }
.hero-orb--2 { width:460px; height:460px; background:radial-gradient(circle, rgba(110,38,84,.28) 0%, transparent 70%); bottom:-200px; left:-120px; animation:orbPulse 11s ease-in-out 2s infinite; }
.hero-inner { position:relative; z-index:1; display:grid; gap:2.5rem; }

.hero-badge-scarcity {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.85); font-size:var(--fs-meta); font-weight:500;
  padding:.5rem .9rem; border-radius:999px; margin-bottom:1.4rem;
  animation:heroUp .5s ease .05s both;
}
.hero-badge-scarcity .dot { width:8px; height:8px; border-radius:50%; background:#ffd24a; flex:none; animation:livePulse 2s ease-out infinite; }
.hero-headline { font-size:clamp(2rem, 5vw, 3.25rem); line-height:1.15; margin-bottom:1.1rem; animation:heroUp .5s ease .16s both; }
.hero-headline em {
  font-size:110%;
  background:linear-gradient(135deg,#d46aab 0%,#f0a0cc 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.hero-sub { font-size:1.15rem; line-height:1.6; color:rgba(255,255,255,.62); max-width:34em; animation:heroUp .5s ease .28s both; }
.hero-points { display:flex; flex-direction:column; gap:.6rem; margin-top:1.5rem; animation:heroUp .5s ease .34s both; }
.hero-points li { display:flex; align-items:center; gap:.65rem; color:rgba(255,255,255,.82); font-size:1rem; }
.hero-points svg { width:20px; height:20px; flex:none; color:#e58bc0; }
.hero-ctas { display:flex; flex-wrap:wrap; gap:.9rem; margin-top:1.6rem; animation:heroUp .5s ease .42s both; }

/* Hero-Formular-Card */
.hero-form { animation:heroUp .5s ease .3s both; scroll-margin-top:100px; }
.hero-form .form-card { box-shadow:0 24px 60px rgba(0,0,0,.45); }
.hero-form-head { margin-bottom:1.05rem; }
.hero-form-head h2 { font-size:1.35rem; }
.hero-form-head p { font-size:var(--fs-meta); color:var(--muted); margin-top:.3rem; }
.hero-form .field { margin-bottom:.55rem; }
.hero-form .field label { margin-bottom:.3rem; }
.hero-form .field input { padding:.68rem 1rem; }
.hero-form .field-error { min-height:0; }
.hero-form .field-error:not(:empty) { margin-top:.3rem; }
.hero-form-head { margin-bottom:.9rem; }
.hero-form-foot { display:flex; align-items:center; gap:.65rem; margin-top:1.1rem; padding-top:1.05rem; border-top:1px solid var(--border); }
.hero-form-foot img { width:38px; height:38px; border-radius:50%; object-fit:cover; flex:none; }
.hero-form-foot span { font-size:var(--fs-meta); color:var(--muted); }

/* Trust-Punkte im dunklen Hero (Trenner darüber) */
.hero-trust { margin-top:3rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,.12); }
.hero-trust-list { display:flex; flex-wrap:wrap; gap:1.25rem 2rem; }
.hero-trust-list li { display:flex; align-items:center; gap:.7rem; flex:1 1 210px; min-width:0; }
.ht-icon { width:38px; height:38px; flex:none; border-radius:10px; display:grid; place-items:center; background:rgba(153,51,113,.22); color:#e58bc0; }
.ht-icon svg { width:20px; height:20px; }
.ht-text { display:flex; flex-direction:column; min-width:0; }
.ht-text b { color:#fff; font-size:.98rem; font-weight:600; line-height:1.2; }
.ht-text > span { color:rgba(255,255,255,.6); font-size:var(--fs-meta); }

/* ═══════════════════════════════════════════════════════════
   2. PAIN POINT
═══════════════════════════════════════════════════════════ */
.problem-grid { display:grid; gap:1.25rem; }
.problem-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:1.6rem; box-shadow:var(--shadow-sm);
}
.problem-icon { display:grid; place-items:center; width:46px; height:46px; border-radius:12px; background:var(--accent-100); color:var(--accent); margin-bottom:1.1rem; }
.problem-icon svg { width:24px; height:24px; }
.problem-card h3 { font-size:1.2rem; margin-bottom:.6rem; }
.problem-card p { color:var(--muted); }

/* ═══════════════════════════════════════════════════════════
   4. LIVE-DEMOS (Herzstück)
═══════════════════════════════════════════════════════════ */
/* 50/50-Split: links Text-Intro, rechts drei Demo-Zeilen (dunkle Kästen) */
.demos-split { display:grid; gap:2.5rem; }
.demos-list { display:flex; flex-direction:column; gap:1.1rem; }

.demo-row {
  display:grid; grid-template-columns:1fr auto; grid-template-areas:"img img" "body btn";
  align-items:center; gap:.75rem 1rem;
  background:#0e0e0e; border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg);
  padding:.9rem; box-shadow:0 12px 34px rgba(14,14,14,.22); color:inherit;
  transition:transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.demo-row:hover { transform:translateY(-3px); box-shadow:0 18px 44px rgba(14,14,14,.34); border-color:rgba(153,51,113,.45); }

.demo-row-img { grid-area:img; width:100%; aspect-ratio:16/7; border-radius:10px; overflow:hidden; background:#201d24; }
.demo-row-img img { width:100%; height:100%; object-fit:cover; object-position:top center; }

.demo-row-body { grid-area:body; min-width:0; display:flex; flex-direction:column; gap:.25rem; }
.demo-branche { font-size:var(--fs-meta); font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:#e58bc0; }
.demo-row-title { font-size:1.1rem; font-weight:700; color:#fff; line-height:1.2; }
.demo-row-copy { font-size:var(--fs-meta); color:rgba(255,255,255,.6); line-height:1.45; }

.demo-row-btn {
  grid-area:btn; position:relative; flex:none; width:48px; height:48px; border-radius:50%;
  display:grid; place-items:center; color:#fff; border:1.5px solid rgba(255,255,255,.25);
  transition:background var(--trans), border-color var(--trans), transform var(--trans);
}
.demo-row-btn svg { width:20px; height:20px; }
.demo-row:hover .demo-row-btn { background:var(--gradient); border-color:transparent; }
/* Tooltip beim Hovern des Buttons */
.demo-row-btn::after {
  content:attr(data-tooltip); position:absolute; bottom:calc(100% + 10px); right:0;
  background:var(--white); color:var(--text); font-size:.72rem; font-weight:600; white-space:nowrap;
  padding:.4rem .65rem; border-radius:8px; box-shadow:var(--shadow-md);
  opacity:0; transform:translateY(4px); pointer-events:none; transition:opacity var(--trans), transform var(--trans);
}
.demo-row-btn:hover::after { opacity:1; transform:none; }

/* ═══════════════════════════════════════════════════════════
   5. PAKETE & ANGEBOT
═══════════════════════════════════════════════════════════ */
.pakete-hint { text-align:center; max-width:56ch; margin:0 auto 2rem; color:var(--muted); font-size:var(--fs-meta); }
.pakete-row { display:grid; gap:1.25rem; margin-bottom:2.5rem; }
.pakete-plus { display:flex; align-items:center; justify-content:center; font-size:2.4rem; font-weight:300; color:var(--muted); line-height:1; }
/* Basis-Kachel: bewusst unscheinbar, blendet in den Hintergrund */
.paket--basis { background:transparent; border:1px dashed var(--border); box-shadow:none; }
.paket--basis .paket-name { margin-bottom:.5rem; }
.paket--basis .paket-features { margin-bottom:0; flex:none; }
.paket--basis .paket-features svg { color:var(--muted); }
.paket-basis-tag {
  align-self:flex-start; font-size:.72rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:var(--muted); background:var(--white); border:1px solid var(--border);
  padding:.2rem .6rem; border-radius:999px; margin-bottom:.85rem;
}
.paket {
  position:relative; background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:2rem 1.75rem; box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
}
.paket--featured { border:2px solid var(--accent); box-shadow:var(--shadow-lg); }
.paket-badge {
  position:absolute; top:-13px; left:1.75rem; background:var(--gradient); color:#fff;
  font-size:var(--fs-meta); font-weight:600; padding:.3rem .85rem; border-radius:999px;
}
.paket-name { font-size:1.4rem; }
.paket-price { display:flex; align-items:baseline; gap:.6rem; margin:.5rem 0 .25rem; }
.paket-price .now { font-size:2.2rem; font-weight:700; color:var(--primary); font-variant-numeric:tabular-nums; }
.paket-price .was { font-size:1.1rem; color:var(--muted); text-decoration:line-through; }
.preis-star { font-size:.55em; font-weight:600; color:var(--muted); vertical-align:super; margin-left:2px; }
.pakete-fussnote { max-width:640px; margin:1.75rem auto 0; text-align:center; font-size:.8rem; color:var(--muted); line-height:1.5; }
.paket-note { font-size:var(--fs-meta); color:var(--muted); margin-bottom:1.1rem; }
.paket p.paket-desc { color:var(--muted); margin-bottom:1.1rem; }
.paket-features { display:flex; flex-direction:column; gap:.65rem; margin-bottom:1.5rem; flex:1; }
.paket-features li { display:flex; align-items:flex-start; gap:.6rem; font-size:1rem; }
.paket-features svg { width:20px; height:20px; flex:none; color:var(--accent); margin-top:2px; }

.scarcity-pill {
  display:inline-flex; align-items:center; gap:.5rem; background:var(--accent-100);
  color:var(--primary); font-weight:600; font-size:.95rem; padding:.55rem 1rem; border-radius:999px;
}
.scarcity-pill .dot { width:8px; height:8px; border-radius:50%; background:var(--accent); flex:none; }

/* ═══════════════════════════════════════════════════════════
   5b. DEIN VORTEIL (dunkle Sektion) — 100 € + 200 € = 300 €
═══════════════════════════════════════════════════════════ */
.vorteil-math {
  display:flex; flex-wrap:wrap; align-items:flex-start; justify-content:center;
  gap:1.25rem 1.75rem; margin:2.5rem auto 0;
}
.vorteil-num { display:flex; flex-direction:column; align-items:center; text-align:center; }
.vorteil-num .vn-big { font-size:clamp(2.3rem, 6vw, 3.6rem); font-weight:700; line-height:1.1; font-variant-numeric:tabular-nums; }
.vorteil-num .vn-label { display:block; margin-top:.65rem; font-size:var(--fs-meta); color:rgba(255,255,255,.6); max-width:18ch; }
.vorteil-num--total .vn-big {
  background:linear-gradient(135deg,#d46aab 0%,#f0a0cc 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent;
}
/* Operatoren auf Höhe der Zahlen (Zahlen sind oben-bündig) */
.vorteil-op { font-size:2rem; font-weight:300; color:rgba(255,255,255,.32); line-height:1.1; align-self:flex-start; margin-top:.7rem; }
.vorteil-note { margin:2rem auto 0; text-align:center; max-width:60ch; font-size:var(--fs-meta); color:rgba(255,255,255,.55); }
.vorteil-cta { margin-top:2rem; display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; align-items:center; }
.scarcity-pill--dark { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16); color:#fff; }
.scarcity-pill--dark .dot { background:#ffd24a; }

/* ═══════════════════════════════════════════════════════════
   6. ABLAUF
═══════════════════════════════════════════════════════════ */
.ablauf-grid { display:grid; gap:1.5rem; counter-reset:step; }
.ablauf-step { position:relative; background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md); padding:1.6rem 1.4rem; box-shadow:var(--shadow-sm); }
.ablauf-num {
  width:44px; height:44px; border-radius:12px; background:var(--gradient); color:#fff;
  display:grid; place-items:center; font-weight:700; font-size:1.2rem; margin-bottom:1rem;
  font-variant-numeric:tabular-nums;
}
.ablauf-step h3 { font-size:1.15rem; margin-bottom:.5rem; }
.ablauf-step p { color:var(--muted); font-size:1rem; }
.ablauf-meta { display:inline-block; margin-top:.85rem; font-size:var(--fs-meta); font-weight:600; color:var(--accent); background:var(--accent-100); padding:.3rem .7rem; border-radius:999px; }
.ablauf-cta {
  display:inline-flex; align-items:center; gap:.4rem; margin-top:1rem;
  padding:.5rem 1rem; min-height:40px; border:1.5px solid var(--accent); border-radius:100px;
  color:var(--accent); font-size:var(--fs-meta); font-weight:600;
  transition:background var(--trans), color var(--trans);
}
.ablauf-cta svg { width:16px; height:16px; }
.ablauf-cta:hover { background:var(--accent); color:#fff; }

/* ═══════════════════════════════════════════════════════════
   7. ANFRAGEFORMULAR
═══════════════════════════════════════════════════════════ */

.form-card { background:var(--white); color:var(--text); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.9rem 1.75rem; box-shadow:var(--shadow-md); }
.form-card label { color:var(--text); }
.field { margin-bottom:1.15rem; }
.field label { display:block; font-size:var(--fs-meta); font-weight:600; margin-bottom:.4rem; }
.field .req { color:var(--accent); }
.field input, .field textarea {
  width:100%; padding:.85rem 1rem; font-size:1rem; color:var(--text);
  background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-sm);
  transition:border-color var(--trans), box-shadow var(--trans);
}
.field input:focus, .field textarea:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(153,51,113,.15); }
.field input.invalid, .field textarea.invalid { border-color:var(--err); }
.field-error { display:block; min-height:1.1rem; margin-top:.35rem; font-size:var(--fs-meta); color:var(--err); }
.field-consent { display:flex; align-items:flex-start; gap:.65rem; }
.field-consent input {
  appearance:auto; -webkit-appearance:auto;
  width:22px; height:22px; margin:1px 0 0; accent-color:var(--accent);
  flex:none; cursor:pointer;
}
.field-consent label { font-size:var(--fs-meta); font-weight:400; color:var(--muted); margin:0; cursor:pointer; }
.field-consent a { color:var(--accent); text-decoration:underline; }
.form-spinner {
  width:18px; height:18px; border:2px solid rgba(255,255,255,.4); border-top-color:#fff;
  border-radius:50%; animation:spin .7s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
.form-hint { margin-top:1rem; font-size:var(--fs-meta); color:var(--muted); text-align:center; }

/* Mittlerer CTA-Block (Formular ist im Hero) */
.cta-mid-inner { max-width:640px; margin-inline:auto; text-align:center; }
.cta-mid-inner .btn { margin-top:1.75rem; }
.cta-mid-inner .btn svg { width:20px; height:20px; }

/* ═══════════════════════════════════════════════════════════
   8. GARANTIE
═══════════════════════════════════════════════════════════ */
.garantie-inner { display:grid; gap:2.5rem; align-items:center; }
.garantie-seal {
  width:150px; height:150px; margin-inline:auto; border-radius:50%;
  background:var(--gradient); color:#fff; display:grid; place-items:center;
  box-shadow:var(--shadow-lg); position:relative;
}
.garantie-seal svg { width:64px; height:64px; }
.garantie-points { display:flex; flex-direction:column; gap:1.4rem; }
.garantie-point { display:flex; gap:1rem; }
.garantie-point .gp-icon { width:44px; height:44px; flex:none; border-radius:12px; background:var(--white); border:1px solid var(--border); display:grid; place-items:center; color:var(--accent); box-shadow:var(--shadow-sm); }
.garantie-point .gp-icon svg { width:24px; height:24px; }
.garantie-point h3 { font-size:1.15rem; margin-bottom:.3rem; }
.garantie-point p { color:var(--muted); }

/* ═══════════════════════════════════════════════════════════
   9. SOCIAL PROOF
═══════════════════════════════════════════════════════════ */
.founder-quote { max-width:720px; margin-inline:auto; text-align:center; }
.founder-photo { width:100px; height:100px; border-radius:50%; object-fit:cover; margin:0 auto 1.5rem; box-shadow:var(--shadow-md); }
.founder-quote blockquote {
  font-family:var(--font-deco); font-style:italic; font-size:clamp(1.4rem, 3.2vw, 2rem);
  line-height:1.4; color:var(--primary);
}
.founder-quote cite { display:block; margin-top:1rem; font-family:var(--font); font-style:normal; font-size:var(--fs-meta); color:var(--muted); }
.founder-quote .btn { margin-top:1.75rem; }
.founder-quote .btn svg { width:20px; height:20px; }
/* ═══════════════════════════════════════════════════════════
   10. FAQ
═══════════════════════════════════════════════════════════ */
.faq-list { max-width:780px; margin-inline:auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:first-child { border-top:1px solid var(--border); }
.faq-q {
  list-style:none; cursor:pointer; user-select:none;
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:1.25rem 0; font-weight:600; font-size:var(--fs-body); color:var(--text);
}
.faq-q::-webkit-details-marker { display:none; }
.faq-q::marker { display:none; }
.faq-icon { width:20px; height:20px; flex:none; color:var(--primary); transition:transform .3s ease; }
.faq-item[open] .faq-icon { transform:rotate(45deg); }
.faq-a { padding:0 2rem 1.35rem 0; }
.faq-a p { max-width:68ch; color:var(--muted); font-size:var(--fs-meta); line-height:1.75; }

/* ═══════════════════════════════════════════════════════════
   12. FINALER CTA
═══════════════════════════════════════════════════════════ */
.final-cta { text-align:center; }
.final-cta .fc-inner { max-width:760px; margin-inline:auto; }
.final-cta h2 { margin-bottom:1rem; }
.final-cta p { color:rgba(255,255,255,.85); font-size:1.15rem; margin-bottom:2rem; }

/* ═══════════════════════════════════════════════════════════
   13. FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer { background:#151015; color:rgba(255,255,255,.75); padding-block:3rem 2rem; }
.footer-inner { display:grid; gap:1.75rem; }
.footer-brand .footer-logo { height:28px; margin-bottom:.85rem; }
.footer-tagline { font-family:var(--font-deco); font-style:italic; font-size:1.15rem; color:#fff; margin-bottom:.5rem; }
.footer-email { color:#f0c9e2; font-weight:500; display:inline-flex; align-items:center; min-height:44px; }
.footer-links { display:flex; flex-wrap:wrap; gap:.5rem 1.25rem; align-items:center; }
.footer-links a { color:rgba(255,255,255,.8); font-size:var(--fs-meta); display:inline-flex; align-items:center; min-height:44px; padding-block:.35rem; }
.footer-links a:hover { color:#fff; text-decoration:underline; }
.footer-bottom { margin-top:1.75rem; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,.12); font-size:var(--fs-meta); color:rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════
   DANKE-SEITE
═══════════════════════════════════════════════════════════ */
.danke-main { position:relative; overflow:hidden; min-height:100vh; display:grid; place-items:center; background:#0e0e0e; color:#fff; padding:6rem 1.25rem 3rem; }
.danke-card {
  background:var(--white); color:var(--text); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); padding:2.5rem 2rem; max-width:560px; width:100%; text-align:center;
}
.danke-check { width:76px; height:76px; margin:0 auto 1.5rem; border-radius:50%; background:var(--gradient); color:#fff; display:grid; place-items:center; }
.danke-check svg { width:40px; height:40px; }
.danke-card h1 { font-size:clamp(1.7rem, 4vw, 2.3rem); margin-bottom:.85rem; }
.danke-card > p { color:var(--muted); font-size:1.1rem; margin-bottom:1.75rem; }
.danke-steps { text-align:left; display:flex; flex-direction:column; gap:1rem; margin-bottom:2rem; }
.danke-step { display:flex; gap:.9rem; align-items:flex-start; }
.danke-step .ds-num { width:34px; height:34px; flex:none; border-radius:50%; background:var(--accent-100); color:var(--accent); font-weight:700; display:grid; place-items:center; font-size:.95rem; }
.danke-step p { font-size:1rem; }
.danke-step b { display:block; }
.danke-step span { color:var(--muted); font-size:var(--fs-meta); }
.danke-actions { display:flex; flex-wrap:wrap; gap:.85rem; justify-content:center; }
.danke-header { position:absolute; top:0; left:0; right:0; padding:1.25rem; }
.danke-header img { height:30px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE (mobile-first → 768 → 1024)
═══════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  /* Demo-Zeilen horizontal: Bild | Text | Button */
  .demo-row { grid-template-columns:auto 1fr auto; grid-template-areas:"img body btn"; gap:1.1rem; }
  .demo-row-img { width:150px; aspect-ratio:16/11; }
}

@media (min-width: 768px) {
  .container { padding-inline:2rem; }
  .section { padding-block:5.5rem; }
  .section--roomy { padding-block:8rem; }
  .problem-grid { grid-template-columns:repeat(3, 1fr); }
  .ablauf-grid { grid-template-columns:repeat(4, 1fr); }
  .garantie-inner { grid-template-columns:200px 1fr; gap:3rem; }
  .footer-inner { grid-template-columns:1fr auto; align-items:end; }
  .footer-links { justify-content:flex-end; }
}

@media (min-width: 1024px) {
  .hero { padding-top:8.5rem; padding-bottom:6rem; }
  .hero-inner { grid-template-columns:1.05fr .95fr; align-items:center; gap:3rem; }
  /* Demos: links Text (vertikal zentriert zu den Boxen), rechts die Zeilen */
  .demos-split { grid-template-columns:0.85fr 1.15fr; gap:3.5rem; align-items:start; }
  .demos-intro { margin-block:auto; }
  /* Angebot: Basis-Kachel + Plus + Website + Website XL in einer Reihe.
     Alle drei Kacheln gleich hoch (unten bündig), Inhalt jeweils oben. */
  .pakete-row { grid-template-columns:1fr auto 1fr 1fr; gap:1rem; }
  .pakete-plus { align-self:center; }
}
