/* ==========================================================================
   GS Finanzkanzlei — Design-System (Prototyp)
   Statisch, keine externen Requests. Farbwelt aus dem Logo (Petrol) +
   ein Gold-Akzent ausschließlich für Handlungselemente.
   ========================================================================== */

/* ---------- Fonts (lokal) ---------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/playfair-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/playfair-500-italic.woff2") format("woff2");
  font-weight: 400 500;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #10222c;
  --ink-soft: #46606d;
  --petrol: #17455a;
  --petrol-deep: #0d2f40;
  --petrol-mist: #e8eff3;
  --gold: #a16207;
  --gold-deep: #7d4c05;
  --gold-soft: #f6ecd8;
  --paper: #fbfaf7;
  --greige: #f3f0e9;
  --line: #e4dfd3;
  --line-soft: #ece8de;
  --white: #ffffff;
  --ok: #1a7f4f;
  --err: #b3261e;

  --serif: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 1px 2px rgba(16, 34, 44, 0.05), 0 4px 16px rgba(16, 34, 44, 0.06);
  --shadow-2: 0 2px 6px rgba(16, 34, 44, 0.07), 0 14px 40px rgba(16, 34, 44, 0.11);
  --wrap: 1160px;
  --gutter: clamp(1.5rem, 4vw, 2.5rem);
  --header-h: 84px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--petrol); }
p { margin: 0 0 1em; }
strong { font-weight: 600; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--petrol); color: #fff; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--petrol-deep); color: #fff; padding: 0.7rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.35rem, 4.8vw, 3.35rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.05rem; margin: 0 0 0.4em; }
.lede { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-soft); max-width: 34em; }
em.accent { font-style: italic; font-weight: 400; color: var(--petrol); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }

.section { padding-block: clamp(4.75rem, 9.5vw, 7.5rem); }
.section--greige { background: var(--greige); }
.section--mist { background: var(--petrol-mist); }
.section-head { max-width: 640px; margin-bottom: clamp(2.75rem, 4.5vw, 4rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font: 600 1rem/1 var(--sans); text-decoration: none; cursor: pointer;
  border-radius: 999px; padding: 0.95rem 1.7rem; min-height: 48px;
  border: 2px solid transparent; transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.98); }
.btn svg { flex: none; }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(161, 98, 7, 0.28); }
.btn--gold:hover { background: var(--gold-deep); box-shadow: 0 8px 22px rgba(125, 76, 5, 0.32); }
.btn--outline { border-color: var(--petrol); color: var(--petrol); background: transparent; }
.btn--outline:hover { background: var(--petrol); color: #fff; }
.btn--ghost { color: var(--petrol); background: transparent; padding-inline: 1rem; }
.btn--ghost:hover { background: var(--petrol-mist); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(251, 250, 247, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line-soft); box-shadow: 0 2px 14px rgba(16, 34, 44, 0.06); }
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; height: 100%; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 48px; width: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.97rem;
  padding: 0.55rem 0.85rem; border-radius: 8px; transition: background 0.15s ease;
}
.main-nav a:hover { background: var(--petrol-mist); }
.main-nav a[aria-current="page"] { color: var(--petrol); font-weight: 600; }
.header-phone { display: inline-flex; align-items: center; gap: 0.45rem; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.header-phone svg { color: var(--gold-deep); }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 920px) {
  .header-phone span { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; margin-left: auto;
    background: none; border: 0; cursor: pointer; color: var(--ink); border-radius: 10px;
  }
  .nav-toggle:hover { background: var(--petrol-mist); }
  .main-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: var(--paper); border-bottom: 1px solid var(--line-soft);
    padding: 0.8rem var(--gutter) 1.2rem; margin: 0;
    display: none; box-shadow: 0 18px 30px rgba(16, 34, 44, 0.08);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 0.85rem 0.9rem; font-size: 1.05rem; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.75rem, 7vw, 6.5rem); overflow: clip; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy .lede { margin-bottom: 2rem; }

.hero-figure { position: relative; justify-self: end; width: min(100%, 430px); }
.hero-figure .arch {
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-2);
  background: var(--petrol-mist);
}
.hero-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%; }
.hero-badge {
  position: absolute; left: -1.25rem; bottom: 1.5rem; max-width: 86%;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-2); padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-badge .stars { color: var(--gold); display: flex; gap: 2px; }
.hero-badge strong { display: block; font-size: 0.95rem; line-height: 1.3; }
.hero-badge small { color: var(--ink-soft); font-size: 0.8rem; line-height: 1.35; display: block; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-figure { justify-self: center; width: min(100%, 340px); margin-top: 0.5rem; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -1.25rem; width: max-content; max-width: 92%; }
}

/* ---------- Segment-Wahl (Funnel Schritt 1 im Hero) ---------- */
.choice-label { font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.8rem; display: block; }
.segment-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; max-width: 560px; }
.segment-card {
  display: flex; flex-direction: column; gap: 0.55rem; position: relative;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.05rem; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-1);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.segment-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-2); }
