/* ============================================================
   HÖCKMAIR B2B INBOUND — style.css
   Designkonzept "Signal": editorial, dunkle Bühnen, lebhafte UI
   ============================================================ */

/* ---- Lokale Schriften (DSGVO-konform, ohne Google-CDN) ---- */
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("fonts/dm-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("fonts/dm-sans-500.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("fonts/dm-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "DM Serif Display"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("fonts/dm-serif-display-400.woff2") format("woff2");
}

/* ---- Tokens ---- */
:root {
  --petrol:      #1C4F4A;
  --petrol-dk:   #143D39;
  --ink:         #0F2C29;
  --schiefer:    #3D4F52;
  --akzent:      #5B8C85;
  --akzent-lt:   #7BA8A1;
  --creme:       #F2EDE0;
  --bg:          #F8F6F0;
  --white:       #FFFFFF;
  --paper:       #FCFBF7;

  --text:        #25302F;
  --muted:       rgba(61, 79, 82, 0.72);
  --border:      rgba(28, 79, 74, 0.12);
  --border-soft: rgba(28, 79, 74, 0.08);

  --on-dark:        #F4F1E8;
  --on-dark-muted:  rgba(244, 241, 232, 0.66);
  --on-dark-border: rgba(244, 241, 232, 0.16);

  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);

  --container: 1180px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 76px;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20, 61, 57, 0.05), 0 4px 14px rgba(20, 61, 57, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 61, 57, 0.08), 0 16px 40px rgba(20, 61, 57, 0.07);
  --shadow-lg: 0 14px 36px rgba(20, 61, 57, 0.12), 0 30px 70px rgba(20, 61, 57, 0.10);
  --shadow-dark: 0 20px 60px rgba(5, 22, 20, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) { :root { --header-h: 62px; } }

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }

::selection { background: var(--petrol); color: var(--creme); }

:focus-visible { outline: 2px solid var(--akzent); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--petrol); color: var(--creme); padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 2000; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.01em; padding: 0.85rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.2s ease, color 0.2s ease;
}
.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary { background: var(--petrol); color: var(--creme); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--petrol-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-large { padding: 1.05rem 2rem; font-size: 1rem; }

/* Variante auf dunklem Grund: helle Fläche, dunkler Text */
.btn-on-dark { background: var(--creme); color: var(--petrol); }
.btn-on-dark:hover { background: var(--white); color: var(--petrol-dk); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner { height: var(--header-h); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; line-height: 0; transition: opacity 0.2s; }
.brand:hover { opacity: 0.82; }
.brand-logo img, img.brand-logo { height: 40px; width: auto; }
@media (max-width: 768px) { .brand-logo img, img.brand-logo { height: 32px; } }

/* Logo-Umschaltung */
.brand-logo--dark, .brand-logo--light { display: none; }
body.home .site-header:not(.is-scrolled) .brand-logo--light { display: block; }
.site-header.is-scrolled .brand-logo--dark,
body:not(.home) .brand-logo--dark { display: block; }

/* Solid-Zustand (gescrollt + alle Unterseiten) */
.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(248, 246, 240, 0.9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 1px 0 rgba(28,79,74,0.04);
}

.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  font-size: 0.9375rem; font-weight: 500; color: var(--schiefer);
  position: relative; padding: 0.25rem 0; transition: color 0.2s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--akzent); transition: width 0.25s var(--ease);
}
.nav-link:hover { color: var(--petrol); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--petrol); }

/* Helle Navigation über dunklem Hero */
body.home .site-header:not(.is-scrolled) .nav-link { color: var(--on-dark-muted); }
body.home .site-header:not(.is-scrolled) .nav-link:hover,
body.home .site-header:not(.is-scrolled) .nav-link.is-active { color: var(--on-dark); }
body.home .site-header:not(.is-scrolled) .nav-cta { background: var(--creme); color: var(--petrol); }
body.home .site-header:not(.is-scrolled) .nav-cta:hover { background: var(--white); }

.nav-cta { padding: 0.7rem 1.3rem; }

/* Mobile Toggle */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; position: relative; z-index: 1100;
}
.icon-bar, .icon-bar::before, .icon-bar::after {
  content: ""; position: absolute; left: 50%; width: 24px; height: 2px;
  background: var(--petrol); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s;
}
.icon-bar { top: 50%; transform: translate(-50%, -50%); }
.icon-bar::before { top: -7px; left: 0; transform: translateX(0); }
.icon-bar::after { top: 7px; left: 0; transform: translateX(0); }
body.home .site-header:not(.is-scrolled) .icon-bar,
body.home .site-header:not(.is-scrolled) .icon-bar::before,
body.home .site-header:not(.is-scrolled) .icon-bar::after { background: var(--on-dark); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(91,140,133,0.18), transparent 55%),
    linear-gradient(162deg, var(--petrol-dk) 0%, var(--petrol) 70%, #1f5853 100%);
  color: var(--on-dark);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.hero-glow {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,161,0.22), transparent 70%);
  top: -120px; right: -80px; pointer-events: none; filter: blur(10px);
}
.hero-container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.3rem, 1.5rem + 3.4vw, 3.9rem);
  line-height: 1.07; letter-spacing: -0.018em; color: var(--on-dark); text-wrap: balance;
}
.hero-headline span { display: block; }

