/* PureBell Startseite V2 — Redesign aus Entwurf/purebell-neuentwurf-v3.html
 *
 * Setzt assets/css/v2-core.css voraus (Tokens, Buttons, Eyebrow, Container,
 * Announcement, Section-Head). Hier stehen nur die Startseiten-Sektionen.
 * Geladen ausschliesslich auf der Startseite — siehe functions.php.
 */

/* ─── Header-Navigation (nur Startseite) ─────────────────────────── */
/* Liegt ausserhalb von .pb2-page — daher an body.pb2 gehaengt. */
body.pb2 .pb2-nav-sections {
  display: flex;
  align-items: center;
  gap: 26px;
}
body.pb2 .pb2-nav-sections a {
  color: var(--pb2-ink-soft);
  font-size: .94rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
body.pb2 .pb2-nav-sections a:hover { color: var(--pb2-orange); }

body.pb2 .pb2-nav-cta {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .92rem;
  white-space: nowrap;
}

/* Ab hier wird die Kopfzeile zu eng fuer sechs Elemente: erst die
   Sprungmarken weglassen, dann den CTA — der Sticky-CTA uebernimmt ihn. */
@media (max-width: 1020px) {
  body.pb2 .pb2-nav-sections { display: none; }
}
@media (max-width: 650px) {
  body.pb2 .pb2-nav-cta { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.pb2-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 88px;
  background:
    radial-gradient(circle at 88% 14%, rgba(255,122,26,.13), transparent 27%),
    radial-gradient(circle at 5% 90%, rgba(233,222,208,.85), transparent 28%),
    var(--pb2-paper);
}
.pb2-hero::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  right: -260px; bottom: -280px;
  border: 1px solid rgba(255,122,26,.16);
  border-radius: 50%;
  pointer-events: none;
}
.pb2-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 72px;
}
.pb2-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.4vw, 4.9rem);
}
.pb2-hero h1 span { color: var(--pb2-orange); }
.pb2-hero__copy {
  margin: 0;
  color: var(--pb2-muted);
  font-size: 1.14rem;
}
.pb2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}
.pb2-hero__check {
  margin: 18px 0 0;
  font-size: .95rem;
}
.pb2-hero__check a {
  color: var(--pb2-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pb2-hero__check a:hover { color: var(--pb2-orange-hover); }

.pb2-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 22px;
  padding: 0;
  color: var(--pb2-muted);
  font-size: .9rem;
  font-weight: 600;
  list-style: none;
}
.pb2-micro li { display: inline-flex; align-items: center; gap: 8px; }
.pb2-micro li::before { content: "✓"; color: var(--pb2-green); font-weight: 700; }

/* ─── Produkt-Stage ──────────────────────────────────────────────── */
.pb2-stage { position: relative; min-height: 570px; }
/* Frueher lag hier eine schwarze Flaeche hinter zwei Karten — die Aussage
   "3 Bausteine" zeigte damit nur zwei. Jetzt liegen alle drei als Faecher:
   jede Karte behaelt eine eigene, unverdeckte Zone, die Ueberlappungen bleiben
   auf die Raender beschraenkt. */
.pb2-stage__card--ernaehrung {
  width: 64%; height: 258px;
  right: 0; top: 0;
  transform: rotate(3.5deg);
}
/* Lag frueher oben rechts hinter der schwarzen Flaeche. Diese Ecke deckt jetzt
   die Ernaehrungskarte ab, deshalb wandert der Akzent nach unten rechts — dort
   schaut er hinter dem Tracker hervor. */
.pb2-stage__dot {
  position: absolute;
  width: 150px; height: 150px;
  right: -18px; bottom: 0;
  background: var(--pb2-orange);
  border-radius: 50%;
}
.pb2-stage__card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--pb2-white);
  border: 9px solid var(--pb2-white);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
}
.pb2-stage__card img { width: 100%; height: 100%; object-fit: cover; }
.pb2-stage__card--guide {
  width: 60%; height: 330px;
  left: 0; top: 118px;
  transform: rotate(-5deg);
}
.pb2-stage__card--tracker {
  width: 56%; height: 252px;
  right: 0; bottom: 34px;
  transform: rotate(4.5deg);
}
.pb2-stage__badge {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 5;
  padding: 15px 17px;
  color: var(--pb2-ink);
  background: var(--pb2-paper);
  border: 1px solid var(--pb2-line);
  border-radius: 13px;
  box-shadow: var(--pb2-shadow-sm);
  font-weight: 700;
  line-height: 1.3;
}
.pb2-stage__badge small {
  display: block;
  margin-top: 3px;
  color: var(--pb2-muted);
  font-size: .72rem;
  font-weight: 600;
}

