/* ═══════════════════════════════════════════════════════════════════════════
   lp.css — Geteiltes Stylesheet Kampagnen-Landingpages Reichweitenwerk
   Design-System 1:1 aus der Hauptseite (src/app/globals.css) als Vanilla-CSS.
   Ein Template, mobile-first (9:16-Traffic), Look & Feel = reichweitenwerk.at.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Fonts: Archivo self-hosted (DSGVO-konform, kein Google-Call) ──────────── */
/* Variable Font (Gewicht 100–900), gesplittet nach Unicode-Range wie next/font. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/kampagne/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/kampagne/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('/kampagne/fonts/archivo-vietnamese.woff2') format('woff2');
  unicode-range: u+0102-0103, u+0110-0111, u+0128-0129, u+0168-0169, u+01a0-01a1, u+01af-01b0, u+0300-0301, u+0303-0304, u+0308-0309, u+0323, u+0329, u+1ea0-1ef9, u+20ab;
}
/* Metrisch angepasster Fallback (Werte 1:1 aus next/font der Hauptseite) —
   verhindert Layout-Sprung/CLS am Hero-H1 (LCP), solange Archivo noch lädt. */
@font-face {
  font-family: 'Archivo Fallback';
  src: local('Arial');
  ascent-override: 88.96%;
  descent-override: 21.28%;
  line-gap-override: 0.00%;
  size-adjust: 98.70%;
}

/* ── Design-Tokens (Quelle: globals.css @theme) ───────────────────────────── */
:root {
  --font-sans: 'Archivo', 'Archivo Fallback', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --color-brand: #362023;
  --color-brand-card: #2a181a;
  --color-brand-card-2: #43292c;
  --color-brand-border: #553a3e;
  --color-brand-input-border: #4d3236;
  --color-footer: #271619;

  --color-mint: #d0f4ea;
  --color-red: #f51039;
  --color-star: #f5b50c;

  --color-cream: #f6f2ee;
  --color-card-border: #e7ded9;
  --color-input-border: #ddd2cd;

  --color-ink: #362023;
  --color-muted: #6a5256;
  --color-muted-2: #9a8589;
  --color-on-dark: #c2adb0;
  --color-on-dark-2: #a98f93;
  --color-on-dark-3: #d9c9cc;
  --color-mint-ink: #1c4036;
  --color-mint-ink-2: #2c4f47;

  --wrap: 1180px;
  --pad: 28px;
}

