/* Digital Geordnet – v8 Design Tokens & Styles
   Dunkles, editorial-geprägtes Layout (Navy, Ghost-Lettern, Serif-Akzente).
   Selbst gehostete Schriften (siehe fonts.css), keine externen Requests. */

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

:root {
  --navy:      #0C1B33;
  --navy-alt:  #091528;
  --navy-deep: #060E1C;
  --teal:      #5CB7B0;
  --teal-d:    #2A7F7F;
  --gold:      #C8A36A;
  --gold-d:    #B8915A;
  --paper:     #F4F2EA;
  --cream:     #F8F5EF;
  --sub:       #9DB0CC;
  --sub-h:     #4A5A72;
  --ntext:     #0F1F3D;
  --line-dark: rgba(255,255,255,0.08);
  --line-light:rgba(0,0,0,0.08);

  --f-sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-serif: "Source Serif 4", Georgia, serif;
  --f-mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--navy);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ── Accessibility ── */
.skip-link {
  position: absolute; top: -100%; left: 0;
  padding: 12px 20px; background: var(--teal); color: #fff;
  font-weight: 600; font-size: 14px; z-index: 9999;
  text-decoration: none; border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 8px; }

/* ── Stripe ── */
.stripe { position: sticky; top: 0; z-index: 200; height: 6px; display: flex; overflow: hidden; transition: height 0.3s; }
.stripe .t { flex: 1; background: var(--teal-d); }
.stripe .g { width: 34%; background: var(--gold-d); }
.stripe.hide { height: 0; }

/* ── Nav ── */
nav {
  position: sticky; top: 6px; z-index: 199;
  transition: top 0.3s;
  background: rgba(12,27,51,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
nav.flush { top: 0; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--teal-d), var(--gold-d));
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 12px; letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: var(--paper); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--sub); transition: color 0.15s; }
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold);
  padding: 8px 14px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
/* höhere Spezifität als ".nav-links a", damit die Button-Schrift nicht im
   blassen Nav-Grau statt im dunklen Kontrast-Ton auf Gold landet */
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover { color: var(--ntext); }
.nav-cta.show { opacity: 1; pointer-events: auto; }