/* ─── Proof-Strip ────────────────────────────────────────────────── */
.pb2-proof { color: var(--pb2-paper); background: var(--pb2-ink); }
.pb2-proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.pb2-proof__item {
  min-height: 124px;
  padding: 29px 24px;
  border-right: 1px solid var(--pb2-on-dark-line);
}
.pb2-proof__item:last-child { border-right: 0; }
.pb2-proof__item b {
  display: block;
  margin-bottom: 4px;
  color: var(--pb2-white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.025em;
}
.pb2-proof__item span { color: var(--pb2-on-dark); font-size: .9rem; }

/* ─── Problem ────────────────────────────────────────────────────── */
.pb2-problem { background: var(--pb2-cream); }
.pb2-problem__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: center;
}
.pb2-quote {
  padding: 38px;
  color: var(--pb2-paper);
  background: var(--pb2-ink);
  border-radius: var(--pb2-radius-lg);
  box-shadow: var(--pb2-shadow);
}
.pb2-quote__lead {
  margin-bottom: 1rem;
  color: var(--pb2-white);
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.035em;
}
.pb2-quote__lead span { color: #FF9D57; }
.pb2-quote p { color: var(--pb2-on-dark); }

.pb2-problem__list { display: grid; gap: 13px; margin-top: 26px; }
.pb2-problem__point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 18px;
  background: var(--pb2-paper);
  border: 1px solid var(--pb2-line);
  border-radius: 13px;
}
.pb2-problem__num {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  color: var(--pb2-orange-ink);
  background: var(--pb2-orange-soft);
  border-radius: 10px;
  font-weight: 700;
}
.pb2-problem__point b { display: block; margin-bottom: 2px; color: var(--pb2-ink); }
.pb2-problem__point span { color: var(--pb2-muted); font-size: .94rem; }

/* ─── System ─────────────────────────────────────────────────────── */
.pb2-system__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pb2-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  background: var(--pb2-white);
  border: 1px solid var(--pb2-line);
  border-radius: var(--pb2-radius);
  box-shadow: var(--pb2-shadow-sm);
}
.pb2-card::after {
  content: attr(data-number);
  position: absolute;
  right: 18px; top: 3px;
  color: rgba(23,23,23,.045);
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.pb2-card__icon {
  position: relative;
  z-index: 1;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  color: var(--pb2-white);
  background: var(--pb2-orange);
  border-radius: 13px;
  font-weight: 700;
}
.pb2-card h3 { position: relative; z-index: 1; margin-bottom: 12px; font-size: 1.4rem; }
.pb2-card p  { position: relative; z-index: 1; margin: 0; color: var(--pb2-muted); }

/* Sektionsflaeche bleibt hier — Raster und Ausschlussbox stehen in v2-core.css */
.pb2-persona { background: var(--pb2-cream); }

/* ─── Bundle ─────────────────────────────────────────────────────── */
.pb2-bundle { background: var(--pb2-ink); }
.pb2-bundle .pb2-head h2 { color: var(--pb2-white); }
.pb2-bundle .pb2-head p  { color: var(--pb2-on-dark); }
.pb2-bundle__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.pb2-bundle__card {
  overflow: hidden;
  background: var(--pb2-paper);
  border-radius: 24px;
}
.pb2-bundle__image { height: 320px; overflow: hidden; }
.pb2-bundle__image img { width: 100%; height: 100%; object-fit: cover; }
.pb2-bundle__copy { padding: 28px; }
.pb2-bundle__tag {
  color: var(--pb2-orange-ink);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.pb2-bundle__copy h3 { margin: 9px 0 12px; font-size: 1.6rem; }
.pb2-bundle__copy p  { margin: 0; color: var(--pb2-muted); }
.pb2-bundle__copy ul { margin: 20px 0 0; padding: 0; list-style: none; }
.pb2-bundle__copy li {
  position: relative;
  padding: 8px 0 8px 27px;
  border-bottom: 1px solid #E4D8CA;
  font-size: .95rem;
}
.pb2-bundle__copy li:last-child { border-bottom: 0; }
.pb2-bundle__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pb2-green);
  font-weight: 700;
}
.pb2-bundle__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #E4D8CA;
  color: var(--pb2-ink);
  font-size: .93rem;
  font-style: italic;
}

