/* ═══════════════════════════════════════════════════════════
   PERFORMANCE-STABILISIERUNG V2 – STYLESHEET
   Ästhetik: Editorial Premium · Warm Dunkel · Reif · Diskret
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Farben – Kern */
  --ink:         #111010;
  --ink-deep:    #0a0a09;
  --charcoal:    #1e1d1c;
  --slate:       #2e2c2a;
  --stone:       #3e3b37;
  --taupe:       #5c5750;
  --mid:         #7a7268;
  --warm-light:  #a89f94;
  --sand:        #c9bfb3;
  --parchment:   #e8e2d9;
  --offwhite:    #f2ede6;
  --white:       #faf8f5;

  /* Akzent */
  --gold:        #b5924a;
  --gold-light:  #cca96a;
  --gold-dim:    rgba(181,146,74,0.18);

  /* Typografie */
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-serif:    'DM Serif Display', Georgia, serif;
  --ff-body:     'Jost', 'Helvetica Neue', sans-serif;

  /* Abstände */
  --gutter:      6vw;
  --section-v:   9rem;
  --radius:      2px;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; }

/* ─── BASE ────────────────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  font-weight: 300;
  background: var(--offwhite);
  color: var(--slate);
  line-height: 1.72;
  overflow-x: hidden;
}

/* ─── SHARED UTILITIES ────────────────────────────────────── */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.section-label::after {
  content: '';
  width: 2.5rem; height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 2rem;
}
h2 em {
  font-style: italic;
  color: var(--gold);
}

.text-center { text-align: center; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.15rem 2.8rem;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ─── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(10,10,9,0.93);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

/* Burger-Button */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 1px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.nav-burger span:nth-child(1) { width: 100%; }
.nav-burger span:nth-child(2) { width: 70%; }
.nav-burger span:nth-child(3) { width: 85%; }
.nav-burger:hover span { width: 100%; }
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg); width: 100%;
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg); width: 100%;
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: rgba(10,10,9,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 500;
  width: min(380px, 88vw);
  background: var(--ink-deep);
  border-left: 1px solid rgba(181,146,74,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 3rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* Close-Button */
.nav-close {
  position: absolute;
  top: 1.5rem; right: 1.6rem;
  width: 2.4rem; height: 2.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-close span {
  position: absolute;
  top: 50%; left: 50%;
  display: block;
  width: 1.3rem; height: 1px;
  background: var(--warm-light);
  transition: background 0.2s;
}
.nav-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.nav-close:hover span { background: var(--white); }

/* Drawer Links */
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-link {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  color: var(--warm-light);
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.25s;
  display: block;
}
.nav-link:hover {
  color: var(--white);
  padding-left: 0.6rem;
}
.nav-link--cta {
  margin-top: 1.8rem;
  border-bottom: none;
  color: var(--gold);
  font-size: clamp(0.82rem, 1.6vw, 0.88rem);
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(181,146,74,0.35);
  padding-bottom: 3px;
  padding-top: 0;
  display: inline-block;
}
.nav-link--cta:hover {
  color: var(--gold-light);
  padding-left: 0;
  border-color: rgba(204,169,106,0.7);
}

/* Body locked when drawer open */
body.nav-open { overflow: hidden; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 84% center;
  filter: brightness(0.78) saturate(0.85);
  transform: scale(1.03);
  transition: transform 10s ease;
}
.hero-bg.loaded img { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    /* Verlauf schmaler: dunkle Textzone endet früher, Bild wirkt freier */
    linear-gradient(to right,
      rgba(10,10,9,0.96) 0%,
      rgba(10,10,9,0.88) 20%,
      rgba(10,10,9,0.52) 34%,
      rgba(10,10,9,0.08) 48%,
      rgba(10,10,9,0.00) 100%),
    linear-gradient(to bottom, rgba(10,10,9,0.25) 0%, transparent 25%, rgba(10,10,9,0.20) 100%);
}

/* Textblock */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem var(--gutter) 6rem;
  max-width: 52%;               /* Breite für große Headline – Texte darunter per max-width begrenzt */
  width: 100%;
}

/* Headline */
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);   /* größer: war 2.5vw/2.75rem */
  font-weight: 400;
  line-height: 1.24;
  color: var(--white);
  margin-bottom: 2.4rem;
  letter-spacing: 0.01em;
}
.hero-h1-line1 {
  display: block;               /* erste Zeile als eigener Block */
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 0;
}