/* ── Layout ── */
.w { max-width: 560px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ── */
.mono { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.mono-teal { color: var(--teal); }
.mono-gold { color: var(--gold); }
.mono-teal-d { color: var(--teal-d); }
.mono-gold-d { color: var(--gold-d); }
.serif { font-family: var(--f-serif); font-style: italic; }
.rule { display: block; width: 64px; height: 3px; background: var(--gold); }

/* Sektionsgrenz-Signal: jede Sektion beginnt mit einer kurzen Linie über dem
   Eyebrow-Label. Funktioniert unabhängig von Hell/Dunkel, da currentColor die
   jeweilige mono-teal/mono-gold/mono-teal-d-Farbe übernimmt. */
.sec-label { position: relative; padding-top: 20px; margin-bottom: 24px; display: inline-block; font-size: 16.5px; }
.sec-label::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 2px; background: currentColor; opacity: 0.55; }

/* ── Ghost watermark letters ── */
.ghost {
  position: absolute; font-family: var(--f-mono); font-weight: 500; line-height: 1;
  color: var(--teal); opacity: 0.055; user-select: none; pointer-events: none; z-index: 0;
}
.ghost.serif-ghost { font-family: var(--f-serif); font-style: italic; font-weight: 600; }

/* ── Scroll-reveal ── */

/* ── Buttons ── */
.btn-gold {
  display: block; width: 100%; padding: 18px 24px;
  background: var(--gold); color: var(--ntext);
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em; text-align: center;
  position: relative; z-index: 1; transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.88; }
.btn-ghost-btn {
  display: block; width: 100%; padding: 14px 24px; margin-top: 10px;
  color: var(--sub); font-size: 14px; text-align: center;
  border: 1px solid var(--line-dark); position: relative; z-index: 1;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
#hero { position: relative; overflow: hidden; padding: 68px 0 76px; background: var(--navy); }
#hero .ghost { font-size: 240px; top: -20px; right: -10px; }
#hero h1 { font-size: 40px; font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--paper); text-wrap: balance; margin: 24px 0 20px; position: relative; z-index: 1; }
#hero .sub { font-size: 17px; line-height: 1.65; color: var(--sub); margin-bottom: 36px; text-wrap: pretty; position: relative; z-index: 1; }

.trust { display: flex; flex-direction: column; gap: 11px; margin-bottom: 40px; position: relative; z-index: 1; }
.trust li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; color: var(--paper); }
.trust li .ck { width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; }
.trust li .ck svg { width: 10px; height: 10px; }

/* ────────────────────────────────────────
   PROBLEM
──────────────────────────────────────── */
#problem { position: relative; overflow: hidden; padding: 80px 0; background: var(--cream); color: var(--ntext); }
#problem .ghost { font-size: 300px; bottom: -50px; right: -20px; }
#problem .sec-label { color: var(--teal-d); }
#problem h2 { font-size: 28px; font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; color: var(--ntext); text-wrap: balance; margin-bottom: 16px; position: relative; z-index: 1; }
.body-text { font-size: 17px; line-height: 1.7; color: var(--sub-h); text-wrap: pretty; position: relative; z-index: 1; }
.body-text strong { color: var(--ntext); font-weight: 600; }
.body-text + .body-text { margin-top: 20px; }

.thought-flow { font-size: 15px; font-style: italic; color: var(--sub-h); line-height: 1.7; margin: 20px 0 28px; text-wrap: pretty; position: relative; z-index: 1; }
.tf-point { color: var(--teal-d); }
.tf-dot { color: rgba(74,90,114,0.4); font-style: normal; }

.stat { margin: 32px 0 0; padding: 28px 22px; border-left: 3px solid var(--gold-d); background: rgba(184,145,90,0.08); position: relative; z-index: 1; }
.stat-n { font-size: 52px; font-weight: 800; letter-spacing: -0.045em; color: var(--gold-d); line-height: 1; margin-bottom: 8px; }
.stat-t { font-size: 14px; color: var(--sub-h); line-height: 1.5; }
.stat-s { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(74,90,114,0.6); margin-top: 12px; }

.stat-sub-row { display: flex; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-light); position: relative; z-index: 1; }
.stat-sub { flex: 1; padding: 0 20px; }
.stat-sub:first-child { padding-left: 0; }
.stat-sub + .stat-sub { border-left: 1px solid var(--line-light); }
.stat-sub-n { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--gold-d); line-height: 1; margin-bottom: 6px; }
.stat-sub-t { font-size: 13px; color: var(--sub-h); line-height: 1.4; }
.stat-sub-s { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(74,90,114,0.55); margin-top: 8px; }

.stories-full { border-top: 1px solid var(--line-light); margin-top: 44px; padding-top: 36px; position: relative; }
.stories-full .story + .story { margin-top: 28px; }
.story { padding: 0; position: relative; z-index: 1; }
.story-title { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 18px; line-height: 1.4; color: var(--ntext); margin-bottom: 10px; }
.story-body { font-size: 13px; line-height: 1.65; color: var(--sub-h); }
.story-body strong { color: var(--ntext); font-weight: 600; }

.closing-divider { border-top: 1px solid var(--line-light); margin-top: 44px; padding-top: 36px; }
.problem-closing { text-align: center; max-width: 640px; margin: 0 auto; }

/* ────────────────────────────────────────
   ERNSTFALL
──────────────────────────────────────── */
#ernstfall { position: relative; overflow: hidden; padding: 80px 0; background: var(--navy); }
#ernstfall .ghost { font-size: 220px; top: -20px; right: -10px; }
#ernstfall h2 { font-size: 30px; font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; color: var(--paper); text-wrap: balance; margin-bottom: 24px; position: relative; z-index: 1; }
.setup { font-size: 16px; line-height: 1.7; color: var(--sub); margin-bottom: 28px; text-wrap: pretty; position: relative; z-index: 1; }
.ef-label { margin-bottom: 18px; display: block; }

.punch { font-size: 17px; font-weight: 600; line-height: 1.45; color: var(--paper); text-wrap: balance; margin-bottom: 28px; position: relative; z-index: 1; }

.q-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; z-index: 1; margin-top: 8px; }
.q-item { font-size: 15px; line-height: 1.5; color: var(--paper); padding: 14px 0 14px 18px; border-left: 2px solid var(--teal); border-bottom: 1px solid var(--line-dark); }
.q-item:last-child { border-bottom: none; }

