/* =================================================================
   DAS FREQUENZ-PRINZIP — high-end build
   Palette & type carried over 1:1 from the live site, elevated.
   ================================================================= */

/* ---------- Design tokens --------------------------------------- */
:root {
  /* Brand colours (from live site) */
  --accent: #d21f58;          /* raspberry — the signal */
  --accent-2: #e8467a;        /* brighter signal for glow */
  --accent-tint: #fce8ef;     /* pale wash */
  --slate: #355168;           /* dark chapters — DAS eine dunkle Blau */
  --slate-deep: #26404f;      /* deeper slate for depth */
  --slate-ink: #1c3140;
  --dark-bg: #355168;         /* EIN einziges dunkles Blau — kein Verlauf, damit nie zwei Töne aneinanderstossen */
  --dark-solid: #355168;      /* = --dark-bg — EIN Blau überall, auch im Footer */

  --ink: #1a1a1a;
  --ink-2: #444444;
  --ink-3: #6a6a6a;   /* WCAG-AA on white (5.2:1) */
  --line: #e8e8e8;
  --line-2: #f0f0f0;

  --paper: #ffffff;
  --paper-2: #faf9f8;
  --paper-3: #f4f2f0;

  /* Fonts */
  --fd: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --fb: 'Inter', system-ui, -apple-system, sans-serif;

  /* Metrics */
  --wrap: 1160px;
  --wrap-narrow: 820px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  --sh-1: 0 1px 2px rgba(26,26,26,.04), 0 8px 24px rgba(26,26,26,.06);
  --sh-2: 0 2px 6px rgba(26,26,26,.05), 0 24px 60px rgba(26,26,26,.10);
  --sh-accent: 0 18px 50px -18px rgba(210,31,88,.55);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--slate) transparent;
}
/* native smooth scrolling for anchor jumps */

body {
  font-family: var(--fb);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-style: normal; }
strong { font-weight: 600; }
::selection { background: var(--accent); color: #fff; }

.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- Layout helpers -------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.chapter {
  position: relative;
  padding-block: clamp(80px, 12vw, 168px);
}
.chapter--light { background: var(--paper); color: var(--ink); }
.chapter--paper { background: var(--paper-2); color: var(--ink); }
.chapter--dark  { background: var(--dark-bg); color: #fff; }

/* soft seam between light & paper chapters — raspberry brand accent.
   ::before = white→paper (top of paper); ::after = paper→white (bottom, when a light section follows). */
.chapter--paper::before,
.chapter--paper:has(+ .chapter--light)::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210,31,88,.6), transparent);
}
.chapter--paper::before { top: 0; }
.chapter--paper:has(+ .chapter--light)::after { bottom: 0; }

/* =================================================================
   TYPOGRAPHY PRIMITIVES
   ================================================================= */
.sec-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .sec-kicker { justify-content: center; }

.sec-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fb);
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.sec-kicker i { width: 26px; height: 1.5px; background: var(--accent); display: inline-block; }
.sec-kicker--light { color: var(--accent-2); }
.sec-kicker--light i { background: var(--accent-2); }

.sec-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.sec-title em { color: var(--accent); font-style: normal; font-weight: 600; }
.chapter--dark .sec-title em { color: var(--accent-2); }

.sec-sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 620px;
}
.chapter--dark .sec-sub { color: rgba(255,255,255,.93); }

/* Typography polish — even heading wrapping, tidy paragraph rag */
.sec-title, .resonance__title, .probe__title, .subpage__title, .err__title,
.prose h1, .prose h2, .prose h3, .fb-step > h2, .voices__feature-q,
.plan__name, .post__title, .diagnose__lead { text-wrap: balance; }
.sec-sub, .hero__lead, .problem__intro, .resonance__pre, .resonance__out,
.prose p, .prose li, .fb-step__desc, .deliver__card p, .plan__for,
.legal-cta p, .diagnose__note, .insight p { text-wrap: pretty; }

.sec-cta { margin-top: clamp(40px, 6vw, 64px); }
.sec-cta--left { text-align: left; }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  --bpx: 26px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px var(--bpx);
  font-family: var(--fb); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  border-radius: 100px;
  will-change: transform;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn__arrow { font-style: normal; transition: transform .45s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--sh-accent); }
.btn--accent:hover { background: #b81a4d; box-shadow: 0 22px 60px -16px rgba(210,31,88,.7); }
.btn--accent::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28); pointer-events: none;
}

.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }

.btn--nav {
  padding: 11px 22px; font-size: 14px;
  background: var(--accent); color: #fff; box-shadow: 0 10px 30px -12px rgba(210,31,88,.6);
}
.btn--nav:hover { background: #b81a4d; }

.btn--lg { --bpx: 34px; padding-block: 18px; font-size: 16px; }
.btn--xl { --bpx: 40px; padding-block: 21px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }

/* =================================================================
   PRELOADER
   ================================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--slate);
  display: grid; place-items: center;
  color: var(--accent-2);
}
.preloader.is-done { opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), visibility .7s; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.preloader__wave { width: 200px; height: 66px; filter: drop-shadow(0 0 16px rgba(232,70,122,.6)); }
.preloader__word {
  font-family: var(--fd); font-weight: 500; letter-spacing: .5em; text-transform: uppercase;
  font-size: 13px; color: rgba(255,255,255,.9); padding-left: .5em;
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: transform .5s var(--ease);
}
.nav__wrap {
  max-width: var(--wrap); margin-inline: auto;
  margin-top: 16px;
  padding: 10px 12px 10px 20px;
  display: flex; align-items: center; gap: 24px;
  border-radius: 100px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 40px -20px rgba(26,26,26,.4);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
  width: calc(100% - 2 * var(--gutter));
  margin-inline: auto;
  will-change: transform;
}
/* nav stays a light frosted pill on every section, so the colour logo always reads */

.nav--scrolled .nav__wrap { transform: translateY(-7px); }

.nav__brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav__mark { color: var(--accent); width: 30px; display: block; }
.nav__mark svg { width: 100%; height: auto; }
.nav__brand-text { font-family: var(--fd); font-weight: 600; font-size: 15px; letter-spacing: -.01em; }

.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  position: relative; font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav .btn--nav { margin-left: 4px; }

.nav__burger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; margin-left: auto; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 85;
  background: var(--slate);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; width: min(360px, 82vw); }
.mobile-menu__links a { font-family: var(--fd); font-size: 26px; font-weight: 600; color: #fff; padding: 12px; }
.mobile-menu__links a.btn { margin-top: 20px; font-family: var(--fb); font-size: 17px; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-block: 128px 168px;
  overflow: hidden;
  background: var(--dark-bg);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 30%, transparent 40%, rgba(20,34,44,.55) 100%);
}
.hero__inner { position: relative; z-index: 5; max-width: 1000px; }

.hero__eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 26px;
}
.hero__title {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(52px, 10vw, 122px);
  line-height: 0.96; letter-spacing: -0.028em;
  color: #fff;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero__title--landing { font-size: clamp(38px, 6.4vw, 84px); line-height: 1.0; }
.hero__title .line > * , .hero__title .line { will-change: transform; }
.resonate { position: relative; color: var(--accent-2); font-style: normal; display: inline-block; padding-right: .06em; }

.hero__lead {
  margin-top: 30px; max-width: 640px;
  font-size: clamp(18px, 2.2vw, 23px); line-height: 1.5;
  color: #fff;
}
.hero__lead strong { color: #fff; font-weight: 600; }

.hero__values {
  margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 900px;
}
.hero__value { display: flex; flex-direction: column; gap: 8px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__value-k { font-family: var(--fd); font-weight: 600; font-size: 16px; color: var(--accent-2); }
.hero__value-t { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.9); }

.hero__cta { margin-top: 50px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero__cta-note { font-size: 13.5px; color: rgba(255,255,255,.9); letter-spacing: .01em; line-height: 1.5; text-align: center; margin: 0; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 68px; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.78); font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.5), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background:var(--accent-2); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(0);} 100%{ transform: translateY(240%);} }

/* =================================================================
   PROBLEM
   ================================================================= */
.problem__intro {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(20px, 2.6vw, 27px); line-height: 1.45; letter-spacing: -.01em;
  max-width: 780px; color: var(--ink);
}
.problem__list { list-style: none; margin: clamp(40px,6vw,64px) 0; max-width: 820px; }
.problem__list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 2vw, 21px); line-height: 1.4; font-weight: 500; color: var(--ink);
}
.problem__dot { flex-shrink: 0; width: 9px; height: 9px; margin-top: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-tint); }

.problem__loss {
  position: relative; overflow: hidden;
  margin: clamp(40px,6vw,72px) 0; padding: clamp(44px,6vw,72px) clamp(30px,5vw,56px);
  border-radius: var(--radius);
  background: var(--dark-bg); color: #fff;
  box-shadow: var(--sh-2); text-align: center;
}
.problem__loss::before {
  content: ""; position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%);
  width: 62%; height: 130%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(232,70,122,.30), transparent 72%);
}
.problem__loss-label { position: relative; font-size: 15px; color: rgba(255,255,255,.85); letter-spacing: .01em; }
.problem__loss-num {
  position: relative;
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(44px, 9vw, 94px); line-height: 1; letter-spacing: -.03em;
  color: var(--accent-2); margin: 14px 0 8px;
  display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap;
  text-shadow: 0 0 46px rgba(232,70,122,.45);
}
.problem__loss-cur { font-size: .4em; font-weight: 600; letter-spacing: 0; color: rgba(255,255,255,.82); }
.problem__loss-sub { position: relative; font-family: var(--fd); font-size: 20px; font-weight: 500; color: #fff; }

.diagnose { margin: clamp(48px,7vw,88px) 0; }
.diagnose__lead { font-family: var(--fd); font-weight: 600; font-size: 22px; margin-bottom: 26px; }
.diagnose__grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.qcard {
  position: relative; display: flex; align-items: baseline; gap: 22px;
  padding: 30px 32px 32px; border-radius: 18px; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.qcard::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.qcard::after {   /* the frequency "signal" draws itself in on reveal */
  content: ""; position: absolute; left: 32px; right: 32px; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(210,31,88,.12));
  transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease);
}
.qcard.is-in::after { transform: scaleX(1); }
.qcard:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.qcard:hover::before { opacity: 1; }
.qcard__n { flex-shrink: 0; font-family: var(--fd); font-weight: 700; font-size: 21px; line-height: 1; letter-spacing: .02em; color: var(--accent); font-variant-numeric: tabular-nums; }
.qcard__q { font-family: var(--fd); font-weight: 600; font-size: 18px; line-height: 1.32; letter-spacing: -.01em; color: var(--ink); }
.diagnose__note { margin-top: 26px; font-size: 16px; color: var(--ink-2); max-width: 620px; }