.hero-subline {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  line-height: 1.6; color: var(--on-dark-muted); max-width: 54ch;
}
.hero-footnote-ref a { color: var(--akzent-lt); font-size: 0.7em; vertical-align: super; line-height: 1; }
.hero-footnote-ref a:hover { text-decoration: underline; }

.hero-actions {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.hero-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500; color: var(--on-dark); font-size: 0.95rem; position: relative;
}
.hero-link-arrow { transition: transform 0.25s var(--ease); }
.hero-link:hover .hero-link-arrow { transform: translateY(3px); }
.hero-link::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: var(--on-dark-border); transition: background-color 0.2s;
}
.hero-link:hover::after { background: var(--akzent-lt); }

.hero-proof {
  margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
}
.hero-proof li {
  position: relative; padding-left: 1.1rem; font-size: 0.9rem;
  color: var(--on-dark-muted); font-weight: 500;
}
.hero-proof li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--akzent-lt);
}

.hero-footnote {
  margin-top: 1.5rem; font-size: 0.75rem; line-height: 1.5;
  color: rgba(244,241,232,0.45); max-width: 50ch;
}
.hero-footnote sup { margin-right: 0.25rem; }

/* Hero-Visual + Signale */
.hero-visual { position: relative; justify-self: center; width: 100%; max-width: 420px; }
.hero-portrait { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-dark); }
.hero-portrait::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px rgba(244,241,232,0.14); pointer-events: none;
}
.hero-portrait img { width: 100%; height: auto; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: center 18%; }
.hero-portrait-name {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 3;
  font-family: var(--font-display); font-size: 1.0625rem; color: var(--on-dark);
  text-shadow: 0 1px 12px rgba(5,22,20,0.6);
}

.signal { position: absolute; z-index: 4; }
.signal--1 { top: 12%; left: -42px; }
.signal--2 { top: 44%; right: -52px; }
.signal--3 { bottom: 8%; left: -30px; }
.hero-signals { display: contents; }

.signal-card {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(252,251,247,0.97); border-radius: 14px;
  padding: 0.7rem 0.95rem; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6); backdrop-filter: blur(4px);
}
.signal-card--accent { background: var(--petrol); border-color: rgba(244,241,232,0.18); }
.signal-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--akzent); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(91,140,133,0.18);
}
.signal-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; background: var(--akzent-lt);
  color: var(--petrol-dk); font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.signal-title { font-size: 0.82rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.signal-card--accent .signal-title { color: var(--on-dark); }
.signal-sub { font-size: 0.72rem; color: var(--muted); line-height: 1.2; margin-top: 1px; }
.signal-card--accent .signal-sub { color: var(--on-dark-muted); }

/* ============================================================
   Section-Grundlagen
   ============================================================ */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.problem { background: var(--bg); }
.methode { background: var(--paper); }
.angebot { background: var(--creme); }
.eignung { background: var(--bg); }
.ueber   { background: var(--paper); }
.faq     { background: var(--creme); }

.section-head { max-width: 900px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title {
  font-size: clamp(1.9rem, 1.2rem + 2.7vw, 3.15rem);
  line-height: 1.08; letter-spacing: -0.015em; color: var(--petrol);
  max-width: 22ch; text-wrap: balance;
}
.section-lead {
  margin-top: 1.4rem; font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  line-height: 1.65; color: var(--muted); max-width: 62ch;
}

/* ============================================================
   Problem
   ============================================================ */
.ledger { border-top: 1px solid var(--border); }
.ledger-row {
  position: relative;
  display: grid; grid-template-columns: minmax(190px, 0.75fr) 1.5fr minmax(210px, 0.85fr);
  gap: clamp(1rem, 3vw, 3.5rem); align-items: baseline;
  padding-block: clamp(1.4rem, 3vw, 2.1rem);
  border-bottom: 1px solid var(--border);
}
.ledger-row::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 100%;
  background: var(--akzent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}
.ledger-row:hover::after { transform: scaleX(1); }
.ledger-title { font-size: clamp(1.25rem, 1rem + 0.9vw, 1.6rem); color: var(--petrol); letter-spacing: -0.01em; }
.ledger-text { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); max-width: 52ch; }
.ledger-verdict { font-size: 0.9rem; font-weight: 600; line-height: 1.45; color: var(--petrol); }
@media (max-width: 860px) {
  .ledger-row { grid-template-columns: 1fr; gap: 0.45rem; }
  .ledger-verdict { margin-top: 0.3rem; }
}

/* ============================================================
   Methode
   ============================================================ */
.methode-statement {
  font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 2.2vw, 2.5rem);
  line-height: 1.28; letter-spacing: -0.012em; color: var(--petrol);
  max-width: 24ch; margin: 0 0 clamp(3.5rem, 7vw, 5.5rem); text-wrap: balance;
}
.methode-statement { max-width: 30ch; }

