/* ==========================================================================
   FoerderWerk Landing - style.css
   Farbwelt: Tiefgruen #163224 auf Beige #f7f1e7, Akzent Kupfer (SHK-Rohr).
   Radius-System: pill (Buttons/Chips), konzentrische Panels (aussen 24 / innen 17,
   kleine Karten 20 / 14), Inputs 12. Easing: nur Custom-Bezier.
   ========================================================================== */

:root {
  --bg: #f7f1e7;
  --bg-raised: #fdfaf4;
  --paper: #fefcf8;
  --ink: #182420;
  --text: #34413a;
  --muted: #5d6a60;
  --green: #163224;
  --green-deep: #0f241a;
  --green-soft: #2e6b4f;
  --cream: #f7f1e7;
  --cream-muted: #cfc6b0;
  --copper: #b45f3c;        /* nur gross/fett (>= 18px), 4.0:1 auf Beige */
  --copper-ink: #9a4a2b;    /* Links + kleiner Text, 5.5:1 auf Beige */
  --copper-bright: #d18a63; /* Akzent auf Dunkelgruen, 5.3:1 */
  --line: rgba(24, 36, 32, 0.14);
  --line-soft: rgba(24, 36, 32, 0.08);
  --line-dark: rgba(247, 241, 231, 0.16);
  --shadow-soft: 0 30px 70px -30px rgba(22, 50, 36, 0.28);
  --shadow-ambient: 0 2px 8px rgba(22, 50, 36, 0.06);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-sym: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas, Menlo, monospace;
  --r-panel: 24px;
  --r-panel-core: 17px;
  --r-card: 20px;
  --r-card-core: 14px;
  --r-input: 12px;
  --wrap: 72rem;
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; color: inherit; }

a { color: var(--copper-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }

::selection { background: rgba(180, 95, 60, 0.28); }

:focus-visible {
  outline: 3px solid rgba(154, 74, 43, 0.6);
  outline-offset: 2px;
  border-radius: 6px;
}

.panel-dark :focus-visible,
.site-footer :focus-visible {
  outline-color: rgba(247, 241, 231, 0.75);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Feinkorn-Layer (Editorial-Luxury-Signatur), fixed + pointer-events: none */
.grain {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---------- Typografie ---------- */

h1, h2, h3 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 7.2vw, 4.5rem); line-height: 1.01; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }

.lede {
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 34em;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.accent { color: var(--copper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(253, 250, 244, 0.7);
}

@media (max-width: 47.99em) {
  .hero-copy .eyebrow { border-radius: 14px; }
}

.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--copper);
  flex: none;
}

.panel-dark .eyebrow {
  border-color: var(--line-dark);
  color: var(--cream-muted);
  background: rgba(247, 241, 231, 0.05);
}

/* ---------- Layout-Helfer ---------- */

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 2.5rem);
}

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(3.5rem, 7vw, 6rem); }

.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p { margin-top: 1rem; color: var(--muted); }

/* ---------- Double-Bezel (Preset-Signatur) ---------- */

.bezel {
  background: rgba(22, 50, 36, 0.05);
  border: 1px solid rgba(22, 50, 36, 0.09);
  border-radius: var(--r-panel);
  padding: 7px;
  box-shadow: var(--shadow-ambient);
}

.bezel-core {
  background: var(--bg-raised);
  border-radius: var(--r-panel-core);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 1px 0 rgba(22, 50, 36, 0.04);
}

.bezel-sm { border-radius: var(--r-card); padding: 6px; }
.bezel-sm > .bezel-core { border-radius: var(--r-card-core); }