/* ────────────────────────────────────────
   BRIDGE (04 Lösung – kurze Verschnaufpause)
──────────────────────────────────────── */
.bridge { padding: 56px 0; background: var(--paper); color: var(--ntext); text-align: center; }
.bridge .w { max-width: 480px; }
.bridge .sec-label { color: var(--teal-d); font-weight: 700; font-size: 18px; }
.bridge h2 { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 26px; line-height: 1.4; color: var(--ntext); margin-bottom: 14px; }
.bridge p { font-size: 16px; line-height: 1.6; color: var(--sub-h); }
.bridge .bridge-sub { margin-top: 18px; font-style: italic; font-family: var(--f-serif); color: var(--teal-d); font-size: 16px; }

/* ────────────────────────────────────────
   STEPS
──────────────────────────────────────── */
#steps { position: relative; overflow: hidden; padding: 80px 0; background: var(--cream); color: var(--ntext); border-top: 2px solid rgba(15,31,61,0.14); }
#steps .ghost { font-size: 220px; bottom: -30px; right: -10px; }
#steps .sec-label { color: var(--teal-d); }
#steps h2 { font-size: 30px; font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; color: var(--ntext); text-wrap: balance; margin-bottom: 12px; position: relative; z-index: 1; }
#steps h2 .serif { display: block; font-size: 0.72em; color: var(--gold-d); font-weight: 400; }
#steps .lead { font-size: 16px; line-height: 1.6; color: var(--sub-h); margin: 14px 0 44px; text-wrap: pretty; position: relative; z-index: 1; }

.steps { display: flex; flex-direction: column; position: relative; z-index: 1; }
.step { padding: 28px 0; border-top: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 10px; }
.step:last-child { border-bottom: 1px solid var(--line-light); }
.step-n { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-d); }
.step-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ntext); line-height: 1.25; }
.step-body { font-size: 14.5px; line-height: 1.65; color: var(--sub-h); text-wrap: pretty; }

.loesung-bridge { margin-top: 8px; padding-top: 12px; text-align: center; position: relative; z-index: 1; }
.loesung-bridge .lb-main { font-family: var(--f-serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ntext); margin-bottom: 10px; display: block; }
.loesung-bridge .lb-sub { font-size: 14px; color: var(--sub-h); }

/* ────────────────────────────────────────
   INCLUDES (light)
──────────────────────────────────────── */
#includes { padding: 80px 0; background: var(--cream); color: var(--ntext); }
#includes .sec-label { color: var(--teal-d); margin-bottom: 24px; }
#includes h2 { font-size: 30px; font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; color: var(--ntext); text-wrap: balance; margin-bottom: 12px; }
#includes .intro { font-size: 16px; line-height: 1.6; color: var(--sub-h); margin-bottom: 40px; text-wrap: pretty; }

.inc-item { padding: 22px 0; border-top: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 5px; }
.inc-item:last-of-type { border-bottom: 1px solid var(--line-light); }
.inc-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--teal-d); }
.inc-title { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; color: var(--ntext); }
.inc-body { font-size: 14.5px; line-height: 1.65; color: var(--sub-h); }
.inc-note { margin-top: 28px; padding: 18px 18px 18px 22px; border-left: 3px solid var(--teal-d); background: rgba(42,127,127,0.06); }
.inc-note p { font-size: 14.5px; line-height: 1.65; color: var(--sub-h); }

/* ────────────────────────────────────────
   TRANSFORMATION
──────────────────────────────────────── */
#transformation { position: relative; overflow: hidden; padding: 80px 0; background: var(--navy-deep); }
#transformation .ghost { font-size: 220px; bottom: -30px; right: -10px; }
#transformation h2 { font-size: 28px; font-weight: 700; line-height: 1.18; letter-spacing: -0.02em; color: var(--paper); text-wrap: balance; margin-bottom: 12px; }
.transform-intro { font-size: 16px; line-height: 1.65; color: var(--sub); margin-bottom: 32px; text-wrap: pretty; }

