﻿/* ============================================================
   DieProteinPizza Teiglinge — B2B-Site v3
   Warm, bildgetrieben, überwiegend hell.
   Dunkelblau nur Hero + Abschluss. Mobile-first, Breakpoint 768px.
   ============================================================ */
:root {
  --dunkel:  #1E7BFF;
  --signal:  #1E7BFF;
  --hell:    #EAF2FF;
  --weiss:   #FFFFFF;
  --text:    #14213D;

  --font-head: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--weiss);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }
h1 { font-size: 2.4rem; letter-spacing: -0.02em; }
h2 { font-size: 2.05rem; letter-spacing: -0.01em; margin-bottom: 16px; }
h3 { font-size: 1.08rem; }

.num {
  font-family: var(--font-body);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.wrap { max-width: 1160px; margin-inline: auto; padding-inline: 20px; }

.sec { padding-block: 64px; }
.sec-dunkel { background: var(--dunkel); color: var(--weiss); }
.sec-signal { background: var(--signal); color: var(--weiss); }
.sec-hell   { background: var(--hell); }
.sec-weiss  { background: var(--weiss); }

.sec-head { max-width: 720px; margin-bottom: 36px; }
.sec-head p { opacity: 0.75; }

.eyebrow {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 14px; opacity: 0.85;
}

.ph { border-bottom: 2px dotted currentColor; }

:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }
.sec-dunkel :focus-visible, .sec-signal :focus-visible { outline-color: var(--weiss); }

/* ---------- Bilder ---------- */
.foto { border-radius: var(--radius); overflow: hidden; }
.foto img { width: 100%; height: 100%; object-fit: cover; }
.frei { filter: drop-shadow(0 30px 40px rgba(6, 24, 60, 0.45)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  transition: transform 150ms, background-color 150ms, color 150ms, box-shadow 150ms;
}
.btn:hover { transform: translateY(-2px); }
.btn-signal { background: var(--signal); color: var(--weiss); box-shadow: 0 10px 24px rgba(30, 123, 255, 0.35); }
.btn-signal:hover { background: var(--dunkel); }
.btn-weiss { background: var(--weiss); color: var(--dunkel); }
.btn-rahmen { border-color: var(--weiss); color: var(--weiss); background: transparent; }
.btn-rahmen:hover { background: var(--weiss); color: var(--dunkel); }
.btn-block { display: block; width: 100%; }

/* ---------- Header ---------- */
.kopf {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--weiss);
  box-shadow: 0 1px 0 var(--hell);
}
.kopf .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 12px; }
/* min-width: 0 hebt die Flex-Vorgabe auf, nie unter die Inhaltsbreite zu
   schrumpfen. Ohne das schiebt das breite Wortmarken-Logo auf schmalen
   Handys den Bestellknopf aus dem Bild und die ganze Seite scrollt seitlich. */
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.logo-bild { height: 44px; width: auto; max-width: 100%; display: block; }
@media (max-width: 560px) {
  .logo-bild { height: 32px; }
  .kopf .wrap { gap: 10px; }
  .kopf .btn { padding: 10px 16px; font-size: 0.82rem; white-space: nowrap; }
}
.logo-zusatz { display: none; font-size: 0.7rem; font-weight: 700; color: var(--signal); letter-spacing: 0.08em; text-transform: uppercase; max-width: 120px; line-height: 1.3; }
/* Erst ab 1100px einblenden – darunter kollidiert der Zusatz mit dem Menü */
@media (min-width: 1100px) { .logo-zusatz { display: block; } }
.menue { display: none; gap: 24px; }
.menue a { text-decoration: none; font-weight: 600; font-size: 0.94rem; }
.menue a:hover { color: var(--signal); }
.kopf .btn { padding: 11px 22px; font-size: 0.9rem; }