/* ── Basis ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background: var(--color-brand);
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--color-red); color: #fff; }
:target { scroll-margin-top: 24px; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-mint);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ── Wiederkehrende Bausteine ─────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
}
.text-mint { color: var(--color-mint); }
.text-red { color: var(--color-red); }

.btn-red {
  background: var(--color-red); color: #fff; border: 0; border-radius: 999px;
  font-weight: 800; text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; line-height: 1.1;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}
.btn-red:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(245,16,57,.28); }
.btn-red:active { transform: translateY(0); filter: brightness(.96); }
.btn-red[disabled] { opacity: .7; cursor: not-allowed; filter: none; transform: none; box-shadow: none; }

.btn-ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff;
  border-radius: 999px; font-weight: 700; text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; line-height: 1.1;
  transition: background .16s ease, border-color .16s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

.range-mint { accent-color: var(--color-mint); height: 24px; width: 100%; cursor: pointer; }

.section { padding-block: clamp(64px, 8vw, 120px); }
.section--border { border-top: 1px solid rgba(255,255,255,.10); }

.sec-head { margin-bottom: clamp(28px, 4vw, 50px); }
.sec-title {
  margin: 0; font-weight: 900; letter-spacing: -.02em; line-height: 1.04;
  font-size: clamp(28px, 4.4vw, 52px);
}
.lead-muted { color: var(--color-on-dark-3); }

/* ── Topbar (Logo NICHT verlinkt, keine Navigation) ───────────────────────── */
.lp-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: clamp(28px, 6vw, 56px); padding-bottom: 8px;
}
.lp-logo { height: 32px; width: auto; filter: invert(1); }
.lp-topbar__trust {
  font-size: 12px; font-weight: 700; color: var(--color-on-dark-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.lp-topbar__trust .star { color: var(--color-star); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; padding-bottom: clamp(40px, 7vw, 80px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  border: 1px solid rgba(208,244,234,.30); border-radius: 999px; padding: 8px 16px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--color-mint); }
.hero__h1 {
  margin: 0; max-width: 16ch; font-weight: 900; letter-spacing: -.025em; line-height: .98;
  font-size: clamp(34px, 7.4vw, 84px);
}
.hero__sub {
  margin: 26px 0 0; max-width: 54ch; font-weight: 500; line-height: 1.5;
  font-size: clamp(16px, 1.8vw, 21px); color: var(--color-on-dark-3);
}
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.microtrust {
  margin-top: 26px; font-size: 14px; font-weight: 600; color: var(--color-on-dark-2);
  letter-spacing: .01em;
}
/* Jeder Checkpoint (Häkchen + Text) bricht als Einheit — das ✓ bleibt am Text. */
.microtrust__i { white-space: nowrap; }

.btn-lg { padding: 17px 30px; font-size: 16px; }
.btn-md { padding: 13px 22px; font-size: 15px; }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ── Radar-Erklärung ──────────────────────────────────────────────────────── */
.radar { display: grid; gap: clamp(24px, 4vw, 44px); grid-template-columns: 1fr; align-items: center; }
.radar__intro { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; line-height: 1.3; margin: 0 0 22px; }
.radar__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.radar__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; font-weight: 500; color: var(--color-on-dark-3); line-height: 1.4;
}
.radar__list li::before {
  content: '›'; color: var(--color-mint); font-weight: 900; font-size: 18px; line-height: 1.3; flex: none;
}
/* Radar-Scope: kreisrundes „Radarschirm"-Feld. Sweep-Kegel + verstreute, beim
   Überstreichen einzeln aufblitzende Blips stecken IM SVG (eine Zeitachse). */
.radar-scope {
  position: relative; width: 100%; max-width: 420px; margin-inline: auto;
  aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 50%, #16271f 0%, #0f1b16 60%, #0a120e 100%);
  border: 1px solid rgba(208,244,234,.30);
  box-shadow: 0 0 0 6px rgba(208,244,234,.04),
              0 26px 60px -32px rgba(0,0,0,.9),
              inset 0 0 70px -22px rgba(208,244,234,.12);
}
.radar-scope__svg { width: 94%; height: 94%; object-fit: contain; display: block; }

/* ── Pains ────────────────────────────────────────────────────────────────── */
.cards3 { display: grid; gap: 16px; grid-template-columns: 1fr; }
.paincard {
  border: 1px solid var(--color-brand-border); background: var(--color-brand-card-2);
  border-radius: 12px; padding: 26px;
}
.paincard__icon {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(245,16,57,.12); color: var(--color-red); font-size: 20px; margin-bottom: 16px;
}
.paincard__text { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.4; }
.paincard__text strong { font-weight: 800; }

/* ── Agitation ────────────────────────────────────────────────────────────── */
.agitation { background: var(--color-brand-card); }
.agitation__line {
  margin: 0; text-align: center; font-weight: 800; letter-spacing: -.01em; line-height: 1.25;
  font-size: clamp(21px, 3.2vw, 34px); max-width: 26ch; margin-inline: auto;
}
.agitation__line .em { color: var(--color-mint); }

/* ── Lösung: Schritte + Garantie-Block ────────────────────────────────────── */
/* align-items:start → Schritt-Spalte wird NICHT auf Garantie-Höhe gestreckt
   (sonst riesige, halbleere Boxen). Boxen umschließen ihren Inhalt. */
.solution { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: start; }
.steps { display: grid; gap: 14px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--color-brand-border); background: var(--color-brand-card-2);
  border-radius: 12px; padding: 22px 24px;
}
.step__no {
  flex: none; width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center;
  background: var(--color-mint); color: var(--color-mint-ink); font-weight: 900; font-size: 15px;
}
.step__body { display: grid; gap: 6px; }
.step__text { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.4; }
.step__sub { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--color-on-dark-3); }