/* Body-Block */
.hero-body {
  margin-bottom: 1.6rem;
  padding-bottom: 0;
  border-bottom: none;
}
.hero-context {
  font-size: 0.93rem;
  font-weight: 300;
  color: rgba(220,212,202,0.92);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 46ch;              /* nicht breiter als die Headline */
}
.hero-context--label {
  font-size: 0.85rem;
  color: rgba(201,191,179,0.88);   /* heller: war 0.70 */
  margin-bottom: 0.7rem;
  margin-top: 0.4rem;
}
.hero-list {
  list-style: none;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-list li {
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(220,212,202,0.90);
  line-height: 1.55;
  padding-left: 1.2rem;
  position: relative;
  max-width: 38ch;               /* früher umbrechen – nicht bis ans Bild */
}
.hero-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.hero-pivot {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--white);             /* kräftiger: war parchment */
  line-height: 1.68;
  margin-top: 1.1rem;
}

/* Positionierungssatz */
.hero-positioning {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(201,191,179,0.88);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 2.4rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(181,146,74,0.50);
  max-width: 46ch;              /* nicht breiter als die Headline */
}

/* CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.hero-cta .btn-primary {
  white-space: nowrap;
  padding-left: 2rem;
  padding-right: 2rem;
  display: inline-block;
}
.hero-cta-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(201,191,179,0.80);   /* heller: war 0.60 */
  line-height: 1.65;
  max-width: 60ch;
  white-space: nowrap;
}

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(181,146,74,0.2);
}
.trust-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.4rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  min-width: 130px;
  padding: 0.6rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;                  /* fester Gap statt margin + line-height Chaos */
}
.trust-item--dual { min-width: 160px; }
.trust-item strong {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 0;             /* gap im flex-container übernimmt Abstand */
}
.trust-item span {
  display: block;               /* Block → line-height wirkt korrekt */
  font-size: 0.72rem;
  color: var(--warm-light);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.trust-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── PROBLEM ─────────────────────────────────────────────── */
.problem {
  background: var(--offwhite);
  padding: var(--section-v) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 6rem;
  align-items: start;
}
.problem-left h2 {
  position: sticky;
  top: 8rem;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  hyphens: none;
}
.problem-left h2 em {
  display: block;
  margin-top: 0.4rem;   /* etwas Abstand vor dem Abschluss */
}
.problem-right p {
  color: var(--taupe);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.problem-right p:first-of-type {
  color: var(--slate);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ─── IDENTIFIKATION ──────────────────────────────────────── */
.ident {
  background: var(--charcoal);
  padding: var(--section-v) 0;
}
.ident .section-label { color: var(--gold); }
.ident h2 { color: var(--white); margin-bottom: 3.5rem; }
.ident-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1rem;
}
/* 3-Karten-Version: mehr Luft zwischen den Karten */
.ident-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ident-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 2.2rem;
  transition: background 0.3s;
}
.ident-card:hover { background: rgba(255,255,255,0.055); }
.ident-card-icon {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.ident-card p {
  font-size: 0.95rem;
  color: var(--warm-light);
  line-height: 1.8;
}

/* ─── LÖSUNG ──────────────────────────────────────────────── */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.solution-image-col {
  overflow: hidden;
  position: relative;
}
.solution-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 8s ease;
}
.solution-image-col:hover img { transform: scale(1.03); }
.solution-content-col {
  background: var(--stone);
  padding: var(--section-v) calc(var(--gutter) * 1.2) var(--section-v) calc(var(--gutter) * 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-content-col .section-label { color: var(--gold); }
.solution-content-col h2 { color: var(--white); }
.solution-content-col p {
  color: var(--warm-light);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.promise-bar {
  margin-top: 2.8rem;
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(0,0,0,0.2);
}
.promise-bar p {
  font-family: var(--ff-serif);   /* DM Serif Display – modern, aufrecht, präzise */
  font-size: 1.12rem !important;
  font-style: normal !important;  /* kein Kursiv – kein Zitat, sondern Haltung */
  font-weight: 400;
  color: var(--parchment) !important;
  line-height: 1.6 !important;
  letter-spacing: 0.01em;
  margin: 0 !important;
}

/* ─── KOMPETENZEN ─────────────────────────────────────────── */
.competencies {
  background: var(--offwhite);
  padding: var(--section-v) 0;
}
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.comp-card {
  position: relative;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
}
.comp-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(181,146,74,0.14);
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.comp-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.comp-card p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

/* ─── PROGRAMM ────────────────────────────────────────────── */
.program {
  background: var(--ink);
  padding: var(--section-v) 0;
  color: var(--cream, var(--parchment));
}
.program .section-label { color: var(--gold); }
.program h2 { color: var(--white); }
.program-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.program-price-block { text-align: right; }
.program-price-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.4rem;
}
.program-price-num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.program-price-sub {
  font-size: 0.8rem;
  color: var(--mid);
  margin-top: 0.3rem;
}
.program-lead {
  font-size: 1.05rem;
  color: var(--warm-light);
  line-height: 1.85;
  max-width: 70ch;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.program-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.program-card {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.3s;
}
.program-card:hover { border-color: rgba(181,146,74,0.3); }
.pc-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(181,146,74,0.18);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.pc-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.pc-text {
  font-size: 0.87rem;
  color: var(--warm-light);
  line-height: 1.75;
}
.program-result {
  background: rgba(181,146,74,0.06);
  border: 1px solid rgba(181,146,74,0.18);
  padding: 2.8rem 3rem;
  margin-bottom: 3.5rem;
}
.pr-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.pr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem 3rem;
}
.pr-item { position: relative; padding-left: 1.2rem; }
.pr-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 1px;
  background: var(--gold);
}
.pr-item-head {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--parchment);      /* deutlich heller als body */
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.pr-item-body {
  font-size: 0.8rem;            /* kleiner als head – klar nachgeordnet */
  color: var(--warm-light);
  line-height: 1.65;
  font-weight: 300;
}
/* Preis netto-Label */
.program-price-netto,
.retainer-netto {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.3rem;
}
.retainer-block {
  border: 1px solid rgba(181,146,74,0.2);
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  background: rgba(181,146,74,0.04);
}
.retainer-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.retainer-title {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.retainer-text {
  font-size: 0.9rem;
  color: var(--warm-light);
  line-height: 1.8;
  max-width: 55ch;
}
.retainer-price {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  white-space: nowrap;
}
.retainer-period {
  font-size: 0.7rem;
  color: var(--mid);
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ─── ÜBER MICH ───────────────────────────────────────────── */
.about {
  background: var(--parchment);
  padding: var(--section-v) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 7rem;
  align-items: start;
}
.about-image-col { position: sticky; top: 8rem; }
.about-image-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 2rem;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
  transition: transform 8s ease;
}
.about-image-wrap:hover img { transform: scale(1.03); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
}
.about-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat span {
  font-size: 0.78rem;
  color: var(--taupe);
}
.about-text-col h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}
.about-text-col p {
  font-size: 1rem;
  color: var(--taupe);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}
.about-text-col p:first-of-type {
  color: var(--slate);
  font-size: 1.05rem;
}

/* ─── PROZESS ─────────────────────────────────────────────── */
.process {
  background: var(--charcoal);
  padding: var(--section-v) 0;
}
.process .section-label { color: var(--gold); }
.process h2 { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.process-step {
  padding: 3rem 2.5rem 2rem 0;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 2rem; height: 2px;
  background: var(--gold);
}
.step-marker {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--warm-light);
  line-height: 1.78;
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: var(--offwhite);
  padding: var(--section-v) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 3rem 2.8rem 2.5rem;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1.2rem; left: 2.2rem;
  line-height: 1;
}
.testi-text {
  font-size: 0.94rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 2rem;
  padding-top: 1.8rem;
}
.testi-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.15rem;
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* ─── FORMS SHARED ────────────────────────────────────────── */
.form-field {
  margin-bottom: 1.4rem;
}
.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.55rem;
}
.label-hint {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--warm-light);
  font-weight: 300;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--parchment);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  border-radius: var(--radius);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(168,159,148,0.45); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(181,146,74,0.55);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '↓';
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.75rem;
  pointer-events: none;
}
.form-field select option { background: var(--charcoal); }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
/* Custom Checkboxen und Radio-Buttons */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.check-item,
.radio-item {
  display: flex;
  align-items: center;          /* Box/Kreis und Text auf gleicher Höhe */
  gap: 0.85rem;
  padding: 0.9rem 0;            /* mehr Luft zwischen den Zeilen */
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.check-item:last-child,
.radio-item:last-child { border-bottom: none; }

/* Native inputs vollständig ausblenden – wir bauen eigene */
.check-item input[type="checkbox"],
.radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom Box / Kreis – links neben dem Text, vertikal zentriert */
.check-item::before,
.radio-item::before {
  content: '';
  flex-shrink: 0;
  align-self: center;           /* explizit zentriert unabhängig von Text-Höhe */
  display: block;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.check-item::before {
  width: 15px; height: 15px;
  border: 1px solid rgba(181,146,74,0.45);
  background: transparent;
}
.radio-item::before {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(181,146,74,0.45);
  background: transparent;
}

/* Checked state */
.check-item.is-checked::before {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23faf8f5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
.radio-item.is-checked::before {
  border-color: var(--gold);
  background: transparent;
  box-shadow: inset 0 0 0 4px var(--slate), inset 0 0 0 8px var(--gold);
}

/* Hover state */
.check-item:hover::before { border-color: var(--gold-light); }
.radio-item:hover::before  { border-color: var(--gold-light); }

/* Text der Items */
.check-item span,
.radio-item span {
  font-size: 0.87rem;           /* minimal kleiner für mehr Ruhe */
  color: var(--warm-light);
  line-height: 1.45;
  transition: color 0.15s;
}
.check-item.is-checked span,
.radio-item.is-checked span {
  color: var(--parchment);
}
.btn-submit {
  margin-top: 0.8rem;
  width: 100%;
  text-align: center;
}
.form-note {
  font-size: 0.75rem;
  color: var(--taupe);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
.form-success {
  padding: 3rem 2rem;
  border: 1px solid rgba(181,146,74,0.3);
  background: rgba(181,146,74,0.06);
  text-align: center;
}
.form-success-msg {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}
.form-success-sub {
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}
.form-error {
  font-size: 0.82rem;
  color: rgba(200,80,80,0.9);
  text-align: center;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(200,80,80,0.25);
  background: rgba(200,80,80,0.06);
}

/* ─── QUALIFIZIERUNG ──────────────────────────────────────── */
.qualify {
  background: var(--slate);
  padding: var(--section-v) 0;
}
.qualify .section-label { color: var(--gold); }
.qualify h2 { color: var(--white); }
.qualify-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 7rem;
  align-items: start;
}
.qualify-intro p {
  font-size: 0.98rem;
  color: var(--warm-light);
  line-height: 1.85;
  margin-top: 0.5rem;
}

/* ─── KONTAKT ─────────────────────────────────────────────── */
.contact {
  background: var(--ink-deep);
  padding: var(--section-v) 0;
}
.contact .section-label { color: var(--gold); }
.contact h2 { color: var(--white); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq {
  background: var(--parchment);
  padding: var(--section-v) 0;
}
.faq-list {
  max-width: 800px;
  margin-top: 4rem;
}
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  gap: 2rem;
  text-align: left;
}
.faq-q span {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.faq-icon {
  width: 1.3rem; height: 1.3rem;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before { width: 1.3rem; height: 1px; top: 50%; transform: translateY(-50%); }
.faq-icon::after  { width: 1px; height: 1.3rem; left: 50%; transform: translateX(-50%); }
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a {
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a[hidden] { display: none; }
.faq-a p {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.85;
  padding-bottom: 1.8rem;
}

/* ─── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  background: var(--stone);
  padding: 10rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(181,146,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.final-cta h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 0 auto 1.5rem;
}
.final-cta p {
  font-size: 1rem;
  color: var(--warm-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.final-cta .btn-primary { margin-top: 2rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem var(--gutter);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.footer-center p,
.footer-right p {
  font-size: 0.74rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
}
.footer-right a {
  color: var(--taupe);
  text-decoration: none;
  border-bottom: 1px solid rgba(92,87,80,0.4);
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--warm-light); }

/* ─── FORM SECTIONS & CARDS ───────────────────────────────── */
.form-section {
  margin-bottom: 3rem;          /* mehr Luft */
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-section:last-of-type { border-bottom: none; margin-bottom: 2rem; }

.form-section-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
  text-transform: none;
}

/* Card Grid – 2 Spalten */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;                    /* gleichmäßiger Abstand */
  overflow: visible;            /* Rahmen nicht abschneiden */
}

/* Basis-Card */
.form-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
  border-radius: var(--radius);
  overflow: visible;            /* Rahmen nie abschneiden */
  margin-bottom: 0;             /* gap übernimmt den Abstand */
}
.form-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(181,146,74,0.45);
}
.form-card.is-checked {
  border-color: var(--gold);
  background: rgba(181,146,74,0.08);
}

/* Input verstecken – functional erhalten */
.form-card input[type="checkbox"],
.form-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom Indikator */
.form-card::before {
  content: '';
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.18rem;
  width: 14px; height: 14px;
  border: 1px solid rgba(181,146,74,0.4);
  background: transparent;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.radio-card::before { border-radius: 50%; }

.form-card.is-checked::before { border-color: var(--gold); }
.form-card.check-item.is-checked::before {
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23faf8f5' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
.form-card.radio-card.is-checked::before {
  box-shadow: inset 0 0 0 4px var(--slate), inset 0 0 0 8px var(--gold);
}

/* Card Text */
.form-card span {
  font-size: 0.85rem;
  color: var(--warm-light);
  line-height: 1.45;
  transition: color 0.2s;
}
.form-card.is-checked span { color: var(--parchment); }

/* Datenschutz */
.form-privacy {
  font-size: 0.72rem;
  color: var(--taupe);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.form-privacy-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(181,146,74,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.form-privacy-link:hover {
  color: var(--gold-light);
  border-color: rgba(204,169,106,0.6);
}

/* Zeeg Box nach erfolgreichem Submit */
.zeeg-box {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(200,168,107,0.3);
  border-radius: 6px;
  background: rgba(26,26,26,0.6);
}
.zeeg-box-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}
.zeeg-inline-widget {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Contact – CTA only (kein Formular mehr) */
.contact-cta {
  max-width: 640px;
}
.contact-cta h2 { color: var(--white); }
.contact-cta p {
  font-size: 0.98rem;
  color: var(--warm-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.contact-cta .btn-primary { margin-top: 1.2rem; }

/* Scroll-to-form Button (gleicher Style wie btn-primary) */
.btn-scroll-to-form { border: none; }

/* Responsive */
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .form-card { grid-column: auto !important; }
}

/* ─── SCROLL FADE ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .program-cards { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-step::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; }
}

@media (max-width: 860px) {
  :root { --section-v: 6rem; }

  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  .trust-strip-inner { gap: 1rem; }
  .trust-divider { display: none; }

  .problem-grid,
  .about-grid,
  .qualify-grid { grid-template-columns: 1fr; gap: 3rem; }
  .problem-left h2,
  .about-image-col { position: static; }

  .solution { grid-template-columns: 1fr; }
  .solution-image-col { height: 50vw; }
  .solution-content-col { padding: 5rem var(--gutter); }

  .ident-grid { grid-template-columns: 1fr 1fr; }
  .ident-grid--three { grid-template-columns: 1fr; }

  .comp-grid { grid-template-columns: 1fr; }
  .program-header { grid-template-columns: 1fr; }
  .program-price-block { text-align: left; }
  .program-cards { grid-template-columns: 1fr; }
  .retainer-block { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .ident-grid { grid-template-columns: 1fr; }
  .ident-grid--three { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 2rem; }
}

/* ─── MOBILE: HERO + SOLUTION BILD ────────────────────────── */
@media (max-width: 768px) {

  /* Hero Mobile: Bild oben, Text darunter – klar und luftig */
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  /* T2 — Bildzone: höher + enger gecroppt auf Gesicht */
  .hero-bg {
    position: relative;
    height: 72vw;                  /* höher als vorher → mehr Nähe */
    min-height: 280px;
    width: 100%;
    flex-shrink: 0;
  }
  .hero-bg img {
    object-position: 55% 10%;     /* Gesicht weiter oben, näher ran */
    transform: scale(1.08);        /* leicht rein gezoomt – kein Unschärfe-Problem */
    transform-origin: 55% 15%;
  }
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(10,10,9,0.00)  0%,
        rgba(10,10,9,0.00) 45%,
        rgba(10,10,9,0.65) 80%,
        rgba(10,10,9,0.97) 100%);
  }

  /* T3 — Textblock: mehr Luft oben/unten */
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    padding: 2.4rem var(--gutter) 3.5rem;
    background: var(--ink-deep);
    flex: 1;
  }

  /* T1 — Headline: deutlich größer, mehr Präsenz */
  .hero h1 {
    font-size: clamp(2rem, 7.5vw, 2.8rem);   /* war 1.5rem/5.5vw → jetzt deutlich größer */
    line-height: 1.22;
    margin-bottom: 1.8rem;
  }

  /* T3 — Abstände zwischen Blöcken luftiger */
  .hero-body { margin-bottom: 1.4rem; padding-bottom: 0; }

  /* T4 — Verantwortungsblock: kompakter, engere Zeilenlänge */
  .hero-context {
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
    max-width: 36ch;               /* früher umbrechen → weniger Zeilen, kompakter */
  }
  .hero-context--label { font-size: 0.83rem; margin-top: 0.8rem; }

  /* Bulletpoints: etwas größer und mit mehr Luft */
  .hero-list { gap: 0.6rem; margin-bottom: 1.2rem; }
  .hero-list li {
    font-size: 0.84rem;
    max-width: 34ch;               /* früher umbrechen */
    line-height: 1.55;
  }

  .hero-pivot { font-size: 0.87rem; margin-top: 0.8rem; line-height: 1.6; }

  /* T5 — Positionierungssatz: kleiner, kompakter */
  .hero-positioning {
    font-size: 0.74rem;
    margin-bottom: 1.6rem;
    line-height: 1.6;
    max-width: 36ch;
  }

  .hero-cta .btn-primary { white-space: normal; }
  .hero-cta-sub { font-size: 0.71rem; max-width: 100%; white-space: normal; }

  /* Solution-Bild Mobile */
  .solution-image-col { height: 70vw; }
  .solution-image-col img { object-position: center 25%; }
}

@media (max-width: 480px) {
  /* Kleinere Phones: Headline bleibt groß */
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.3rem); }
  .hero-bg { height: 75vw; }
}

/* ─── COOKIE BAR ───────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(14,13,12,0.97);
  border-top: 1px solid rgba(181,146,74,0.25);
  backdrop-filter: blur(8px);
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-bar-text {
  font-size: 0.78rem;
  color: var(--warm-light);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
.cookie-bar-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(181,146,74,0.3);
  transition: color 0.2s;
}
.cookie-bar-link:hover { color: var(--gold-light); }
.cookie-bar-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-bar-btn {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: var(--radius);
}
.cookie-bar-btn--ghost {
  background: transparent;
  color: var(--warm-light);
  border: 1px solid rgba(255,255,255,0.12);
}
.cookie-bar-btn--ghost:hover {
  border-color: rgba(255,255,255,0.28);
  color: var(--parchment);
}
.cookie-bar-btn--accept {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.cookie-bar-btn--accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
/* Ablehnen-Button — gleichwertiger Status zum Akzeptieren-Button (DSGVO) */
.cookie-bar-btn--decline {
  background: transparent;
  color: var(--warm-light);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-bar-btn--decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .cookie-bar-actions { width: 100%; justify-content: flex-end; }
}

/* ─── WAS DU BEKOMMST ─────────────────────────────────────── */
.what-you-get {
  background: var(--ink);
  padding: var(--section-v) 0;
}
.what-you-get h2 { color: var(--white); }
.what-you-get .section-label { color: var(--gold); }
.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 1rem;
}
.wyg-col .section-label { color: var(--gold); margin-bottom: 1.4rem; }
.wyg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.wyg-list li {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
  color: var(--warm-light);
}
.wyg-list--yes li::before { content: '+'; position: absolute; left: 0; color: var(--gold); font-weight: 500; }
.wyg-list--no li::before  { content: '×'; position: absolute; left: 0; color: var(--taupe); }
.wyg-list--expect li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; top: 0.15em; }

/* ─── NICHT JEDER PASST ───────────────────────────────────── */
.fit-filter {
  background: var(--charcoal);
  padding: var(--section-v) 0;
}
.fit-filter-inner { max-width: 860px; }
.fit-filter h2 { color: var(--white); margin-bottom: 3rem; }
.fit-filter .section-label { color: var(--gold); }
.fit-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.4rem;
}
.fit-col { padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.08); }
.fit-col-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}
.fit-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.fit-col ul li {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--warm-light);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}
.fit-col--no ul li::before  { content: '—'; position: absolute; left: 0; color: var(--taupe); font-size: 0.75rem; }
.fit-col--yes ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold);  font-size: 0.75rem; }
.fit-filter-note {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(168,159,148,0.80);
  line-height: 1.8;
  font-style: italic;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(181,146,74,0.40);
  max-width: 72ch;
}