/* ---------- Hero (bildschirmhoch) ---------- */
.hero {
  min-height: 0;
  /* Grundwert für Handys; ab 768px greift der Wert weiter unten. */
  padding-top: 132px; padding-bottom: 145px;
  overflow: visible;
  display: flex; align-items: center;
}
.hero-grid { display: grid; gap: 20px; align-items: center; width: 100%; }
.hero h1 {
  font-size: clamp(2.45rem, 4.85vw, 4.35rem);
  line-height: 1.1; font-weight: 800; letter-spacing: -0.025em;
  white-space: nowrap;
}
.hero h1 .hl-signal { color: #0B3C91; }
.hero .unterzeile { margin-top: 24px; font-size: clamp(1.5rem, 2.3vw, 1.8rem); opacity: 0.94; max-width: 46ch; }
.hero-ctas { display: grid; gap: 12px; margin-top: 40px; }
.hero-ctas .btn {
  height: 72px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 21px; padding: 0 44px;
}
.trust-karte {
  background: var(--weiss); color: var(--text);
  border-radius: 20px; padding: 22px 34px;
  /* Sitzt als eigene Zeile über die volle Hero-Breite. Nur so ist Platz
     für alle drei Punkte nebeneinander – in der Textspalte allein wären
     es 830px Bedarf bei 598px Breite, und die Karte wirkte verloren. */
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 32px;
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 18px 44px rgba(4, 16, 42, 0.28);
  margin-top: 40px;
  position: relative; z-index: 3;
  transform: translateY(42%);
  width: auto;
}
.trust-karte span::before { content: "✓ "; color: var(--signal); font-weight: 800; }
.hero-bild { position: relative; z-index: 2; }
.hero-bild .foto { aspect-ratio: 4 / 3; box-shadow: 0 34px 70px rgba(4, 16, 42, 0.5); }
.hero-abstand { height: 40px; }
@media (max-width: 767px) {
  .hero { padding-top: 132px; padding-bottom: 96px; }
  /* Ohne nowrap: Die Zeile darf umbrechen statt über den Rand zu laufen.
     Sonst schiebt sie die ganze Seite seitlich. */
  .hero h1 { font-size: clamp(1.7rem, 7.9vw, 2.4rem); white-space: normal; }
  .hero .unterzeile { font-size: 1.2rem; margin-top: 18px; }
  .hero-ctas { margin-top: 30px; }
  .hero-ctas .btn { height: 62px; font-size: 18px; }
  .trust-karte { transform: none; margin-top: 30px; padding: 18px 22px; font-size: 0.95rem; }
  .hero-bild { margin-top: 14px; margin-bottom: -60px; }
}

/* ---------- Eyebrow-Variante für helle Flächen ---------- */
.eyebrow-signal { color: var(--signal); opacity: 1; }
.sec-sub { opacity: 0.75; max-width: 640px; }

/* Formular-Abschnitte: Der Kopf steht über einer mittigen Karte und
   wird deshalb ebenfalls zentriert – links ausgerichtet wirkt er
   gegenüber der breiten Karte aus der Achse. */
#muster .sec-head, #bestellen .sec-head { text-align: center; margin-inline: auto; }
#muster .sec-head .sec-sub, #bestellen .sec-head .sec-sub { margin-inline: auto; }

/* ---------- Warum-Cards ---------- */
.wcard {
  background: var(--weiss); border: 1px solid var(--hell);
  border-radius: var(--radius); padding: 28px 26px;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.07);
}
.wcard h3 { margin-bottom: 10px; }
.wcard p { font-size: 0.96rem; opacity: 0.85; }
.wcard a { color: var(--signal); font-weight: 700; }

/* ---------- Vergleiche selbst ---------- */
.vs-bilder { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; margin-bottom: 28px; }
.vs-fig { margin: 0; text-align: center; }
.vs-fig img { width: 100%; height: auto; }
.vs-fig figcaption { font-family: var(--font-head); font-weight: 800; margin-top: 8px; font-size: 0.95rem; }
.vs-fig-blass img { filter: grayscale(0.25) brightness(0.97); }
.vs-fig-blass figcaption { opacity: 0.6; }
.vs-punkt {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--dunkel); color: var(--weiss);
  font-family: var(--font-head); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(6, 24, 60, 0.3);
}
.vs-zeilen { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }
.vs-zeile { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vs-links, .vs-rechts {
  padding: 13px 18px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
}
.vs-links { background: var(--signal); color: var(--weiss); text-align: right; }
.vs-links::after { content: " ✓"; }
.vs-rechts { background: var(--weiss); color: var(--text); opacity: 0.65; }
.vs-rechts::before { content: "✕ "; }
@media (max-width: 560px) {
  .vs-links, .vs-rechts { font-size: 0.78rem; padding: 11px 12px; }
  .vs-punkt { width: 44px; height: 44px; font-size: 0.85rem; }
  .vs-fig figcaption { font-size: 0.82rem; }
}

/* ---------- Ablauf (4 Schritte) ---------- */
.ablauf4 { display: grid; gap: 16px; }
@media (min-width: 768px) { .ablauf4 { grid-template-columns: repeat(4, 1fr); } }
.acard {
  background: var(--weiss); border: 1px solid var(--hell);
  border-radius: var(--radius); padding: 26px 22px; position: relative;
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.06);
}
.acard .aicon { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.acard .anr {
  position: absolute; top: 18px; right: 20px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--signal); color: var(--weiss);
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.acard p { font-size: 0.95rem; }

/* ---------- Deckungsbeitrag ---------- */
#deckungsbeitrag .wrap { max-width: 900px; }
.db-statement {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.7rem, 4.4vw, 3rem); line-height: 1.2;
  margin-top: 8px;
}
.db-mark { color: var(--signal); background: var(--weiss); padding: 0 12px; border-radius: 12px; white-space: nowrap; }
.db-ek { margin-top: 22px; font-size: 1.05rem; opacity: 0.9; }