.guarantee {
  border: 1px solid rgba(208,244,234,.30); border-radius: 16px; padding: clamp(26px, 4vw, 40px);
  background: linear-gradient(150deg, #2d3a31, #362023);
  display: flex; flex-direction: column;
}
.badge-mint {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  background: var(--color-mint); color: var(--color-ink); border-radius: 999px;
  padding: 7px 16px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.guarantee__headline { margin: 18px 0 12px; font-size: clamp(20px, 2.6vw, 26px); font-weight: 900; line-height: 1.2; }
.guarantee__text { margin: 0 0 20px; font-size: 16px; line-height: 1.55; color: var(--color-on-dark); }

/* Budget-Slider im Garantie-Block (optional, 03-§5) */
.gslider__row { display: flex; align-items: baseline; gap: 8px; margin: 4px 0 10px; }
.gslider__budget { font-size: clamp(30px, 5vw, 44px); font-weight: 900; letter-spacing: -.02em; }
.gslider__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-on-dark-2); }
.gslider__result {
  margin-top: 14px; padding: 18px 20px; border-radius: 12px; text-align: center;
  border: 1px solid rgba(208,244,234,.30); background: rgba(0,0,0,.16);
}
.gslider__result .cap { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--color-mint); }
.gslider__result .val { font-size: clamp(32px, 6vw, 52px); font-weight: 900; line-height: 1; letter-spacing: -.03em; color: var(--color-mint); margin-top: 4px; }
.gslider__result .sub { margin-top: 6px; font-size: 13px; color: var(--color-on-dark); }