.segment-card:active { transform: translateY(-1px) scale(0.99); }
.segment-card .icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--petrol-mist); color: var(--petrol);
}
.segment-card h3 { margin: 0; font-size: 1.16rem; }
.segment-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.45; }
.segment-card .go {
  margin-top: 0.35rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; font-size: 0.95rem; color: var(--gold-deep);
}
.segment-card .go svg { transition: transform 0.18s ease; }
.segment-card:hover .go svg { transform: translateX(4px); }
.segment-card .tag {
  position: absolute; top: 0.9rem; right: 0.9rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  background: var(--gold-soft); color: var(--gold-deep);
  border-radius: 999px; padding: 0.22rem 0.6rem;
}
.assurance { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; margin-top: 1.1rem; padding: 0; list-style: none; }
.assurance li { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.88rem; color: var(--ink-soft); }
.assurance svg { color: var(--ok); flex: none; }
@media (max-width: 560px) { .segment-choice { grid-template-columns: 1fr; } }

/* ---------- Trust-Leiste ---------- */
.trustbar { border-block: 1px solid var(--line-soft); background: #fff; }
.trustbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.4rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; line-height: 1.35; color: var(--ink-soft); }
.trust-item svg { color: var(--petrol); flex: none; }
.trust-item strong { color: var(--ink); display: block; font-size: 0.97rem; }
@media (max-width: 860px) { .trustbar .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trustbar .wrap { grid-template-columns: 1fr; padding-block: 1.1rem; gap: 0.8rem; } }

/* ---------- Karten / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 2.15rem 2rem; box-shadow: var(--shadow-1);
}
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--petrol-mist); color: var(--petrol); margin-bottom: 1rem;
}
.card p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }

.step-card { position: relative; padding-top: 2.1rem; }
.step-num {
  position: absolute; top: -1.35rem; left: 1.4rem;
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600; font-style: italic;
  color: var(--gold); background: transparent; line-height: 1;
}

/* ---------- Personen / Editorial ---------- */
.duo { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2.75rem, 5.5vw, 4.75rem); align-items: center; }
.duo--flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
@media (max-width: 860px) { .duo, .duo--flip { grid-template-columns: 1fr; } }
.portrait { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.portrait img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.portrait--tall img { aspect-ratio: 3 / 4; object-position: 50% 20%; }
.sig { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--petrol); }