/* ---------- Der Teig ---------- */
.teig-liste { list-style: none; display: grid; gap: 10px; margin-top: 20px; }
.teig-liste li { display: flex; gap: 12px; align-items: baseline; }
.teig-liste li::before { content: "✓"; color: var(--signal); font-family: var(--font-head); font-weight: 800; }

/* ---------- Formular: Textarea ---------- */
.feld textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--weiss); border: 2px solid var(--hell); border-radius: 12px;
  padding: 13px 15px; resize: vertical;
}
.feld textarea:focus { outline: 3px solid var(--signal); outline-offset: 0; }

/* ---------- Footer-Brand ---------- */
.fuss-brand { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fuss-logo { height: 34px; width: auto; background: var(--weiss); border-radius: 8px; padding: 4px 8px; }
.fuss-brand a { color: var(--weiss); font-weight: 700; }

/* ---------- Vorteile ---------- */
.karten3 { display: grid; gap: 20px; }
.vorteil {
  background: var(--weiss); border: 1px solid var(--hell);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.07);
}
.vorteil .foto { border-radius: 0; aspect-ratio: 16 / 10; }
.vorteil .inhalt { padding: 22px 22px 26px; }
.vorteil h3 { margin-bottom: 8px; }
.vorteil p { font-size: 0.95rem; opacity: 0.8; }
.vorteil .zahl { color: var(--signal); }

/* ---------- VS-Block ---------- */
.vs-grid { display: grid; gap: 20px; position: relative; }
.vs-karte { background: var(--weiss); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08); }
.vs-karte .foto { border-radius: 0; aspect-ratio: 16 / 10; }
.vs-karte .inhalt { padding: 22px; }
.vs-karte h3 { margin-bottom: 10px; }
.vs-karte ul { list-style: none; display: grid; gap: 8px; font-size: 0.95rem; }
.vs-karte.links ul li::before { content: "— "; opacity: 0.5; }
.vs-karte.rechts ul li::before { content: "✓ "; color: var(--signal); font-weight: 700; }
.vs-karte.rechts { border: 2px solid var(--signal); }
.vs-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--dunkel); color: var(--weiss);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(6, 24, 60, 0.35); z-index: 2;
}

/* ---------- Staffelpreise ---------- */
.tiers { display: grid; gap: 18px; }
.tier {
  background: var(--weiss); border: 1px solid var(--hell); border-radius: var(--radius);
  padding: 26px 24px; position: relative;
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.06);
}
.tier .stufe { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; }
.tier .menge { font-size: 0.9rem; opacity: 0.65; }
.tier .preis { font-size: 2rem; margin-top: 14px; white-space: nowrap; color: var(--signal); }
.tier .einheit { font-size: 0.85rem; opacity: 0.65; }
.tier .versand { margin-top: 12px; font-size: 0.9rem; opacity: 0.75; }
.tier-top { background: var(--signal); color: var(--weiss); border-color: var(--signal); }
.tier-top .preis { color: var(--weiss); }
.tier-flag {
  position: absolute; top: -13px; left: 22px;
  background: var(--dunkel); color: var(--weiss);
  font-family: var(--font-head); font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px;
}
.abo-kasten {
  background: var(--hell); border-radius: var(--radius);
  padding: 26px 24px; margin-top: 26px;
}
.abo-kasten b { font-family: var(--font-head); font-size: 1.1rem; }
.zahlung { margin-top: 18px; font-size: 0.92rem; opacity: 0.7; }
.netto { font-size: 0.92rem; opacity: 0.65; margin-top: -8px; margin-bottom: 30px; }