.methode-block { margin-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.methode-block:last-child { margin-bottom: 0; }
.methode-block-head { max-width: 760px; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.methode-block-title { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem); color: var(--petrol); letter-spacing: -0.012em; }
.methode-block-lead { margin-top: 0.9rem; font-size: 1.0625rem; line-height: 1.6; color: var(--muted); max-width: 60ch; }

/* Abgrenzung: ruhige Zeilen, dunkle Schlusszeile */
.abgrenzung { border-top: 1px solid var(--border); }
.abgrenzung-row {
  display: grid; grid-template-columns: minmax(190px, 0.65fr) 1.7fr;
  gap: clamp(1rem, 3vw, 3.5rem); align-items: baseline;
  padding: clamp(1.15rem, 2.4vw, 1.6rem) 0;
  border-bottom: 1px solid var(--border);
}
.abgrenzung-name { font-size: clamp(1.15rem, 1rem + 0.55vw, 1.4rem); color: var(--schiefer); letter-spacing: -0.008em; }
.abgrenzung-text { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); max-width: 62ch; }
.abgrenzung-row--self {
  margin-top: clamp(1.1rem, 2.2vw, 1.6rem);
  background: linear-gradient(160deg, var(--petrol), var(--petrol-dk));
  border-bottom: none; border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.6vw, 1.9rem) clamp(1.3rem, 2.6vw, 2rem);
  box-shadow: 0 24px 50px -26px rgba(10, 33, 31, 0.5);
}
.abgrenzung-row--self .abgrenzung-name { color: var(--creme); }
.abgrenzung-row--self .abgrenzung-text { color: var(--on-dark); }
@media (max-width: 700px) {
  .abgrenzung-row { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* Stepper */
.stepper { position: relative; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.75rem); }
.stepper::before {
  content: ""; position: absolute; top: 26px; left: 26px; right: 26px; height: 2px;
  background: linear-gradient(90deg, var(--akzent), rgba(91,140,133,0.25));
  transform: scaleX(0); transform-origin: left; transition: transform 0.9s var(--ease-out) 0.15s;
}
.stepper.in::before { transform: scaleX(1); }
.step { position: relative; }
.step-node {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  border: 1.5px solid var(--akzent); color: var(--petrol);
  font-family: var(--font-display); font-size: 1.2rem; position: relative; z-index: 2;
  box-shadow: 0 4px 14px rgba(20,61,57,0.1); margin-bottom: 1.1rem;
}
.step-title { font-size: 1.2rem; color: var(--petrol); letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.step-text { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); }

.methode-close {
  margin-top: clamp(2.25rem, 4vw, 3.25rem); max-width: 60ch;
  font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + 0.9vw, 1.55rem);
  line-height: 1.4; color: var(--petrol);
}

/* ============================================================
   Angebot
   ============================================================ */
.angebot-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
}
.angebot-card {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: clamp(1.75rem, 3vw, 2.6rem); display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.angebot-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.angebot-card--featured {
  background: linear-gradient(168deg, var(--petrol), var(--petrol-dk));
  border-color: var(--petrol); box-shadow: var(--shadow-lg); color: var(--on-dark);
}
.angebot-flag {
  position: absolute; top: 1.3rem; right: 1.3rem; font-size: 0.8rem; font-weight: 600;
  color: var(--petrol-dk); background: var(--akzent-lt);
  padding: 0.35rem 0.85rem; border-radius: 999px;
}
.angebot-card-head { margin-bottom: 1.4rem; }
.angebot-card-title { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.1rem); color: var(--petrol); letter-spacing: -0.01em; }
.angebot-card--featured .angebot-card-title { color: var(--on-dark); }

.angebot-price { margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--border); }
.angebot-card--featured .angebot-price { border-bottom-color: var(--on-dark-border); }
.angebot-price-value { font-family: var(--font-display); font-size: clamp(2.1rem, 1.5rem + 2vw, 2.9rem); color: var(--petrol); line-height: 1; }
.angebot-card--featured .angebot-price-value { color: var(--on-dark); }
.angebot-price-suffix { font-size: 1.1rem; color: var(--muted); }
.angebot-card--featured .angebot-price-suffix { color: var(--on-dark-muted); }
.angebot-price-meta { margin-top: 0.7rem; font-size: 0.9rem; color: var(--muted); }
.angebot-card--featured .angebot-price-meta { color: var(--on-dark-muted); }