blockquote.pull {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.35; color: var(--petrol-deep);
  border: 0; margin: 0 0 1.2rem; padding: 0;
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.stat b { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 600; color: var(--petrol); display: block; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat span { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; gap: 1rem; } }

.footnote { font-size: 0.8rem; color: var(--ink-soft); opacity: 0.85; margin-top: 1.2rem; }

/* ---------- Bewertungen ---------- */
.review-card { display: flex; flex-direction: column; gap: 0.9rem; height: 100%; }
.review-card .stars { color: var(--gold); display: flex; gap: 2px; }
.review-card p { font-size: 0.97rem; color: var(--ink); flex: 1; }
.review-card footer { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Checkliste ---------- */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.95rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink); }
.checklist svg { color: var(--ok); flex: none; margin-top: 0.2rem; }
.checklist b { font-weight: 600; }
.checklist small { display: block; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 0; margin-bottom: 0.8rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; font-size: 1.02rem; padding: 1.1rem 1.3rem; min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; transition: transform 0.2s ease; color: var(--petrol); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Personen-Karten ---------- */
.person-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-1); display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.person-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.person-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 22%; }
.person-card .body { padding: 1.4rem 1.5rem 1.6rem; }
.person-card h3 { margin: 0 0 0.15em; }
.person-card .role { color: var(--gold-deep); font-weight: 600; font-size: 0.96rem; margin: 0; }
.person-card .region { display: flex; align-items: center; gap: 0.45rem; color: var(--ink-soft); font-size: 0.92rem; margin: 0.7rem 0 0; }
.person-card .region svg { color: var(--petrol); flex: none; }

/* ---------- CTA-Band / Footer ---------- */
.cta-band { background: var(--petrol-deep); color: #fff; }
.cta-band .wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 2rem; align-items: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255, 255, 255, 0.78); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: flex-end; }
.cta-band .btn--outline { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.cta-band .btn--outline:hover { background: #fff; color: var(--petrol-deep); border-color: #fff; }
@media (max-width: 860px) { .cta-band .wrap { grid-template-columns: 1fr; } .cta-band .actions { justify-content: flex-start; } }

.site-footer { background: var(--petrol-deep); color: rgba(255, 255, 255, 0.75); font-size: 0.94rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.site-footer .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2rem; padding-block: 3rem 2rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.site-footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-brand img { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 1rem; }
.footer-social { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; color: rgba(255, 255, 255, 0.82); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.footer-social:hover { color: #fff; }
.footer-social svg { flex: none; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer-legal .wrap { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; padding-block: 1.2rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }
@media (max-width: 860px) { .site-footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .wrap { grid-template-columns: 1fr; } }

/* ---------- Sticky Mobile-Bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr 1.4fr; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: #fff; color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 0.9rem; min-height: 56px;
}
.mobile-bar a.bar-primary { background: var(--gold); color: #fff; }
@media (max-width: 760px) {
  .mobile-bar { display: grid; }
  body.has-mobile-bar { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
}

/* ---------- Scroll-Reveal (nur aktiv, wenn JS verfügbar: html.js) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .segment-card, .faq summary .chev { transition: none; }
}

/* ==========================================================================
   FUNNEL
   ========================================================================== */
.funnel-page { background: var(--greige); min-height: 100dvh; display: flex; flex-direction: column; }
.funnel-header { background: transparent; }
.funnel-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.funnel-header .brand img { height: 40px; }
.funnel-help { font-size: 0.9rem; color: var(--ink-soft); text-align: right; }
.funnel-help a { font-weight: 600; color: var(--petrol); text-decoration: none; white-space: nowrap; }
.funnel-help a:hover { text-decoration: underline; }

.funnel-main { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: clamp(0.5rem, 3vw, 2.5rem) var(--gutter) 4rem; }
.funnel-shell { width: 100%; max-width: 640px; }

.progress-wrap { margin-bottom: 1.4rem; }
.progress-meta { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.45rem; }
.progress-meta b { color: var(--petrol); font-weight: 600; }
.progress-track { height: 7px; background: #fff; border: 1px solid var(--line-soft); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--petrol) 0%, var(--gold) 130%); border-radius: 999px; transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1); }

.funnel-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2); padding: clamp(1.5rem, 4vw, 2.4rem);
}
.funnel-step h1, .funnel-step h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin-bottom: 0.35em; }
.funnel-step .hint { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.4rem; }

.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.option-grid--stack { grid-template-columns: 1fr; }
@media (max-width: 520px) { .option-grid { grid-template-columns: 1fr; } }
.option-btn {
  display: flex; align-items: center; gap: 0.9rem; width: 100%; text-align: left;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.1rem; min-height: 64px; cursor: pointer;
  font: 500 1rem/1.3 var(--sans); color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  touch-action: manipulation;
}
.option-btn:hover { border-color: var(--petrol); background: var(--petrol-mist); }
.option-btn:active { transform: scale(0.985); }
.option-btn.is-selected { border-color: var(--petrol); background: var(--petrol-mist); box-shadow: inset 0 0 0 1px var(--petrol); }
.option-btn .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--petrol-mist); color: var(--petrol); display: grid; place-items: center; flex: none; }
.option-btn small { display: block; color: var(--ink-soft); font-size: 0.85rem; font-weight: 400; }

/* Slider */
.amount-display { font-family: var(--serif); font-weight: 600; font-size: clamp(2.1rem, 5vw, 2.9rem); color: var(--petrol); text-align: center; margin: 0.5rem 0 0.2rem; font-variant-numeric: tabular-nums; }
.amount-sub { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.4rem; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 44px; background: transparent; cursor: pointer; margin: 0; }
input[type="range"]::-webkit-slider-runnable-track { height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--petrol) var(--fill, 50%), var(--line) var(--fill, 50%)); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 28px; height: 28px; margin-top: -10px;
  border-radius: 50%; background: #fff; border: 3px solid var(--petrol);
  box-shadow: 0 2px 8px rgba(16, 34, 44, 0.25);
}
input[type="range"]::-moz-range-track { height: 8px; border-radius: 999px; background: var(--line); }
input[type="range"]::-moz-range-progress { height: 8px; border-radius: 999px; background: var(--petrol); }
input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--petrol); box-shadow: 0 2px 8px rgba(16, 34, 44, 0.25); }
.range-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.2rem; }