.cta2 { margin-top: 22px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }
.cta2__pitch { margin: 0 0 16px; font-size: 15.5px; line-height: 1.55; color: var(--color-on-dark-3); }
.cta2__pitch strong { color: #fff; font-weight: 800; }
.cta2__hint { margin: 12px 0 0; font-size: 13px; color: var(--color-on-dark-2); line-height: 1.45; }

/* ── Social Proof ─────────────────────────────────────────────────────────── */
.proof { display: grid; gap: 22px; grid-template-columns: 1fr; align-items: start; }
/* Proof-Seite (Badge + Gründer + Zeile) mittig ausrichten */
.proof > div:last-child { text-align: center; }
.proof__badge { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: center; }
.proof__stars { font-size: 40px; font-weight: 900; color: var(--color-mint); line-height: 1; }
.proof__stars small { display: block; font-size: 13px; font-weight: 600; color: var(--color-on-dark-2); white-space: nowrap; }
/* Mehrere Bewertungen im Testimonial-Bereich untereinander stapeln */
.testimonials-stack { display: grid; gap: 20px; }
.testimonial {
  border: 1px solid var(--color-brand-border); background: var(--color-brand-card-2);
  border-radius: 12px; padding: 28px;
}
.testimonial .stars { color: var(--color-star); letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.testimonial blockquote { margin: 0 0 18px; font-size: 17px; font-weight: 500; line-height: 1.5; color: #e2d4d6; }
.testimonial cite { font-style: normal; font-size: 14px; font-weight: 700; color: #fff; }
/* Gründer-Bild + Text untereinander, mittig zentriert */
.proof__team { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; text-align: center; }
.proof__team img { width: 168px; height: 118px; border-radius: 10px; object-fit: cover; object-position: center 25%; flex: none; }
.proof__team .who { font-size: 15px; font-weight: 800; line-height: 1.3; }
.proof__team .who span { display: block; font-weight: 500; color: var(--color-on-dark); }

/* ── Social Proof v2: Gründer-Bild (4:3) oben, ALLE Bewertungen darunter ─────── */
.founders { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; margin-bottom: clamp(30px, 4vw, 46px); }
.founders__photo { width: 100%; max-width: 360px; aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden; border: 1px solid var(--color-brand-border); }
.founders__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.founders__who { font-size: 16px; font-weight: 800; line-height: 1.3; }
.founders__who span { display: block; font-weight: 500; color: var(--color-on-dark); }
.founders__rating { font-size: 15px; font-weight: 800; color: var(--color-mint); white-space: nowrap; }
/* Masonry-Bewertungen (wie Homepage): 1 → 2 → 3 Spalten */
.reviews { columns: 1; column-gap: 18px; }
.review { break-inside: avoid; margin: 0 0 18px; border: 1px solid var(--color-brand-border); background: var(--color-brand-card-2); border-radius: 10px; padding: 22px; }
.review__stars { color: var(--color-star); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.review blockquote { margin: 0 0 16px; font-size: 15px; font-weight: 500; line-height: 1.55; color: #e2d4d6; }
.review__by { display: flex; align-items: center; gap: 12px; text-align: left; }
.review__avatar { flex: none; width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; font-size: 15px; font-weight: 800; color: #fff; }
.review__name { display: block; font-size: 14px; font-weight: 800; }
.review__role { display: block; font-size: 12.5px; font-weight: 500; color: var(--color-on-dark-2); }

/* ── Verknappungs-Bar + Formular ──────────────────────────────────────────── */
.formzone { background: var(--color-brand-card); }
.counterbar {
  display: none; /* per JS eingeblendet, wenn Zahl vorliegt (nie Fake) */
  margin: 0 auto 20px; max-width: 620px; text-align: center;
  border: 1px solid rgba(208,244,234,.30); border-radius: 999px; padding: 12px 20px;
  font-size: 14.5px; font-weight: 700; color: var(--color-mint); background: rgba(208,244,234,.06);
}
.counterbar strong { font-weight: 900; }
.counterbar[data-state="waitlist"] { color: var(--color-star); border-color: rgba(245,181,12,.4); background: rgba(245,181,12,.07); }

.formcard {
  max-width: 620px; margin-inline: auto;
  background: var(--color-cream); color: var(--color-ink);
  border-radius: 18px; padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 24px 60px rgba(0,0,0,.30);
}
.formcard__head { margin-bottom: 20px; }
.formcard__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--color-red); }
.formcard__title { margin: 8px 0 0; font-size: clamp(21px, 3vw, 27px); font-weight: 900; line-height: 1.15; letter-spacing: -.01em; }
.formcard__note { margin: 8px 0 0; font-size: 14px; color: var(--color-muted); line-height: 1.45; }

fieldset { border: 0; margin: 0; padding: 0; min-inline-size: auto; }
.progress-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.progress { display: flex; align-items: center; gap: 8px; }
.progress__step {
  flex: 1; height: 6px; border-radius: 999px; background: var(--color-card-border);
}
.progress__step.is-active { background: var(--color-red); }
.progress__step.is-done { background: var(--color-mint-ink); }
.progress__label { font-size: 12px; font-weight: 800; color: var(--color-muted); letter-spacing: .04em; }

.field { display: flex; flex-direction: column; margin-bottom: 14px; }
.field label { margin-bottom: 7px; font-size: 13px; font-weight: 800; color: var(--color-ink); }
.field .req { color: var(--color-red); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--color-input-border); border-radius: 10px;
  padding: 13px 14px; font-size: 15px; font-family: inherit; color: var(--color-ink);
  background: #fff; outline: none; transition: border-color .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-red); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--color-red); background: #fff5f6; }
/* dunkleres Rot (#b00c2c) für WCAG-AA-Kontrast (≥4,5:1) auf Creme-Formcard */
.field__err { margin: 6px 0 0; font-size: 12.5px; font-weight: 700; color: #b00c2c; min-height: 0; }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 16px; }
.consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--color-red); }
.consent label { font-size: 13px; color: var(--color-muted); line-height: 1.45; }
.consent a { color: #b00c2c; text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot — für Menschen unsichtbar */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-error {
  margin: 0 0 12px; font-size: 13px; font-weight: 700; color: #b00c2c;
  background: #fff2f4; border: 1px solid #f5c2cc; border-radius: 10px; padding: 10px 12px;
}
.form-error a { color: #b00c2c; }

.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.back-link {
  background: none; border: 0; padding: 8px 4px; font-family: inherit; font-size: 14px; font-weight: 700;
  color: var(--color-muted); cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
.privacy-mini { margin: 12px 0 0; text-align: center; font-size: 12px; color: var(--color-muted-2); }
.privacy-mini a { color: var(--color-muted); text-decoration: underline; text-underline-offset: 2px; }

.spinner {
  width: 16px; height: 16px; border-radius: 999px; border: 2px solid rgba(255,255,255,.45);
  border-top-color: #fff; display: inline-block; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success { text-align: center; padding: 24px 8px; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 999px; background: var(--color-mint); color: var(--color-ink);
  display: grid; place-items: center; font-size: 30px; margin: 0 auto 18px;
}
.form-success h3 { margin: 0 0 10px; font-size: 24px; font-weight: 900; color: var(--color-ink); }
.form-success p { margin: 0; font-size: 16px; color: var(--color-muted); line-height: 1.5; }

.is-hidden { display: none !important; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin-inline: auto; }
.faq__items { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.04); border-radius: 10px;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px; font-size: 16px; font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; font-size: 24px; line-height: 1; color: var(--color-mint); transition: transform .2s ease; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; font-size: 15px; line-height: 1.6; color: var(--color-on-dark-3); }

/* ── Footer (einzige externe Links: Rechtstexte) ──────────────────────────── */
.lp-footer { background: var(--color-footer); padding: clamp(48px, 6vw, 80px) var(--pad) 36px; }
.lp-footer__inner { max-width: var(--wrap); margin-inline: auto; }
.lp-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; border-bottom: 1px solid rgba(255,255,255,.10); padding-bottom: 32px; }
.lp-footer img.foot-logo { height: 38px; width: auto; filter: invert(1); margin-bottom: 16px; }
.lp-footer__tag { margin: 0; max-width: 360px; font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--color-on-dark-2); }
.lp-footer nav { display: flex; flex-direction: column; gap: 12px; }
.lp-footer nav .h { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--color-on-dark-2); margin-bottom: 4px; }
.lp-footer nav a { font-size: 15px; font-weight: 600; color: var(--color-on-dark-3); text-decoration: none; }
.lp-footer nav a:hover { color: #fff; }
.lp-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 13px; font-weight: 500; color: var(--color-on-dark-2); }

/* ── Cookie-Consent-Banner (gleiche Lösung wie Hauptseite: rw-consent) ─────── */
.consent-banner {
  position: fixed; inset-inline: 12px; bottom: 12px; z-index: 9998; margin-inline: auto;
  max-width: 680px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
  background: rgba(42,24,26,.96); backdrop-filter: blur(8px); color: #fff;
  padding: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.consent-banner p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--color-on-dark-3); }
.consent-banner a { color: var(--color-mint); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.consent-banner__row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ═══════════════════════════ /pakete ═════════════════════════════════════ */
.pakete-hero { text-align: center; padding-top: clamp(40px, 7vw, 72px); }
.pakete-hero h1 { margin: 20px auto 0; max-width: 18ch; font-size: clamp(28px, 5vw, 52px); font-weight: 900; letter-spacing: -.02em; line-height: 1.05; }
.pakete-hero p { margin: 16px auto 0; max-width: 52ch; font-size: 17px; color: var(--color-on-dark-3); line-height: 1.5; }

.pakete-grid {
  display: grid; gap: 18px; grid-template-columns: 1fr; align-items: stretch;
  max-width: 1180px; margin: clamp(32px, 5vw, 52px) auto 0;
}
.pcard {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--color-brand-border); background: var(--color-brand-card-2);
  border-radius: 16px; padding: 30px 26px;
}
.pcard--featured {
  border-color: var(--color-mint); background: linear-gradient(160deg, #2d3a31, #3a2226);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.pcard__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--color-mint); color: var(--color-mint-ink); border-radius: 999px;
  padding: 6px 16px; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
.pcard__name { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--color-mint); }
.pcard__price { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 2px; }
.pcard__price .amt { font-size: clamp(38px, 6vw, 52px); font-weight: 900; letter-spacing: -.02em; }
.pcard__price .per { font-size: 14px; font-weight: 600; color: var(--color-on-dark-2); }
.pcard__net { font-size: 13px; color: var(--color-on-dark-2); }
.pcard__impr { margin: 18px 0 4px; font-size: 15px; }
.pcard__impr b { color: var(--color-mint); font-weight: 900; font-size: 18px; }
.pcard__tkp { font-size: 13px; color: var(--color-on-dark-2); }
.pcard__list { list-style: none; margin: 18px 0 22px; padding: 0; display: grid; gap: 10px; }
.pcard__list li { display: flex; gap: 10px; font-size: 14px; color: var(--color-on-dark-3); line-height: 1.4; }
.pcard__list li::before { content: '✓'; color: var(--color-mint); font-weight: 900; flex: none; }
/* CTA einzeilig halten (kein Umbruch „Marktführer / starten →") – auch im 4-Spalter */
.pcard__cta { margin-top: auto; white-space: nowrap; font-size: 15px; padding-left: 16px; padding-right: 16px; }
.pcard--advice { border-style: dashed; background: transparent; }
/* Am Handy (1-Spalter): Pakete von günstig (oben) zu teuer (unten) sortieren.
   DOM-Reihenfolge bleibt 999·499·299·Beratung; nur die Anzeige wird umgeordnet.
   Ab 860px (mehrspaltig) greift das nicht → dort natürliche Reihenfolge. */
@media (max-width: 859.98px) {
  .pakete-grid > .pcard:nth-child(1) { order: 3; } /* 999 Marktführer → unten */
  .pakete-grid > .pcard:nth-child(2) { order: 2; } /* 499 Wachstum */
  .pakete-grid > .pcard:nth-child(3) { order: 1; } /* 299 Sichtbar → oben */
  .pakete-grid > .pcard--advice     { order: 4; } /* Beratung ganz unten */
}

.pakete-note { max-width: 820px; margin: clamp(36px, 5vw, 56px) auto 0; }
.pakete-note .guarantee { text-align: left; }

/* ── Downsell-Popup (Modal) ───────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 9999; display: none;
  background: rgba(20,10,12,.72); backdrop-filter: blur(3px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.is-open { display: flex; }
.modal {
  max-width: 460px; width: 100%; background: var(--color-cream); color: var(--color-ink);
  border-radius: 18px; padding: clamp(26px, 4vw, 38px); position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 999px;
  border: 0; background: rgba(0,0,0,.06); color: var(--color-ink); font-size: 20px; cursor: pointer; line-height: 1;
}
.modal__close:hover { background: rgba(0,0,0,.12); }
.modal__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--color-red); }
.modal__title { margin: 8px 0 0; font-size: clamp(22px, 4vw, 30px); font-weight: 900; line-height: 1.1; }
.modal__price { margin: 14px 0 2px; font-size: 40px; font-weight: 900; letter-spacing: -.02em; }
.modal__price .per { font-size: 15px; font-weight: 600; color: var(--color-muted); }
.modal__impr { font-size: 15px; color: var(--color-muted); }
.modal__impr b { color: var(--color-ink); font-weight: 900; }
.modal__text { margin: 16px 0 22px; font-size: 15px; color: var(--color-muted); line-height: 1.5; }
.modal .btn-red { width: 100%; padding: 16px; font-size: 16px; }
.modal__decline { display: block; width: 100%; margin-top: 12px; background: none; border: 0; font-family: inherit; font-size: 13px; color: var(--color-muted-2); cursor: pointer; text-decoration: underline; }

/* ═══════════════════════ Danke-Seiten ════════════════════════════════════ */
.thanks { min-height: 100dvh; display: flex; flex-direction: column; }
.thanks__main { flex: 1; display: flex; align-items: center; justify-content: center; padding: clamp(40px, 8vw, 80px) var(--pad); }
.thanks__card { max-width: 640px; text-align: center; }
.thanks__check { width: 76px; height: 76px; border-radius: 999px; background: var(--color-mint); color: var(--color-ink); display: grid; place-items: center; font-size: 38px; margin: 0 auto 24px; }
.thanks__card h1 { margin: 0 0 16px; font-size: clamp(28px, 5vw, 46px); font-weight: 900; letter-spacing: -.02em; line-height: 1.05; }
.thanks__card p { margin: 0 auto 14px; max-width: 52ch; font-size: 17px; color: var(--color-on-dark-3); line-height: 1.55; }
.thanks__card .highlight { color: var(--color-mint); font-weight: 800; }
.thanks__demo-lead { margin-top: 22px !important; font-weight: 600; color: var(--color-on-dark-2) !important; }
.thanks__cta { margin-top: 22px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.thanks__cta .btn-lg { width: 100%; max-width: 360px; white-space: nowrap; font-size: 14px; padding-left: 16px; padding-right: 16px; }
@media (min-width: 560px) {
  .thanks__cta { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .thanks__cta .btn-lg { width: auto; }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .cards3 { grid-template-columns: repeat(3, 1fr); }
  .radar__list li { font-size: 17px; }
  .reviews { columns: 2; }
}
@media (min-width: 860px) {
  :root { --pad: 40px; }
  .radar { grid-template-columns: 1.1fr 1fr; }
  .solution { grid-template-columns: 1.4fr 1fr; }
  .proof { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* Gründer-Bild am Desktop doppelt so groß (Basis 128×90 → 256×180) */
  .proof__team img { width: 256px; height: 180px; }
  /* Einzel-Bewertung (berater-it, beauty): Proof-Seite mittig zur Bewertung */
  .proof--center { align-items: center; }
  /* Gastro (zwei Bewertungen): Proof-Seite auf Bewertungs-Höhe strecken,
     das Gründer-Bild füllt den verbleibenden Raum (cover) */
  .proof--stretch { align-items: stretch; }
  .proof--stretch > div:last-child { display: flex; flex-direction: column; }
  .proof--stretch .proof__team { flex: 1 1 auto; margin-top: 14px; }
  .proof--stretch .proof__team img { width: 100%; max-width: 340px; height: auto; flex: 1 1 0; min-height: 240px; object-fit: cover; }
  .pakete-grid { grid-template-columns: repeat(3, 1fr); }
  .pcard--advice { grid-column: 1 / -1; }
}
@media (min-width: 1040px) {
  .pakete-grid { grid-template-columns: repeat(4, 1fr); }
  .pcard--advice { grid-column: auto; }
  .reviews { columns: 3; }
}