.angebot-section-label {
  font-size: 0.9rem; font-weight: 600; color: var(--petrol); margin-bottom: 0.9rem;
}
.angebot-card--featured .angebot-section-label { color: var(--akzent-lt); }
.angebot-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.6rem; }
.angebot-list li {
  position: relative; padding-left: 1.7rem; font-size: 0.9375rem; line-height: 1.5; color: var(--text);
}
.angebot-card--featured .angebot-list li { color: var(--on-dark); }
.angebot-list li::before {
  content: ""; position: absolute; left: 0; top: 0.18em; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(91,140,133,0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B8C85' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.angebot-card--featured .angebot-list li::before {
  background-color: rgba(244,241,232,0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BFD6D1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
.angebot-result { font-size: 0.95rem; line-height: 1.6; color: var(--muted); margin-top: auto; }
.angebot-card--featured .angebot-result { color: var(--on-dark-muted); }

.angebot-footer { margin-top: clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.angebot-cta-question {
  font-family: var(--font-display); font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  color: var(--petrol); margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.angebot-exclusion {
  margin: 1.75rem auto 0; max-width: 70ch; font-size: 0.85rem; line-height: 1.6; color: var(--muted);
}
.angebot-exclusion-label { font-weight: 600; color: var(--schiefer); }

/* ============================================================
   Eignung
   ============================================================ */
.eignung-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); align-items: start; }
.eignung-column {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.eignung-column:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.eignung-column--fit { border-top: 3px solid var(--akzent); }
.eignung-column--unfit { border-top: 3px solid rgba(61,79,82,0.25); }
.eignung-column-head { margin-bottom: 1.5rem; }
.eignung-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 1rem;
}
.eignung-mark svg { width: 22px; height: 22px; }
.eignung-mark--fit { background: rgba(91,140,133,0.14); color: var(--akzent); }
.eignung-mark--unfit { background: rgba(61,79,82,0.1); color: var(--schiefer); }
.eignung-column-label { font-family: var(--font-display); font-size: 1.5rem; color: var(--petrol); margin-bottom: 0.6rem; }
.eignung-column-lead { font-size: 0.95rem; line-height: 1.6; color: var(--muted); }
.eignung-section-label {
  font-size: 0.9rem; font-weight: 600; color: var(--petrol); margin: 1.5rem 0 0.9rem;
}
.eignung-list { display: flex; flex-direction: column; gap: 0.7rem; }
.eignung-list li { position: relative; padding-left: 1.6rem; font-size: 0.9375rem; line-height: 1.5; color: var(--text); }
.eignung-list--fit li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 11px; height: 2px; background: var(--akzent); border-radius: 2px;
}
.eignung-list--unfit li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 11px; height: 2px; background: rgba(61,79,82,0.4); border-radius: 2px;
}
.eignung-close {
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; max-width: 64ch; text-align: center;
  font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + 0.9vw, 1.55rem);
  line-height: 1.4; color: var(--petrol);
}

/* ============================================================
   Über mich
   ============================================================ */
.ueber-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.ueber-aside { position: sticky; top: calc(var(--header-h) + 2rem); }
.ueber-portrait { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.ueber-portrait img { width: 100%; height: auto; aspect-ratio: 4 / 4.4; object-fit: cover; object-position: center 15%; }
.ueber-facts { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.ueber-fact { display: flex; flex-direction: column; gap: 0.2rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border-soft); }
.ueber-fact:last-child { border-bottom: none; padding-bottom: 0; }
.ueber-fact dd { font-size: 1rem; color: var(--text); }

.ueber-name { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); color: var(--petrol); letter-spacing: -0.015em; margin-bottom: 1.5rem; }
.ueber-lead {
  font-family: var(--font-display); font-size: clamp(1.3rem, 1rem + 1.3vw, 1.85rem);
  line-height: 1.3; color: var(--petrol); margin-bottom: 1.5rem; letter-spacing: -0.01em; text-wrap: balance;
}
.ueber-content > p:not(.ueber-lead) { font-size: 1.0625rem; line-height: 1.7; color: var(--schiefer); margin-bottom: 1.1rem; }
.ueber-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem;
  font-weight: 600; color: var(--petrol); position: relative;
}
.ueber-link-arrow { transition: transform 0.25s var(--ease); }
.ueber-link:hover .ueber-link-arrow { transform: translateX(4px); }
.ueber-link::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%; background: var(--akzent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.ueber-link:hover::after { transform: scaleX(1); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 880px; }
.faq-list { margin-top: clamp(1rem, 2vw, 1.5rem); border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem);
  line-height: 1.3; color: var(--petrol); letter-spacing: -0.005em; transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--akzent); }
.faq-question-text { flex: 1; }
.faq-icon { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--akzent); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.faq-icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-icon::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .faq-icon::before { background: var(--petrol); }
.faq-answer { padding: 0 0 clamp(1.25rem, 2.5vw, 1.65rem); max-width: 68ch; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-answer p { font-size: 1rem; line-height: 1.7; color: var(--schiefer); }

@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-answer { animation: faqOpen 0.4s var(--ease-out) backwards; }
  @keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
}

/* ============================================================
   Kontakt (dunkel)
   ============================================================ */
.kontakt {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(110% 80% at 15% 90%, rgba(91,140,133,0.18), transparent 55%),
    linear-gradient(158deg, var(--petrol) 0%, var(--petrol-dk) 75%, var(--ink) 100%);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.kontakt-glow {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,161,0.2), transparent 70%);
  bottom: -160px; left: -100px; pointer-events: none;
}
.kontakt > .container { position: relative; z-index: 2; }
.kontakt-head { max-width: 760px; }
.kontakt-headline {
  font-family: var(--font-display); font-size: clamp(2rem, 1.3rem + 2.8vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.015em; color: var(--on-dark); max-width: 20ch; text-wrap: balance;
}
.kontakt-lead { margin-top: 1.4rem; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); line-height: 1.6; color: var(--on-dark-muted); max-width: 54ch; }
.kontakt-head .btn { margin-top: 2rem; }

.kontakt-channels {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); display: grid;
  grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