.funnel-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.back-btn {
  display: inline-flex; align-items: center; gap: 0.4rem; background: none; border: 0; cursor: pointer;
  color: var(--ink-soft); font: 500 0.95rem var(--sans); padding: 0.6rem 0.8rem; border-radius: 8px; min-height: 44px;
}
.back-btn:hover { background: var(--greige); color: var(--ink); }
.back-btn[hidden] { display: none; }

.trust-inline { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.3rem; margin-top: 1.3rem; padding: 0; list-style: none; }
.trust-inline li { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-soft); }
.trust-inline svg { color: var(--ok); flex: none; }

/* Prüf-Animation */
.checking { text-align: center; padding-block: 1.5rem; }
.spinner { width: 52px; height: 52px; margin: 0 auto 1.4rem; border-radius: 50%; border: 4px solid var(--petrol-mist); border-top-color: var(--petrol); animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 2s; } }
.check-line { display: flex; align-items: center; gap: 0.6rem; justify-content: center; color: var(--ink-soft); font-size: 0.97rem; min-height: 28px; }
.check-line svg { color: var(--ok); }

/* Kontakt-Gate */
.gate-summary { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.chip { background: var(--gold-soft); color: var(--gold-deep); font-size: 0.83rem; font-weight: 600; border-radius: 999px; padding: 0.3rem 0.8rem; }
.advisor-note { display: flex; gap: 0.9rem; align-items: center; background: var(--petrol-mist); border-radius: var(--radius); padding: 0.9rem 1rem; margin-bottom: 1.5rem; }
.advisor-note img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; flex: none; }
.advisor-note p { margin: 0; font-size: 0.9rem; line-height: 1.45; color: var(--ink); }
.advisor-note small { color: var(--ink-soft); }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"] {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 0.85rem 1rem; font: 400 1.05rem var(--sans); color: var(--ink); background: #fff;
  min-height: 50px; transition: border-color 0.15s ease;
}
.field input:focus { outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(23, 69, 90, 0.14); }
.field input.is-invalid { border-color: var(--err); }
.field .field-hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.3rem; }
.field .field-error { display: none; font-size: 0.85rem; color: var(--err); margin-top: 0.3rem; }
.field.show-error .field-error { display: block; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); margin: 1.2rem 0 1.4rem; }
.consent input { width: 20px; height: 20px; margin-top: 0.15rem; accent-color: var(--petrol); flex: none; }
.consent a { color: var(--petrol); }