/* Vier-Fragen graphic — a stylized site mock-up with four marked zones + the questions */
.diag2 { display: grid; grid-template-columns: minmax(0, 380px) 1fr; gap: clamp(28px,4vw,52px); align-items: center; max-width: 960px; margin: clamp(28px,4vw,44px) auto 0; text-align: left; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-1); padding: clamp(22px,3.4vw,40px); }
.diag2__side { display: flex; flex-direction: column; gap: clamp(15px,2vw,21px); }
.diag2__lead { font-family: var(--fd); font-weight: 700; font-size: clamp(19px,2.3vw,24px); letter-spacing: -.02em; color: var(--ink); margin: 0; }
.diag2__note { margin: 3px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.diag2__mock { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--sh-2); }
.diag2__chrome { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.diag2__chrome i { width: 10px; height: 10px; border-radius: 50%; background: #cdc9c4; flex-shrink: 0; }
.diag2__chrome i:first-child { background: var(--accent); }
.diag2__url { margin-left: 8px; height: 15px; flex: 1; max-width: 190px; border-radius: 8px; background: #fff; border: 1px solid var(--line); }
.diag2__nav { display: flex; align-items: center; gap: 10px; padding: 11px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.diag2__logo { width: 22px; height: 22px; border-radius: 6px; background: var(--accent); }
.diag2__navln { height: 7px; width: 32px; border-radius: 4px; background: #d3cfca; }
.diag2__navln:last-child { margin-left: auto; width: 44px; height: 17px; border-radius: 20px; background: var(--slate); }
.diag2__screen { padding: 20px; display: flex; flex-direction: column; gap: 18px; }
.diag2__zone { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 16px; border-radius: 11px; background: var(--paper-2); border: 1px solid #eae7e3; }
.diag2__pin { position: absolute; top: -11px; left: -11px; width: 27px; height: 27px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--fd); font-weight: 700; font-size: 13px; display: grid; place-items: center; box-shadow: 0 5px 14px rgba(210,31,88,.4), 0 0 0 4px #fff; z-index: 2; }
.diag2__zone--hero { flex-direction: column; align-items: flex-start; gap: 11px; padding-block: 22px; }
.diag2__ln { display: block; border-radius: 7px; }
.diag2__ln--t { width: 78%; height: 15px; background: var(--slate); }
.diag2__ln--s { width: 52%; height: 9px; background: #c7c2bc; }
.diag2__btn { width: 132px; height: 34px; border-radius: 40px; background: var(--accent); box-shadow: 0 6px 14px -4px rgba(210,31,88,.5); }
.diag2__zone--feats { justify-content: space-between; gap: 12px; }
.diag2__card { flex: 1; display: flex; flex-direction: column; gap: 7px; padding: 12px 11px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.diag2__ic { width: 20px; height: 20px; border-radius: 6px; background: var(--accent-tint); border: 1.5px solid rgba(210,31,88,.45); }
.diag2__cl { height: 6px; width: 100%; border-radius: 3px; background: #d7d3ce; }
.diag2__cl--short { width: 62%; }
.diag2__avas { display: flex; }
.diag2__ava { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#c9c4be,#ded9d3); border: 2px solid #fff; }
.diag2__ava:not(:first-child) { margin-left: -11px; }
.diag2__stars { margin-left: auto; color: var(--accent); font-size: 15px; letter-spacing: 2px; }
.diag2__list { list-style: none; display: flex; flex-direction: column; gap: 17px; }
.diag2__list li { display: flex; align-items: center; gap: 15px; font-family: var(--fd); font-weight: 600; font-size: clamp(16px,1.9vw,19px); line-height: 1.3; color: var(--slate); letter-spacing: -.01em; }
.diag2__n { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-weight: 700; font-size: 14px; display: grid; place-items: center; }

.insight {
  margin: clamp(40px,6vw,72px) 0 0; padding: clamp(20px,3vw,32px) 0;
}
.insight p { font-family: var(--fd); font-weight: 600; font-size: clamp(22px, 3.2vw, 36px); line-height: 1.24; letter-spacing: -.02em; }
.insight p + p { margin-top: 12px; }
.insight em { color: var(--accent); font-style: normal; }

/* =================================================================
   RESONANCE (klingend vs schwingend)
   ================================================================= */
.resonance {
  overflow: hidden; text-align: center;
  background: var(--dark-bg);
}
.resonance__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .95; }
.resonance__inner { position: relative; z-index: 5; max-width: 900px; }
.resonance__pre { font-size: clamp(15px,1.9vw,18px); line-height: 1.62; color: rgba(255,255,255,.85); max-width: 680px; margin-inline: auto; }
.resonance__title {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(34px, 6.2vw, 74px); line-height: 1.04; letter-spacing: -.03em;
  margin: clamp(34px,5vw,54px) 0; color: #fff;
}
.resonance__title .klingt { color: rgba(255,255,255,.68); }
.resonance__title .schwingt { color: var(--accent-2); font-style: normal; text-shadow: 0 0 44px rgba(232,70,122,.45); }
.resonance__out { font-size: clamp(17px, 2.3vw, 23px); line-height: 1.5; color: #fff; max-width: 640px; margin-inline: auto; }
.resonance__out em { color: #fff; font-style: normal; }

/* =================================================================
   TEAM
   ================================================================= */
.team__intro { font-family: var(--fd); font-weight: 500; font-size: clamp(18px,2.3vw,23px); line-height: 1.5; max-width: 760px; margin-bottom: clamp(40px,6vw,64px); color: var(--ink); }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.person { display: flex; flex-direction: column; gap: 26px; }
.person__media { position: relative; width: 132px; height: 132px; flex-shrink: 0; }
.person__media img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; position: relative; z-index: 2; }
.person__ring { position: absolute; inset: -8px; border-radius: 50%; border: 1.5px solid var(--accent); opacity: .5; z-index: 1; animation: ringpulse 4s var(--ease) infinite; }
@keyframes ringpulse { 0%,100%{ transform: scale(1); opacity:.5;} 50%{ transform: scale(1.06); opacity:.18;} }
.person__name { font-family: var(--fd); font-weight: 700; font-size: clamp(26px,3vw,34px); letter-spacing: -.02em; }
.person__role { color: var(--accent); font-weight: 600; font-size: 15px; margin: 4px 0 18px; }
.person__body p { color: var(--ink-2); font-size: 16px; line-height: 1.62; }
.person__body p + p { margin-top: 13px; }

.team__tagline { margin-top: clamp(48px,7vw,84px); display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.team__merge { width: min(420px, 80vw); height: 70px; display: block; }
.team__merge canvas { width: 100%; height: 100%; }
.team__tagline p { font-family: var(--fd); font-weight: 600; font-size: clamp(22px,3vw,32px); letter-spacing: -.02em; }
.team__tagline em { color: var(--accent); font-style: normal; }

/* =================================================================
   PROCESS
   ================================================================= */
.steps { list-style: none; counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.2vw,28px); position: relative; align-items: stretch; }
.step { display: flex; position: relative; z-index: 1; padding: 0; border: 0; }
.step__body {
  width: 100%; max-width: none; position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(30px,3.2vw,46px) clamp(26px,2.8vw,38px);
  box-shadow: 0 1px 2px rgba(20,30,40,.03);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.step__body::before {  /* our signature corner-glow on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.step:hover .step__body { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.step:hover .step__body::before { opacity: 1; }
.step__num {
  position: relative; display: block; text-align: center;
  font-family: var(--fd); font-weight: 700; font-size: clamp(42px,4.6vw,56px);
  line-height: 1; letter-spacing: -.02em; color: var(--accent); margin-bottom: 14px;
}
.step__title { position: relative; text-align: center; font-family: var(--fd); font-weight: 700; font-size: clamp(20px,2.2vw,26px); letter-spacing: -.02em; margin-bottom: 20px; color: var(--ink); }
.step__body p { position: relative; text-align: left; color: var(--ink-2); font-size: 15.5px; line-height: 1.62; max-width: none; margin: 0; }
.step__body p + p { margin-top: 14px; }

.process__timeline { margin-top: clamp(40px,5vw,60px); display: flex; align-items: center; gap: 20px; }
.process__timeline-line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0 14px, transparent 14px 24px); border-radius: 2px; max-width: 180px; }
.process__timeline p { font-family: var(--fd); font-size: clamp(18px,2.4vw,24px); font-weight: 500; }
.process__timeline strong { color: var(--accent); font-weight: 700; }

/* =================================================================
   DELIVERABLES
   ================================================================= */
.deliver__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.deliver__card {
  position: relative; padding: clamp(30px,3.4vw,44px); border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.deliver__card::after {
  content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(210,31,88,0); transition: box-shadow .5s var(--ease);
}
.deliver__card:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: transparent; }
.deliver__card:hover::after { box-shadow: inset 0 0 0 1.5px rgba(210,31,88,.32); }
.deliver__num { font-family: var(--fd); font-weight: 700; font-size: 15px; color: var(--accent); letter-spacing: .1em; }
.deliver__card h3 { font-family: var(--fd); font-weight: 700; font-size: clamp(21px,2.6vw,27px); letter-spacing: -.02em; margin: 14px 0 12px; }
.deliver__card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }
.deliver__close { margin-top: clamp(40px,6vw,64px); font-family: var(--fd); font-weight: 500; font-size: clamp(19px,2.6vw,26px); line-height: 1.45; letter-spacing: -.01em; max-width: 860px; }
.deliver__close strong { color: var(--accent); }

/* =================================================================
   PRICING
   ================================================================= */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(28px,2.6vw,38px); border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.plan--featured {
  background: linear-gradient(180deg, #fff, #fff);
  border: 1.5px solid var(--accent);
  box-shadow: var(--sh-accent);
  transform: translateY(-10px);
}
.plan--featured:hover { transform: translateY(-16px); }

.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 8px 20px -8px rgba(210,31,88,.6);
}
.plan__badge--soft { background: var(--slate); color: #fff; box-shadow: none; }
.plan__name { font-family: var(--fd); font-weight: 700; font-size: 24px; letter-spacing: -.02em; }
.plan__tag { color: var(--ink-3); font-size: 14px; margin-top: 8px; line-height: 1.4; min-height: 40px; }
.plan__for { margin: 20px 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); padding: 16px; background: var(--paper-2); border-radius: var(--radius-sm); }
.plan__for strong { color: var(--ink); }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); }
.plan__list li::before {
  content:""; position:absolute; left:0; top:2px; width:18px; height:18px; border-radius:50%;
  background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d21f58' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.plan__cur { font-family: var(--fd); font-weight: 600; font-size: 16px; color: var(--ink-3); }
.plan__amt { font-family: var(--fd); font-weight: 800; font-size: clamp(38px,4vw,48px); letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.plan--featured .plan__amt { color: var(--accent); }
.plan__guarantee { font-size: 13px; line-height: 1.5; color: var(--ink-3); margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.plan__guarantee strong { color: var(--ink-2); }
.plan__support { font-size: 12.5px; line-height: 1.5; color: var(--ink-3); margin-top: 16px; padding: 14px; background: var(--paper-2); border-radius: var(--radius-sm); }
.plan__support strong { color: var(--accent); }

/* =================================================================
   VOICES (testimonials)
   ================================================================= */
.voices { background: var(--dark-bg); overflow: hidden; }
.voices__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .55; }
.voices > .wrap { position: relative; z-index: 5; }
.voices__feature { text-align: center; max-width: 880px; margin: 0 auto clamp(44px,6vw,72px); }
.voices__feature-q { font-family: var(--fd); font-weight: 600; font-size: clamp(24px,3.6vw,40px); line-height: 1.25; letter-spacing: -.02em; color: #fff; }
.voices__big { color: var(--accent-2); font-size: 1.19em; font-weight: 800; display: inline-block; margin-top: 6px; text-shadow: 0 0 40px rgba(232,70,122,.4); }
.voices__feature-a { margin-top: 22px; font-size: 15px; color: rgba(255,255,255,.85); letter-spacing: .02em; }

.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; grid-auto-rows: 1fr; }
.vcard {
  display: flex; flex-direction: column;
  padding: 30px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  transition: transform .5s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.vcard:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(232,70,122,.4); }
.vcard blockquote { font-size: 15px; line-height: 1.6; color: #fff; }
.vcard blockquote::before { content: "\201C"; color: var(--accent-2); font-family: var(--fd); font-size: 40px; line-height: 0; vertical-align: -12px; margin-right: 4px; }
.vcard figcaption { margin-top: auto; padding-top: 20px; font-family: var(--fd); font-weight: 600; font-size: 15px; color: #fff; display: flex; flex-direction: column; }
.vcard figcaption span { font-family: var(--fb); font-weight: 400; font-size: 13px; color: rgba(255,255,255,.78); margin-top: 2px; }

/* =================================================================
   COMPARE rows
   ================================================================= */
.compare__rows { display: grid; gap: clamp(24px,3.4vw,34px); max-width: 900px; margin-left: auto; margin-right: auto; }
.crow { display: block; }
.crow__role { display: block; text-align: center; font-family: var(--fb); font-weight: 600; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.crow__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.crow__box { padding: 24px 26px; border-radius: 14px; text-align: left; }
.crow__klingt { background: #f5f5f5; color: var(--ink-3); }
.crow__schwingt { background: #fff; border: 1px solid var(--accent); border-left-width: 4px; color: var(--ink); box-shadow: var(--sh-1); }
.crow__kind { font-family: var(--fb); font-size: 10.5px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 10px; }
.crow__klingt .crow__kind { color: var(--ink-3); }
.crow__schwingt .crow__kind { color: var(--accent); }
.crow__txt { font-family: var(--fd); font-weight: 500; font-size: clamp(15px,1.6vw,18px); line-height: 1.42; }

/* unified card hover — same lift/shadow/accent as the "Was du bekommst" cards */
.problem__list li, .crow__box { transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease); }
.problem__list li:hover, .crow__box:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.crow__klingt { border: 1px solid transparent; }

/* =================================================================
   BEFORE / AFTER
   ================================================================= */
.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px,3vw,40px); align-items: stretch; }
.ba__col { padding: clamp(28px,3.4vw,44px); border-radius: var(--radius); }
.ba__col--before { background: var(--paper); border: 1px solid var(--line); }
.ba__col--after { background: var(--slate); color: #fff; box-shadow: var(--sh-2); }
.ba__h { font-family: var(--fd); font-weight: 700; font-size: 22px; margin-bottom: 22px; letter-spacing: -.01em; }
.ba__col--before .ba__h { color: var(--ink-3); }
.ba__col--after .ba__h { color: var(--accent-2); }
.ba__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ba__col li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.45; }
.ba__col--before li { color: var(--ink-2); }
.ba__col--before li::before { content:"–"; position:absolute; left:4px; color: var(--ink-3); }
.ba__col--after li { color: #fff; }
.ba__col--after li::before { content:""; position:absolute; left:0; top:6px; width:14px; height:14px; border-radius:50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat; }
.ba__arrow { display: grid; place-items: center; color: var(--accent); }
.ba__arrow span { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-tint); display: grid; place-items: center; position: relative; }
.ba__arrow span::after { content:"→"; font-size: 20px; color: var(--accent); }

/* =================================================================
   PROBE CTA
   ================================================================= */
.probe { text-align: center; overflow: hidden; background: var(--dark-bg); }
.probe__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .8; }
.probe__inner { position: relative; z-index: 5; max-width: 780px; }
.probe .sec-kicker { justify-content: center; }
.probe__title { font-family: var(--fd); font-weight: 700; font-size: clamp(32px,5.2vw,60px); line-height: 1.06; letter-spacing: -.03em; color: #fff; margin-bottom: 24px; }
.probe__lead { font-size: clamp(17px,2.2vw,21px); line-height: 1.55; color: #fff; max-width: 620px; margin-inline: auto; }
.probe__value { margin-top: 30px; display: inline-flex; gap: 14px; align-items: center; font-family: var(--fd); font-weight: 600; font-size: clamp(18px,2.4vw,24px); }
.probe__value span:first-child { color: rgba(255,255,255,.78); text-decoration: line-through; text-decoration-color: rgba(255,255,255,.65); }
.probe__value span:last-child { color: var(--accent-2); }
.probe__value i { color: rgba(255,255,255,.68); font-style: normal; }
.probe__note { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,.85); }

/* =================================================================
   FAQ
   ================================================================= */
.acc { display: flex; flex-direction: column; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 20px;
  padding: 26px 0; font-family: var(--fd); font-weight: 600; font-size: clamp(17px,2.2vw,21px);
  letter-spacing: -.01em; line-height: 1.32; transition: color .3s var(--ease);
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary:hover { color: var(--accent); }
.acc__ico { margin-left: auto; flex-shrink: 0; position: relative; width: 20px; height: 20px; }
.acc__ico::before, .acc__ico::after { content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); background: var(--accent); border-radius: 2px; }
.acc__ico::before { width: 15px; height: 2px; }
.acc__ico::after { width: 2px; height: 15px; transition: transform .4s var(--ease); }
.acc__item[open] .acc__ico::after { transform: translate(-50%,-50%) scaleY(0); }
.acc__body { overflow: hidden; }
.acc__body p { color: var(--ink-2); font-size: 16px; line-height: 1.66; padding-bottom: 6px; }
.acc__body p:last-child { padding-bottom: 26px; }
.acc__body p + p { padding-top: 12px; }
.acc__item[open] summary { color: var(--accent); }

/* =================================================================
   BLOG
   ================================================================= */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,28px); }
.post {
  display: flex; flex-direction: column; padding: clamp(26px,2.8vw,34px); overflow: hidden;
  border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.post__media {
  display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-3);
  margin: calc(-1 * clamp(26px,2.8vw,34px)) calc(-1 * clamp(26px,2.8vw,34px)) clamp(22px,2.4vw,28px);
}
.post__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__cat { align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); padding: 5px 12px; border-radius: 100px; background: var(--accent-tint); margin-bottom: 20px; }
.post__title { font-family: var(--fd); font-weight: 700; font-size: clamp(19px,2.2vw,23px); line-height: 1.24; letter-spacing: -.02em; margin-bottom: 12px; }
.post__desc { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex: 1; }
.post__meta { margin-top: 22px; font-size: 13px; color: var(--ink-3); }
.link-arrow { font-family: var(--fd); font-weight: 600; font-size: 18px; color: var(--accent); display: inline-flex; gap: 8px; align-items: center; }
.link-arrow em { font-style: normal; transition: transform .4s var(--ease); }
.link-arrow:hover em { transform: translateX(5px); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--dark-solid); color: #fff; padding-block: clamp(56px,7vw,88px) 40px; position: relative; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__brand .nav__mark { color: var(--accent-2); width: 40px; }
.footer__name { font-family: var(--fd); font-weight: 700; font-size: 20px; }
.footer__tag { color: rgba(255,255,255,.82); font-size: 15px; }
.footer__tag em { color: var(--accent-2); font-style: normal; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.footer__links a { font-size: 14.5px; color: rgba(255,255,255,.93); transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--accent-2); }
.footer__base { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.footer__base p { font-size: 13px; color: rgba(255,255,255,.75); }
.footer__top { font-size: 13px; color: rgba(255,255,255,.85); }
.footer__top:hover { color: var(--accent-2); }

/* =================================================================
   MODAL
   ================================================================= */
.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(20,34,44,.6); backdrop-filter: blur(6px); }
.modal__card {
  position: relative; z-index: 2; width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
  background: var(--paper); border-radius: 24px; padding: clamp(28px,4vw,44px);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.5);
  transform: translateY(20px) scale(.98); transition: transform .5s var(--ease);
}
.modal.is-open .modal__card { transform: none; }
.modal__x { position: absolute; top: 18px; right: 20px; width: 36px; height: 36px; border-radius: 50%; font-size: 24px; color: var(--ink-3); background: var(--paper-2); display: grid; place-items: center; transition: background .3s, color .3s; }
.modal__x:hover { background: var(--accent-tint); color: var(--accent); }
.modal__title { font-family: var(--fd); font-weight: 700; font-size: clamp(24px,3.4vw,32px); letter-spacing: -.02em; }
.modal__intro { margin-top: 14px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.modal__value { margin: 16px 0 26px; font-size: 13px; color: var(--accent); font-weight: 600; padding: 12px 14px; background: var(--accent-tint); border-radius: var(--radius-sm); }

.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-family: var(--fd); font-weight: 600; font-size: 14px; }
.field__label i { color: var(--accent); font-style: normal; }
.field input, .field textarea, .field__url {
  font: inherit; font-size: 15px; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--paper-2); color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease); width: 100%;
}
.field input:focus, .field textarea:focus, .field__url:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; }
.field--radio { border: none; display: flex; flex-direction: column; gap: 10px; }
.radio { display: flex; align-items: center; gap: 10px; font-size: 14.5px; cursor: pointer; color: var(--ink-2); }
.radio input { width: auto; accent-color: var(--accent); }
.field__url { margin-top: 6px; }
.form__foot { font-size: 12.5px; color: var(--ink-3); text-align: center; }

/* =================================================================
   SCROLL PROGRESS
   ================================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); box-shadow: 0 0 12px rgba(210,31,88,.6); transform-origin: left; }

/* =================================================================
   REVEAL (JS-driven; hidden state only added by JS, so no-JS shows all)
   ================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); will-change: opacity, transform; }
/* Kein Flackern: Der Versteckt-Zustand kommt bereits aus dem CSS (die Klasse .js
   setzt das Inline-Skript im Kopf, also VOR dem ersten Bildaufbau). Vorher fügte
   JavaScript ihn erst danach hinzu — dadurch blitzten die Texte kurz auf. */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
html.js #hero [data-reveal] { opacity: 1; transform: none; transition: none; }
.reveal--in { opacity: 1; transform: none; }
/* muss die Vor-Versteck-Regel oben überbieten (sonst bleibt alles unsichtbar) */
html.js [data-reveal].reveal--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =================================================================
   SUB-PAGES (legal / blog / article)
   ================================================================= */
.subnav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.subnav__wrap { max-width: var(--wrap); margin-inline: auto; padding: 15px var(--gutter); display: flex; align-items: center; gap: 20px; }
.subnav__wrap .nav__brand-text { color: var(--ink); }
.subnav__wrap .nav__mark { color: var(--accent); }
.subnav__back { margin-left: auto; font-size: 14px; font-weight: 500; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; transition: color .3s var(--ease); }
.subnav__back:hover { color: var(--accent); }
.subnav .btn--nav { margin-left: 0; }

.subpage { padding-block: clamp(56px, 8vw, 104px); background: var(--paper); }
.subpage__head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 56px); }
.subpage__kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.subpage__kicker i { width: 26px; height: 1.5px; background: var(--accent); }
.subpage__title { font-family: var(--fd); font-weight: 700; font-size: clamp(32px, 5.5vw, 60px); line-height: 1.04; letter-spacing: -.03em; }
.subpage__lead { margin-top: 18px; font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: var(--ink-2); }

.prose { max-width: 760px; }
.prose h2 { font-family: var(--fd); font-weight: 700; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.02em; margin: 46px 0 14px; }
.prose h3 { font-family: var(--fd); font-weight: 600; font-size: 19px; margin: 30px 0 10px; }
.prose p { color: var(--ink-2); font-size: 16.5px; line-height: 1.75; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 1.2em; color: var(--ink-2); }
.prose li { margin-bottom: 9px; line-height: 1.65; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 26px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--accent); font-family: var(--fd); font-weight: 500; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.4; color: var(--ink); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.prose__meta { display: flex; gap: 14px; align-items: center; color: var(--ink-3); font-size: 14px; margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.prose__meta .post__cat { margin: 0; }

.legal-note { padding: 16px 18px; background: var(--accent-tint); border: 1px solid rgba(210,31,88,.15); border-radius: var(--radius-sm); color: var(--ink-2); font-size: 14px; line-height: 1.55; margin-bottom: 36px; }
.legal-note strong { color: var(--accent); }
.ph { background: var(--paper-3); border: 1px dashed #d8d3cd; border-radius: 5px; padding: 1px 7px; color: var(--ink-3); font-size: .95em; }

.blogpage__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.subfooter-cta { margin-top: clamp(48px, 7vw, 80px); padding: clamp(34px, 5vw, 56px); border-radius: var(--radius); background: var(--slate); color: #fff; text-align: center; }
.subfooter-cta h2 { font-family: var(--fd); font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.02em; margin-bottom: 12px; }
.subfooter-cta p { color: rgba(255,255,255,.93); margin-bottom: 26px; }

/* =================================================================
   LOGO (real SVG wordmark)
   ================================================================= */
.brand__logo { height: 42px; width: auto; display: block; }        /* original logo, in colour */
.subnav .brand__logo { height: 36px; }
.footer__brand .brand__logo { height: 44px; filter: brightness(0) invert(1); }  /* white on dark footer */
.mobile-menu__logo { height: 38px; filter: brightness(0) invert(1); margin: 0 auto 6px; }

/* =================================================================
   FAQ two-column — fills the empty side margins of the narrow column
   ================================================================= */
.faq__layout { display: grid; grid-template-columns: 340px 1fr; gap: clamp(30px, 5vw, 76px); align-items: start; }
.faq__aside { position: sticky; top: 100px; }
.faq__aside .sec-head { margin-bottom: 0; }
.faq__cta-card { margin-top: 30px; padding: 30px 28px; border-radius: var(--radius); background: var(--slate); color: #fff; position: relative; overflow: hidden; }
.faq__cta-card::after { content:""; position:absolute; right:-30px; bottom:-30px; width:140px; height:140px; border-radius:50%; background: radial-gradient(circle, rgba(232,70,122,.35), transparent 70%); }
.faq__cta-card h3 { font-family: var(--fd); font-weight: 700; font-size: 21px; letter-spacing: -.02em; margin-bottom: 8px; position: relative; }
.faq__cta-card p { font-size: 14.5px; color: rgba(255,255,255,.93); line-height: 1.5; margin-bottom: 22px; position: relative; }
.faq__cta-card .btn { position: relative; }

/* =================================================================
   FREQUENZ-PROBE page
   ================================================================= */
.hero__title--probe { font-size: clamp(32px, 5vw, 66px); line-height: 1.07; letter-spacing: -.02em; }
.pform { position: relative; overflow: hidden; }
.pform__card { position: relative; z-index: 2; background: var(--paper); color: var(--ink); border-radius: 24px; padding: clamp(28px, 4vw, 46px); max-width: 600px; margin: 0 auto; box-shadow: 0 40px 100px -30px rgba(0,0,0,.5); }
.pform__value { text-align: center; font-size: 13px; font-weight: 600; color: var(--accent); background: var(--accent-tint); padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.pform__foot { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); text-align: center; }

/* =================================================================
   CENTERED LAYOUT — everything mittig for a cleaner, symmetric look
   ================================================================= */
.sec-head { text-align: center; margin-left: auto; margin-right: auto; }
.sec-head .sec-kicker { justify-content: center; }
.sec-sub { margin-left: auto; margin-right: auto; }
.sec-cta, .sec-cta--left { text-align: center; }

/* hero */
.hero__inner { text-align: center; margin-left: auto; margin-right: auto; }
.hero__eyebrow, .hero__lead { margin-left: auto; margin-right: auto; }
.hero__values { justify-items: center; }
.hero__value { text-align: center; align-items: center; }
.hero__cta { justify-content: center; }

/* problem */
.problem__intro { text-align: center; margin-left: auto; margin-right: auto; }
.problem__list { margin-left: auto; margin-right: auto; max-width: 700px; }
.problem__list li { justify-content: center; text-align: center; }
.problem__dot { margin-top: 10px; }
.diagnose { text-align: center; }
.diagnose__lead, .diagnose__note { text-align: center; margin-left: auto; margin-right: auto; }
.qcard { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; }
.insight { text-align: center; }

/* Verlust-Karte: kompakter, weniger bulky, zentriert */
.problem__loss { max-width: 700px; margin-left: auto; margin-right: auto; padding: clamp(26px,3.4vw,40px) clamp(24px,4vw,44px); }
.problem__loss-label { font-size: 14px; }
.problem__loss-num { font-size: clamp(26px, 4.4vw, 44px); margin: 8px 0 0; }
.problem__loss-cur { font-size: .34em; }
.problem__loss-sub { font-size: .42em; margin: 0; }

/* deliverables */
.deliver__card { text-align: center; }
.deliver__close { text-align: center; margin-left: auto; margin-right: auto; }

/* team */
.team__intro { text-align: center; margin-left: auto; margin-right: auto; }
.person { align-items: center; text-align: center; }
.person__body { max-width: 480px; }

/* process — single centered column, no dashed line */
.step__body p { margin-left: auto; margin-right: auto; }
.process__timeline { justify-content: center; text-align: center; }
.process__timeline-line { display: none; }

/* before/after — centered heads, list stays readable but block-centered */
.ba__col { text-align: center; }
.ba__col ul { display: inline-block; text-align: left; }

/* compare (redesigned later) — centered role label */
.crow__role { text-align: center; }

/* FAQ — back to a single centered column */
.faq__layout { grid-template-columns: 1fr; max-width: 840px; margin-left: auto; margin-right: auto; }
.faq__aside { position: static; text-align: center; margin-bottom: 22px; }
.faq__aside .sec-kicker { justify-content: center; }
.faq__cta-card { max-width: 480px; margin-left: auto; margin-right: auto; }

/* sub-page heads centered (prose body stays left for reading) */
.subpage__head { text-align: center; margin-left: auto; margin-right: auto; }
.subpage__head .subpage__kicker { justify-content: center; }
.subpage__lead { margin-left: auto; margin-right: auto; }
.prose__meta { justify-content: center; }

/* STIMMEN — group labels + Peter Jan Marthé highlight, all centered */
.vcard blockquote { text-align: center; }
.vcard figcaption { align-items: center; text-align: center; }
.voices__group { text-align: center; font-family: var(--fd); font-weight: 700; font-size: clamp(19px,2.4vw,24px); letter-spacing: -.01em; color: #fff; margin: clamp(38px,5vw,56px) 0 26px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.voices__group::before, .voices__group::after { content: ""; height: 1px; width: 44px; background: rgba(255,255,255,.24); }
.vcard--marthe { max-width: 860px; margin: 8px auto clamp(28px,4vw,40px); text-align: center; background: rgba(255,255,255,.07); border-color: rgba(232,70,122,.42); padding: clamp(30px,4vw,46px); box-shadow: 0 24px 60px -30px rgba(232,70,122,.4); }
.vcard--marthe blockquote { font-size: clamp(16px,2vw,19.5px); line-height: 1.62; color: #fff; }
.vcard--marthe figcaption { font-size: 16px; }
.vcard--marthe figcaption span { color: var(--accent-2); }

/* =================================================================
   LIKE-LIVE section refinements + subtle grain (Deko #3)
   ================================================================= */
/* Wo du stehst — 4 problem statements as a 2×2 grid of clean boxes */
.problem__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 860px; }
.problem__list li { position: relative; overflow: hidden; padding: 22px 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); font-weight: 500; font-size: 16.5px; line-height: 1.4; }
/* identical hover to .deliver__card: lift + shadow + raspberry corner-glow */
.problem__list li::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.problem__list li:hover::before { opacity: 1; }
.problem__dot { display: none; }

/* Was du bekommst — bordered cards with raspberry hover (matches live) */
.deliver__card { background: var(--paper); border: 1px solid var(--line); position: relative; }
.deliver__card::after { display: none; }
.deliver__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 130% at 100% 0%, rgba(210,31,88,.07), transparent 46%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.deliver__card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(210,31,88,.22); }
.deliver__card:hover::before { opacity: 1; }

/* Deko #3 — barely-there grain on light sections for warmth & depth */
.chapter--light { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E"); }
.chapter--paper { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E"); }

/* =================================================================
   SWINGING SECTION TRANSITIONS
   Every dark chapter melts into its light/paper neighbour with a
   flowing wave edge instead of a hard straight line. Each cap is
   painted (via CSS mask) in the exact colour of the adjacent section.
   ================================================================= */
.chapter--dark { position: relative; --cap-t: var(--paper); --cap-b: var(--paper); }
.voices { --cap-t: var(--paper); --cap-b: var(--paper-2); }   /* below deliver (light), above pakete (paper) */
.probe  { --cap-t: var(--paper-2); --cap-b: var(--paper-2); } /* below vorher/nachher (paper), above analyse (paper) */
/* a paper section following a dark one already gets the wavy cap — kill the extra raspberry hairline seam */
.chapter--dark + .chapter--paper::before { content: none; }
.chapter:not(.chapter--dark) + .chapter--dark::before,
.chapter--dark:has(+ .chapter:not(.chapter--dark))::after {
  content: ""; position: absolute; left: -1px; right: -1px;
  height: clamp(26px, 4.4vw, 56px); z-index: 3; pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.chapter:not(.chapter--dark) + .chapter--dark::before { top: -1px; background: var(--cap-t); }
.chapter--dark:has(+ .chapter:not(.chapter--dark))::after { bottom: -1px; background: var(--cap-b); transform: scaleY(-1); }

/* The footer lives outside <main>, so the sibling selector can't reach it —
   give it its own top wave, suppressed on pages whose last section is dark. */
.footer.chapter--dark::before {
  content: ""; position: absolute; left: -1px; right: -1px; top: -1px;
  height: clamp(26px, 4.4vw, 56px); z-index: 3; pointer-events: none; background: var(--paper);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
/* Endet die Seite dunkel, trennt ein himbeerroter Strich die letzte Sektion vom Footer */
main:has(> .chapter--dark:last-child) + .footer.chapter--dark::before {
  content: ""; height: 1px; top: 0; background: linear-gradient(90deg, transparent, rgba(210,31,88,.6), transparent);
  -webkit-mask: none; mask: none;
}
.footer > .wrap { position: relative; z-index: 5; }

/* Legal top-CTA card (1:1 from live) + meta line */
.legal-cta { background: var(--accent-tint); border: 1px solid #f6d4e0; border-radius: 18px; padding: clamp(24px,4vw,34px); margin: 0 0 44px; text-align: center; }
.legal-cta h2 { font-family: var(--fd); font-size: clamp(19px,2.6vw,24px); font-weight: 600; color: var(--slate); margin: 0 0 12px; border: 0; padding: 0; }
.legal-cta p { color: var(--ink-2); margin: 0 auto 20px; font-size: 15.5px; max-width: 60ch; }
.legal-cta .btn { margin: 0 auto; }
.prose a.btn, .prose a.btn:hover, .prose a.btn span, .prose a.btn .btn__arrow { color: #fff; text-decoration: none; }
.prose .legal-updated { color: var(--ink-3); font-size: 14px; margin: -6px 0 30px; }
.prose address { font-style: normal; color: var(--ink-2); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .voices__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__values { gap: 22px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__wrap { padding: 8px 8px 8px 18px; }

  .hero__values { grid-template-columns: 1fr; gap: 4px; }
  .hero__value { padding-top: 14px; }

  /* Hero fits its content on tablet/phone — no forced 100svh overflow, and the
     scroll cue is dropped so it can never collide with the CTA. */
  .hero { min-height: auto; padding-block: 124px 84px; }
  .hero__scroll { display: none; }
  .hero__cta { justify-content: center; }

  .team__grid { grid-template-columns: 1fr; gap: 44px; }
  .deliver__grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; gap: 40px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-5px); }
  .plan__badge { top: -12px; }
  .voices__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .blog__grid, .blogpage__grid { grid-template-columns: 1fr; }
  .subnav__wrap { flex-wrap: nowrap; gap: 12px; }
  .subnav__back { display: none; }
  .subnav .btn--nav { margin-left: auto; }
  .diagnose__grid { grid-template-columns: 1fr; }
  .faq__layout { grid-template-columns: 1fr; gap: 8px; }
  .faq__aside { position: static; }
  .faq__cta-card { margin-top: 20px; margin-bottom: 20px; }

  .crow__pair { grid-template-columns: 1fr; }
  .problem__list { grid-template-columns: 1fr; }

  .ba { grid-template-columns: 1fr; }
  .ba__arrow { transform: rotate(90deg); padding: 6px 0; }

  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps::before { display: none; }   /* no horizontal path when stacked */
  .step { gap: 12px; }
  .diag2 { grid-template-columns: 1fr; gap: 30px; max-width: 460px; }
  .diag2__list { max-width: 420px; margin-inline: auto; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .chapter { padding-block: clamp(64px, 16vw, 96px); }
  .hero { padding-block: 108px 72px; }
  .hero__cta { flex-direction: column; align-items: center; gap: 16px; }
  .hero__cta .btn { width: 100%; max-width: 360px; justify-content: center; }
  .btn { width: auto; }
  /* keep the big CTAs inside the screen on phones */
  .btn--xl { --bpx: 24px; padding-block: 18px; font-size: 15.5px; }
  .btn--lg { --bpx: 26px; }
  .btn--xl, .btn--lg { max-width: 100%; }
  .btn--xl span, .btn--lg span { white-space: normal; }
  .footer__inner { flex-direction: column; gap: 26px; }
}

/* =================================================================
   ACCESSIBILITY — visible keyboard focus + skip link
   ================================================================= */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}
.chapter--dark :focus-visible, .footer :focus-visible, .subnav :focus-visible,
.hero :focus-visible, .voices :focus-visible, .probe :focus-visible { outline-color: var(--accent-2); }

.skip-link {
  position: absolute; left: 12px; top: 12px; z-index: 200; transform: translateY(-150%);
  background: var(--accent); color: #fff; font-family: var(--fd); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 10px; box-shadow: var(--sh-2, 0 18px 50px rgba(53,81,104,.22));
  transition: transform .22s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid #fff; outline-offset: 2px; }

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__scroll-line::after, .person__ring { animation: none; }
}
.reduce-motion .hero__canvas,
.reduce-motion .resonance__canvas,
.reduce-motion .probe__canvas { opacity: .4; }

/* =================================================================
   LIVE-CONTENT-SYNC — new text blocks, same design language
   ================================================================= */

/* Hero: intro sentence (replaces the kicker) + extra CTA lines */
.hero__eyebrow--intro {
  text-transform: none; letter-spacing: .005em; font-weight: 500;
  font-size: clamp(14px, 1.5vw, 16.5px); line-height: 1.5;
  color: rgba(255,255,255,.93); max-width: 640px; margin-bottom: 24px;
}
.hero__cta-value { margin: 0; font-family: var(--fd); font-weight: 600; font-size: 14.5px; letter-spacing: .01em; color: var(--accent-2); text-align: center; }
.hero__cta-scarcity { margin: 3px 0 0; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.78); text-align: center; }

/* Loss card: reasoned figure + source */
.problem__loss-approx { font-family: var(--fd); font-weight: 600; font-size: .34em; letter-spacing: 0; color: rgba(255,255,255,.85); align-self: center; }
.problem__loss-after { position: relative; margin: 8px 0 0; font-size: 15px; color: rgba(255,255,255,.93); }
.problem__loss-src { position: relative; margin: 18px 0 0; font-size: 12px; color: rgba(255,255,255,.72); letter-spacing: .01em; }

/* Repeated CTA blocks: value + note under the button */
.sec-cta__value { margin: 16px 0 0; font-family: var(--fd); font-weight: 600; font-size: 14.5px; color: var(--accent); }
.sec-cta__note { margin: 5px 0 0; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.chapter--dark .sec-cta__value { color: var(--accent-2); }
.chapter--dark .sec-cta__note { color: rgba(255,255,255,.85); }

/* klingt/schwingt closing line */
.resonance__out--last { margin-top: clamp(22px,3vw,34px); font-size: clamp(16px,2vw,19px); color: rgba(255,255,255,.93); }

/* Der Weg: "Dein Anteil" + closing */
.step__share { position: relative; margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.55; color: var(--ink-3); }
.step__share strong { display: block; margin-bottom: 4px; color: var(--accent); font-weight: 600; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.process__more { max-width: 720px; margin: clamp(30px,4vw,44px) auto 0; text-align: center; font-size: clamp(15px,1.8vw,17px); line-height: 1.62; color: var(--ink-2); }

/* Stimmen: bold result headlines */
.voices__feature-head { font-family: var(--fd); font-weight: 700; font-size: clamp(15px,1.8vw,18px); letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); margin: 0 0 18px; }
.vcard__head { font-family: var(--fd); font-weight: 600; font-size: 16px; line-height: 1.35; color: #fff; margin: 0 0 14px; }

/* Pakete closing */
.pricing__close { max-width: 760px; margin: clamp(34px,5vw,52px) auto 0; text-align: center; font-size: clamp(15px,1.8vw,17px); line-height: 1.7; color: var(--ink-2); }

/* Teste uns: reason lines */
.probe__why { max-width: 640px; margin: clamp(30px,4vw,42px) auto 0; text-align: left; display: grid; gap: 14px; }
.probe__why p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.93); margin: 0; }
.probe__why strong { color: #fff; font-weight: 600; }

/* Schriftliche-Analyse section (accent-tint) + lead form */
.chapter--tint { background: var(--accent-tint); color: var(--ink); }
.wanalyse .sec-sub { color: var(--ink-2); }
.wform { position: relative; z-index: 1; margin: 0; display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px,3.4vw,42px); box-shadow: 0 34px 80px -38px rgba(53,81,104,.45), 0 2px 10px -5px rgba(0,0,0,.06); overflow: hidden; }
.wform::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); z-index: 1; }

/* Analyse — two-column lead-magnet layout */
.wanalyse__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px,5vw,76px); align-items: center; }
.wanalyse__intro { text-align: left; }
.wanalyse__intro .sec-kicker { margin-bottom: 20px; }
.wanalyse__title { font-family: var(--fd); font-weight: 700; font-size: clamp(30px,4.1vw,50px); line-height: 1.05; letter-spacing: -.03em; color: var(--ink); margin: 0 0 20px; text-wrap: balance; }
.wanalyse__lead { font-size: clamp(16px,1.9vw,18.5px); line-height: 1.6; color: var(--ink-2); max-width: 520px; margin: 0; }
.wanalyse__checks { list-style: none; display: grid; gap: 14px; margin: 28px 0 30px; }
.wanalyse__checks li { position: relative; padding-left: 38px; font-size: 15.5px; line-height: 1.5; color: var(--ink); font-weight: 500; }
.wanalyse__checks li::before { content: ""; position: absolute; left: 0; top: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d21f58' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }
.wanalyse__trust { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-3); margin: 0; }
.wanalyse__pulse { flex-shrink: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(210,31,88,.5); animation: aPulse 2.4s var(--ease) infinite; }
@keyframes aPulse { 0% { box-shadow: 0 0 0 0 rgba(210,31,88,.45); } 70% { box-shadow: 0 0 0 10px rgba(210,31,88,0); } 100% { box-shadow: 0 0 0 0 rgba(210,31,88,0); } }
.reduce-motion .wanalyse__pulse { animation: none; }

.wanalyse__formwrap { position: relative; }
.doc-preview { position: absolute; top: -30px; right: -20px; width: 244px; transform: rotate(4.5deg); z-index: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 34px 60px -30px rgba(53,81,104,.42); overflow: hidden; pointer-events: none; }
.doc-preview__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.doc-preview__bar span { width: 8px; height: 8px; border-radius: 50%; background: #d9dde1; }
.doc-preview__bar em { margin-left: 8px; font-style: normal; font-size: 10px; color: var(--ink-3); letter-spacing: .02em; }
.doc-preview__in { padding: 18px 16px; display: flex; flex-direction: column; gap: 9px; }
.dl { height: 8px; border-radius: 4px; background: #edeff2; width: 100%; }
.dl--h { height: 11px; width: 52%; background: #cfd4d9; }
.dl--h2 { height: 10px; width: 44%; background: #cfd4d9; margin-top: 8px; }
.dl--w85 { width: 85%; } .dl--w70 { width: 70%; } .dl--w60 { width: 60%; }
.dl--mark { width: 74%; background: var(--accent-tint); box-shadow: inset 3px 0 0 var(--accent); }
@media (max-width: 900px) {
  .wanalyse__grid { grid-template-columns: 1fr; gap: 40px; }
  .doc-preview { display: none; }
  .wform { max-width: 560px; margin: 0 auto; }
}
.wform__field { display: grid; gap: 7px; }
.wform__field label { font-size: 14px; font-weight: 500; color: var(--ink); }
.wform__req { color: var(--accent); }
.wform__field input { width: 100%; padding: 13px 16px; font: inherit; font-size: 15px; color: var(--ink); background: var(--paper-2); border: 1px solid #e2e4e7; border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s; }
.wform__field input::placeholder { color: #b3b8bd; }
.wform__field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.wform__foot { display: grid; justify-items: center; gap: 12px; margin-top: 4px; }
.wform__note { margin: 0; font-size: 12.5px; color: var(--ink-3); text-align: center; line-height: 1.5; }

/* Check-list (frequenz-probe hero) */
.checklist { list-style: none; display: grid; gap: 13px; max-width: 640px; margin: 30px auto 0; text-align: left; }
.checklist li { position: relative; padding-left: 40px; font-size: clamp(15px,1.9vw,17px); line-height: 1.5; color: #fff; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 25px; height: 25px; border-radius: 50%; background: var(--accent-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d21f58' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat; }

.field__hint { display:block; font-family: var(--fb); font-weight:400; font-size: 12.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.5; }
.deliver__card p strong { color: var(--ink); }

/* Hero secondary lead (frequenz-analyse) */
.hero__lead--tight { margin-top: 18px; font-size: clamp(15px,1.9vw,17px); color: rgba(255,255,255,.93); }

/* "Was danach passiert" numbered flow */
.afterflow__list { list-style: none; display: grid; gap: 16px; margin-top: 8px; }
.afterflow__list li { display: flex; gap: 16px; align-items: flex-start; }
.afterflow__n { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-family: var(--fd); font-weight: 700; display: grid; place-items: center; font-size: 15px; }
.afterflow__list p { margin: 4px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.afterflow__note { max-width: 720px; margin: 28px 0 0; padding: 18px 20px; background: var(--accent-tint); border: 1px solid rgba(210,31,88,.14); border-radius: var(--radius-sm); font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* Analyse-Danke page */
.danke__steps { list-style: none; max-width: 560px; margin: 36px auto 0; display: grid; gap: 16px; text-align: left; }
.danke__steps li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); }
.danke__tag { flex-shrink: 0; font-family: var(--fd); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); background: rgba(232,70,122,.14); padding: 6px 11px; border-radius: 100px; white-space: nowrap; }
.danke__steps p { margin: 3px 0 0; color: #fff; font-size: 14.5px; line-height: 1.55; }
.danke__offer { max-width: 600px; margin: 42px auto 0; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.14); }
.danke__offer-h { font-family: var(--fd); font-weight: 600; font-size: clamp(21px,3vw,29px); color: #fff; margin-bottom: 14px; }
.danke__offer p { color: #fff; font-size: 15.5px; line-height: 1.62; max-width: 560px; margin-inline: auto; }

/* Vorher/Nachher — sharpened, high-end (Vorher = Probleme ✕, Nachher = angehoben + Glow) */
.ba { align-items: center; }
.ba__col { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.ba__col--before li { color: var(--ink-2); }
.ba__col--before li::before { content: "✕"; left: 3px; top: 0; font-size: 12.5px; font-weight: 700; color: rgba(210,31,88,.62); }
.ba__col--after { position: relative; overflow: hidden; background: var(--dark-bg); transform: translateY(-10px); box-shadow: 0 42px 84px -34px rgba(53,81,104,.8); }
.ba__col--after::after { content: ""; position: absolute; z-index: 0; top: -12%; right: -12%; width: 62%; height: 78%; background: radial-gradient(closest-side, rgba(232,70,122,.24), transparent 72%); pointer-events: none; }
.ba__col--after > * { position: relative; z-index: 1; }
.ba__col--after .ba__h { color: #fff; display: inline-flex; align-items: center; gap: 9px; }
.ba__col--after .ba__h::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 12px rgba(232,70,122,.85); }
.ba__arrow span { width: 52px; height: 52px; background: linear-gradient(145deg, var(--accent-2), var(--accent)); box-shadow: 0 14px 28px -8px rgba(210,31,88,.6); }
.ba__arrow span::after { color: #fff; font-size: 22px; }
@media (max-width: 760px) { .ba__col--after { transform: none; } }

/* =================================================================
   VERLUST-RECHNER — button on the loss card + interactive modal
   ================================================================= */
.loss-calc-btn {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 100px; cursor: pointer;
  font-family: var(--fd); font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  color: #fff; background: rgba(232,70,122,.16); border: 1px solid rgba(232,70,122,.5);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.loss-calc-btn em { font-style: normal; transition: transform .35s var(--ease); }
.loss-calc-btn:hover { background: rgba(232,70,122,.3); border-color: var(--accent-2); transform: translateY(-2px); }
.loss-calc-btn:hover em { transform: translateX(4px); }

.lmodal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.lmodal.is-open { opacity: 1; visibility: visible; }
.lmodal__overlay { position: absolute; inset: 0; background: rgba(18,28,38,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.lmodal__card { position: relative; z-index: 1; width: min(680px, 100%); max-height: 92vh; overflow-y: auto; background: #fff; border-radius: var(--radius); padding: clamp(26px,3.4vw,44px); box-shadow: 0 50px 120px -40px rgba(0,0,0,.6); transform: translateY(18px) scale(.98); transition: transform .45s var(--ease); }
.lmodal.is-open .lmodal__card { transform: none; }
.lmodal .modal__x { position: absolute; top: 16px; right: 16px; }
.lmodal__head { text-align: center; margin-bottom: 26px; }
.lmodal__head .sec-kicker { justify-content: center; margin-bottom: 14px; }
.lmodal__title { font-family: var(--fd); font-weight: 700; font-size: clamp(22px,3vw,32px); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); text-wrap: balance; }
.lmodal__sub { margin-top: 10px; font-size: 15px; color: var(--ink-2); }
.lmodal__sub strong { color: var(--accent); font-weight: 600; }

.lmodal__inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.lfield { display: grid; gap: 7px; }
.lfield__lab { font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.lfield__lab em { font-style: normal; color: var(--ink-3); }
.lfield input { width: 100%; padding: 13px 16px; font-family: var(--fd); font-weight: 600; font-size: 18px; color: var(--ink); background: var(--paper-2); border: 1px solid #e2e4e7; border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s; }
.lfield input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); background: #fff; }

.lscn { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.lscn__card { border-radius: 16px; padding: 20px 22px; }
.lscn__card--cur { background: var(--paper-2); border: 1px solid var(--line); }
.lscn__card--opt { background: var(--dark-bg); color: #fff; box-shadow: var(--sh-2); }
.lscn__tag { font-family: var(--fd); font-weight: 600; font-size: 13px; margin-bottom: 14px; }
.lscn__card--cur .lscn__tag { color: var(--ink-3); }
.lscn__card--opt .lscn__tag { color: var(--accent-2); }
.lscn__rows { list-style: none; display: grid; gap: 9px; }
.lscn__rows li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13.5px; }
.lscn__card--cur li span { color: var(--ink-3); }
.lscn__card--cur li b { color: var(--ink); font-family: var(--fd); }
.lscn__card--opt li span { color: rgba(255,255,255,.85); }
.lscn__card--opt li b { color: #fff; font-family: var(--fd); }
.lscn__key { margin-top: 4px; padding-top: 11px; border-top: 1px solid; }
.lscn__card--cur .lscn__key { border-color: var(--line); }
.lscn__card--opt .lscn__key { border-color: rgba(255,255,255,.16); }
.lscn__key span { font-weight: 600; }
.lscn__key b { font-size: 18px; }
.lscn__card--opt .lscn__key b { color: var(--accent-2); }

.lresult { text-align: center; padding: 22px; border-radius: 16px; background: var(--accent-tint); margin-bottom: 22px; }
.lresult__label { font-family: var(--fd); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.lresult__num { font-family: var(--fd); font-weight: 700; font-size: clamp(38px,6.4vw,60px); line-height: 1.03; letter-spacing: -.03em; color: var(--accent); margin: 6px 0 4px; display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap; }
.lresult__approx { font-size: .3em; font-weight: 600; color: var(--ink-3); }
.lresult__cur { font-size: .32em; font-weight: 600; color: var(--ink-2); }
.lresult__note { font-size: 14px; color: var(--ink-2); }

.lmodal__foot { display: grid; gap: 14px; justify-items: center; }
.lmodal__foot .btn { width: 100%; justify-content: center; }
.lmodal__cta { background: none; border: 0; cursor: pointer; font-family: var(--fd); font-weight: 600; font-size: 14.5px; color: var(--slate); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(53,81,104,.3); transition: color .3s; }
.lmodal__cta:hover { color: var(--accent); }
.lmodal__src { margin: 18px 0 0; text-align: center; font-size: 11.5px; color: var(--ink-3); }
@media (max-width: 560px) { .lmodal__inputs, .lscn { grid-template-columns: 1fr; } }
.reduce-motion .lmodal, .reduce-motion .lmodal__card { transition: opacity .2s; }

/* =================================================================
   BAU-AUFTRAG v3 additions
   ================================================================= */
.mag { color: var(--accent); }

/* Verlust-Angabe — 3-Zeilen-Form (Karin) */
.problem__loss-line { position: relative; margin: 12px 0; font-family: var(--fd); font-weight: 500; font-size: clamp(20px,2.9vw,32px); line-height: 1.28; letter-spacing: -.02em; color: #fff; }
.problem__loss-big { color: var(--accent-2); font-weight: 700; font-size: 1.5em; letter-spacing: -.03em; text-shadow: 0 0 40px rgba(232,70,122,.45); }

/* Testimonial in „Teste uns" (dark) */
.probe__voice { max-width: 640px; margin: clamp(30px,4vw,46px) auto 0; text-align: center; }
.probe__voice blockquote { font-size: clamp(15px,1.9vw,17px); line-height: 1.6; color: #fff; font-style: normal; }
.probe__voice blockquote::before { content: "\201C"; color: var(--accent-2); font-family: var(--fd); font-size: 34px; line-height: 0; vertical-align: -10px; margin-right: 3px; }
.probe__voice figcaption { margin-top: 14px; font-family: var(--fd); font-weight: 600; font-size: 14px; color: var(--accent-2); }

/* Testimonial unter Guide (light) */
.team__voice { max-width: 680px; margin: clamp(30px,4vw,46px) auto 0; text-align: center; padding: clamp(24px,3vw,32px) clamp(26px,3.4vw,40px); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.team__voice blockquote { font-size: 15.5px; line-height: 1.64; color: var(--ink-2); }
.team__voice figcaption { margin-top: 12px; font-family: var(--fd); font-weight: 600; font-size: 14px; color: var(--accent); }

/* Kapazitätszeile unter Paketen */
.pricing__capacity { max-width: 740px; margin: clamp(30px,4vw,44px) auto 0; text-align: center; font-family: var(--fd); font-weight: 500; font-size: clamp(15px,2vw,19px); line-height: 1.5; letter-spacing: -.01em; color: var(--ink); }

/* einzelne Stimme im Stimmen-Grid */
.voices__grid--single { max-width: 620px; margin-inline: auto; grid-template-columns: 1fr; }

/* v3: probe checklist heading + analyse open-list + Sabina strip + card "Du bekommst" */
.checklist__lead { font-family: var(--fd); font-weight: 600; font-size: 15px; color: rgba(255,255,255,.93); margin: 26px 0 6px; }
.checklist--open li { padding-left: 0; color: #fff; }
.checklist--open li::before { display: none; }
.asocial { padding-block: clamp(34px,5vw,56px); }
.asocial__quote { max-width: 840px; margin: 0 auto; text-align: center; }
.asocial__quote blockquote { font-family: var(--fd); font-weight: 500; font-size: clamp(17px,2.2vw,23px); line-height: 1.4; letter-spacing: -.015em; color: var(--ink); font-style: normal; }
.asocial__quote blockquote::before { content: "\201C"; color: var(--accent); font-family: var(--fd); vertical-align: -.1em; }
.asocial__quote figcaption { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--accent); font-style: normal; }
.deliver__get { margin-top: 12px; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.deliver__get em { font-style: normal; font-weight: 600; color: var(--accent); }

/* ============================================================= */
/* DANKE / VERKAUFSSEITE  (frequenz-analyse-danke)               */
/* ============================================================= */
.dk-logo { display: flex; justify-content: center; padding: 18px var(--gutter); background: var(--paper); }
.dk-logo .brand__logo { height: 34px; }

.dk-center { text-align: center; max-width: 860px; margin-inline: auto; }
.dk-kicker { justify-content: center; }

.dk-check { width: 74px; height: 74px; border-radius: 50%; background: rgba(232,70,122,.16); display: grid; place-items: center; margin: 0 auto 26px; font-size: 33px; color: var(--accent-2); box-shadow: 0 0 44px rgba(232,70,122,.35); }
.dk-hint { margin: 20px auto 0; max-width: 520px; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.82); }
.dk-hint strong { color: #fff; font-weight: 600; }

/* Prose blocks (Der Schwenk, ehrlicher Ausgang) */
.dk-prose { max-width: 660px; margin-inline: auto; }
.dk-prose p { color: var(--ink-2); font-size: clamp(16px,2vw,18px); line-height: 1.66; margin: 0 0 18px; }
.dk-prose p:last-child { margin-bottom: 0; }
.dk-prose--dark p { color: #fff; }
.dk-punch { font-family: var(--fd); font-weight: 700; font-size: clamp(20px,2.7vw,27px); line-height: 1.3; letter-spacing: -.02em; color: var(--accent); margin-top: 6px; }

/* Checklist on a light background */
.checklist--light { margin-top: 4px; }
.checklist--light li { color: var(--ink-2); }

/* Wertanker pill */
.dk-value { display: inline-flex; align-items: baseline; gap: 12px; margin: 16px auto 0; padding: 13px 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(255,255,255,.05); font-family: var(--fd); }
.dk-value span { font-weight: 700; font-size: clamp(16px,2vw,19px); color: #fff; }
.dk-value em { font-style: normal; color: rgba(255,255,255,.72); }
.dk-value .dk-value__free { color: var(--accent-2); }

/* Light testimonial */
.dk-quote { max-width: 760px; margin-inline: auto; text-align: center; }
.dk-quote blockquote { font-family: var(--fd); font-weight: 500; font-size: clamp(19px,2.7vw,27px); line-height: 1.44; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.dk-quote blockquote::before { content: "\201C"; color: var(--accent); font-family: var(--fd); font-size: 46px; line-height: 0; vertical-align: -14px; margin-right: 4px; }
.dk-quote figcaption { margin-top: 22px; font-family: var(--fd); font-weight: 600; font-size: 15px; color: var(--accent); }

/* CTA block */
.dk-cta { margin-top: 4px; }
.dk-cta .btn { margin: 0 auto; }
.dk-urgency { max-width: 520px; margin: 18px auto 0; font-size: 14.5px; line-height: 1.55; color: #fff; }
.dk-cap { max-width: 540px; margin: 12px auto 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.82); }

/* ============================================================= */
/* STARTSEITE / LP — FEINTUNING (2026-08-11)                     */
/* ============================================================= */

/* Hero — 3 Zielzustände als klare Karten (statt Listentrenner) */
.hero__value { padding: clamp(15px,1.9vw,19px) clamp(16px,2vw,20px); border-top: 0; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 15px; gap: 7px; transition: border-color .3s var(--ease), background .3s var(--ease); }
.hero__value:hover { border-color: rgba(232,70,122,.42); background: rgba(255,255,255,.08); }
.hero__value-k { font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; }
.hero__value-t { color: rgba(255,255,255,.93); }

/* Hero mobile: CTA über die Boxen */
@media (max-width: 860px) {
  .hero__inner { display: flex; flex-direction: column; }
  .hero__cta { order: 1; margin-top: 34px; }
  .hero__values { order: 2; margin-top: 26px; gap: 12px; }
}

/* Verlustzahl: gleiche Größe wie die Zeile, fett + Akzent-Rot */
.problem__loss-big { font-size: 1em; font-weight: 700; color: var(--accent); letter-spacing: -.01em; text-shadow: none; }

/* Desktop: "Kennst du das?" 20px näher an die vorherige Sektion */
@media (min-width: 861px) { .problem { padding-top: calc(clamp(80px,12vw,168px) - 20px); } }

/* Team: zwei beschriftete Zitate nebeneinander */
.team__voices { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.2vw,24px); max-width: 940px; margin: clamp(30px,4vw,46px) auto 0; }
.team__voices .team__voice { margin: 0; max-width: none; height: 100%; }
.team__voice-label { font-family: var(--fd); font-weight: 700; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); margin: 0 0 12px; }
@media (max-width: 720px) { .team__voices { grid-template-columns: 1fr; } }

/* Stimmen: drei gleich gestylte Referenzkarten, gestapelt */
.voices__list { display: flex; flex-direction: column; gap: clamp(18px,2.6vw,26px); max-width: 860px; margin: 0 auto; }
.voices__list .vcard--marthe { max-width: none; margin: 0; }
.voices__list .vcard--marthe .voices__big { font-size: 1.15em; }

/* Pakete: Titel-Zeilenabstand + gleiche Höhe (kein Lift beim Hauptangebot) */
.plan__name { line-height: 1.12; }
.plan--featured { transform: none; }
.plan--featured:hover { transform: translateY(-5px); }
.plan .btn--block { margin-bottom: 8px; }

/* Garantie-Sektion */
.guarantee__card { max-width: 820px; margin-inline: auto; background: #fff; border: 1px solid #f2d9e2; border-radius: var(--radius); box-shadow: 0 30px 74px -42px rgba(210,31,88,.3); padding: clamp(30px,5vw,58px); }
.guarantee__card .sec-head { margin-bottom: clamp(26px,3.2vw,36px); }
.guarantee__card .sec-title { font-size: clamp(21px,2.9vw,29px); }
.guarantee__steps { list-style: none; display: flex; flex-direction: column; gap: 15px; max-width: 560px; margin: 0 auto; text-align: left; }
.guarantee__steps li { display: flex; gap: 15px; align-items: flex-start; }
.guarantee__n { flex-shrink: 0; width: 31px; height: 31px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-family: var(--fd); font-weight: 700; font-size: 14px; display: grid; place-items: center; }
.guarantee__steps p { margin: 3px 0 0; font-size: 15.5px; line-height: 1.5; color: var(--ink-2); }
.guarantee__punch { margin: clamp(26px,3.2vw,34px) 0 0; text-align: center; font-family: var(--fd); font-weight: 700; font-size: clamp(18px,2.3vw,23px); letter-spacing: -.02em; color: var(--accent); }
.guarantee__support { margin: 12px auto 0; max-width: 580px; text-align: center; font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }

/* Vorher/Nachher: gleich hohe Kästen */
.ba { align-items: stretch; }

/* Himbeer-Trennstrich zwischen zwei hellen Sektionen */
.compare + .team::before, .faq + .blog::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; z-index: 2; background: linear-gradient(90deg, transparent, rgba(210,31,88,.6), transparent); }

/* LP: Paket-Eyebrow + neuer Titel statt Name/Tag */
.plan__eyebrow { display: block; font-family: var(--fd); font-weight: 700; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.plan__head--eb { min-height: 104px; }
@media (max-width: 860px) { .plan__head--eb { min-height: 0; } }

/* =================================================================
   MOBILE-TYPOGRAFIE — ein ruhiges, einheitliches Schriftbild.
   Nur 5 Stufen: Headline · Eyebrow · Subheadline · Paragraf · Kästchen.
   (Greift nur ≤860px; Desktop bleibt unverändert.)
   ================================================================= */
@media (max-width: 860px) {

  /* 1 · EYEBROW / KICKER — eine Größe, überall gleich */
  .sec-kicker, .hero__eyebrow, .plan__eyebrow, .danke__tag,
  .crow__kind, .deliver__num, .diag2__n, .team__voice-label,
  .post__cat, .lscn__tag, .vcard figcaption span {
    font-size: 11.5px; letter-spacing: .085em;
  }
  .hero__eyebrow--intro { font-size: 14.5px; letter-spacing: 0; text-transform: none; }

  /* 2 · HEADLINES — eine Skala für alle Sektionstitel */
  .sec-title, .probe__title, .wanalyse__title, .resonance__title,
  .lmodal__title, .modal__title, .subpage__title {
    font-size: clamp(25px, 6.6vw, 31px); line-height: 1.16; letter-spacing: -.022em;
  }
  .hero__title { font-size: clamp(38px, 11vw, 52px); line-height: 1.06; }
  .hero__title--probe, .hero__title--landing { font-size: clamp(28px, 7.6vw, 37px); line-height: 1.14; }

  /* 3 · SUBHEADLINE / LEAD — eine Größe */
  .sec-sub, .hero__lead, .probe__lead, .problem__intro, .team__intro,
  .wanalyse__lead, .deliver__close, .pricing__close, .resonance__pre,
  .resonance__out, .diagnose__lead, .diag2__lead, .checklist__lead,
  .guarantee__punch, .dk-punch {
    font-size: 16px; line-height: 1.6;
  }
  .guarantee__punch, .dk-punch { font-size: 17.5px; line-height: 1.4; }

  /* 4 · PARAGRAF — der Fließtext-Standard */
  .prose p, .prose li, .person__body p, .step__body p, .acc__body p,
  .guarantee__steps p, .dk-prose p, .wanalyse__checks li, .checklist li,
  .problem__list li, .ba__col li, .plan__list li, .plan__for,
  .diag2__list li, .faq__aside p, .post__desc, .team__voice blockquote,
  .vcard blockquote, .dk-quote blockquote, .asocial__quote blockquote,
  .probe__voice blockquote, .voices__feature-q {
    font-size: 15.5px; line-height: 1.62;
  }

  /* 5 · KÄSTCHEN / KARTEN — Titel + Text */
  .deliver__card h3, .step__title, .plan__name, .ba__h, .person__name,
  .acc__item summary, .post__title, .hero__value-k, .crow__role {
    font-size: 17.5px; line-height: 1.25; letter-spacing: -.015em;
  }
  .deliver__card p, .hero__value-t, .crow__txt, .deliver__get,
  .lscn__rows li, .field__hint {
    font-size: 15px; line-height: 1.55;
  }

  /* Kleingedrucktes — genau eine Stufe */
  .sec-cta__note, .hero__cta-note, .problem__loss-src, .pricing__capacity,
  .wform__note, .pform__foot, .form__foot, .dk-hint, .dk-cap, .dk-urgency,
  .guarantee__support, .post__meta, .lmodal__src, .plan__support,
  .wanalyse__trust, .probe__note, .process__more {
    font-size: 13.5px; line-height: 1.55;
  }

  /* Ruhe: Kursiv-Auszeichnungen im Fließtext nicht zusätzlich vergrößern */
  .sec-title em, .resonance__title em { font-size: inherit; }
}

/* Opt-In-Header: gleiche Optik, aber kein Ausgang (kein Link, kein Hover) */
.subnav--lock .nav__brand { cursor: default; }
.subnav--lock .subnav__wrap { justify-content: center; }
.subnav--lock .brand__logo { height: 36px; }

/* ============================================================= */
/* DANKE-SEITE — kompakter Fluss, klare Hierarchie               */
/* ============================================================= */
/* Engere Sektionsabstände: die Seite soll ziehen, nicht auseinanderfallen */
.dk-sec { padding-block: clamp(52px, 6.4vw, 88px); }
.dk-hero { padding-block: clamp(58px, 7vw, 104px); }
.dk-sec .sec-head { margin-bottom: clamp(22px, 2.6vw, 30px); }

.dk-congrats { margin: 0 auto 14px; font-family: var(--fd); font-weight: 600; font-size: clamp(16px,2vw,19px); color: var(--accent-2); }

/* Angebots-Karte (erster CTA) */
.dk-offer { max-width: 720px; margin-inline: auto; background: #fff; border: 1px solid #f2d9e2; border-radius: var(--radius); box-shadow: 0 30px 74px -44px rgba(210,31,88,.32); padding: clamp(26px,4vw,48px); text-align: center; }
.dk-offer__lead { margin: 0 0 14px; font-family: var(--fd); font-weight: 600; font-size: 16px; color: var(--ink); }

/* Pfeil-Listen (→) */
.dk-arrows { list-style: none; display: flex; flex-direction: column; gap: 11px; max-width: 520px; margin: 0 auto; text-align: left; }
.dk-arrows li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.dk-arrows li::before { content: "→"; position: absolute; left: 0; top: -1px; color: var(--accent); font-weight: 700; }
.dk-arrows--dark { max-width: 560px; }
.dk-arrows--dark li { color: #fff; }
.dk-arrows--dark li::before { color: var(--accent-2); }

.dk-offer .dk-cta { margin-top: clamp(24px,3vw,32px); }
.dk-value--light { border-color: #f2d9e2; background: var(--accent-tint); }
.dk-value--light span { color: var(--slate); }
.dk-value--light .dk-value__free { color: var(--accent); }
.dk-urgency--light { color: var(--ink-2); }

/* "Was passiert als Nächstes" */
.dk-next { margin-top: clamp(26px,3.2vw,34px); padding-top: clamp(22px,2.6vw,28px); border-top: 1px solid var(--line); }
.dk-next__h { margin: 0 0 14px; font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.dk-next__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; max-width: 560px; margin: 0 auto; text-align: left; }
.dk-next__list li { display: flex; gap: 11px; align-items: flex-start; }
.dk-next__n { flex-shrink: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); font-family: var(--fd); font-weight: 700; font-size: 12.5px; display: grid; place-items: center; }
.dk-next__list p { margin: 2px 0 0; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); }
.dk-next__punch { margin: 18px 0 0; font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: var(--accent); }
@media (max-width: 620px) { .dk-next__list { grid-template-columns: 1fr; } }

/* "In 45 Minuten bekommst du" */
.dk-gain { max-width: 620px; margin: clamp(22px,2.8vw,30px) auto 0; padding: clamp(20px,2.6vw,28px) clamp(22px,3vw,32px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.dk-gain__h { margin: 0 0 14px; font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: var(--ink); text-align: center; }
.dk-gain .checklist { margin-top: 0; }
.dk-sec .dk-punch { text-align: center; margin-top: clamp(22px,2.6vw,28px); }

/* Danke-Timeline: auf Mobil Label über den Text, sonst quetscht das lange Label */
@media (max-width: 620px) {
  .danke__steps li { flex-direction: column; gap: 9px; }
  .danke__tag { white-space: normal; align-self: flex-start; }
  .danke__steps p { margin-top: 0; }
}

/* Wert-Pille auf schmalen Screens sauber zweizeilig statt gequetscht */
@media (max-width: 620px) {
  .dk-value { flex-direction: column; gap: 3px; padding: 11px 22px; text-align: center; }
  .dk-value em { display: none; }
}

/* =================================================================
   WELLEN-ÜBERGÄNGE: Kappe automatisch in der Farbe der Nachbarsektion.
   Verhindert weisse Streifen zwischen dunkler und grauer Sektion.
   ================================================================= */
.chapter--dark:has(+ .chapter--paper)  { --cap-b: var(--paper-2); }
.chapter--dark:has(+ .chapter--light)  { --cap-b: var(--paper); }
.chapter--paper + .chapter--dark       { --cap-t: var(--paper-2); }
.chapter--light + .chapter--dark       { --cap-t: var(--paper); }
/* Footer-Welle in der Farbe der letzten Sektion darüber */
main:has(> .chapter--paper:last-child) + .footer.chapter--dark::before { background: var(--paper-2); }

/* ============================================================= */
/* FREQUENZ-ANALYSE — Hero zweispaltig + Referenzen              */
/* ============================================================= */
.fahero { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px,4.4vw,64px); align-items: center; text-align: left; }
.fahero .hero__eyebrow, .fahero .hero__lead { margin-inline: 0; }
.fahero .hero__title { text-align: left; }
.fahero .hero__cta { align-items: flex-start; }
.fahero__close { margin-top: 18px; font-size: clamp(15px,1.9vw,17px); line-height: 1.55; color: rgba(255,255,255,.93); }

/* Die drei Punkte: klar lesbar, nummeriert, mit Trennlinien */
.fapoints { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 26px 0 0; }
.fapoints li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: clamp(15.5px,1.95vw,17.5px); line-height: 1.5; color: #fff; }
.fapoints li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.fapoints strong { color: #fff; font-weight: 700; }
.fapoints__n { flex-shrink: 0; font-family: var(--fd); font-weight: 700; font-size: 12.5px; color: var(--accent-2); padding-top: 3px; letter-spacing: .04em; }

/* Dokument-Mock-up im Hero */
.fahero__mock { position: relative; }
.doc-preview--hero { transform: rotate(2.2deg); box-shadow: 0 50px 100px -40px rgba(0,0,0,.6); }

@media (max-width: 900px) {
  .fahero { grid-template-columns: 1fr; text-align: center; }
  .fahero .hero__title { text-align: center; }
  .fahero .hero__eyebrow, .fahero .hero__lead, .fahero__close { margin-inline: auto; }
  .fahero .hero__cta { align-items: center; }
  .fapoints { text-align: left; max-width: 460px; margin-inline: auto; }
  .fahero__mock { display: none; }   /* auf Mobil zählt der Text, nicht die Deko */
}

/* Referenzen hell — Karl bekommt eine eigene, starke Karte */
.voices--light .sec-title { color: var(--ink); }
.faref { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,34px); box-shadow: var(--sh-1); margin: 0; display: flex; flex-direction: column; }
.faref blockquote { font-size: 15.5px; line-height: 1.62; color: var(--ink-2); }
.faref blockquote::before { content: "\201C"; color: var(--accent); font-family: var(--fd); font-size: 34px; line-height: 0; vertical-align: -10px; margin-right: 3px; }
.faref figcaption { margin-top: auto; padding-top: 18px; font-family: var(--fd); font-weight: 700; font-size: 15px; color: var(--ink); display: flex; flex-direction: column; }
.faref figcaption span { font-family: var(--fb); font-weight: 400; font-size: 13px; color: var(--accent); margin-top: 2px; }
.faref--hero { max-width: 760px; margin: 0 auto clamp(18px,2.4vw,24px); text-align: center; align-items: center; border-color: rgba(210,31,88,.3); box-shadow: 0 30px 70px -40px rgba(210,31,88,.4); }
.faref--hero blockquote { font-size: clamp(16px,2vw,18.5px); color: var(--ink); }
.faref__stat { margin: 0 0 10px; font-family: var(--fd); font-weight: 800; font-size: clamp(34px,5.4vw,52px); letter-spacing: -.03em; line-height: 1; color: var(--accent); }
.faref--hero figcaption { align-items: center; }
.faref__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.2vw,24px); max-width: 960px; margin-inline: auto; }
@media (max-width: 800px) { .faref__grid { grid-template-columns: 1fr; } }
.doc-preview--hero { position: relative; top: auto; right: auto; width: min(100%, 350px); margin-inline: auto; }
/* Referenzen hell: .voices erzwingt sonst den dunklen Hintergrund */
.voices--light { background: var(--paper-2); }
.voices--light .sec-kicker { color: var(--accent); }
.voices--light .sec-kicker i { background: var(--accent); }

/* Frequenz-Probe Hero: Mock-up + die vier Fragen rechts */
.fphero__mock { display: flex; flex-direction: column; gap: 20px; }
.fpmock .diag2__mock { box-shadow: 0 44px 90px -40px rgba(0,0,0,.6); }
.fpmock__lead { margin: 0 0 12px; font-family: var(--fd); font-weight: 700; font-size: 15px; letter-spacing: .02em; color: #fff; }
.fpmock__list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; }
.fpmock__list li { display: flex; gap: 11px; align-items: baseline; font-size: 14.5px; line-height: 1.45; color: #fff; text-align: left; }
.fpmock__list li span { flex-shrink: 0; font-family: var(--fd); font-weight: 700; font-size: 11.5px; color: var(--accent-2); letter-spacing: .04em; }
@media (max-width: 900px) {
  .fphero__mock { display: block; }
  .fpmock { display: none; }               /* Grafik auf Mobil weglassen */
  .fpmock__side { max-width: 460px; margin: 26px auto 0; }
  .fpmock__lead { text-align: center; }
}

/* =================================================================
   DESKTOP-TYPOGRAFIE — dieselbe ruhige 5-Stufen-Skala wie auf Mobil.
   Display-Größen (Hero-Titel, Preise, Kennzahlen) bleiben bewusst gross.
   ================================================================= */
@media (min-width: 861px) {

  /* 1 · EYEBROW / KICKER */
  .sec-kicker, .hero__eyebrow, .plan__eyebrow, .danke__tag, .crow__kind,
  .team__voice-label, .post__cat, .lscn__tag, .fpmock__list li span,
  .fapoints__n, .diag2__n, .vcard figcaption span, .faref figcaption span {
    font-size: 12px; letter-spacing: .085em;
  }
  .hero__eyebrow--intro { font-size: 16px; letter-spacing: 0; text-transform: none; }

  /* 2 · SUBHEADLINE / LEAD — eine Größe für alle einleitenden Absätze */
  .sec-sub, .problem__intro, .team__intro, .wanalyse__lead, .deliver__close,
  .pricing__close, .resonance__out, .diagnose__lead, .diag2__lead,
  .checklist__lead, .dk-prose p, .dk-offer__lead, .dk-gain__h, .dk-next__h,
  .fahero__close, .resonance__pre {
    font-size: 18px; line-height: 1.6;
  }

  /* 3 · PARAGRAF — Fließtext überall gleich */
  .prose p, .prose li, .person__body p, .step__body p, .acc__body p,
  .guarantee__steps p, .wanalyse__checks li, .checklist li, .problem__list li,
  .ba__col li, .plan__list li, .plan__for, .diag2__list li, .post__desc,
  .team__voice blockquote, .vcard blockquote, .faref blockquote,
  .dk-quote blockquote, .probe__voice blockquote, .dk-arrows li,
  .dk-next__list p, .fapoints li, .fpmock__list li, .deliver__card p,
  .crow__txt, .deliver__get, .lscn__rows li {
    font-size: 16px; line-height: 1.6;
  }

  /* 4 · KÄSTCHEN-TITEL */
  .deliver__card h3, .step__title, .plan__name, .ba__h, .person__name,
  .acc__item summary, .post__title, .hero__value-k, .crow__role, .vcard__head {
    font-size: 20px; line-height: 1.25; letter-spacing: -.015em;
  }
  .hero__value-t { font-size: 15.5px; line-height: 1.55; }

  /* 5 · KLEINGEDRUCKTES — genau eine Stufe */
  .sec-cta__note, .hero__cta-note, .problem__loss-src, .pricing__capacity,
  .wform__note, .pform__foot, .form__foot, .dk-hint, .dk-cap, .dk-urgency,
  .guarantee__support, .post__meta, .lmodal__src, .plan__support,
  .wanalyse__trust, .probe__note, .process__more, .field__hint {
    font-size: 14px; line-height: 1.55;
  }
}

/* Opt-In-Header: Home-Pille ohne Menü — Logo links, kein Link, kein Ausgang */
.nav--lock .nav__wrap { gap: 0; }
.nav--lock .nav__brand { cursor: default; }
/* Fixe Pille braucht Platz: erste (dunkle) Sektion bekommt Luft nach oben */
.nav--lock + main > .chapter:first-child { padding-top: clamp(120px, 14vw, 180px); }

/* ============================================================= */
/* PDF-RUNDE 2 (2026-08-12)                                      */
/* ============================================================= */

/* Garantie-Siegel — hebt die Garantie sichtbar heraus */
.guarantee__card { position: relative; padding-top: clamp(56px, 7vw, 72px); }
.guarantee__seal { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); width: clamp(86px, 10vw, 104px); height: clamp(86px, 10vw, 104px); color: var(--accent); filter: drop-shadow(0 14px 28px rgba(210,31,88,.35)); display: grid; place-items: center; }
.guarantee__seal svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.guarantee__seal span { position: relative; z-index: 1; margin-top: 34%; font-family: var(--fd); font-weight: 800; font-size: 12.5px; letter-spacing: .04em; color: #fff; }
.guarantee { padding-top: clamp(70px, 9vw, 110px); }

/* Pakete: "Für wen"-Kästchen gleich hoch (Desktop) */
@media (min-width: 861px) { .plan__for { min-height: 170px; } }

/* Mobil: "Bist du noch nicht bereit…" zentriert statt linksbündig */
@media (max-width: 900px) {
  .wanalyse__intro { text-align: center; }
  .wanalyse__intro .sec-kicker { justify-content: center; }
  .wanalyse__checks { max-width: 440px; margin-inline: auto; text-align: left; }
  .wanalyse__trust { justify-content: center; }
}

/* Hero füllt den Bildschirm (Analyse + Probe) */
.hero--full { min-height: 100svh; display: flex; align-items: center; }
.hero--full .hero__inner { width: 100%; }
@supports not (min-height: 100svh) { .hero--full { min-height: 100vh; } }

/* Analyse-Hero: echtes Dokument-Foto als Mock-up */
@media (min-width: 901px) { .fahero { grid-template-columns: 1.02fr .98fr; } }
.faphoto { display: block; width: min(100%, 460px); margin-inline: auto; border-radius: 14px; transform: rotate(2.2deg); box-shadow: 0 60px 120px -40px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.08); }

/* Analyse: die 3 Checks als Schritte (wie "Der Weg"), Du-bekommst auf einer Höhe */
.fasteps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.fasteps li { display: flex; }
.fasteps .step__body { display: flex; flex-direction: column; width: 100%; }
.fasteps .deliver__get { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .fasteps { grid-template-columns: 1fr; } }

/* Danke: auffälliger Scroll-Pfeil auf der Hero-Kante */
.dk-scroll { position: absolute; left: 50%; bottom: -27px; transform: translateX(-50%); z-index: 6; width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: 0 18px 40px -10px rgba(210,31,88,.7); animation: dkBounce 2s var(--ease) infinite; }
.dk-scroll svg { width: 22px; height: 22px; }
.dk-scroll:hover { background: #b81a4d; }
@keyframes dkBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .dk-scroll { animation: none; } }
.dk-hero { overflow: visible; }
.dk-next__punch { font-size: 16px; }

/* ============================================================= */
/* PDF-RUNDE 2b — Feedback vom 12.08.                            */
/* ============================================================= */

/* Team-Zitate: Namen immer auf gleicher Höhe (unten angepinnt) */
.team__voice { display: flex; flex-direction: column; }
.team__voice figcaption { margin-top: auto; padding-top: 12px; }

/* Pakete: Subgrid — Titel, Für-wen, Liste, Preis, Button teilen exakt dieselben Zeilen */
@media (min-width: 861px) {
  .plans { grid-template-rows: auto auto 1fr auto auto; }
  .plan { display: grid; grid-template-rows: subgrid; grid-row: span 5; }
}

/* Analyse: Schritt-Karten per Subgrid — "Du bekommst:" beginnt überall auf einer Linie */
@media (min-width: 861px) {
  .fasteps { grid-template-rows: auto auto 1fr auto; }
  .fasteps li { display: contents; }
  .fasteps .step__body { display: grid; grid-template-rows: subgrid; grid-row: span 4; align-content: start; }
  .fasteps .deliver__get { margin-top: 0; align-self: start; }
}

/* Garantie-Siegel v2 (sauber generierte Rosette, Text im SVG) */
.guarantee__seal { position: absolute; top: 0; left: 50%; transform: translate(-50%, -52%); width: clamp(92px, 11vw, 116px); height: clamp(92px, 11vw, 116px); filter: drop-shadow(0 16px 30px rgba(210,31,88,.38)); z-index: 2; }
.guarantee__seal-txt { font-family: var(--fd); font-weight: 800; font-size: 15px; letter-spacing: .06em; fill: #fff; }

/* ---------- ANALYSE: Hero als Stack (Kopf 2-spaltig, Punkte als Reihe) ---------- */
.fahero--stack { display: block; }
.fahero__top { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.fahero--stack .hero__title--probe { font-size: clamp(34px, 4.6vw, 62px); }
.fapoints--row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 44px); margin-top: clamp(30px, 4.4vw, 54px); padding: clamp(18px, 2.4vw, 26px) 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.fapoints--row li { border: 0; padding: 6px 0; }
.fapoints--row li:last-child { border: 0; }
.fahero--stack .fahero__close { text-align: center; max-width: 640px; margin: clamp(22px, 3vw, 30px) auto 0; }
.fahero--stack .hero__cta { margin-top: clamp(24px, 3vw, 34px); align-items: center; }
@media (max-width: 900px) {
  .fahero__top { display: block; }
  .fapoints--row { grid-template-columns: 1fr; padding: 6px 0; }
  .fapoints--row li { padding: 12px 0; }
  .fapoints--row li + li { border-top: 1px solid rgba(255,255,255,.14); }
}

/* ---------- Formular-Sektionen 2-spaltig (Analyse + Probe) ---------- */
.faform { position: relative; z-index: 5; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.faform__intro .sec-head { text-align: left; margin: 0 0 18px; }
.faform__intro .sec-head .sec-kicker { justify-content: flex-start; }
.faform__intro .sec-sub { margin-inline: 0; }
.faform .pform__card { margin: 0; max-width: none; }
.faform__photo { width: min(72%, 300px); margin-top: clamp(22px, 3vw, 32px); border-radius: 12px; transform: rotate(-2.4deg); box-shadow: 0 40px 90px -36px rgba(0,0,0,.6); }
.fpnext { margin-top: clamp(20px, 2.6vw, 28px); }
.fpnext__h { font-family: var(--fd); font-weight: 700; font-size: 15.5px; color: #fff; margin: 0 0 12px; }
.fpnext ol { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fpnext li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; color: #fff; }
.fpnext__n { flex-shrink: 0; width: 25px; height: 25px; border-radius: 50%; background: rgba(232,70,122,.16); color: var(--accent-2); font-family: var(--fd); font-weight: 700; font-size: 12.5px; display: grid; place-items: center; margin-top: 1px; }
@media (max-width: 900px) {
  .faform { grid-template-columns: 1fr; }
  .faform__intro .sec-head { text-align: center; margin-inline: auto; }
  .faform__intro .sec-head .sec-kicker { justify-content: center; }
  .faform__intro .sec-sub { margin-inline: auto; }
  .faform__photo { display: none; }
  .fpnext { max-width: 440px; margin-inline: auto; }
}

/* ---------- Analyse: "In vier Schritten" als horizontale Leiste ---------- */
@media (min-width: 861px) {
  .afterflow .wrap--narrow { max-width: var(--wrap); }
  .afterflow__list { grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); position: relative; }
  .afterflow__list::before { content: ""; position: absolute; top: 17px; left: 16.66%; right: 16.66%; height: 2px; background: linear-gradient(90deg, rgba(210,31,88,.12), rgba(210,31,88,.38), rgba(210,31,88,.12)); }
  .afterflow__list li { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .afterflow__n { position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--paper); }
  .afterflow__note { margin-inline: auto; text-align: center; max-width: 760px; }
}

/* ---------- Probe: Hero oben ausgerichtet, Checkliste 2×2 ---------- */
@media (min-width: 901px) {
  .fahero--probe { align-items: start; }
  .fahero--probe .fphero__mock { margin-top: 44px; }  /* beginnt auf Headline-Höhe (unter dem Eyebrow) */
  .fahero--probe .checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; max-width: none; }
}

/* ---------- Danke: Pfeil sitzt jetzt in der Folgesektion (kein Hero-Glitch) ---------- */
.dk-scroll { top: -66px; bottom: auto; z-index: 10; }
#weiter { position: relative; }

/* Danke: alles mittig */
.dk-offer .dk-arrows { max-width: none; }
.dk-offer .dk-arrows li { padding-left: 0; display: flex; gap: 10px; justify-content: center; }
.dk-offer .dk-arrows li::before { content: "→"; position: static; }
.dk-prose { text-align: center; }
.dk-gain .checklist { max-width: 560px; }
.dk-gain .checklist li { padding-left: 0; display: flex; gap: 10px; justify-content: center; text-align: left; }
.dk-gain .checklist li::before { content: ""; position: static; flex-shrink: 0; margin-top: 1px; }

/* ---------- Fragebogen: Footer-Welle in Grau (kein weisser Streifen) ---------- */
.footer--grau::before { background: var(--paper-2) !important; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100% !important; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V27 C1140 56 1015 56 720 33 C425 10 300 10 0 33 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center / 100% 100% !important; }

/* ---------- Schwebende Pille auf Inhaltsseiten ---------- */
.nav--float .btn--nav { margin-left: auto; }
.nav--float + main.subpage { padding-top: clamp(88px, 9vw, 116px); }

/* Probe-Hero im Stack-Layout: Lead mittig, 4 Punkte nebeneinander */
.checklist__lead--center { text-align: center; margin: clamp(30px, 4.4vw, 54px) 0 16px; }
.fpchecks { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.6vw, 36px); max-width: none; margin: 0; padding: clamp(18px, 2.4vw, 26px) 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); text-align: left; }
.fpchecks li { font-size: 15px; line-height: 1.55; }
.fahero--stack .fphero__mock { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) {
  .fpchecks { grid-template-columns: 1fr; padding: 6px 0; }
  .fpchecks li { padding-block: 10px; }
  .fpchecks li + li { border-top: 1px solid rgba(255,255,255,.12); }
  .checklist__lead--center { margin-top: 24px; }
}

/* Startseite-Link im schwebenden Balken (Blog + Rechtsseiten) — bleibt auch mobil sichtbar */
.nav__links--stay { display: flex !important; }
@media (max-width: 520px) { .nav__links--stay a { font-size: 14px; } }

/* ============================================================= */
/* FOLD-FIX 12.08. — Hero+CTA im ersten Fold · Danke-Pfeil sichtbar */
/* Kursiv nur noch beim Startseiten-Hero-Wort "schwingt"           */
/* ============================================================= */
.resonate--em { font-style: italic; }
/* leere <i>-Icon-Platzhalter erben sonst den Browser-Default (italic) */
i { font-style: normal; }

/* Analyse + Probe: Hero oben ausrichten + Sektions-Padding kürzen (Basis-.hero
   hat 128/168px -> schob Kopf+CTA nach unten), Inner-Padding auf 0. */
.hero--fold { align-items: flex-start; padding-block: clamp(90px, 10.5vh, 110px) clamp(24px, 4vh, 44px); }
.hero--fold .hero__inner { padding-block: 0; }
.hero--fold .hero__title--probe { font-size: clamp(31px, 3.3vw, 50px); line-height: 1.08; }
.hero--fold .hero__eyebrow { margin-bottom: 6px; }
.hero--fold .hero__lead { margin-top: 12px; font-size: clamp(15px, 1.5vw, 17px); }
.hero--fold .hero__cta { margin-top: clamp(16px, 2.1vw, 24px); }
.hero--fold .faphoto { width: min(100%, 352px); }
.hero--fold .fphero__mock { gap: 10px; }
.hero--fold .fpmock .diag2__mock { max-width: 360px; margin-inline: auto; }
/* Basis-Regel .nav--lock + main > .chapter:first-child erzwingt 180px oben
   (0-3-1) -> mit gleicher Spezifität für den Fold-Hero kürzen. */
.nav--lock + main > .hero--fold:first-child { padding-top: clamp(80px, 9.5vh, 100px); }
/* diag2-Mock im Probe-Fold intern kompakter (spart Höhe, CTA sicher im Fold) */
.hero--fold .diag2__screen { gap: 12px; padding: 16px; }
.hero--fold .diag2__zone { padding: 12px 14px; }
.hero--fold .diag2__zone--hero { padding-block: 15px; }
/* Probe-Fold: nur die Browser-Grafik (mit 1–4 Pins) im ersten Fold; die
   Text-Liste "Vier Fragen" rutscht nicht in den Fold, damit der CTA sichtbar
   bleibt. Auf Mobil (<=900px) ist die Grafik aus und die Liste bleibt sichtbar. */
@media (min-width: 901px) {
  .hero--fold .fpmock__side { display: none; }
}
@media (max-width: 900px) {
  .hero--fold { align-items: center; padding-block: clamp(92px, 20vw, 118px) clamp(40px, 11vw, 68px); }
  .hero--fold .hero__title--probe { font-size: clamp(28px, 7.6vw, 37px); }
  /* Mobil: CTA direkt unter die Headline, Stützinhalte (Liste/Punkte/Checkliste)
     darunter -> Button sicher im ersten Fold, auch auf kleinen Screens (360px). */
  .hero--fold .fahero--stack { display: flex; flex-direction: column; }
  /* Grundregel: alles ohne eigene Ordnungszahl landet UNTEN, nicht oben.
     (Sonst rutscht jedes neu eingefügte Element mit order:0 an den Anfang.) */
  .hero--fold .fahero--stack > * { order: 4; }
  .hero--fold .fahero__top { display: contents; }
  .hero--fold .fahero__copy { order: 1; }
  .hero--fold .hero__cta { order: 2; }
  .hero--fold .fahero__mock, .hero--fold .fphero__mock { order: 3; margin-top: clamp(26px, 6vw, 34px); }
  .hero--fold .fapoints__lead, .hero--fold .fapoints--row, .hero--fold .fahero__close,
  .hero--fold .checklist__lead, .hero--fold .fpchecks { order: 4; }
}

/* Danke: Sektion 1 kompakter, damit der Scroll-Pfeil in den ersten Fold rückt.
   Auch hier erzwingt .nav--lock + main > .chapter:first-child 180px oben -> mit
   gleicher Spezifität (0-3-1) überschreiben. */
.dk-hero { padding-block: clamp(76px, 9vh, 92px) clamp(74px, 9vh, 94px); }
.nav--lock + main > .dk-hero:first-child { padding-top: clamp(76px, 9vh, 92px); }
.dk-hero .dk-check { width: 54px; height: 54px; margin-bottom: 14px; font-size: 24px; }
.dk-hero .probe__title { margin-bottom: 12px; }
.dk-hero .dk-congrats { margin-bottom: 8px; }
.dk-hero .probe__lead { margin-top: 0; }
.dk-hero .dk-hint { margin-top: 14px; }
.dk-hero .danke__steps { margin-top: 20px; gap: 10px; }
.dk-hero .danke__steps li { padding: 12px 16px; }

/* Bestätigungsseite: DOI-Hinweis statt ablenkendem CTA */
.doi-hint { max-width: 520px; margin: clamp(26px,3.4vw,34px) auto 0; padding: 16px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(255,255,255,.05); font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.93); }
.doi-hint strong { color: #fff; font-weight: 600; }
@media (max-width: 560px) { .doi-hint { border-radius: var(--radius); } }

/* ============================================================= */
/* SEELE-VARIANTEN (nur auf index-seele.html aktiv)              */
/* ============================================================= */

/* A · Wasserbild als Schleier hinter hellen Sektionen — Stärke per Klasse auf <html> */
.seele-a { position: relative; overflow: hidden; }
.seele-a::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../assets/bg/bg-reveal.webp") center 35% / cover no-repeat;
  opacity: var(--seele-op, .40); filter: saturate(.8);
}
.seele-a::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* weicher Ein-/Ausblender statt harter Kante */
  background: linear-gradient(180deg,
    #fff 0%,
    rgba(255,255,255,.88) 10%,
    rgba(255,255,255,.52) 22%,
    rgba(255,255,255,var(--seele-veil, .15)) 38%,
    rgba(255,255,255,var(--seele-veil, .15)) 62%,
    rgba(255,255,255,.52) 78%,
    rgba(255,255,255,.88) 90%,
    #fff 100%);
}
.seele-a > .wrap { position: relative; z-index: 2; }
.seele-a--alt::before { background-image: url("../assets/bg/bg-closing.webp"); background-size: cover; background-position: center 60%; transform: scaleX(-1); }

/* Stärkestufen (nur Vorschau) */
.staerke-1 { --seele-op: .22; --seele-veil: .34; }   /* zart   */
.staerke-2 { --seele-op: .40; --seele-veil: .15; }   /* mittel */
.staerke-3 { --seele-op: .62; --seele-veil: .04; }   /* kräftig */

/* C · Wasserbild unter der dunklen Stimmen-Sektion — mit Blau-Schleier für Kontrast */
.seele-c { position: relative; overflow: hidden; }
.seele-c__img { position: absolute; inset: 0; z-index: 0; background: url("../assets/bg/bg-hero.webp") center/cover no-repeat; }
.seele-c__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(53,81,104,var(--seele-c-veil, .88)) 0%, rgba(53,81,104,calc(var(--seele-c-veil, .88) + .04)) 100%);
}
.staerke-1 .seele-c__img::after { --seele-c-veil: .93; }
.staerke-3 .seele-c__img::after { --seele-c-veil: .80; }
.seele-c > .wrap { position: relative; z-index: 5; }
.seele-c .voices__canvas { opacity: .38; }

/* Umschalter-Leiste (nur Vorschauseite) */
.seele-switch { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 200;
  display: flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 100px;
  background: rgba(26,26,26,.88); backdrop-filter: blur(14px); box-shadow: 0 18px 44px -14px rgba(0,0,0,.6); }
.seele-switch b { color:#fff; font-family: var(--fd); font-weight:700; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; padding: 0 8px; }
.seele-switch button { font-family: var(--fd); font-weight:600; font-size:13px; color:#fff; background:rgba(255,255,255,.12); border:0; padding:8px 15px; border-radius:100px; cursor:pointer; }
.seele-switch button:hover { background: rgba(255,255,255,.24); }
.seele-switch button[aria-pressed="true"] { background: var(--accent); }
@media (max-width:560px){ .seele-switch b { display:none } }

/* Für Screenreader sichtbar, visuell versteckt */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ============================================================= */
/* DESKTOP-BREITEN & KURZE VIEWPORTS (Opt-in-Heroes)             */
/* ============================================================= */

/* 1 · Desktop-Hero der Opt-in-Seiten
      - Textspalte breit genug für eine GROSSE Headline ohne Umbruch
      - Fliesstext darin auf lesbare Zeilenlänge begrenzt (sonst wirkt es breit)
      - Grafik schlanker */
@media (min-width: 1200px) {
  .hero--full .hero__inner.fahero { max-width: min(1320px, 92vw); }
  .fahero__top { grid-template-columns: 1.35fr .65fr; gap: clamp(30px, 2.8vw, 46px); }
  .fahero--stack .hero__title--probe { font-size: clamp(34px, 3.3vw, 50px); }
  .fahero__copy .hero__lead { max-width: 46ch; }
}
@media (min-width: 1600px) {
  .hero--full .hero__inner.fahero { max-width: 1400px; }
  .fahero--stack .hero__title--probe { font-size: 52px; }
}

/* 2 · Der entscheidende Fix: Die Wellen-Kappe am Sektionsende ist bis zu 56px hoch
      und liegt ÜBER dem Inhalt (z-index 3). Das untere Padding muss sie plus den
      Scroll-Hinweis freihalten — sonst schneidet der Abschlusstext in die Welle. */
@media (min-width: 901px) {
  .hero--full { padding-top: clamp(112px, 13vh, 150px); padding-bottom: clamp(84px, 9vh, 104px); }
  .fahero__mock .faphoto { max-height: 54vh; max-width: min(100%, 480px); width: auto; margin-inline: auto; }
  .fphero__mock .diag2__mock { max-height: none; max-width: min(100%, 410px); }
  .fpmock { transform-origin: top center; }
  /* Scroll-Hinweis läuft im Textfluss MIT (nicht absolut) — so kann er
     konstruktiv nicht mehr in den Text ragen, egal wie hoch der Inhalt ist. */
  .hero--full { flex-direction: column; justify-content: center; }
  .hero--full .hero__inner { width: 100%; }
  .hero--full .hero__scroll {
    display: flex; position: static; transform: none;
    margin: clamp(22px, 3.2vh, 36px) auto 0; left: auto; bottom: auto;
  }
}

/* 3 · Flache Fenster (1280×800 & Co.): Inhalt straffen, Freiraum unten bleibt. */
@media (min-width: 901px) and (max-height: 900px) {
  .hero--full { min-height: 0; padding-top: clamp(100px, 12vh, 124px); padding-bottom: clamp(78px, 8.5vh, 96px); }
  .fahero--stack .hero__lead { margin-top: 12px; }
  .fahero--stack .hero__cta { margin-top: clamp(14px, 2.2vh, 22px); }
  .fapoints--row { margin-top: clamp(16px, 2.4vh, 26px); padding-block: clamp(10px, 1.6vh, 16px); }
  .fahero--stack .fahero__close { margin-top: clamp(12px, 1.8vh, 18px); }
  .fahero--probe .checklist__lead--center { margin-top: clamp(14px, 2.2vh, 22px); }
  .fahero__mock .faphoto { max-height: 44vh; }
  .fpmock { transform: scale(.82); margin-bottom: -10%; }
}

/* 4 · Sehr flach: Grafik weiter verkleinern, nie beschneiden. */
@media (min-width: 901px) and (max-height: 780px) {
  .fpmock { transform: scale(.72); margin-bottom: -15%; }
  .fahero__mock .faphoto { max-height: 38vh; }
}

/* ============================================================= */
/* LESBARKEIT AUF BLAU (13.08.)                                  */
/* Weiss = Hochweiss · Eyebrow hell statt himbeerrot ·           */
/* Himbeerrot auf Blau nur fett.                                 */
/* ============================================================= */

/* 1 · Eyebrow auf dunklem Grund: hellweiss, etwas grösser, kräftiger.
       Der kleine Strich davor bleibt himbeerrot als Farbakzent. */
.sec-kicker--light { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.sec-kicker--light i { background: var(--accent-2); }
@media (min-width: 861px) { .sec-kicker--light { font-size: 13.5px; } }

/* 2 · Himbeerrot auf Blau nur mit Fettschrift (sonst zu schwach) */
.chapter--dark .hero__value-k,
.chapter--dark .probe__value span:last-child,
.chapter--dark .hero__cta-value,
.dk-congrats, .danke__tag,
.fpmock__list li span, .fapoints__n,
.footer .footer__tag em { font-weight: 700; }

/* 3 · Fliesstext auf Blau: echtes Weiss */
.chapter--dark p, .chapter--dark li, .chapter--dark blockquote,
.footer p, .footer li, .dk-prose--dark p { color: #fff; }

/* 4 · Kleingedrucktes auf Blau: hell genug (kein Grauschleier) */
.chapter--dark .sec-cta__note, .chapter--dark .hero__cta-note,
.chapter--dark .problem__loss-src, .chapter--dark .pform__foot,
.dk-cap, .dk-hint, .footer__base p, .footer__base a { color: rgba(255,255,255,.82); }

/* 5 · Nav-/Footer-Links auf Blau */
.footer__links a { color: rgba(255,255,255,.9); }
.footer__links a:hover { color: #fff; }

/* 404: Signal reisst ab — statt schwingender Welle eine unterbrochene Linie */
.err__line { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); width: 100%; height: clamp(180px, 26vw, 300px); z-index: 1; pointer-events: none; }
.err__line circle:first-of-type { filter: drop-shadow(0 0 14px rgba(232,70,122,.8)); }

/* Stimmen auf Blau: Rollen-Zeilen hell statt himbeerrot (nicht fett = kein Rot),
   Schleier etwas dichter, damit der Text vor dem Bild klar steht. */
.chapter--dark .vcard figcaption span,
.chapter--dark .faref figcaption span { color: rgba(255,255,255,.85); }
.seele-c__img::after { background: linear-gradient(180deg, rgba(53,81,104,.93) 0%, rgba(53,81,104,.96) 100%); }
.seele-c .voices__big { color: var(--accent-2); font-weight: 800; text-shadow: 0 0 26px rgba(53,81,104,.9); }

/* Einleitung zur Punkte-Reihe im Analyse-Hero */
.fapoints__lead { margin: clamp(20px, 3vh, 30px) 0 -6px; text-align: center; font-family: var(--fd); font-weight: 600; font-size: 16px; color: rgba(255,255,255,.9); }

/* Notnagel: falls main.js nicht lädt, wird nach 8s alles sichtbar (siehe Inline-Skript im Kopf) */
html.reveal-fallback [data-reveal] { opacity: 1 !important; transform: none !important; }

/* Hero-Intro ohne Flackern: vor dem ersten Bildaufbau verstecken, JS gibt frei.
   (Die Klasse .js setzt das Inline-Skript im Kopf, .hero-ready setzt heroIntro.) */
html.js:not(.hero-ready) #hero .hero__eyebrow,
html.js:not(.hero-ready) #hero .hero__title,
html.js:not(.hero-ready) #hero .hero__lead,
html.js:not(.hero-ready) #hero .hero__value,
html.js:not(.hero-ready) #hero .hero__cta,
html.js:not(.hero-ready) .hero__scroll { opacity: 0; }
/* Notnagel greift auch hier */
html.reveal-fallback #hero .hero__eyebrow, html.reveal-fallback #hero .hero__title,
html.reveal-fallback #hero .hero__lead, html.reveal-fallback #hero .hero__value,
html.reveal-fallback #hero .hero__cta, html.reveal-fallback .hero__scroll { opacity: 1 !important; }

/* ============================================================= */
/* FEINSCHLIFF 13.08. (Laden, Blogkarten, Modal)                 */
/* ============================================================= */

/* Modal: Titel darf nicht unter das Schliessen-Kreuz laufen */
.modal__title { padding-right: 56px; }

/* Blogkarten mobil: Rubrik-Chip nicht abschneiden, Datum immer auf einer Linie */
@media (max-width: 900px) {
  .blog__grid { grid-template-columns: 1fr; }
  .post__cat { align-self: flex-start; max-width: 100%; white-space: normal; overflow-wrap: anywhere; margin-bottom: 14px; }
  .post__title { font-size: 19px; }
  .post { display: flex; flex-direction: column; }
  .post__desc { flex: 1; }
  .post__meta { margin-top: 16px; white-space: nowrap; }
}
/* Blogübersicht: zwei Spalten nur ab Tablet — mobil einspaltig (war ein Inline-Stil) */
@media (min-width: 861px) { .blogpage__grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* "Wir sagen dir, ..." gehört zur Punkte-Reihe — enger an den Trennstrich rücken
   (Desktop wie Mobil; Selektor ist spezifischer als die Abstands-Regeln oben). */
.fapoints__lead { margin-bottom: 0; }
.fapoints__lead + .fapoints--row { margin-top: 10px; }
@media (max-width: 900px) {
  .hero--fold .fapoints__lead { margin-bottom: 0; }
  .hero--fold .fapoints__lead + .fapoints--row { margin-top: 8px; }
}

/* Hero-Abstände Feinschliff (13.08.)
   Zwei Ursachen: der Flex-Container brachte 30px row-gap mit (überlagert jede
   Margin-Feinjustierung), und `.nav--lock + main > .hero--fold` hat das
   Oben-Padding überstimmt. Beides hier gezielt korrigiert. */
@media (min-width: 901px) {
  .hero--full,
  .nav--lock + main > .hero--fold:first-child { padding-top: clamp(112px, 13.5vh, 148px); }
}
@media (max-width: 900px) {
  /* Mehr Luft zur Navigations-Pille */
  .hero--fold,
  .nav--lock + main > .hero--fold:first-child { padding-top: clamp(118px, 29vw, 146px); }
  /* Abstände selbst steuern statt über den pauschalen row-gap */
  .hero--fold .fahero--stack { row-gap: 0; }
  .hero--fold .hero__cta { margin-top: clamp(22px, 5.5vw, 30px); }
  /* "Wir sagen dir" gehört zu den Punkten: näher an den Strich,
     der ganze Block rückt dadurch nach oben. */
  .hero--fold .fapoints__lead { margin-top: clamp(24px, 6.5vw, 32px); margin-bottom: 0; }
  .hero--fold .fapoints__lead + .fapoints--row { margin-top: 5px; }
}

/* Kurze Desktop-Höhen: die zusätzliche Luft oben darf den Scroll-Hinweis
   nicht unter die Kante drücken — innere Abstände geben sie wieder her. */
@media (min-width: 901px) and (max-height: 880px) {
  .hero--full,
  .nav--lock + main > .hero--fold:first-child { padding-top: clamp(92px, 11.5vh, 108px); }
  .hero--full { padding-bottom: clamp(20px, 2.6vh, 32px); }
  .hero--full .hero__scroll { margin-top: clamp(12px, 1.8vh, 18px); }
  .fahero--stack .hero__cta { margin-top: clamp(12px, 1.8vh, 18px); }
  .fapoints__lead { margin-top: clamp(12px, 1.8vh, 18px); }
  .fapoints--row { margin-top: 8px; padding-block: clamp(8px, 1.2vh, 12px); }
  .hero--fold .hero__lead { margin-top: 10px; }
}

/* Gleiche Logik auf der Frequenz-Probe: "Das bekommst du:" gehört zu den Checks. */
.checklist__lead { margin-bottom: 0; }
.checklist__lead + .fpchecks { margin-top: 5px; }
@media (max-width: 900px) {
  .hero--fold .checklist__lead { margin-top: clamp(24px, 6.5vw, 32px); margin-bottom: 0; }
  .hero--fold .checklist__lead + .fpchecks { margin-top: 5px; }
}
@media (min-width: 901px) and (max-height: 880px) {
  .checklist__lead { margin-top: clamp(12px, 1.8vh, 18px); }
}