.kontakt-channel {
  position: relative; display: flex; flex-direction: column; gap: 0.4rem;
  padding: clamp(1.5rem, 2.5vw, 2rem); border-radius: var(--r-md);
  background: rgba(244,241,232,0.05); border: 1px solid var(--on-dark-border);
  transition: transform 0.3s var(--ease), background-color 0.25s, border-color 0.25s;
}
.kontakt-channel:hover { transform: translateY(-4px); background: rgba(244,241,232,0.09); border-color: var(--akzent-lt); }
.kontakt-channel-label { font-size: 0.85rem; font-weight: 600; color: var(--akzent-lt); }
.kontakt-channel-value { font-family: var(--font-display); font-size: clamp(1.25rem, 1rem + 0.7vw, 1.6rem); color: var(--on-dark); overflow-wrap: anywhere; }
.kontakt-channel-meta { font-size: 0.9rem; color: var(--on-dark-muted); }
.kontakt-channel-arrow {
  position: absolute; top: clamp(1.5rem, 2.5vw, 2rem); right: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--akzent-lt); font-size: 1.1rem; transition: transform 0.25s var(--ease);
}
.kontakt-channel:hover .kontakt-channel-arrow { transform: translate(3px, -3px); }
.kontakt-response-note { margin-top: clamp(1.5rem, 3vw, 2rem); font-size: 0.9rem; color: var(--on-dark-muted); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--on-dark); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--on-dark-border);
}
.footer-brand { display: inline-flex; line-height: 0; }
.footer-brand-logo { height: 44px; width: auto; }
.footer-nav-list { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav-list a { font-size: 0.95rem; color: var(--on-dark-muted); transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--on-dark); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.footer-mail { font-size: 0.95rem; color: var(--on-dark); transition: color 0.2s; }
.footer-mail:hover { color: var(--akzent-lt); }
.footer-linkedin { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--on-dark-muted); transition: color 0.2s; }
.footer-linkedin:hover { color: var(--akzent-lt); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-top: 1.75rem; }
.footer-copyright { font-size: 0.85rem; color: var(--on-dark-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.85rem; color: var(--on-dark-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--on-dark); }

/* ============================================================
   Reveal / Hero-Animationen
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

.rise { opacity: 0; transform: translateY(16px); }
body.is-loaded .rise { opacity: 1; transform: none; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--d, 0s); }

.signal { opacity: 0; transform: translateY(12px) scale(0.95); }
body.is-loaded .signal { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: no-preference) {
  body.is-loaded .signal-card { animation: floaty 6s ease-in-out infinite alternate; animation-delay: var(--d, 0s); }
  .signal--2 .signal-card { animation-duration: 7.5s; }
  .signal--3 .signal-card { animation-duration: 5.2s; }
  @keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-9px); } }
}

/* ============================================================
   Rechtsseiten (Impressum / Datenschutz / Danke)
   ============================================================ */
.legal-page { padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem)); padding-bottom: clamp(3rem, 6vw, 5rem); background: var(--bg); }
.legal-container { max-width: 760px; margin: 0 auto; padding-inline: var(--pad); }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; color: var(--akzent); margin-bottom: 2rem; }
.legal-back-arrow { transition: transform 0.25s var(--ease); }
.legal-back:hover .legal-back-arrow { transform: translateX(-4px); }
.legal-page h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 2.8rem); color: var(--petrol); letter-spacing: -0.015em; margin-bottom: 2rem; line-height: 1.1; }
.legal-page h2 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.6rem); color: var(--petrol); margin: 2.25rem 0 0.85rem; letter-spacing: -0.01em; }
.legal-page h3 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; color: var(--schiefer); margin: 1.5rem 0 0.5rem; }
.legal-page p, .legal-page li { font-size: 1rem; line-height: 1.7; color: var(--schiefer); }
.legal-page p { margin-bottom: 1rem; }
.legal-page a { color: var(--petrol); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { color: var(--akzent); }
.legal-page ul, .legal-page ol { margin: 0 0 1.25rem 1.25rem; padding-left: 1rem; }
.legal-page li { margin-bottom: 0.4rem; }
.legal-page address { font-style: normal; line-height: 1.7; color: var(--schiefer); margin-bottom: 1rem; }
.legal-page strong { color: var(--text); font-weight: 600; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-aside { position: static; max-width: 420px; }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
    background: var(--paper); box-shadow: -20px 0 60px rgba(20,61,57,0.18);
    transform: translateX(100%); transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0.25rem; width: 100%; }
  .nav-list li { width: 100%; }
  .nav-link { display: block; padding: 0.85rem 0; font-size: 1.1rem; width: 100%; border-bottom: 1px solid var(--border-soft); color: var(--schiefer); }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 1.5rem; width: 100%; justify-content: center; }
  body.menu-open { overflow: hidden; }

  /* Fix: kein backdrop-filter auf Mobile, sonst wird der Header zum Bezugsrahmen
     des festen Menues und schneidet es auf Header-Hoehe ab */
  .site-header.is-scrolled,
  body:not(.home) .site-header {
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background: var(--paper);
  }
  /* Schliessen-Icon bleibt auch am Seitenanfang auf hellem Menue sichtbar */
  body.menu-open .site-header .icon-bar::before,
  body.menu-open .site-header .icon-bar::after { background: var(--petrol); }
  body.home .site-header:not(.is-scrolled) .nav-link { color: var(--schiefer); }
  body.home .site-header:not(.is-scrolled) .nav-cta { background: var(--petrol); color: var(--creme); }

  .hero-container { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 3.5rem); }
  .hero-visual { order: -1; max-width: 340px; }
  .signal--1 { left: -16px; }
  .signal--2 { right: -16px; }
  .signal--3 { left: -10px; }
}