/* ---------- Buttons (Island-CTA mit genestetem Pfeil-Kreis) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.1rem 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.45s var(--ease), background-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.btn:active { transform: scale(0.98); }

.btn-orb {
  width: 2rem; height: 2rem; flex: none;
  border-radius: 999px;
  display: grid; place-items: center;
  transition: transform 0.45s var(--ease);
}

.btn:hover .btn-orb { transform: translate(3px, -1px) scale(1.06); }

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 14px 30px -14px rgba(22, 50, 36, 0.55);
}

.btn-primary:hover { background: var(--green-deep); box-shadow: 0 20px 40px -16px rgba(22, 50, 36, 0.6); }
.btn-primary .btn-orb { background: rgba(247, 241, 231, 0.16); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding-inline: 1.5rem;
}

.btn-ghost:hover { border-color: rgba(24, 36, 32, 0.32); background: rgba(253, 250, 244, 0.75); }
.btn-ghost .btn-orb { background: rgba(22, 50, 36, 0.07); }

.btn-cream {
  background: var(--cream);
  color: var(--green);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.5);
}

.btn-cream:hover { background: #fffdf8; }
.btn-cream .btn-orb { background: rgba(22, 50, 36, 0.1); }

.btn-ghost-dark {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  padding-inline: 1.5rem;
}

.btn-ghost-dark:hover { border-color: rgba(247, 241, 231, 0.4); background: rgba(247, 241, 231, 0.06); }
.btn-ghost-dark .btn-orb { background: rgba(247, 241, 231, 0.12); }

.btn-block { width: 100%; }

.btn svg { flex: none; }

/* ---------- Navigation (Floating Island) ---------- */

.site-nav {
  position: sticky;
  top: 0.9rem;
  z-index: 70;
  padding-inline: clamp(0.9rem, 3vw, 2rem);
}

.nav-pill {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.82);
  border: 1px solid rgba(24, 36, 32, 0.1);
  box-shadow: 0 12px 34px -18px rgba(22, 50, 36, 0.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  backdrop-filter: blur(14px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.06rem;
}

.brand svg { flex: none; }

.nav-links { display: none; align-items: center; gap: 1.6rem; }

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 550;
  transition: color 0.45s var(--ease);
}

.nav-links a:hover { color: var(--copper-ink); }

.nav-cta { display: none; }

@media (min-width: 48em) {
  .nav-links { display: inline-flex; }
}

@media (min-width: 64em) {
  .nav-cta { display: inline-flex; padding-block: 0.7rem; font-size: 0.95rem; }
}

/* ---------- Hero (Editorial Split) ---------- */

.hero { padding-block: clamp(3.5rem, 6.5vw, 6rem) clamp(4rem, 8vw, 7rem); }

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.hero-copy > * + * { margin-top: 1.6rem; }

.hero-copy h1 { max-width: 11em; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-visual { position: relative; max-width: 34rem; margin-inline: auto; width: 100%; }

.hero-visual .bezel-core { padding: clamp(1.1rem, 3vw, 1.8rem); overflow: hidden; }

.hero-visual .bezel { box-shadow: var(--shadow-soft); }

.chip-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0.65rem 1rem 0.65rem 0.7rem;
  box-shadow: 0 18px 40px -18px rgba(22, 50, 36, 0.4);
  animation: floaty 8s var(--ease-sym) infinite;
}

.chip-a { top: -1.1rem; right: -0.4rem; }
.chip-b { bottom: -1.2rem; left: -0.4rem; animation-delay: -4s; animation-duration: 9.5s; }

.chip-icon {
  width: 2.1rem; height: 2.1rem; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(22, 50, 36, 0.08);
  color: var(--green);
}

.chip-icon-copper { background: rgba(180, 95, 60, 0.12); color: var(--copper-ink); }

.chip-float strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.chip-float small { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.3; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (min-width: 60em) {
  .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
  .hero-visual { margin-inline: 0 0.5rem; }
  .chip-a { right: -1.6rem; }
  .chip-b { left: -1.8rem; }
}

/* ---------- Schmerz-Block (Stat-Band) ---------- */

.stats-head { max-width: 40rem; }
.stats-head p { margin-top: 1rem; color: var(--muted); }

.stats {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem clamp(1.5rem, 3.5vw, 3rem);
}

.stat { border-top: 1px solid var(--line); padding-top: 1.4rem; }

.stat-num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.05;
}

.stat-num em { font-style: normal; color: var(--copper); }

.stat p { margin-top: 0.65rem; font-size: 0.95rem; color: var(--muted); line-height: 1.55; }

@media (min-width: 40em) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Lead Magnet ---------- */