/* ─── WARUM DIESES SYSTEM (ÜBER MICH) ────────────────────── */
.about-system-origin {
  margin-top: 2.8rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--sand);
}
.about-system-origin h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.4rem;
  line-height: 1.3;
}
.about-system-origin p {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-system-list {
  font-style: italic;
  color: var(--mid) !important;
  font-size: 0.9rem !important;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .wyg-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fit-filter-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── TRUST STRIP INLINE (im Über-mich-Bereich) ───────────── */
.trust-strip--inline {
  background: none;
  border-bottom: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.trust-strip--inline .trust-strip-inner {
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.trust-strip--inline .trust-item {
  padding: 0.4rem 1rem;
  text-align: left;
}
.trust-strip--inline .trust-item strong { color: var(--ink); }
.trust-strip--inline .trust-item span { color: var(--taupe); }
.trust-strip--inline .trust-divider { background: var(--sand); }

/* ─── IDENT GRID 3-SPALTEN (Desktop only, mobile via base .ident-grid) ─── */

/* ─── SELBSTTEST TEASER ────────────────────────────────────── */
/* ─── SELFTEST INLINE (in Problem-Block integriert) ─────────── */
.selftest-bridge-inline {
  margin-top: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.85;
}
.selftest-inline {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.selftest-inline .section-label {
  margin-bottom: 2rem;
}
/* Button zweizeilig */
.btn-selftest {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--ff-body);
  padding: 1.1rem 2.4rem;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  text-align: center;
}
.btn-selftest:hover { border-color: var(--gold); color: var(--gold); }
.btn-selftest-title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.btn-selftest-meta {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  opacity: 0.5;
  text-transform: none;
}
.selftest-teaser .section-label {
  margin-bottom: 2.8rem;
  /* erbt jetzt den globalen section-label Stil: Gold + Linie */
}
.selftest-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.selftest-lead {
  font-size: 1.05rem;          /* identisch mit problem-right p */
  color: var(--slate);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.selftest-signals {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.selftest-signals li {
  font-size: 1rem;             /* war 0.92rem — angehoben */
  font-weight: 300;
  color: var(--taupe);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.75;           /* war 1.6 — angehoben */
}
.selftest-signals li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--warm-light);
  font-size: 0.75rem;
}
.selftest-note {
  font-size: 1rem;             /* war 0.88rem — angehoben, kein Bruch */
  font-weight: 300;
  color: var(--mid);
  font-style: italic;
  line-height: 1.85;
}
.selftest-action-text {
  font-size: 1rem;             /* war 0.95rem — leicht angehoben */
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 34ch;
}
/* Sekundärer Outline-Button */

/* ─── SELBSTTEST MODAL ─────────────────────────────────────── */
.selftest-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.selftest-modal[hidden] { display: none; }
.selftest-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,9,0.75);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.selftest-modal-box {
  position: relative;
  z-index: 1;
  background: var(--offwhite);
  width: min(680px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  padding: 4rem;
}
.selftest-modal-close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.selftest-modal-close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 1px;
  background: var(--ink);
  display: block;
}
.selftest-modal-close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.selftest-modal-close span:last-child  { transform: translate(-50%,-50%) rotate(-45deg); }
.selftest-modal-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.selftest-modal-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1.6rem;
}
.selftest-modal-title em { color: var(--gold); }
.selftest-modal-intro {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .selftest-teaser-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .selftest-action-text { max-width: none; }
}
@media (max-width: 540px) {
  .selftest-modal-box { padding: 2.4rem 1.8rem; }
}

/* ─── SELBSTTEST MULTI-STEP ELEMENTS ───────────────────────── */
.st-progress-wrap {
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.st-progress-wrap[hidden] { display: none; }
.st-progress-bar-track {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.1);
  position: relative;
}
/* inner bar via JS width on .st-progress-bar */
.st-progress-wrap {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
.st-progress-bar {
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
  width: 0%;
}
.st-progress-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--mid);
  text-align: right;
}

/* Question */
.st-question-num {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.st-question {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 2rem;
}

/* Options */
.st-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.4rem;
}
.st-option {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.st-option:hover { border-color: var(--gold); background: rgba(181,146,74,0.04); }
.st-option input[type="radio"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.st-option input[type="radio"]:checked {
  border-color: var(--gold);
  background: var(--gold);
}
.st-option span {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.6;
}
.st-option:has(input:checked) {
  border-color: rgba(181,146,74,0.5);
  background: rgba(181,146,74,0.05);
}
.st-option:has(input:checked) span { color: var(--ink); }

/* Navigation */
.st-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

/* Buttons */
.st-btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, opacity 0.25s;
  text-decoration: none;
}
.st-btn-primary:disabled { opacity: 0.3; cursor: not-allowed; }
.st-btn-primary:not(:disabled):hover { background: var(--charcoal); }
.st-btn-secondary {
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--mid);
  cursor: pointer;
  letter-spacing: 0.06em;
  padding: 0.5rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.st-btn-secondary:hover { color: var(--taupe); }

/* Intro step */
.selftest-modal-intro { margin-bottom: 1.2rem; }
/* ─── SELFTEST STEP VISIBILITY (Bug-Fix) ──────────────────── */
.st-step { display: block; }
.st-step[hidden] { display: none !important; }

/* Result */
.st-result-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.st-result-cta { display: flex; flex-direction: column; gap: 1rem; }
.st-result-cta-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.st-btn-cta { align-self: flex-start; }

@media (max-width: 540px) {
  .st-nav { flex-direction: column-reverse; align-items: stretch; }
  .st-btn-primary, .st-btn-secondary { text-align: center; }
}

/* ─── SELBSTTEST OPTION D (vor Formular) ───────────────────── */
.selftest-option-d {
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.selftest-d-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(168,159,148,0.80);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.btn-selftest-d {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(181,146,74,0.5);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 0 0.25rem;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
}
.btn-selftest-d:hover { opacity: 0.75; }