@media (max-width: 820px) {
  .angebot-cards { grid-template-columns: 1fr; }
  .eignung-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .stepper { grid-template-columns: 1fr; gap: 1.75rem; }
  .stepper::before { display: none; }
  .step { padding-left: 4.25rem; min-height: 52px; }
  .step-node { position: absolute; left: 0; top: 0; margin-bottom: 0; }
  .step-title { margin-top: 0.3rem; }
  .kontakt-channels { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-visual { max-width: 100%; display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
  .hero-portrait img { aspect-ratio: 4 / 4.2; }

  /* Signale als kompakte, verbundene Abfolge unter dem Portrait */
  .hero-signals {
    display: flex; flex-direction: column; gap: 0.5rem;
    position: relative; width: 100%; max-width: 320px; margin: 0.85rem auto 0;
  }
  .hero-signals::before {
    content: ""; position: absolute; z-index: 0;
    left: 1.13rem; top: 0.9rem; bottom: 0.9rem; width: 2px;
    transform: translateX(-50%); border-radius: 2px;
    background: linear-gradient(180deg, var(--akzent-lt), var(--akzent)); opacity: 0.5;
  }
  .signal { position: static; opacity: 0; transform: translateY(10px); }
  body.is-loaded .signal { transform: none; }
  .signal-card {
    position: relative; z-index: 1; width: 100%;
    gap: 0.65rem; padding: 0.62rem 0.85rem; border-radius: 12px;
    background: var(--paper); box-shadow: 0 8px 22px rgba(10,33,31,0.16);
    animation: none !important;
  }
  .signal-card--accent { background: var(--petrol); }

  .hero-proof { flex-direction: column; gap: 0.5rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .rise, .signal { opacity: 1 !important; transform: none !important; transition: none !important; filter: none !important; }
  .signal-card { animation: none !important; }
  .stepper::before { transform: scaleX(1) !important; transition: none !important; }
  .btn, .problem-card, .compare-card, .angebot-card, .eignung-column, .kontakt-channel { transition: none !important; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   ============================================================
   ÜBERARBEITUNG — Animationen (aus der neuen Version, ausgearbeitet)
   + gezielte Änderungen. Spätere Regeln überschreiben oben.
   ============================================================
   ============================================================ */

:root {
  --akzent-glow: #8FC2BA;
  --ink-deep:    #0A211F;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Scroll-Fortschritt (Signal-Leiste) ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1200;
  background: transparent; pointer-events: none;
}
.scroll-progress-bar {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--akzent), var(--akzent-glow));
  box-shadow: 0 0 12px rgba(143, 194, 186, 0.7);
  transition: width 0.08s linear;
}

/* ---- Headline-Reveal: Vorhang von oben ---- */
.reveal-head {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-head.in { opacity: 1; transform: none; }

/* ---- Hairline-Strich ---- */
.draw { transform: scaleX(0); transform-origin: left; transition: transform 0.9s var(--ease-out); transition-delay: var(--d, 0s); }
.draw.in { transform: scaleX(1); }

/* ---- Button Sheen-Sweep ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.28) 50%, transparent 75%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn-on-dark::after { background: linear-gradient(110deg, transparent 25%, rgba(28,79,74,0.12) 50%, transparent 75%); }

/* ---- Mobiles Menü: Burger zu X ---- */
.nav-toggle[aria-expanded="true"] .icon-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .icon-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .icon-bar::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero — alte Anordnung, neuer Hintergrund + Atmosphäre
   ============================================================ */
.hero {
  isolation: isolate;
  background:
    radial-gradient(120% 95% at 82% 4%, rgba(91,140,133,0.30), transparent 52%),
    radial-gradient(90% 70% at 0% 100%, rgba(20,61,57,0.55), transparent 60%),
    linear-gradient(158deg, var(--petrol-dk) 0%, var(--petrol) 62%, #1f5853 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow {
  background: radial-gradient(circle, rgba(143,194,186,0.22), transparent 68%);
  width: 620px; height: 620px; top: -160px; right: -120px; filter: blur(8px);
  will-change: transform;
}
.hero-rings {
  position: absolute; right: clamp(-280px, 6vw, 40px); top: 14%;
  width: 760px; height: 760px; opacity: 0.55; pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 28%, rgba(143,194,186,0.10) 28% 28.35%, transparent 28.35%),
    radial-gradient(circle, transparent 0 40%, rgba(143,194,186,0.08) 40% 40.28%, transparent 40.28%),
    radial-gradient(circle, transparent 0 52%, rgba(143,194,186,0.06) 52% 52.25%, transparent 52.25%);
}
.hero-grain {
  position: absolute; inset: 0; background-image: var(--grain); background-size: 160px 160px;
  opacity: 0.05; mix-blend-mode: overlay; pointer-events: none;
}
.hero-container { position: relative; z-index: 2; }
.hero-visual { will-change: transform; }

/* Hero-Portrait etwas tiefer, mit weichem Verlauf unten */
.hero-portrait::before {
  content: ""; position: absolute; inset: 0; z-index: 2; border-radius: var(--r-xl);
  background: linear-gradient(170deg, transparent 58%, rgba(10,33,31,0.4) 100%);
}

/* Signal-Punkt Puls */
.signal-dot { position: relative; }
.signal-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(91,140,133,0.5);
}
@media (prefers-reduced-motion: no-preference) {
  body.is-loaded .signal-dot::after { animation: ping 2.8s ease-out infinite; }
  .signal--2 .signal-dot::after { animation-delay: 0.9s; }
  @keyframes ping {
    0% { transform: scale(0.8); opacity: 0.8; }
    70%, 100% { transform: scale(2.2); opacity: 0; }
  }
}

/* ============================================================
   Vollbreiten-Headlines (2 Zeilen), Eyebrows ohne Strich
   ============================================================ */
.section-title {
  max-width: none;
  font-size: clamp(1.9rem, 1rem + 3.3vw, 2.9rem);
  line-height: 1.08; letter-spacing: -0.018em; text-wrap: balance;
}
.section-head { max-width: none; }

/* Kontakt-Headline ebenfalls voll + 2 Zeilen */
.kontakt-headline {
  max-width: none;
  font-size: clamp(1.9rem, 1rem + 3.3vw, 2.9rem);
  line-height: 1.08; text-wrap: balance;
}

/* Sätze, die neu beginnen, starten in einer neuen Zeile */

/* ============================================================
   Statement + Brücke — mittig, erscheint beim Scrollen
   ============================================================ */
.statement-reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.85s var(--ease-out), transform 0.95s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.statement-reveal.in { opacity: 1; transform: none; }

.methode-statement {
  max-width: 52rem; margin-left: auto; margin-right: auto; text-align: center;
  font-size: clamp(1.35rem, 1rem + 1.35vw, 1.95rem); line-height: 1.32; text-wrap: balance;
}

/* ============================================================
   Methode — Kernsatz als dunkles Editorial-Band
   ============================================================ */
.methode-thesis {
  position: relative; isolation: isolate; overflow: hidden;
  margin: 0 0 clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 3.5rem);
  background: linear-gradient(158deg, var(--petrol), var(--petrol-dk));
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -28px rgba(10, 33, 31, 0.55);
  display: grid; grid-template-columns: 1.45fr 0.85fr; align-items: center;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.methode-thesis::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--grain); background-size: 160px; opacity: 0.07; mix-blend-mode: overlay;
}
.methode-thesis-text {
  font-family: var(--font-display); color: var(--creme);
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2.05rem); line-height: 1.32;
  letter-spacing: -0.012em; text-wrap: balance;
}
.methode-thesis-art { justify-self: center; width: 100%; max-width: 260px; }
.methode-thesis-art svg { width: 100%; height: auto; display: block; }
@media (max-width: 760px) {
  .methode-thesis { grid-template-columns: 1fr; gap: clamp(1.5rem, 5vw, 2rem); }
  .methode-thesis-art { max-width: 168px; justify-self: start; }
}