.magnet-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.magnet-copy > * + * { margin-top: 1.5rem; }

.magnet-list { list-style: none; padding: 0; display: grid; gap: 0.9rem; }

.magnet-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--text);
}

.tick {
  flex: none;
  width: 1.5rem; height: 1.5rem;
  margin-top: 0.2rem;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(22, 50, 36, 0.08);
  color: var(--green-soft);
}

.scarcity {
  border-left: 3px solid var(--copper);
  background: rgba(180, 95, 60, 0.07);
  border-radius: 0 var(--r-input) var(--r-input) 0;
  padding: 1rem 1.2rem;
  font-size: 0.98rem;
  color: var(--ink);
}

.scarcity strong { color: var(--copper-ink); }

.form-card .bezel-core { padding: clamp(1.4rem, 3.5vw, 2rem); }

.form-card h3 { margin-bottom: 0.35rem; }

.form-hint { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.4rem; }

.field { margin-bottom: 1.05rem; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field input {
  width: 100%;
  border: 1px solid rgba(24, 36, 32, 0.18);
  border-radius: var(--r-input);
  background: var(--paper);
  padding: 0.8rem 1rem;
  color: var(--ink);
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.field input::placeholder { color: #6b6353; opacity: 1; }

.field input:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(180, 95, 60, 0.22);
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-ok {
  display: none;
  margin-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-soft);
}

.form-ok.is-visible { display: block; }

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.3rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-divider::before,
.form-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.call-row { text-align: center; }

.call-row .btn { width: 100%; }

.call-meta { margin-top: 0.7rem; font-size: 0.88rem; color: var(--muted); }

.call-meta a { color: var(--copper-ink); font-weight: 600; }

@media (min-width: 60em) {
  .magnet-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 26.5rem); }
  .form-card { position: sticky; top: 6rem; }
}

/* ---------- Pilotpaket (dunkles Panel) ---------- */

.offer-shell {
  background: rgba(22, 50, 36, 0.12);
  border: 1px solid rgba(22, 50, 36, 0.16);
  border-radius: var(--r-panel);
  padding: 7px;
  box-shadow: var(--shadow-soft);
}

.panel-dark {
  background: linear-gradient(160deg, #1a3a2a 0%, var(--green) 45%, var(--green-deep) 100%);
  border-radius: var(--r-panel-core);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  color: var(--cream-muted);
  padding: clamp(1.8rem, 5vw, 3.5rem);
  overflow: hidden;
  position: relative;
}

.panel-dark h2, .panel-dark h3 { color: var(--cream); }

.offer-head { max-width: 40rem; }
.offer-head h2 { margin-top: 1.2rem; }
.offer-head p { margin-top: 1rem; }

.stack-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}

.stack-table td {
  padding: 0.95rem 0;
  border-bottom: 1px dashed var(--line-dark);
  vertical-align: top;
}

.stack-table td.val {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--cream);
  white-space: nowrap;
  padding-left: 1rem;
  width: 6.5rem;
}

.stack-item { color: var(--cream); font-weight: 600; letter-spacing: -0.01em; }

.stack-sub { display: block; font-size: 0.86rem; font-weight: 400; color: var(--cream-muted); margin-top: 0.15rem; }

.bonus-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-bright);
  border: 1px solid rgba(209, 138, 99, 0.45);
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  margin-right: 0.5rem;
  vertical-align: 0.12em;
}

.stack-total td {
  border-bottom: 0;
  padding-top: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}

.stack-total .val { font-size: 1.35rem; }

.price-duo {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}

.price-card {
  background: rgba(247, 241, 231, 0.07);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-card);
  padding: 6px;
}

.price-core {
  background: rgba(9, 24, 17, 0.5);
  border-radius: var(--r-card-core);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.07);
  padding: 1.5rem 1.5rem 1.4rem;
  height: 100%;
}

.price-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.price-num {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
}

.price-num sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream-muted);
  vertical-align: baseline;
}

.price-desc { margin-top: 0.7rem; font-size: 0.92rem; line-height: 1.55; }

.price-flag {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-bright);
}