/* ---------- Schritte ---------- */
.schritte {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%;
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; -webkit-overflow-scrolling: touch;
}
.schritt {
  background: var(--weiss); border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.08);
}
.schritt .foto { border-radius: 0; aspect-ratio: 16 / 10; }
.schritt .inhalt { padding: 18px 20px 22px; }
.schritt .nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--signal); color: var(--weiss);
  font-family: var(--font-head); font-weight: 800; font-size: 0.88rem;
  margin-bottom: 10px;
}
.schritt h3 { font-size: 1rem; margin-bottom: 6px; }
.schritt p { font-size: 0.9rem; opacity: 0.75; }
.schritt-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 26px; font-weight: 600; }
.schritt-links a { color: var(--dunkel); }

/* ---------- Kalkulation ---------- */
.kalk { display: grid; gap: 28px; align-items: center; }
.kalk-regler label { display: block; font-weight: 700; margin-bottom: 12px; }
.kalk-regler output { float: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.kalk-regler input[type="range"] { width: 100%; accent-color: var(--signal); height: 34px; }
.kalk-ergebnis {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 6vw, 3rem); color: var(--signal); line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.kalk-ergebnis small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--text); opacity: 0.75; margin-top: 6px; }
.fussnote { font-size: 0.88rem; opacity: 0.65; margin-top: 20px; }
details.kalk-detail { margin-top: 26px; border-top: 1px solid var(--hell); padding-top: 18px; }
details.kalk-detail summary { cursor: pointer; font-weight: 700; color: var(--dunkel); list-style: none; }
details.kalk-detail summary::-webkit-details-marker { display: none; }
details.kalk-detail summary::before { content: "+ "; color: var(--signal); font-weight: 800; }
details.kalk-detail[open] summary::before { content: "− "; }
table.kalk-tab { width: 100%; border-collapse: collapse; margin-top: 16px; }
table.kalk-tab th, table.kalk-tab td { padding: 11px 8px; border-bottom: 1px solid var(--hell); text-align: right; font-size: 0.95rem; }
table.kalk-tab th { font-family: var(--font-head); font-weight: 800; font-size: 0.82rem; }
table.kalk-tab th:first-child, table.kalk-tab td:first-child { text-align: left; }
table.kalk-tab td { font-weight: 700; font-variant-numeric: tabular-nums; }
table.kalk-tab td:first-child { font-weight: 400; }
table.kalk-tab tr.summe td { font-weight: 700; border-top: 2px solid var(--text); border-bottom: none; }

/* ---------- Probierpaket ---------- */
.trial { display: grid; gap: 16px; margin-bottom: 40px; }
.trial .karte { background: var(--weiss); color: var(--text); border-radius: var(--radius); padding: 24px; }
.trial h3 { margin-bottom: 6px; font-size: 1rem; }
.trial p { font-size: 0.93rem; opacity: 0.8; }

.panel { background: var(--weiss); color: var(--text); border-radius: var(--radius); padding: 28px 22px; }
.form-grid { display: grid; gap: 18px; }
.feld label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.feld input, .feld select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--weiss); border: 2px solid var(--hell); border-radius: 12px;
  padding: 13px 15px;
}
.feld input:focus, .feld select:focus { outline: 3px solid var(--signal); outline-offset: 0; }
.feld .err { display: none; font-size: 0.86rem; font-weight: 700; color: var(--dunkel); margin-top: 6px; }
.feld.invalid .err { display: block; }
.feld.invalid input, .feld.invalid select { border-color: var(--dunkel); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; }
.check input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--signal); flex: none; }
.form-ok { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; }