/* Kernsatz-Grafik: Knoten umkreisen den Mittelpunkt, Kern pulsiert leicht */
@keyframes thesis-orbit { to { transform: rotate(360deg); } }
@keyframes thesis-pulse { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.4; } }
.thesis-orbit { transform-box: view-box; transform-origin: 130px 130px; }
@media (prefers-reduced-motion: no-preference) {
  .thesis-orbit--1 { animation: thesis-orbit 22s linear infinite; }
  .thesis-orbit--2 { animation: thesis-orbit 34s linear infinite; }
  .thesis-orbit--3 { animation: thesis-orbit 50s linear infinite; }
  .thesis-core-ring { animation: thesis-pulse 4.5s ease-in-out infinite; }
}

/* Fliesstext: vermeidet einzelne Woerter am Zeilenende (wo unterstuetzt) */
.section-lead,
.methode-block-lead,
.methode-close,
.ueber-lead,
.ueber-content p,
.eignung-column-lead,
.faq-answer p { text-wrap: pretty; }

/* Brücke: zentriertes Zitat mit großem Anführungszeichen oben */
.problem-bridge {
  max-width: none; margin-left: auto; margin-right: auto; text-align: center;
  padding-left: 0;
}
.problem-bridge::before { display: none; }
.bridge-mark {
  display: block; font-family: var(--font-display); line-height: 0.6;
  font-size: clamp(4rem, 8vw, 6rem); color: var(--akzent); opacity: 0.32;
  margin-bottom: 0.3em;
}
.problem-bridge-text {
  font-size: clamp(1.2rem, 1rem + 0.95vw, 1.55rem); line-height: 1.42;
  text-wrap: balance; max-width: none;
}

/* ============================================================
   Angebot — drei Leistungen (Workshop, Strategie, 7 Monate)
   ============================================================ */
.angebot-cards { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.angebot-card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.angebot-list { flex: 1 1 auto; }
.angebot-result { margin-top: 0; }

/* Karten-Hover: ruhiger Auftrieb */
.angebot-card { transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s; }
.angebot-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(28,79,74,0.22); }
.angebot-card--featured:hover { box-shadow: var(--shadow-lg); }

/* dezenter Hinweis für „danach monatlich" o.ä. */
.angebot-price-note {
  margin-top: 0.55rem; font-size: 0.82rem; line-height: 1.5; color: var(--muted);
}
.angebot-card--featured .angebot-price-note { color: var(--on-dark-muted); }