.transform-list { display: flex; flex-direction: column; margin-bottom: 20px; }
.transform-list li { font-size: 14.5px; line-height: 1.5; color: var(--paper); padding: 12px 0; border-bottom: 1px solid var(--line-dark); display: flex; gap: 14px; align-items: flex-start; }
.transform-list li:first-child { border-top: 1px solid var(--line-dark); }
.transform-list li .tdot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--teal); margin-top: 7px; flex-shrink: 0; }

.transform-payoff { padding-top: 12px; position: relative; z-index: 1; }
.tp-intro { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sub); margin-bottom: 22px; }
.tp-line1 { font-family: var(--f-serif); font-style: italic; font-size: 24px; font-weight: 400; line-height: 1.3; color: var(--paper); margin-bottom: 4px; }
.tp-line2 { font-family: var(--f-serif); font-style: italic; font-size: 19px; font-weight: 400; line-height: 1.3; color: var(--sub); margin-bottom: 14px; }
.tp-climax { font-family: var(--f-serif); font-style: italic; font-size: 46px; font-weight: 700; line-height: 1; color: var(--gold); letter-spacing: -0.02em; }

/* ────────────────────────────────────────
   BETRIFFT
──────────────────────────────────────── */
#betrifft { position: relative; overflow: hidden; padding: 88px 0; background: var(--paper); color: var(--ntext); border-top: 2px solid rgba(15,31,61,0.14); }
#betrifft .ghost { font-size: 220px; bottom: -30px; right: -10px; }
#betrifft .sec-label { color: var(--teal-d); }
#betrifft h2 { font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: var(--ntext); text-wrap: balance; margin-bottom: 28px; position: relative; z-index: 1; }
#betrifft h2 .serif { display: block; color: var(--teal-d); font-size: 0.82em; font-weight: 400; }
#betrifft .body-text em { font-style: normal; color: var(--gold-d); font-weight: 600; }
#betrifft .body-text + .body-text { margin-top: 22px; }

/* ────────────────────────────────────────
   FOUNDER
──────────────────────────────────────── */
#founder { position: relative; overflow: hidden; padding: 80px 0; background: var(--navy-alt); }
#founder .ghost { font-size: 200px; bottom: -20px; right: -10px; }
#founder h2 { font-size: 26px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--paper); margin-bottom: 22px; position: relative; z-index: 1; }
.founder-p { font-size: 16px; line-height: 1.75; color: var(--sub); margin-bottom: 20px; text-wrap: pretty; position: relative; z-index: 1; }
.founder-p strong { color: var(--paper); font-weight: 500; }
.founder-close { font-family: var(--f-serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--teal); margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line-dark); position: relative; z-index: 1; }
.founder-signature { display: flex; align-items: center; gap: 14px; margin-top: 24px; position: relative; z-index: 1; }
.founder-signature img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid var(--line-dark); }
.founder-signature .fs-name { font-size: 15px; font-weight: 600; color: var(--paper); }
.founder-signature .fs-role { font-size: 12.5px; color: var(--sub); margin-top: 2px; }