/* ---------- Produktdaten ---------- */
.split { display: grid; gap: 32px; align-items: center; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.badges span {
  background: var(--hell); color: var(--dunkel);
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem;
  padding: 8px 16px; border-radius: 999px;
}
table.daten { width: 100%; border-collapse: collapse; }
table.daten th, table.daten td { padding: 10px 8px; border-bottom: 1px solid var(--hell); text-align: left; font-size: 0.95rem; vertical-align: top; }
table.daten th { font-weight: 600; opacity: 0.7; width: 46%; }
table.daten td { font-weight: 700; font-variant-numeric: tabular-nums; }
table.daten td.text { font-weight: 400; }
.daten-cta { margin-top: 26px; }
.daten-cta .hinweis { margin-top: 10px; font-size: 0.9rem; opacity: 0.7; }

/* ---------- Werbematerial ---------- */
.haken { list-style: none; display: grid; gap: 12px; }
.haken li { display: flex; gap: 12px; align-items: baseline; }
.haken li::before { content: "✓"; color: var(--signal); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.haken-fett { margin-top: 22px; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details { background: var(--hell); border-radius: 14px; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--signal); font-weight: 800; font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 0 22px 20px; font-size: 0.95rem; opacity: 0.8; }

/* ---------- Abschluss ---------- */
.abschluss { text-align: center; }
.abschluss h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.abschluss .kontakt { margin-top: 30px; display: grid; gap: 8px; font-size: 1.2rem; font-weight: 700; }
.abschluss .kontakt a { color: var(--weiss); text-decoration: none; }
.abschluss .kontakt a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.fuss { background: var(--dunkel); color: var(--hell); border-top: 1px solid rgba(255,255,255,0.15); padding-block: 32px; font-size: 0.9rem; }
.fuss .wrap { display: grid; gap: 12px; }
.fuss .klein { opacity: 0.65; font-size: 0.83rem; }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--weiss); padding: 10px 16px;
  box-shadow: 0 -8px 24px rgba(20, 33, 61, 0.12);
  transform: translateY(110%); transition: transform 250ms;
}
.sticky-cta.sichtbar { transform: none; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 400ms ease, transform 400ms ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .sticky-cta { transition: none; }
}

/* ---------- Desktop ≥768px ---------- */
@media (min-width: 768px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2.8rem; }
  .sec { padding-block: 96px; }

  .menue { display: flex; }

  /* Der Header liegt fest oben (ca. 73px hoch) – die Polsterung muss ihn
     mitrechnen. 172px ergeben rund 100px sichtbaren Abstand darunter. */
  .hero { padding-top: 172px; }
  .hero-grid { grid-template-columns: 55fr 45fr; gap: 32px; }
  .hero-ctas { grid-template-columns: auto auto; justify-content: start; }
  .hero-pizza { margin-right: calc(-1 * (6vw + 20px)); margin-bottom: -110px; }
  .pizza-disc { width: min(48vw, 720px); }
  .hero-abstand { height: 44px; }

  .karten3 { grid-template-columns: repeat(3, 1fr); }

  .vs-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .tiers { grid-template-columns: repeat(4, 1fr); }

  .schritte { grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); grid-auto-columns: unset; overflow: visible; }

  .kalk { grid-template-columns: 1fr 1fr; gap: 56px; }

  .trial { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .voll { grid-column: 1 / -1; }
  .panel { padding: 44px; }

  .split { grid-template-columns: 1fr 1.1fr; gap: 56px; }

  .fuss .wrap { grid-template-columns: auto 1fr auto; align-items: baseline; gap: 24px; }

  .sticky-cta { display: none; }
}