.offer-foot {
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer-scarcity {
  font-size: 0.98rem;
  color: var(--cream);
  border-left: 3px solid var(--copper-bright);
  padding-left: 1rem;
}

.offer-scarcity .mono { color: var(--copper-bright); }

.offer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.offer-cta small { color: var(--cream-muted); font-size: 0.88rem; }

@media (min-width: 48em) {
  .price-duo { grid-template-columns: 1.15fr 1fr; }
}

/* ---------- Garantien ---------- */

.guarantee-grid { display: grid; gap: 1.1rem; }

.g-card { height: 100%; }

.g-card .bezel-core {
  padding: 1.7rem 1.6rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.g-top { display: flex; align-items: center; justify-content: space-between; }

.g-icon {
  width: 2.7rem; height: 2.7rem;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(22, 50, 36, 0.08);
  color: var(--green);
}

.g-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper-ink);
  letter-spacing: 0.08em;
}

.g-card p { font-size: 0.97rem; color: var(--muted); line-height: 1.6; }

.g-card h3 { text-wrap: balance; }

@media (min-width: 56em) {
  .guarantee-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- So funktioniert's ---------- */

.steps {
  display: grid;
  gap: 2.2rem clamp(1.5rem, 3.5vw, 3rem);
  counter-reset: step;
}

.step { border-top: 2px solid var(--green); padding-top: 1.3rem; position: relative; }

.step-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--copper);
  line-height: 1;
}

.step h3 { margin-top: 0.8rem; }

.step p { margin-top: 0.6rem; font-size: 0.97rem; color: var(--muted); }

.step-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.45rem; }

.step-tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  background: rgba(253, 250, 244, 0.6);
}

@media (min-width: 56em) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Checklisten-Teaser ---------- */

.teaser .bezel-core {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.teaser-doc { width: 5.5rem; }

.teaser-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); }

.teaser-copy p { margin-top: 0.7rem; color: var(--muted); max-width: 38em; }

.teaser-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

@media (min-width: 56em) {
  .teaser .bezel-core { grid-template-columns: auto 1fr auto; }
}

/* ---------- FAQ ---------- */

.faq-wrap { max-width: 46rem; }

.faq {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.2rem;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.faq summary::-webkit-details-marker { display: none; }

.faq-x {
  position: relative;
  flex: none;
  width: 1.9rem; height: 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(253, 250, 244, 0.8);
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease);
}

.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0.75rem; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-x::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq[open] .faq-x { transform: rotate(45deg); background: rgba(180, 95, 60, 0.12); }

.faq-body { padding: 0 2.6rem 1.5rem 0.2rem; color: var(--muted); }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(170deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--cream-muted);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.2rem;
}

.footer-grid { display: grid; gap: 2.5rem; }

.footer-brand p { margin-top: 1rem; max-width: 26em; font-size: 0.95rem; }

.footer-brand .brand { color: var(--cream); font-size: 1.15rem; }

.footer-col h3 {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }

.footer-col a {
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.45s var(--ease);
}

.footer-col a:hover { color: var(--cream); }

.footer-legal {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(207, 198, 176, 0.85);
}

@media (min-width: 56em) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ---------- Mobile Action-Bar ---------- */

.action-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(247, 241, 231, 0.92);
  border-top: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.action-bar .btn { flex: 1; padding-block: 0.8rem; font-size: 0.92rem; }

.action-bar .btn-round {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  padding: 0;
  justify-content: center;
}

body.has-actionbar { padding-bottom: 4.6rem; }

@media (min-width: 48em) {
  .action-bar { display: none; }
  body.has-actionbar { padding-bottom: 0; }
}

/* ---------- Scroll-Reveals (nur transform/opacity) ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--d, 0s);
}

html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Dokumentseiten (Checkliste, Impressum) ---------- */

.doc-page { max-width: 50rem; margin-inline: auto; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4.5vw, 2.5rem); }

.doc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.doc-top .btn { padding-block: 0.65rem; font-size: 0.9rem; }

.doc-head { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }

.doc-head .doc-kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-ink);
}