/* ────────────────────────────────────────
   FAQ (light)
──────────────────────────────────────── */
#faq { padding: 80px 0; background: var(--cream); color: var(--ntext); }
#faq .sec-label { color: var(--teal-d); margin-bottom: 24px; }
#faq h2 { font-size: 26px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--ntext); margin-bottom: 32px; }
.faq-item { border-top: 1px solid var(--line-light); }
.faq-item:last-child { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%; padding: 18px 0; text-align: left; cursor: pointer;
  font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--ntext);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.faq-chevron { flex-shrink: 0; color: #8B95A8; transition: transform 0.25s ease; margin-top: 2px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--teal-d); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a-inner { font-size: 14px; line-height: 1.65; color: var(--sub-h); padding-bottom: 18px; text-wrap: pretty; }

/* ────────────────────────────────────────
   FINAL CTA
──────────────────────────────────────── */
#cta { position: relative; overflow: hidden; padding: 80px 0 88px; background: var(--navy-alt); }
#cta .ghost { font-size: 240px; top: -40px; right: -20px; opacity: 0.04; }
#cta h2 { font-size: 30px; font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; color: var(--paper); text-wrap: balance; margin-bottom: 14px; position: relative; z-index: 1; }
#cta .lead { font-size: 16px; line-height: 1.6; color: var(--sub); margin-bottom: 28px; text-wrap: pretty; position: relative; z-index: 1; }

.choices { display: flex; flex-direction: column; margin-bottom: 40px; position: relative; z-index: 1; }
.choices li { font-size: 14.5px; line-height: 1.5; color: var(--sub); padding: 11px 0 11px 26px; border-bottom: 1px solid var(--line-dark); position: relative; }
.choices li .arr { color: var(--teal); position: absolute; left: 0; top: 11px; }
.choices li em { font-style: normal; font-weight: 700; color: var(--gold); }

.price-card { border: 1px solid rgba(200,163,106,0.25); padding: 32px 22px 28px; position: relative; z-index: 1; margin-bottom: 20px; }
.price-badge { position: absolute; top: -11px; left: 22px; background: var(--gold); color: var(--ntext); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; padding: 4px 12px; }
.price-amt { font-size: 56px; font-weight: 800; letter-spacing: -0.045em; color: var(--paper); line-height: 1; margin-bottom: 4px; }
.price-amt sup { font-size: 28px; font-weight: 600; vertical-align: super; }
.price-reg { font-size: 13px; color: var(--sub); margin-bottom: 24px; }
.price-reg s { color: rgba(157,176,204,0.4); }
.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.4; color: var(--paper); }
.price-features li::before {
  content: ''; width: 15px; height: 15px; min-width: 15px; margin-top: 2px; border-radius: 50%;
  background-color: rgba(92,183,176,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3 3L11.5 3.5' stroke='%235CB7B0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.guarantee { font-size: 12.5px; line-height: 1.6; color: var(--sub); text-align: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-dark); }

.closing { font-family: var(--f-serif); font-style: italic; font-size: 18px; line-height: 1.55; color: var(--sub); text-align: center; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line-dark); position: relative; z-index: 1; }
.closing strong { color: var(--paper); font-style: normal; font-weight: 600; }

/* ────────────────────────────────────────
   ABSCHLUSS
──────────────────────────────────────── */
#abschluss { padding: 96px 0; background: var(--navy); color: var(--paper); text-align: center; }
.abschluss-inner { max-width: 520px; margin: 0 auto; padding: 0 28px; display: flex; flex-direction: column; align-items: center; }
#abschluss .rule { margin-bottom: 32px; background: var(--teal); }
.abschluss-head { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 30px; line-height: 1.25; letter-spacing: -0.01em; color: var(--paper); margin-bottom: 24px; }
.abschluss-body { font-size: 16px; line-height: 1.7; color: var(--sub); margin-bottom: 14px; text-wrap: pretty; }
.abschluss-body strong { color: var(--paper); font-weight: 600; }
.abschluss-final { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line-dark); width: 100%; }
.af-line { font-family: var(--f-serif); font-style: italic; font-size: 16px; line-height: 1.6; color: var(--sub); margin-bottom: 14px; }
.af-close { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--paper); }

/* ── Footer ── */
footer {
  background: var(--navy-deep); border-top: 1px solid var(--line-dark);
  padding: 26px 24px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-name { font-size: 13px; font-weight: 600; color: var(--sub); }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { font-size: 12px; color: rgba(157,176,204,0.5); }
.foot-links a:hover { color: var(--sub); }

/* ────────────────────────────────────────
   LEGAL PAGES (Impressum / Datenschutz / AGB)
──────────────────────────────────────── */
.legal-page { position: relative; overflow: hidden; max-width: 640px; margin: 0 auto; padding: 64px 28px 88px; }
.legal-page .ghost { font-size: 260px; top: -30px; right: -20px; }
.legal-title { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: clamp(30px, 6vw, 42px); letter-spacing: -0.01em; color: var(--paper); margin-bottom: 8px; position: relative; z-index: 1; }
.legal-date { font-size: 13px; color: var(--sub); margin-bottom: 48px; position: relative; z-index: 1; }
.legal-sec { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line-dark); position: relative; z-index: 1; }
.legal-sec:last-child { border-bottom: none; }
.legal-sec h2 { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.legal-sec h3 { font-size: 14px; font-weight: 600; color: var(--paper); margin: 16px 0 8px; }
.legal-sec p { font-size: 14.5px; color: var(--sub); line-height: 1.65; margin-bottom: 10px; }
.legal-sec p:last-child { margin-bottom: 0; }
.legal-sec a { color: var(--teal); }
.legal-sec a:hover { text-decoration: underline; }
.legal-sec ul { margin: 6px 0 10px 18px; list-style: disc; font-size: 14.5px; color: var(--sub); line-height: 1.65; }
.legal-sec ul li { margin-bottom: 4px; }
.legal-notice { background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); border-radius: 4px; padding: 14px 18px; font-size: 13.5px; color: var(--sub); line-height: 1.55; }