.pb2-nutrition {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 360px;
  color: var(--pb2-paper);
  background: #282522;
  border: 1px solid #403A35;
  border-radius: 24px;
}
.pb2-nutrition__visual { position: relative; min-height: 360px; overflow: hidden; }
.pb2-nutrition__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(40,37,34,.38) 100%);
  pointer-events: none;
}
.pb2-nutrition__visual img { width: 100%; height: 100%; object-fit: cover; }
.pb2-nutrition__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}
.pb2-nutrition h3 { margin-bottom: 14px; color: var(--pb2-white); font-size: 1.85rem; }
.pb2-nutrition p  { margin: 0; color: var(--pb2-on-dark); }
.pb2-nutrition ul { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; }
.pb2-nutrition li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #F0EAE4;
  font-size: .92rem;
}
.pb2-nutrition li::before { content: "✓"; color: var(--pb2-green-dark); font-weight: 700; }

/* ─── Timeline ───────────────────────────────────────────────────── */
.pb2-path { background: var(--pb2-cream); }
.pb2-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pb2-timeline::before {
  content: "";
  position: absolute;
  height: 3px;
  left: 8%; right: 8%; top: 30px;
  background: var(--pb2-sand);
}
.pb2-phase { position: relative; z-index: 2; }
.pb2-phase__dot {
  width: 61px; height: 61px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--pb2-white);
  background: var(--pb2-orange);
  border: 7px solid var(--pb2-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--pb2-orange);
  font-weight: 700;
}
.pb2-phase h3 { margin-bottom: 8px; font-size: 1.18rem; }
.pb2-phase p  { margin: 0; color: var(--pb2-muted); font-size: .93rem; }

/* ─── Vergleich ──────────────────────────────────────────────────── */
.pb2-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pb2-compare__col { padding: 34px; border-radius: 22px; }
.pb2-compare__col--old { background: #EFEAE4; border: 1px solid var(--pb2-line); }
.pb2-compare__col--new {
  color: var(--pb2-paper);
  background: var(--pb2-ink);
  box-shadow: var(--pb2-shadow);
}
.pb2-compare__col h3 { margin-bottom: 22px; font-size: 1.55rem; }
.pb2-compare__col--new h3 { color: var(--pb2-white); }
.pb2-compare__col ul { margin: 0; padding: 0; list-style: none; }
.pb2-compare__col li {
  position: relative;
  padding: 13px 0 13px 31px;
  border-bottom: 1px solid rgba(103,94,85,.20);
}
.pb2-compare__col li:last-child { border-bottom: 0; }
.pb2-compare__col--new li { color: #E8E0D8; border-color: rgba(255,255,255,.12); }
.pb2-compare__col--old li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #8A3D33;
  font-size: 1.15rem;
  font-weight: 700;
}
.pb2-compare__col--new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pb2-green-dark);
  font-weight: 700;
}