.doc-head h1 { font-size: clamp(1.9rem, 5vw, 2.7rem); margin-top: 0.7rem; }

.doc-head .lede { margin-top: 1rem; font-size: 1.05rem; color: var(--muted); }

.cl-list { list-style: none; padding: 0; counter-reset: fehler; display: grid; gap: 1rem; }

.cl-item {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--bg-raised);
  padding: 1.3rem 1.4rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  break-inside: avoid;
}

.cl-box {
  width: 1.35rem; height: 1.35rem;
  margin-top: 0.2rem;
  border: 2px solid var(--green);
  border-radius: 5px;
  background: var(--paper);
}

.cl-item h2 {
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.cl-item h2 .cl-no {
  font-family: var(--font-mono);
  color: var(--copper-ink);
  font-weight: 700;
  margin-right: 0.4rem;
}

.cl-body { grid-column: 2; font-size: 0.95rem; line-height: 1.55; }

.cl-body p { margin-top: 0.45rem; }

.cl-body strong { color: var(--ink); }

.cl-body .cl-fix strong { color: var(--green-soft); }

.cl-actions {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.doc-foot {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.doc-foot a { color: var(--copper-ink); }

/* Impressum */

.imp-section { margin-bottom: 2rem; }

.imp-section h2 { font-size: 1.15rem; margin-bottom: 0.6rem; }

.imp-section p, .imp-section address { font-style: normal; color: var(--text); }

.placeholder-note {
  border-left: 3px solid var(--copper);
  background: rgba(180, 95, 60, 0.07);
  border-radius: 0 var(--r-input) var(--r-input) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  margin-bottom: 2.2rem;
  color: var(--ink);
}

mark.ph {
  background: rgba(180, 95, 60, 0.14);
  color: var(--copper-ink);
  font-weight: 600;
  border-radius: 4px;
  padding: 0.05em 0.3em;
}

/* ---------- Förder-Uhr (Loss-Aversion-Widget) ---------- */

.uhr-head { max-width: 46rem; }
.uhr-head p { margin-top: 1rem; color: var(--muted); }
.uhr-head strong { color: var(--copper-ink); }

.uhr .bezel-core.uhr-core { padding: clamp(1.4rem, 4vw, 2.4rem); }

.uhr-region {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.9rem 1rem;
  padding-bottom: clamp(1.4rem, 3.5vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.uhr-region-field { display: flex; flex-direction: column; gap: 0.4rem; }
.uhr-region-plz { max-width: 11rem; }

.uhr-region label {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.uhr-input {
  border: 1px solid rgba(24, 36, 32, 0.18);
  border-radius: var(--r-input);
  background: var(--paper);
  padding: 0.7rem 0.95rem;
  color: var(--ink);
  font-weight: 600;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
select.uhr-input { min-width: 15rem; cursor: pointer; }

.uhr-input:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(180, 95, 60, 0.22);
}

.uhr-region-or {
  padding-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.uhr-grid {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  padding-block: clamp(1.6rem, 4vw, 2.4rem);
  align-items: stretch;
}

.uhr-kicker { font-size: 0.95rem; color: var(--muted); line-height: 1.4; }
.uhr-kicker .mono { color: var(--ink); font-weight: 700; }

.uhr-num {
  font-size: clamp(2.9rem, 9vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--copper);
  margin-top: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.uhr-sub { margin-top: 0.8rem; font-size: 0.98rem; color: var(--text); max-width: 30em; }
.uhr-sub strong { color: var(--ink); }

.uhr-frist {
  border: 1px solid var(--line);
  background: rgba(22, 50, 36, 0.04);
  border-radius: var(--r-card);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.uhr-frist-head { display: flex; align-items: center; gap: 0.6rem; }

.uhr-dot {
  width: 0.85rem; height: 0.85rem; flex: none;
  border-radius: 999px;
  background: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(46, 107, 79, 0.16);
}
.uhr-dot[data-ampel="gelb"] { background: #c98a2b; box-shadow: 0 0 0 4px rgba(201, 138, 43, 0.18); }
.uhr-dot[data-ampel="rot"] { background: var(--copper); box-shadow: 0 0 0 4px rgba(180, 95, 60, 0.2); animation: uhr-pulse 2.4s var(--ease-sym) infinite; }

@keyframes uhr-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(180, 95, 60, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(180, 95, 60, 0.08); }
}

.uhr-frist-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.uhr-frist-date { font-size: 1.05rem; font-weight: 700; color: var(--ink); }

.uhr-countdown {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.uhr-frist-what { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

.uhr-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  padding-top: clamp(1.4rem, 3.5vw, 2rem);
  border-top: 1px solid var(--line);
}

.uhr-legal { font-size: 0.82rem; color: var(--muted); line-height: 1.5; max-width: 34em; flex: 1 1 18rem; }
.uhr-legal a { color: var(--copper-ink); }

.uhr-news {
  margin-top: clamp(1.4rem, 3.5vw, 2rem);
  background: linear-gradient(160deg, #1a3a2a 0%, var(--green) 55%, var(--green-deep) 100%);
  border-radius: var(--r-card);
  padding: clamp(1.4rem, 3.5vw, 2rem);
  display: grid;
  gap: 1.3rem;
  color: var(--cream-muted);
}

.uhr-news h3 { color: var(--cream); font-size: 1.2rem; }
.uhr-news-copy p { margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.55; }

.uhr-news-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.uhr-news-row input {
  flex: 1 1 15rem;
  border: 1px solid rgba(247, 241, 231, 0.24);
  border-radius: var(--r-input);
  background: rgba(9, 24, 17, 0.4);
  padding: 0.8rem 1rem;
  color: var(--cream);
}
.uhr-news-row input::placeholder { color: rgba(207, 198, 176, 0.7); }
.uhr-news-row input:focus {
  outline: none;
  border-color: var(--copper-bright);
  box-shadow: 0 0 0 3px rgba(209, 138, 99, 0.28);
}

.uhr-news-note { font-size: 0.8rem; color: rgba(207, 198, 176, 0.85); line-height: 1.5; }

.uhr-news-ok, .uhr-news-err { display: none; font-size: 0.9rem; font-weight: 600; margin-top: 0.2rem; }
.uhr-news-ok { color: #a7e0c1; }
.uhr-news-err { color: #e8b59a; }
.uhr-news-ok.is-visible, .uhr-news-err.is-visible { display: block; }

@media (min-width: 52em) {
  .uhr-grid { grid-template-columns: 1.35fr 1fr; }
  .uhr-news { grid-template-columns: 1fr 1.1fr; align-items: center; }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .chip-float { animation: none; }
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn, .btn-orb, .faq-x { transition: none; }
}

/* ---------- Print (Checkliste als Ein-Seiten-Dokument) ---------- */

@media print {
  @page { size: A4; margin: 12mm; }

  html { scroll-behavior: auto; }

  html.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }

  body { background: #fff; color: #1a1a1a; font-size: 10pt; line-height: 1.45; }

  .grain, .no-print, .doc-top .btn, .cl-actions, .action-bar { display: none !important; }

  .doc-page { max-width: none; padding: 0; }

  .doc-top { margin-bottom: 8mm; }

  .doc-head { margin-bottom: 6mm; }

  .doc-head h1 { font-size: 17pt; color: #10231a; }

  .doc-head .lede { font-size: 9.5pt; color: #333; margin-top: 2mm; }

  .cl-list { gap: 3mm; }

  .cl-item {
    background: #fff;
    border: 0.6pt solid #9aa39d;
    border-radius: 6px;
    padding: 3mm 4mm;
    page-break-inside: avoid;
  }

  .cl-item h2 { font-size: 10.5pt; }

  .cl-body { font-size: 9pt; line-height: 1.4; }

  .cl-body p { margin-top: 1mm; }

  .cl-box { width: 4.5mm; height: 4.5mm; border: 1.1pt solid #10231a; border-radius: 1mm; background: #fff; }

  .doc-foot { margin-top: 5mm; padding-top: 3mm; border-top: 0.6pt solid #9aa39d; font-size: 8.5pt; color: #333; }

  .doc-foot a { color: #333; text-decoration: none; }
}