@media (max-width: 1040px) {
  .angebot-cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

/* ============================================================
   Eignung — Headline-Umbruch sauberer
   ============================================================ */
.eignung .section-title { text-wrap: balance; }

/* ============================================================
   Über mich — nur Bildunterschrift (Name + Rolle)
   ============================================================ */
.ueber-portrait { position: relative; }
.ueber-portrait::before {
  content: ""; position: absolute; left: -10px; top: -10px; width: 60px; height: 60px; z-index: 2;
  border-top: 2px solid var(--akzent); border-left: 2px solid var(--akzent);
  border-top-left-radius: var(--r-lg);
}
.ueber-caption { margin-top: 1.25rem; }
.ueber-caption-name {
  font-family: var(--font-display); font-size: clamp(1.4rem, 1rem + 1vw, 1.7rem);
  color: var(--petrol); line-height: 1.15; letter-spacing: -0.01em;
}
.ueber-caption-role {
  margin-top: 0.35rem; font-size: 0.9rem; color: var(--muted); font-weight: 500;
}

/* ============================================================
   Kontakt — dezenter Grain wie im Hero
   ============================================================ */
.kontakt { isolation: isolate; }
.kontakt-grain { position: absolute; inset: 0; background-image: var(--grain); background-size: 160px; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none; }

/* ============================================================
   Reduced Motion — alles ruhig, Inhalt sichtbar
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal-head, .draw, .statement-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .signal-dot::after { animation: none !important; }
  .btn::after { display: none; }
}

/* ============================================================
   Druck / PDF — Animationszustände immer sichtbar machen
   (verhindert fehlende Überschriften im PDF-Export)
   ============================================================ */
@media print {
  html { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-head, .statement-reveal, .draw, .rise, .signal, .hero-portrait, .hero-portrait img {
    opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important;
  }
  .scroll-progress, .nav-toggle, .cta-dock { display: none !important; }
}

/* ============================================================
   Fallback ohne JavaScript — Inhalte immer sichtbar
   ============================================================ */
html:not(.js) .reveal,
html:not(.js) .reveal-head,
html:not(.js) .statement-reveal,
html:not(.js) .rise,
html:not(.js) .draw,
html:not(.js) .hero-portrait,
html:not(.js) .hero-portrait img {
  opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important;
}


/* ============================================================
   Feinschliff: Anker, Hero-Ladechoreografie, Buchungsleiste
   ============================================================ */
main section[id] { scroll-margin-top: calc(var(--header-h) + 10px); }

/* Headline und Subline kommen aus der Unschärfe */
.hero-headline.rise, .hero-subline.rise { filter: blur(10px); }
body.is-loaded .hero-headline.rise,
body.is-loaded .hero-subline.rise {
  filter: blur(0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}

/* Portrait: sanfter Einsatz mit leichtem Zoom auf Ruheposition */
.hero-portrait { opacity: 0; transform: translateY(22px); }
body.is-loaded .hero-portrait {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease-out) 0.2s, transform 1s var(--ease-out) 0.2s;
}
.hero-portrait img { transform: scale(1.05); }
body.is-loaded .hero-portrait img { transform: scale(1); transition: transform 1.6s var(--ease-out) 0.2s; }
@media (prefers-reduced-motion: reduce) {
  .hero-headline.rise, .hero-subline.rise { filter: none; }
  .hero-portrait, .hero-portrait img { opacity: 1; transform: none; transition: none; }
}

/* Mobile Buchungsleiste: erscheint nach dem Hero */
.cta-dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; justify-content: center;
  padding: 0.7rem var(--pad) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(252, 251, 247, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(20, 61, 57, 0.08);
  transform: translateY(110%); transition: transform 0.45s var(--ease);
}
.cta-dock.is-visible { transform: translateY(0); }
.cta-dock .btn { width: 100%; max-width: 420px; justify-content: center; }
body.menu-open .cta-dock { transform: translateY(110%); }
@media (max-width: 920px) { .cta-dock { display: flex; } }


/* ============================================================
   Kostenloser Einstieg: Schnellcheck Karte über den Angeboten
   ============================================================ */
.angebot-card--intro {
  display: grid; grid-template-columns: minmax(250px, 0.9fr) 1.5fr;
  gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: start;
  margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem);
  border-color: rgba(91, 140, 133, 0.4);
}
.angebot-flag--static { position: static; display: inline-block; margin-bottom: 1.1rem; }
.angebot-card--intro .angebot-price { margin: 1rem 0 0; padding: 0; border-bottom: none; }
.angebot-intro-main { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.angebot-intro-text { font-size: 0.9375rem; line-height: 1.6; color: var(--muted); max-width: 62ch; }
.angebot-card--intro .angebot-section-label { margin-bottom: 0; }
.angebot-card--intro .angebot-result { margin: 0; }
.angebot-intro-btn { margin-top: 0.35rem; }
.angebot-stufen-note {
  margin: 0 0 clamp(1.8rem, 3.5vw, 2.6rem);
  font-size: 0.9rem; line-height: 1.6; color: var(--muted); max-width: 74ch;
}
@media (max-width: 860px) {
  .angebot-card--intro { grid-template-columns: 1fr; gap: 1.1rem; }
}