/* ---------- Print: nur die Kalkulation ---------- */
@media print {
  .kopf, .sticky-cta, .fuss, .sec:not(#kalkulation), .hero, .hero-abstand { display: none !important; }
  #kalkulation { padding-block: 0; }
  details.kalk-detail { display: block; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   v5: Teigling-Hero mit Badge, kompakte Gründe, Pizza-Strip,
   Produkt-/Bestellseite
   ============================================================ */

/* ---------- Hero: freigestellter Teigling + Badge ---------- */
.hero-teigling { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-teigling img {
  width: min(86vw, 720px);
  filter: drop-shadow(0 46px 70px rgba(4, 16, 42, 0.55));
}
/* Nur im Hero größer – auf der Produktseite bleibt das Abzeichen wie es war */
.hero .protein-badge-mittel { width: 144px; height: 144px; }
.hero .protein-badge-mittel .badge-zahl { font-size: 2.3rem; }
.hero .protein-badge-mittel .badge-label { font-size: 0.82rem; }
.badge-pop {
  position: absolute; top: 0; right: 4%;
  background: var(--signal); color: var(--weiss);
  border-radius: 50%;
  width: 168px; height: 168px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; transform: rotate(8deg);
  box-shadow: 0 16px 40px rgba(4, 16, 42, 0.4);
  border: 4px solid var(--weiss);
  z-index: 3;
}
.badge-pop .gross { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; line-height: 1.1; }
.badge-pop .klein { font-size: 0.72rem; font-weight: 700; line-height: 1.45; margin-top: 4px; }
@media (max-width: 767px) {
  .badge-pop { width: 128px; height: 128px; top: -8px; right: 0; }
  .badge-pop .gross { font-size: 1.15rem; }
  .badge-pop .klein { font-size: 0.62rem; }
}

/* ---------- Kompakte Gründe-Karten (mit Bild) ---------- */
.gcard {
  background: var(--weiss); border: 1px solid var(--hell);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.07);
}
.gcard .foto { border-radius: 0; aspect-ratio: 16 / 10; }
.gcard .inhalt { padding: 20px 22px 24px; }
.gcard h3 { margin-bottom: 6px; }
.gcard p { font-size: 0.93rem; opacity: 0.8; }

/* ---------- Pizza-Strip (transparente Pizzen) ---------- */
.pizza-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: 46%;
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 4px 16px; -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .pizza-strip { grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); grid-auto-columns: unset; overflow: visible; }
}
.pizza-item { text-align: center; scroll-snap-align: start; position: relative; }
.pizza-item img {
  width: 100%; filter: drop-shadow(0 18px 26px rgba(20, 33, 61, 0.22));
  transition: transform 200ms;
}
.pizza-item:hover img { transform: scale(1.05) rotate(2deg); }
.pizza-item .name { font-family: var(--font-head); font-weight: 800; font-size: 0.92rem; margin-top: 10px; display: block; }

/* ---------- Produktseite ---------- */
.prod { padding-top: 120px; }
.prod-grid { display: grid; gap: 36px; }
@media (min-width: 768px) { .prod-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; } }
.prod-galerie-haupt {
  background: var(--hell); border-radius: var(--radius);
  aspect-ratio: 5 / 4; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.prod-galerie-haupt img.frei-bild { width: 94%; filter: drop-shadow(0 24px 36px rgba(20, 33, 61, 0.3)); object-fit: contain; }
.prod-galerie-haupt img.voll-bild { width: 100%; height: 100%; object-fit: cover; }
.prod-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.prod-thumbs button {
  width: 68px; height: 68px; border-radius: 12px; border: 2px solid var(--hell);
  background: var(--hell); overflow: hidden; padding: 6px;
}
.prod-thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.prod-thumbs button.voll img { object-fit: cover; }
.prod-thumbs button.active { border-color: var(--signal); }
.prod-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.prod-chips span {
  background: var(--hell); color: var(--dunkel);
  font-family: var(--font-head); font-weight: 800; font-size: 0.78rem;
  padding: 7px 14px; border-radius: 999px;
}
.qty-zeile { display: flex; align-items: center; gap: 14px; margin: 18px 0 8px; flex-wrap: wrap; }
.qty {
  display: inline-flex; align-items: center;
  border: 2px solid var(--hell); border-radius: 999px; overflow: hidden; background: var(--weiss);
}
.qty button { width: 46px; height: 48px; font-size: 1.25rem; font-weight: 800; background: none; border: none; color: var(--dunkel); }
.qty input {
  width: 76px; height: 48px; border: none; text-align: center;
  font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; outline: none;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.staffel-hinweis { font-size: 0.85rem; opacity: 0.7; }
.prod-summe {
  background: var(--hell); border-radius: var(--radius);
  padding: 20px 22px; margin-top: 16px;
}
.prod-summe .zeile { display: flex; justify-content: space-between; font-size: 0.95rem; padding: 4px 0; }
.prod-summe .zeile.total { border-top: 2px solid var(--dunkel); margin-top: 8px; padding-top: 10px; font-weight: 800; font-size: 1.15rem; }
.prod-summe .gruen { color: var(--signal); font-weight: 700; }
.prod-preis { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--signal); }
.prod-preis small { font-size: 0.95rem; color: var(--text); opacity: 0.7; font-family: var(--font-body); font-weight: 600; }
table.staffel-mini { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.9rem; }
table.staffel-mini th, table.staffel-mini td { padding: 8px 10px; border-bottom: 1px solid var(--hell); text-align: left; }
table.staffel-mini th { font-family: var(--font-head); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; }
table.staffel-mini td:last-child { text-align: right; font-weight: 700; }
table.staffel-mini tr.aktiv td { background: var(--hell); font-weight: 800; color: var(--dunkel); }
.muster-mini {
  border: 2px dashed var(--signal); border-radius: var(--radius);
  padding: 18px 20px; margin-top: 18px; font-size: 0.92rem;
}
.muster-mini b { color: var(--signal); }

/* ============================================================
   v6: Einheitliche Protein-Badge-Komponente, Hero-Szene,
   VS-Restyling, Ablauf mit Fotos, Logo-Karte
   ============================================================ */

/* ---------- Protein-Badge (seitenweit) ---------- */
.protein-badge {
  position: absolute;
  background: var(--signal); color: var(--weiss);
  border: 4px solid var(--weiss); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; transform: rotate(6deg);
  box-shadow: 0 16px 40px rgba(4, 16, 42, 0.35);
  z-index: 3; padding: 10px;
}
.protein-badge .zeile-gross { font-family: var(--font-head); font-weight: 800; line-height: 1.08; }
.protein-badge .zeile-klein { font-weight: 700; line-height: 1.3; margin-top: 6px; white-space: nowrap; }
.protein-badge-gross { width: 230px; height: 230px; top: -26px; right: -14px; }
.protein-badge-gross .zeile-gross { font-size: 1.45rem; }
.protein-badge-gross .zeile-klein { font-size: 0.62rem; }
.protein-badge-klein { width: 74px; height: 74px; top: -4px; right: -2px; border-width: 3px; padding: 6px; }
.protein-badge-klein .zeile-gross { font-size: 0.66rem; }
.protein-badge-mittel { width: 118px; height: 118px; top: 2%; right: 0; border-width: 3px; }
.protein-badge-mittel .zeile-gross { font-size: 0.82rem; }
.protein-badge .badge-zahl { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.protein-badge .badge-label { font-family: var(--font-head); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 3px; }
@media (max-width: 767px) {
  .protein-badge-gross { width: 178px; height: 178px; top: -18px; right: -6px; }
  .protein-badge-gross .zeile-gross { font-size: 1.1rem; }
  .protein-badge-gross .zeile-klein { font-size: 0.5rem; }
}

/* ---------- Hero: Teigling in Szene ---------- */
.hero-szene { position: relative; z-index: 2; }
.hero-szene .foto {
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  box-shadow: 0 34px 70px rgba(4, 16, 42, 0.5); overflow: hidden;
}
.hero-szene .foto img { width: 100%; height: 100%; object-fit: cover; }
.hero-szene .mini-zeile {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  background: var(--weiss); color: var(--text);
  border-radius: 999px; padding: 7px 18px;
  font-size: 0.78rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(4, 16, 42, 0.3); z-index: 3;
}
@media (max-width: 480px) { .hero-szene .mini-zeile { font-size: 0.62rem; padding: 6px 12px; } }

/* ---------- Warum: Logo-Kartenkopf, kompakter ---------- */
#warum { padding-top: 44px; }
#warum .sec-head { max-width: none; }
#warum h2 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); }
.logo-head {
  aspect-ratio: 16 / 10; background: var(--weiss);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--hell); padding: 24px;
}
.logo-head img { max-height: 100%; width: auto; max-width: 82%; object-fit: contain; }
.chart-head {
  aspect-ratio: 16 / 10; background: var(--hell);
  display: flex; align-items: center; justify-content: center;
  padding: 18px 22px 0;
}
.chart-head svg { width: 100%; height: 100%; }
.gcard .plakativ { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--text); }