/* ── Desktop ── */
@media (min-width: 860px) {
  .w { max-width: 1040px; padding: 0 56px; }
  nav { padding: 14px 40px; }
  footer { padding: 30px 56px; }
  .legal-page { max-width: 780px; padding: 88px 56px 112px; }

  #hero { padding: 96px 0 104px; }
  #hero .ghost { font-size: 420px; top: -60px; right: -30px; }
  #hero h1 { font-size: 60px; max-width: 720px; }
  #hero .sub { font-size: 18px; max-width: 560px; }
  .trust { max-width: 440px; }
  .btn-gold, .btn-ghost-btn { max-width: 400px; }

  .bridge { padding: 72px 0; }
  .bridge h2 { font-size: 32px; }
  .bridge p { font-size: 17px; }

  #problem { padding: 96px 0; }
  #problem .ghost { font-size: 460px; bottom: -80px; right: -40px; }
  #problem h2 { font-size: 36px; }
  .problem-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; margin-bottom: 44px; }
  .stat { margin: 0; }
  .stories-full { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; position: relative; }
  .stories-full::before { content: ''; position: absolute; top: 36px; bottom: 0; left: 50%; width: 1px; background: var(--line-light); }
  .stories-full .story + .story { margin-top: 0; }

  #ernstfall { padding: 96px 0; }
  #ernstfall .ghost { font-size: 320px; }
  #ernstfall h2 { font-size: 42px; max-width: 680px; }
  .q-grid { grid-template-columns: 1fr 1fr; gap: 0 32px; }

  #steps { padding: 96px 0; }
  #steps .ghost { font-size: 300px; }
  #steps h2 { font-size: 38px; }
  #steps .lead { font-size: 17px; max-width: 560px; }
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); padding: 44px 0; }
  .step { padding: 0 36px 0 0; border-top: none; border-bottom: none; }
  .step + .step { padding-left: 36px; border-left: 1px solid var(--line-light); }
  .step:last-child { border-bottom: none; }

  #includes { padding: 96px 0; }
  #includes h2 { font-size: 38px; }
  .inc-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
  .inc-item { border-top: 1px solid var(--line-light); border-bottom: none; }

  #transformation { padding: 96px 0; }
  #transformation h2 { font-size: 34px; }
  .transform-list { display: grid; grid-template-columns: 1fr 1fr; }
  .transform-list li:first-child { border-top: none; }
  .transform-list li:nth-child(2) { border-top: 1px solid var(--line-dark); }
  .tp-line1 { font-size: 30px; }
  .tp-line2 { font-size: 22px; }
  .tp-climax { font-size: 62px; }

  #betrifft { padding: 96px 0; }
  #betrifft .ghost { font-size: 320px; }
  #betrifft h2 { font-size: 44px; }

  #founder { padding: 96px 0; }
  #founder .ghost { font-size: 260px; }
  #founder h2 { font-size: 32px; }
  #founder .w { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; align-items: start; }
  #founder .w .ghost, #founder .w .sec-label, #founder .w h2 { grid-column: 1 / -1; }
  #founder .founder-close { grid-column: 2; margin-top: 0; padding-top: 0; border-top: none; border-left: 2px solid rgba(92,183,176,0.3); padding-left: 22px; align-self: start; }
  #founder .founder-signature { grid-column: 2; padding-left: 22px; }

  #faq { padding: 96px 0; }
  #faq h2 { font-size: 32px; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; align-items: start; }

  #cta { padding: 96px 0; }
  #cta .ghost { font-size: 340px; }
  .cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
  .cta-grid > div:last-child { margin-top: 40px; }
  #cta h2 { font-size: 38px; }
  .price-card { margin: 0; }
  .closing { max-width: 600px; margin: 44px auto 0; }

  #abschluss .abschluss-inner { max-width: 620px; }
  .abschluss-head { font-size: 38px; }
}