/* ─── Gruender ───────────────────────────────────────────────────── */
.pb2-founder { background: var(--pb2-cream); }
.pb2-founder__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 54px;
  align-items: stretch;
}
.pb2-founder__card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  color: var(--pb2-paper);
  background:
    radial-gradient(circle at 80% 20%, rgba(255,122,26,.42), transparent 32%),
    var(--pb2-ink);
  border-radius: var(--pb2-radius-lg);
  box-shadow: var(--pb2-shadow);
}
.pb2-founder__initials {
  width: 76px; height: 76px;
  display: grid;
  place-items: center;
  color: var(--pb2-ink);
  background: var(--pb2-paper);
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
}
.pb2-founder__card blockquote {
  margin: 0;
  color: var(--pb2-white);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.pb2-founder__meta { color: var(--pb2-on-dark); font-size: .88rem; }
.pb2-founder__copy h2 { margin-bottom: 22px; font-size: clamp(2.1rem, 3.8vw, 3.25rem); }
.pb2-founder__copy p  { color: var(--pb2-muted); }
.pb2-founder__pull {
  margin: 1.25rem 0;
  padding: 19px 22px;
  color: var(--pb2-ink);
  background: var(--pb2-paper);
  border-left: 5px solid var(--pb2-orange);
  border-radius: 0 12px 12px 0;
  font-weight: 600;
}
.pb2-founder__more a {
  color: var(--pb2-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pb2-founder__more a:hover { color: var(--pb2-orange-hover); }

/* ─── Angebot / Preis ────────────────────────────────────────────── */
.pb2-offer { background: var(--pb2-paper); }
.pb2-offer__card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  padding: 50px;
  color: var(--pb2-paper);
  background: var(--pb2-ink);
  border-radius: 32px;
  box-shadow: var(--pb2-shadow);
}
.pb2-offer__card::after {
  content: "";
  position: absolute;
  width: 330px; height: 330px;
  right: -170px; top: -180px;
  border: 65px solid rgba(255,122,26,.24);
  border-radius: 50%;
  pointer-events: none;
}
.pb2-offer__body { position: relative; z-index: 1; }
.pb2-offer__card h2 {
  margin-bottom: 18px;
  color: var(--pb2-white);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}
.pb2-offer__card > .pb2-offer__body > p { color: var(--pb2-on-dark); }
.pb2-offer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.pb2-offer__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #F0EAE4;
  font-size: .92rem;
}
.pb2-offer__list li::before { content: "✓"; color: var(--pb2-green-dark); font-weight: 700; }

.pb2-offer__anchor {
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(255,255,255,.06);
  border-left: 4px solid var(--pb2-orange);
  border-radius: 0 10px 10px 0;
  color: var(--pb2-on-dark);
  font-size: .93rem;
}
.pb2-offer__anchor strong { color: var(--pb2-white); }

.pb2-price {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 30px;
  color: var(--pb2-ink);
  background: var(--pb2-paper);
  border-radius: 22px;
  text-align: center;
}
.pb2-price__old { margin: 0; color: var(--pb2-muted); font-size: .9rem; }
.pb2-price__old s { text-decoration-thickness: 1px; }
.pb2-price__main {
  margin: 5px 0 4px;
  color: var(--pb2-ink);
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
}
.pb2-price__label { margin: 0; color: var(--pb2-orange); font-weight: 700; }
.pb2-price .pb2-btn { width: 100%; margin-top: 21px; }
.pb2-price__note { margin-top: 13px; color: var(--pb2-muted); font-size: .8rem; }
.pb2-price__support {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--pb2-line);
  color: var(--pb2-muted);
  font-size: .8rem;
}
.pb2-price__support a { color: var(--pb2-orange); text-decoration: underline; }

.pb2-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 16px;
  color: var(--pb2-muted);
  font-size: .78rem;
  font-weight: 600;
}
.pb2-trust span { display: inline-flex; align-items: center; gap: 6px; }
.pb2-trust svg { width: 15px; height: 15px; flex: none; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.pb2-faq { background: var(--pb2-cream); }
.pb2-faq__list { max-width: 900px; margin-inline: auto; }
/* .faq__item / .faq__icon bleiben erhalten — main.js haengt daran (Icon-Rotation). */
.pb2-faq .faq__item {
  margin-bottom: 13px;
  background: var(--pb2-paper);
  border: 1px solid var(--pb2-line);
  border-radius: 14px;
}
.pb2-faq .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--pb2-ink);
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.pb2-faq .faq__question::-webkit-details-marker { display: none; }
.pb2-faq .faq__icon {
  width: 20px; height: 20px;
  flex: none;
  color: var(--pb2-orange);
  transition: transform var(--dur-med) var(--ease-out);
}
.pb2-faq .faq__item[open] .faq__icon { transform: rotate(45deg); }
.pb2-faq .faq__answer { margin: 0; padding: 0 22px 22px; color: var(--pb2-muted); }