/* ---------- VS: weiße Bildkarten + schwarze fette Werte ---------- */
.vs-fig {
  background: var(--weiss); border-radius: var(--radius);
  padding: 22px; margin: 0; text-align: center; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
}
.vs-fig img { width: auto; max-width: 88%; max-height: 300px; margin-inline: auto; object-fit: contain; }
.vs-fig-blass img { filter: none; }
.vs-fig-blass figcaption { opacity: 0.75; }
.vs-links, .vs-rechts {
  color: var(--text); font-weight: 800; opacity: 1;
}
.vs-links { background: var(--weiss); border: 2px solid var(--signal); }
.vs-links::after { content: " ✓"; color: var(--signal); }
.vs-rechts { background: var(--weiss); border: 2px solid var(--hell); }
.vs-rechts::before { content: "✕ "; color: var(--text); opacity: 0.45; }
.stock-mark { font-size: 0.72rem; opacity: 0.55; display: block; margin-top: 4px; }

/* ---------- VS als zusammenhängende Bildeinheit (transparent) ---------- */
.vs-buehne {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 34px; position: relative;
}
.vs-seite { position: relative; text-align: center; width: min(40%, 380px); }
.vs-seite img {
  width: 100%; filter: drop-shadow(0 22px 30px rgba(20, 33, 61, 0.22));
}
.vs-seite-blass img { opacity: 0.88; filter: drop-shadow(0 22px 30px rgba(20, 33, 61, 0.16)) saturate(0.85); }
.vs-seite .vs-label { display: block; margin-top: 12px; font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; }
.vs-seite-blass .vs-label { opacity: 1; color: var(--text); }
.vs-buehne { gap: clamp(28px, 5vw, 64px); }
.vs-buehne .vs-punkt { margin: 0; z-index: 4; flex: none; position: relative; top: -12px; }
@media (max-width: 560px) {
  .vs-buehne { gap: 14px; }
  .vs-buehne .vs-punkt { width: 44px; height: 44px; font-size: 0.85rem; }
  .vs-seite { width: 42%; }
}