/* Erfolg */
.success { text-align: center; padding-block: 1rem; }
.success-icon { width: 76px; height: 76px; margin: 0 auto 1.4rem; border-radius: 50%; background: #e7f4ec; color: var(--ok); display: grid; place-items: center; }
.success h2 { margin-bottom: 0.4em; }
.success .next-steps { text-align: left; max-width: 420px; margin: 1.6rem auto 0; }

/* ---------- LP-spezifisch ---------- */
.lp-hero { padding-block: clamp(2.25rem, 6vw, 4.5rem); }
.lp-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  grid-template-areas:
    "intro   card"
    "details card";
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: 1.25rem;
  align-items: start;
}
.lp-intro { grid-area: intro; }
.lp-details { grid-area: details; }
.lp-hero .starter-card { grid-area: card; }
.lp-intro h1 { margin-bottom: 0; }
.lp-hero .lede { margin-bottom: 0; }
.starter-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2); padding: clamp(1.4rem, 3vw, 2rem); position: sticky; top: calc(var(--header-h) + 1.25rem);
}
.starter-card h2 { font-size: 1.3rem; margin-bottom: 0.3em; }
.starter-card .hint { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.1rem; }

/* Mobil: minimaler Text zuerst, dann direkt der Rechner (above the fold), Details darunter */
@media (max-width: 900px) {
  .lp-hero { padding-block: 1rem 2.25rem; }
  .lp-hero .wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "card"
      "details";
    row-gap: 1.1rem;
  }
  .lp-intro h1 { font-size: clamp(1.8rem, 7vw, 2.3rem); }
  .lp-hero .lede { font-size: 1.05rem; }
  .lp-intro .eyebrow { margin-bottom: 0.7rem; }
  .starter-card { position: static; }
}

.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.badge-row li { background: var(--petrol-mist); color: var(--petrol); font-size: 0.82rem; font-weight: 600; border-radius: 999px; padding: 0.3rem 0.8rem; }

.prose { max-width: 700px; }
.prose h2 { margin-top: 1.8em; }
.prose ul { padding-left: 1.2rem; color: var(--ink-soft); }

/* ==========================================================================
   MOBIL: mehr Luft (gezielte Abstands-Anhebung auf kleinen Screens)
   ========================================================================== */
@media (max-width: 860px) {
  /* gestapelte Karten bekommen deutlich mehr Zwischenraum */
  .grid-3, .grid-2 { gap: 1.9rem; }
  .stat-row { gap: 1.6rem; }
}
@media (max-width: 560px) {
  /* großzügige Sektions-Innenabstände */
  .section { padding-block: 5.25rem; }
  .section-head { margin-bottom: 3rem; }
  /* Trust-Leiste luftiger */
  .trustbar .wrap { gap: 1.4rem; padding-block: 1.9rem; }
  /* Hero-Startseite: ruhiger Einstieg */
  .hero { padding-block: 2.75rem 3.75rem; }
  .segment-choice { gap: 1.1rem; }
  .assurance { gap: 0.8rem 1.4rem; margin-top: 1.75rem; }
  /* Landingpage-Einstieg: klare Trennung Intro / Rechner / Details */
  .lp-hero .wrap { row-gap: 1.6rem; }
  /* FAQ-Akkordeon */
  .faq details { margin-bottom: 1.1rem; }
  /* CTA-Band */
  .cta-band .actions { gap: 1rem; }
  /* Personen-Karten: mehr Innenraum */
  .person-card .body { padding: 1.6rem 1.6rem 1.8rem; }
}