/* ─── Gratis-Guide ───────────────────────────────────────────────── */
.pb2-free {
  padding: 88px 0;
  background: var(--pb2-cream);
  border-top: 1px solid var(--pb2-line);
}
.pb2-free__card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 38px;
  /* Im Entwurf stand hier var(--paper) — in dessen :root nicht definiert,
     die Karte war dadurch transparent. Hier korrekt gesetzt. */
  background: var(--pb2-paper);
  border: 1px solid var(--pb2-line);
  border-radius: 28px;
  box-shadow: var(--pb2-shadow-sm);
}
.pb2-free__image {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 20px;
}
.pb2-free__image img { width: 100%; height: 100%; object-fit: cover; }
.pb2-free__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  padding: 10px 13px;
  color: var(--pb2-ink);
  background: rgba(255,252,247,.94);
  border: 1px solid var(--pb2-line);
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: var(--pb2-shadow-sm);
}
.pb2-free__copy h2 { margin-bottom: 17px; font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
.pb2-free__copy p  { margin: 0; color: var(--pb2-muted); font-size: 1rem; }
.pb2-free__list { display: grid; gap: 8px; margin: 22px 0 27px; padding: 0; list-style: none; }
.pb2-free__list li {
  display: flex;
  gap: 9px;
  color: var(--pb2-ink-soft);
  font-size: .91rem;
}
.pb2-free__list li::before { content: "✓"; color: var(--pb2-green); font-weight: 700; }

/* ─── Abschluss-CTA ──────────────────────────────────────────────── */
.pb2-final {
  padding: 88px 0;
  text-align: center;
  background: var(--pb2-orange);
}
.pb2-final h2 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: var(--pb2-white);
  font-size: clamp(2.1rem, 4.6vw, 4rem);
}
.pb2-final p {
  max-width: 670px;
  margin: 0 auto 28px;
  color: #FFE7D8;
  font-size: 1.06rem;
}
.pb2-final__note { margin-top: 18px; color: #FFE7D8; font-size: .85rem; }

/* ─── Testimonials: Umgebung ─────────────────────────────────────── */
/* Karussell-Markup und -Styles bleiben aus main.css/main.js unveraendert.
   Hier wird nur der Rahmen an die V2-Flaechen angeglichen. */
.pb2-page .testimonials { background: var(--pb2-ink); }
.pb2-page .testimonials__title { color: var(--pb2-white); }
.pb2-page .testimonials__intro { color: var(--pb2-on-dark); }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .pb2-hero__grid,
  .pb2-problem__grid,
  .pb2-founder__grid,
  .pb2-offer__card,
  .pb2-system__grid,
  .pb2-bundle__grid,
  .pb2-compare { grid-template-columns: 1fr; }
  .pb2-stage { min-height: 530px; }
  .pb2-nutrition { grid-column: auto; grid-template-columns: 1fr; }
  .pb2-nutrition__visual { min-height: 300px; }
  .pb2-nutrition__visual::after {
    background: linear-gradient(180deg, transparent 70%, rgba(40,37,34,.34) 100%);
  }
  .pb2-timeline { grid-template-columns: repeat(2, 1fr); gap: 34px 22px; }
  .pb2-timeline::before { display: none; }
  .pb2-founder__card { min-height: 350px; }
  .pb2-offer__card { padding: 38px; }
  .pb2-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .pb2-proof__item:nth-child(2) { border-right: 0; }
  .pb2-proof__item:nth-child(-n+2) { border-bottom: 1px solid var(--pb2-on-dark-line); }
  .pb2-free__card { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .pb2-page { padding-bottom: 76px; }
  .pb2-hero { padding: 54px 0 62px; }
  .pb2-hero__grid { gap: 36px; }
  .pb2-hero__actions { flex-direction: column; }
  .pb2-hero__actions .pb2-btn { width: 100%; }
  /* Faecher enger stellen: schmalere Buehne, aber alle drei Bausteine
     muessen erkennbar bleiben. */
  .pb2-stage { min-height: 452px; }
  .pb2-stage__card--ernaehrung { width: 74%; height: 172px; }
  .pb2-stage__card--guide { width: 68%; height: 224px; top: 84px; }
  .pb2-stage__card--tracker { width: 64%; height: 166px; bottom: 46px; }
  .pb2-stage__card { border-width: 7px; }
  .pb2-stage__dot { width: 105px; height: 105px; }
  .pb2-stage__badge { font-size: .82rem; padding: 12px 14px; }
  .pb2-proof__grid,
  .pb2-timeline,
  .pb2-offer__list { grid-template-columns: 1fr; }
  .pb2-proof__item { border-right: 0; border-bottom: 1px solid var(--pb2-on-dark-line); }
  .pb2-proof__item:last-child { border-bottom: 0; }
  .pb2-head { margin-bottom: 34px; }
  .pb2-bundle__image { height: 240px; }
  .pb2-nutrition__visual { min-height: 230px; }
  .pb2-nutrition__copy { padding: 26px; }
  .pb2-offer__card { padding: 26px; }
  .pb2-price__main { font-size: 3.4rem; }
  .pb2-free { padding: 62px 0; }
  .pb2-free__card { padding: 20px; gap: 27px; }
  .pb2-free__image { min-height: 240px; }
  .pb2-free__copy .pb2-btn { width: 100%; }
  .pb2-final { padding: 66px 0; }
}

/* Der Entwurf setzte scroll-behavior: smooth ohne Guard — main.css
   respektiert prefers-reduced-motion, das gilt hier ebenso. */
@media (prefers-reduced-motion: reduce) {
  .pb2-faq .faq__icon { transition: none; }
}