/* ---------- Hero-Teigling: drei Chips unter dem Bild ---------- */
.hero-teigling { flex-wrap: wrap; }
.hero-chips {
  width: 100%; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px; margin-top: 18px; position: relative; z-index: 3;
}
.hero-chips span {
  background: var(--weiss); color: var(--text);
  border-radius: 999px; padding: 8px 16px;
  font-size: 0.82rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(4, 16, 42, 0.25);
}
@media (max-width: 480px) { .hero-chips span { font-size: 0.7rem; padding: 7px 12px; } }

/* ---------- Ablauf: 5 Foto-Schritte ---------- */
.ablauf5 {
  display: grid; grid-auto-flow: column; grid-auto-columns: 74%;
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .ablauf5 { grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); grid-auto-columns: unset; overflow: visible; }
}
.a5card {
  background: var(--weiss); border: 1px solid var(--hell);
  border-radius: var(--radius); overflow: hidden; position: relative;
  scroll-snap-align: start;
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.06);
}
.a5card .foto { border-radius: 0; aspect-ratio: 16 / 11; }
.a5card .foto img { width: 100%; height: 100%; object-fit: cover; }
.a5card .anr {
  position: absolute; top: 12px; left: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--signal); color: var(--weiss);
  font-family: var(--font-head); font-weight: 800; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--weiss);
}
.a5card p { padding: 14px 16px 18px; font-size: 0.88rem; }

/* ---------- Spamschutz-Feld: für Menschen unsichtbar ---------- */
.honigtopf {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Fehlermeldung beim Absenden ---------- */
.form-fehler {
  background: #FDE8E8;
  color: #9B1C1C;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-top: 14px;
}
.form-fehler[hidden] { display: none; }
button[disabled] { opacity: 0.6; cursor: progress; }

/* ---------- Datenblatt (Fakten-Kacheln) ---------- */
.fakten { display: grid; gap: 14px; margin: 0; }
.fakt {
  background: var(--weiss); border: 1px solid var(--hell);
  border-radius: var(--radius); padding: 20px 20px 22px;
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.06);
}
.fakt .aicon { font-size: 1.5rem; display: block; line-height: 1; margin-bottom: 12px; }
.fakt dt {
  font-family: var(--font-body); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--signal);
  margin-bottom: 6px;
}
.fakt dd {
  margin: 0; font-family: var(--font-head); font-weight: 800;
  font-size: 1.12rem; line-height: 1.3;
}
.fakt .zusatz {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 0.86rem; line-height: 1.55; opacity: 0.72; margin-top: 7px;
}
.fakt-breit { grid-column: 1 / -1; }
.fakt-breit dd { font-size: 1.05rem; }
.fakten-hinweis { font-size: 0.84rem; opacity: 0.6; margin-top: 16px; }

@media (min-width: 600px) { .fakten { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .fakten { grid-template-columns: repeat(3, 1fr); } }