@font-face { font-family: "Outfit"; font-style: normal; font-weight: 400 700; font-display: swap; src: url(/assets/fonts/outfit-latin-ext.woff2) format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 400 700; font-display: swap; src: url(/assets/fonts/outfit-latin.woff2) format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
  --pp-tinte: #152033;
  --pp-text: #5b6676;
  --pp-leise: #687180;
  --pp-akzent: #16835c;
  --pp-akzent-tief: #0f6246;
  --pp-akzent-hell: #e8f4ee;
  --pp-grund: #fdfefe;
  --pp-grau: #f5f7f8;
  --pp-linie: #e5e9ed;
  --pp-rot: #bd3d37;
  --pp-rot-hell: #fbeceb;
  --pp-bernstein: #8a4b0f;
  --pp-bernstein-hell: #fdf1e4;
  --pp-blau: #1d4f8a;
  --pp-blau-hell: #eaf2fb;
  --pp-schatten: 0 1px 2px rgba(21, 32, 51, .05), 0 18px 40px -18px rgba(21, 32, 51, .22);
  --pp-schrift: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--pp-grund);
  color: var(--pp-tinte);
  font-family: var(--pp-schrift);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--pp-tinte); margin: 0; text-wrap: balance; }
p { text-wrap: pretty; }

a { color: inherit; }

.pp-spur { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pp-schmal { max-width: 860px; }
.pp-mitte { text-align: center; }

/* Kopfzeile */

.pp-kopf {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 254, 254, .88);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--pp-linie);
}

.pp-kopf-innen {
  max-width: 1200px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.pp-marke {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.2px;
  color: var(--pp-tinte);
  text-decoration: none;
}

.pp-marke-zeichen {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--pp-akzent);
  color: #fff;
}

.pp-nav { flex: 1; display: flex; justify-content: center; gap: 26px; }
.pp-nav a { position: relative; color: var(--pp-text); text-decoration: none; font-size: 15px; font-weight: 500; white-space: nowrap; }
.pp-nav a:hover { color: var(--pp-tinte); }
.pp-nav a[aria-current="page"], .pp-nav .pp-nav-zweig { color: var(--pp-tinte); }
.pp-nav a[aria-current="page"]::after, .pp-nav .pp-nav-zweig::after { content: ""; position: absolute; right: 0; bottom: -23px; left: 0; height: 2px; border-radius: 2px; background: var(--pp-akzent); }

.pp-kopf-aktion { display: flex; align-items: center; gap: 18px; }
.pp-kopf-link { color: var(--pp-tinte); text-decoration: none; font-size: 15px; font-weight: 500; white-space: nowrap; }
.pp-kopf-link:hover { color: var(--pp-akzent); }

/* Knöpfe */

.pp-knopfreihe { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 36px 0 0; }

.pp-knopf {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid var(--pp-akzent);
  border-radius: 8px;
  background: var(--pp-akzent);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 98, 70, .25);
}
.pp-knopf:hover { background: var(--pp-akzent-tief); border-color: var(--pp-akzent-tief); }

.pp-knopf-klein { padding: 8px 16px; font-size: 15px; }

.pp-knopf-leise { background: #fff; border-color: var(--pp-linie); color: var(--pp-tinte); box-shadow: 0 1px 2px rgba(21, 32, 51, .06); }
.pp-knopf-leise:hover { background: var(--pp-grau); border-color: var(--pp-linie); }

.pp-knopf-weiss { background: #fff; border-color: #fff; color: var(--pp-akzent-tief); box-shadow: none; }
.pp-knopf-weiss:hover { background: var(--pp-akzent-hell); border-color: var(--pp-akzent-hell); }

.pp-knopf-rahmen { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; box-shadow: none; }
.pp-knopf-rahmen:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }

/* Schild */

.pp-schild {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 14px;
  border: 1px solid var(--pp-linie);
  border-radius: 999px;
  background: #fff;
  color: var(--pp-tinte);
  font-size: 14px;
  font-weight: 500;
}
.pp-schild i { width: 8px; height: 8px; border-radius: 50%; background: var(--pp-akzent); box-shadow: 0 0 0 4px var(--pp-akzent-hell); }
/* Das Schild steht in der H1, damit sie sagt, was das Produkt ist - es sieht aus wie vorher */
.pp-held h1 .pp-schild { display: flex; width: fit-content; max-width: 100%; margin: 0 auto 24px; line-height: 1.6; letter-spacing: normal; }
.pp-held-titel { display: block; }

/* Held */

.pp-held { padding: 88px 0 0; overflow: hidden; }
.pp-held-text { text-align: center; }

.pp-held h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: 60px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.pp-lede { max-width: 720px; margin: 0 auto; color: var(--pp-text); font-size: 20px; line-height: 1.55; }

.pp-buehne { position: relative; margin-top: 64px; padding: 32px; }
.pp-buehne::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid var(--pp-linie);
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(22, 131, 92, .16), transparent 70%),
    linear-gradient(180deg, #f1f8f4 0%, var(--pp-grund) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.pp-bento {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 20px;
}

.pp-bento-spalte { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.pp-bento-spalte > .pp-kachel:last-child { flex: 1 1 auto; }

.pp-kachel {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--pp-linie);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--pp-schatten);
  text-align: left;
}

.pp-kachel-korb { padding: 24px; }
.pp-kachel-korb .pp-meldung { margin-bottom: 18px; }

.pp-kachel-kopf { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 14px; }
.pp-kachel-kopf span { font-size: 14px; font-weight: 650; color: var(--pp-tinte); }
.pp-kachel-kopf em { font-style: normal; font-size: 12px; font-weight: 500; color: var(--pp-leise); }

.pp-kachel-fuss { margin: auto 0 0; padding-top: 12px; font-size: 13px; color: var(--pp-text); }

/* Regel */

.pp-bedingung { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.pp-bedingung li { padding: 10px 12px; border: 1px solid var(--pp-linie); border-radius: 10px; background: var(--pp-grau); font-size: 13.5px; line-height: 1.9; color: var(--pp-text); }
.pp-bedingung b { display: block; color: var(--pp-tinte); font-weight: 600; line-height: 1.5; }
.pp-bedingung span { display: inline-block; padding: 0 8px; border: 1px solid var(--pp-linie); border-radius: 6px; background: #fff; color: var(--pp-tinte); font-size: 13px; line-height: 1.7; }
.pp-bedingung .pp-und { padding: 0; border: 0; background: none; text-align: center; font-size: 11px; font-weight: 700; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; color: var(--pp-akzent); }

.pp-folge { display: flex; align-items: center; gap: 8px; margin: 14px 0 0; padding: 9px 12px; border-radius: 10px; background: var(--pp-akzent-hell); color: var(--pp-akzent-tief); font-size: 14px; }
.pp-folge b { margin-left: auto; color: var(--pp-akzent-tief); }

/* Warenkorb */

.pp-korb { margin: 0; padding: 0; list-style: none; }
.pp-korb li { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--pp-linie); }
.pp-korb li:first-child { padding-top: 0; }

.pp-korb-bild { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: #eef1f4; color: var(--pp-tinte); font-size: 16px; font-weight: 700; line-height: 1; }
.pp-korb-auto { background: var(--pp-akzent-hell); color: var(--pp-akzent-tief); }

.pp-korb-name { font-size: 15px; font-weight: 600; color: var(--pp-tinte); line-height: 1.35; }
.pp-korb-name small { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 400; color: var(--pp-text); }
.pp-korb-name i { margin-right: 6px; font-style: normal; font-weight: 600; color: var(--pp-akzent); }

.pp-korb-preis { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.pp-minus { color: var(--pp-akzent-tief); }

.pp-weg { display: inline-grid; place-items: center; width: 20px; height: 20px; border: 1px solid var(--pp-linie); border-radius: 50%; color: var(--pp-text); font-size: 13px; font-weight: 400; line-height: 1; }

.pp-korb-summe { display: flex; align-items: baseline; justify-content: space-between; margin: auto 0 0; padding-top: 16px; }
.pp-korb-summe span { font-size: 14px; color: var(--pp-text); }
.pp-korb-summe b { font-size: 22px; letter-spacing: -.3px; font-variant-numeric: tabular-nums; }

/* Produktseite */

.pp-produkt-name { margin: 0; font-size: 15px; font-weight: 600; }
.pp-produkt-preis { margin: 4px 0 14px; font-size: 24px; font-weight: 700; letter-spacing: -.4px; font-variant-numeric: tabular-nums; }

/* Liste im Admin */

.pp-liste { margin: 0; padding: 0; list-style: none; }
.pp-liste li { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--pp-linie); font-size: 13px; }
.pp-liste li:first-child { padding-top: 0; }
.pp-liste li:last-child { border-bottom: 0; }
.pp-liste i { position: relative; width: 28px; height: 16px; border-radius: 999px; background: var(--pp-akzent); }
.pp-liste i::after { content: ""; position: absolute; top: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; background: #fff; }
.pp-liste span { color: var(--pp-tinte); line-height: 1.4; overflow-wrap: anywhere; }
.pp-liste small { display: inline-grid; place-items: center; min-width: 22px; height: 22px; border-radius: 6px; background: var(--pp-grau); color: var(--pp-text); font-size: 12px; font-weight: 600; }

/* Meldungen */

.pp-meldung { margin: 0; padding: 12px 14px; border: 1px solid; border-radius: 10px; font-size: 14px; line-height: 1.5; }
.pp-meldung-gruen { background: var(--pp-akzent-hell); border-color: #c3e2d2; color: #0e5a40; }
.pp-meldung-blau { background: var(--pp-blau-hell); border-color: #c8dbf1; color: var(--pp-blau); }
.pp-meldung-klein { font-size: 13px; }

/* Menge */

.pp-stufen { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: auto 0; }
.pp-stufen p { margin: 0; padding: 10px 6px; border-radius: 10px; background: var(--pp-grau); text-align: center; }
.pp-stufen b { display: block; font-size: 22px; line-height: 1.2; }
.pp-stufen span { font-size: 12.5px; color: var(--pp-text); font-variant-numeric: tabular-nums; }
.pp-stufen .pp-stufe-an { background: var(--pp-akzent); }
.pp-stufen .pp-stufe-an b { color: #fff; }
.pp-stufen .pp-stufe-an span { color: rgba(255, 255, 255, .85); }

/* Vertrauen */

.pp-vertrauen { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px; margin: 36px 0 0; padding: 0; list-style: none; }
.pp-vertrauen li { display: inline-flex; align-items: center; gap: 8px; color: var(--pp-text); font-size: 15px; font-weight: 500; }
.pp-vertrauen svg { color: var(--pp-akzent); }

/* Abschnitte */

.pp-zone { padding: 112px 0; }
.pp-zone-grau { background: var(--pp-grau); }

.pp-zone h2 { font-size: 42px; line-height: 1.12; font-weight: 700; letter-spacing: -1px; }

.pp-titel { max-width: 720px; margin: 0 0 56px; }
.pp-titel p { margin: 18px 0 0; color: var(--pp-text); font-size: 19px; line-height: 1.6; }
.pp-titel.pp-mitte { margin-left: auto; margin-right: auto; }

/* Ohne / Mit */

.pp-vergleich {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 56px auto 0;
  border: 1px solid var(--pp-linie);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--pp-schatten);
  overflow: hidden;
}

.pp-vergleich-ohne, .pp-vergleich-mit { padding: 36px 40px 30px; }
.pp-vergleich-ohne { background: #fafbfc; border-right: 1px solid var(--pp-linie); }

.pp-vergleich-kopf { margin: 0 0 18px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.pp-vergleich-ohne .pp-vergleich-kopf { color: var(--pp-leise); }
.pp-vergleich-mit .pp-vergleich-kopf { color: var(--pp-akzent); }

.pp-vergleich ul { margin: 0; padding: 0; list-style: none; }
.pp-vergleich li { position: relative; margin: 0 0 16px; padding-left: 36px; font-size: 16px; line-height: 1.5; }
.pp-vergleich li::before { position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; font-size: 13px; font-weight: 700; line-height: 1; }
.pp-vergleich-ohne li { color: var(--pp-text); }
.pp-vergleich-ohne li::before { content: "×"; background: var(--pp-rot-hell); color: var(--pp-rot); font-size: 16px; font-weight: 500; }
.pp-vergleich-mit li { color: var(--pp-tinte); }
.pp-vergleich-mit li::before { content: "✓"; background: var(--pp-akzent); color: #fff; }

/* Aussage */

.pp-band { padding: 104px 0; background: #0f1a2b; }
.pp-band .pp-schild { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: #cfe9dc; }
.pp-band .pp-schild i { box-shadow: 0 0 0 4px rgba(22, 131, 92, .35); }

.pp-aussage { max-width: 920px; margin: 28px auto 0; color: #fff; font-size: 38px; line-height: 1.3; font-weight: 600; letter-spacing: -.6px; }

/* Merkmale mit Bild */

.pp-teilung { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; align-items: center; }

.pp-merkmale { margin: 0; padding: 0; list-style: none; }
.pp-merkmale li { display: flex; gap: 18px; margin: 0 0 30px; }
.pp-merkmale li:last-child { margin-bottom: 0; }
.pp-merkmale h3 { margin: 0 0 6px; font-size: 18px; font-weight: 650; line-height: 1.35; }
.pp-merkmale p { margin: 0; color: var(--pp-text); font-size: 16px; line-height: 1.6; }

.pp-symbol {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pp-akzent-hell);
  color: var(--pp-akzent-tief);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.pp-strich { flex: none; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pp-strich .pp-voll { fill: currentColor; stroke: none; }

.pp-schichten {
  position: relative;
  display: grid;
  gap: 0;
  min-height: 400px;
  padding: 48px 40px;
  align-content: center;
  border-radius: 24px;
  background:
    radial-gradient(70% 60% at 80% 10%, rgba(22, 131, 92, .14), transparent 70%),
    var(--pp-grau);
  overflow: hidden;
}
.pp-zone-grau .pp-schichten {
  background:
    radial-gradient(70% 60% at 20% 10%, rgba(22, 131, 92, .14), transparent 70%),
    #fff;
  border: 1px solid var(--pp-linie);
}

.pp-deko { position: absolute; top: 24px; right: 28px; color: var(--pp-akzent); opacity: .16; }

.pp-fenster { position: relative; z-index: 1; margin: 0; padding: 20px; border: 1px solid var(--pp-linie); border-radius: 14px; background: #fff; box-shadow: var(--pp-schatten); }
.pp-fenster-hinten { width: 88%; justify-self: start; }
.pp-fenster-vorn { width: 72%; justify-self: end; margin-top: -22px; z-index: 2; padding: 10px 20px; }

.pp-fenster-titel { margin: 0 0 14px; font-size: 14px; font-weight: 650; }

.pp-feldreihe { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 12px; }
.pp-feldreihe:last-child { margin-bottom: 0; }
.pp-feldreihe-eins { grid-template-columns: minmax(0, 1fr); }
.pp-feld { margin: 0; }
.pp-feld span { display: block; margin-bottom: 4px; font-size: 12px; color: var(--pp-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-feld b { display: block; padding: 8px 12px; border: 1px solid var(--pp-linie); border-radius: 8px; background: #fbfcfd; font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }

.pp-zeile { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 12px; align-items: center; margin: 0; padding: 10px 0; border-bottom: 1px solid var(--pp-linie); font-size: 14px; }
.pp-zeile:last-child { border-bottom: 0; }
.pp-zeile .pp-korb-bild { width: 36px; height: 36px; font-size: 15px; }
.pp-zeile span:nth-child(2) { font-weight: 600; }
.pp-zeile b { font-variant-numeric: tabular-nums; }

/* Tabelle */

.pp-tabelle { width: 88%; justify-self: start; }
.pp-tabelle p { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 12px 10px; border-bottom: 1px solid var(--pp-linie); font-size: 15px; font-variant-numeric: tabular-nums; }
.pp-tabelle span:nth-child(n+2) { text-align: right; }
.pp-tabelle .pp-tabelle-kopf { padding-top: 0; font-size: 12px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; color: var(--pp-text); }
.pp-tabelle .pp-tabelle-an { border-radius: 8px; border-bottom-color: transparent; background: var(--pp-akzent-hell); color: var(--pp-akzent-tief); font-weight: 650; }
.pp-tabelle .pp-tabelle-fuss { display: block; padding: 14px 10px 0; border-bottom: 0; font-size: 12.5px; color: var(--pp-leise); }

/* Kaufbox */

.pp-kaufbox { width: 100%; max-width: 400px; justify-self: center; }
.pp-platz { margin: 0 0 6px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--pp-leise); }
.pp-platz-leer { margin: 0 0 12px; padding: 9px 10px; border: 1px dashed #c9d1d9; border-radius: 8px; text-align: center; font-size: 12px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.pp-kaufbox .pp-meldung { margin-bottom: 0; }
.pp-kaufbox-preis { margin: 16px 0 14px; font-size: 30px; font-weight: 700; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.pp-kaufbox-knopf { display: grid; grid-template-columns: 60px minmax(0, 1fr); gap: 8px; margin: 0 0 14px; }
.pp-kaufbox-knopf span { padding: 10px 0; border: 1px solid var(--pp-linie); border-radius: 8px; text-align: center; font-size: 15px; }
.pp-kaufbox-knopf b { padding: 10px 0; border-radius: 8px; background: var(--pp-akzent); color: #fff; text-align: center; font-size: 15px; font-weight: 600; }

/* Karten */

.pp-netz { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.pp-netz-fuenf { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.pp-karte { margin: 0; padding: 26px; border: 1px solid var(--pp-linie); border-radius: 16px; background: #fff; }
.pp-karte .pp-symbol { margin-bottom: 18px; }
.pp-karte h3 { margin: 0 0 8px; font-size: 17px; font-weight: 650; line-height: 1.35; }
.pp-karte p { margin: 0; color: var(--pp-text); font-size: 15px; line-height: 1.6; }

.pp-karte-still { position: relative; padding-left: 30px; }
.pp-karte-still::before { content: ""; position: absolute; top: 26px; bottom: 26px; left: 0; width: 3px; border-radius: 0 3px 3px 0; background: var(--pp-akzent); }

/* Beispiele */

.pp-beispiele { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.pp-beispiel { margin: 0; padding: 26px; border: 1px solid var(--pp-linie); border-radius: 16px; background: #fff; }
.pp-beispiel h3 { margin: 0 0 8px; font-size: 18px; font-weight: 650; }
.pp-beispiel p { margin: 0; color: var(--pp-text); font-size: 15px; line-height: 1.6; }

.pp-beispiel .pp-betrag { display: inline-block; margin: 0 0 16px; padding: 4px 11px; border-radius: 999px; background: var(--pp-grau); color: var(--pp-tinte); font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; }
.pp-beispiel .pp-betrag-auf { background: var(--pp-bernstein-hell); color: var(--pp-bernstein); }
.pp-beispiel .pp-betrag-ab { background: var(--pp-akzent-hell); color: var(--pp-akzent-tief); }

/* Einrichten */

.pp-teilung-oben { align-items: start; }
.pp-titel-klebt { position: sticky; top: 108px; margin: 0; }
.pp-titel .pp-randnotiz { margin-top: 28px; padding: 14px 18px; border-left: 3px solid var(--pp-akzent); border-radius: 0 12px 12px 0; background: #fff; color: var(--pp-text); font-size: 15px; line-height: 1.55; }

.pp-schritte { margin: 0; padding: 0; list-style: none; counter-reset: pp-schritt; }
.pp-schritte li { position: relative; padding: 0 0 36px 64px; counter-increment: pp-schritt; }
.pp-schritte li:last-child { padding-bottom: 0; }
.pp-schritte li::before {
  content: counter(pp-schritt);
  position: absolute;
  top: -4px;
  left: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pp-linie);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--pp-schatten);
  color: var(--pp-akzent-tief);
  font-size: 17px;
  font-weight: 700;
}
.pp-schritte li::after { content: ""; position: absolute; top: 44px; bottom: 4px; left: 20.5px; width: 1px; background: #d5dce2; }
.pp-schritte li:last-child::after { display: none; }
.pp-schritte h3 { margin: 4px 0 8px; font-size: 19px; font-weight: 650; line-height: 1.35; }
.pp-schritte p { margin: 0; color: var(--pp-text); font-size: 16px; line-height: 1.65; }

.pp-pfad { padding: 2px 8px; border: 1px solid var(--pp-linie); border-radius: 6px; background: #fff; color: var(--pp-tinte); font-size: 14.5px; font-weight: 500; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* Code im Fliesstext der Fragen */

.pp-fragen code { padding: 1px 6px; border-radius: 5px; background: var(--pp-grau); color: var(--pp-tinte); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .86em; white-space: nowrap; }

/* Preis */

.pp-preis-lede { margin: 18px 0 0; color: var(--pp-text); font-size: 19px; line-height: 1.6; }

.pp-inklusive { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.pp-inklusive li { position: relative; padding-left: 36px; font-size: 17px; color: var(--pp-tinte); }
.pp-inklusive li::before { content: "✓"; position: absolute; top: 1px; left: 0; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--pp-akzent); color: #fff; font-size: 13px; font-weight: 700; line-height: 1; }

.pp-preis-klein { margin: 26px 0 0; color: var(--pp-text); font-size: 14.5px; line-height: 1.6; }

.pp-takt-block { position: relative; width: 100%; max-width: 460px; justify-self: center; }
.pp-takt-knopf { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.pp-takt-wahl { display: flex; gap: 4px; width: fit-content; margin: 0 auto 18px; padding: 4px; border: 1px solid var(--pp-linie); border-radius: 999px; background: #fff; }
.pp-takt-wahl label { padding: 8px 16px; border-radius: 999px; color: var(--pp-text); font-size: 14.5px; font-weight: 600; cursor: pointer; }
.pp-takt-wahl label:hover { color: var(--pp-tinte); }
.pp-takt-wahl label i { margin-left: 8px; padding: 2px 8px; border-radius: 999px; background: var(--pp-akzent-hell); color: var(--pp-akzent-tief); font-size: 12px; font-style: normal; font-weight: 700; }
#pp-takt-jahr:checked ~ .pp-takt-wahl .pp-takt-jahr,
#pp-takt-monat:checked ~ .pp-takt-wahl .pp-takt-monat { background: var(--pp-akzent); color: #fff; }
#pp-takt-jahr:checked ~ .pp-takt-wahl .pp-takt-jahr i { background: rgba(255, 255, 255, .22); color: #fff; }
#pp-takt-jahr:focus-visible ~ .pp-takt-wahl .pp-takt-jahr,
#pp-takt-monat:focus-visible ~ .pp-takt-wahl .pp-takt-monat { outline: 2px solid var(--pp-akzent); outline-offset: 2px; }
#pp-takt-jahr:checked ~ .pp-preiskarte .pp-preis-monat,
#pp-takt-monat:checked ~ .pp-preiskarte .pp-preis-jahr { display: none; }

.pp-preiskarte { padding: 34px 32px 26px; border: 1px solid var(--pp-linie); border-radius: 20px; background: #fff; box-shadow: var(--pp-schatten); text-align: center; }
.pp-preiskarte-name { margin: 0; color: var(--pp-text); font-size: 15px; font-weight: 600; }
.pp-preiskarte-preis { margin: 14px 0 8px; color: var(--pp-tinte); font-size: 54px; font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; }
.pp-preiskarte-preis small { color: var(--pp-text); font-size: 18px; font-weight: 500; letter-spacing: 0; }
.pp-preiskarte-takt { min-height: 54px; margin: 0 0 24px; color: var(--pp-text); font-size: 15px; }
.pp-preiskarte-takt b { display: block; margin-top: 4px; color: var(--pp-akzent-tief); font-weight: 700; }
.pp-knopf-breit { width: 100%; justify-content: center; }
.pp-preiskarte-fuss { margin: 14px 0 0; color: var(--pp-leise); font-size: 13px; }

/* Fragen */

.pp-fragen { margin-top: 48px; border-top: 1px solid var(--pp-linie); }
.pp-fragen details { border-bottom: 1px solid var(--pp-linie); }
.pp-fragen summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 600; line-height: 1.4; }
.pp-fragen summary::-webkit-details-marker { display: none; }
.pp-fragen summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--pp-linie);
  border-radius: 50%;
  color: var(--pp-akzent);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}
.pp-fragen details[open] summary::after { content: "−"; }
.pp-fragen details p { max-width: 720px; margin: 0 0 24px; color: var(--pp-text); font-size: 16px; line-height: 1.65; }

/* Schluss */

.pp-zone-schluss { padding: 24px 0 112px; }
.pp-zone-grau + .pp-zone-schluss { padding-top: 80px; }

.pp-schluss {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 64px;
  border-radius: 28px;
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(255, 255, 255, .16), transparent 60%),
    linear-gradient(135deg, #0f5c43 0%, #16835c 55%, #2bb48a 100%);
  color: #fff;
}
.pp-schluss h2 { color: #fff; font-size: 38px; }
.pp-schluss p { margin: 14px 0 0; max-width: 560px; color: rgba(255, 255, 255, .86); font-size: 18px; }
.pp-schluss .pp-knopfreihe { margin: 0; justify-content: flex-end; }

/* Fuß */

.pp-fuss { padding: 64px 0 28px; border-top: 1px solid var(--pp-linie); background: var(--pp-grund); }
.pp-fuss-raster { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
.pp-fuss-absender p { margin: 14px 0 18px; max-width: 280px; color: var(--pp-text); font-size: 15px; text-wrap: balance; }
.pp-fuss-absender img { display: block; width: 150px; height: auto; }
.pp-fuss-titel { margin: 4px 0 14px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pp-leise); }
.pp-fuss ul { margin: 0; padding: 0; list-style: none; }
.pp-fuss li { margin: 0 0 9px; }
.pp-fuss nav a { color: var(--pp-tinte); font-size: 15px; text-decoration: none; }
.pp-fuss nav a:hover { color: var(--pp-akzent); text-decoration: underline; }
.pp-fuss-reihe { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin: 48px 0 0; padding-top: 22px; border-top: 1px solid var(--pp-linie); color: var(--pp-text); font-size: 14px; }
.pp-fuss-reihe a { color: var(--pp-text); }
.pp-fuss-reihe a:hover { color: var(--pp-tinte); }

/* Unterseiten: Kopf und Brotkrumen */

.pp-seitenkopf {
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--pp-linie);
  background:
    radial-gradient(50% 120% at 85% 0%, rgba(22, 131, 92, .10), transparent 70%),
    linear-gradient(180deg, #f3f9f6 0%, var(--pp-grund) 100%);
}
.pp-seitenkopf h1 { max-width: 880px; margin: 18px 0 0; font-size: 50px; line-height: 1.1; font-weight: 700; letter-spacing: -1.2px; }
.pp-seitenkopf .pp-lede { max-width: 760px; margin: 20px 0 0; }

.pp-krume { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; font-size: 14px; color: var(--pp-text); }
.pp-krume a { color: var(--pp-text); text-decoration: none; }
.pp-krume a:hover { color: var(--pp-akzent); text-decoration: underline; }
.pp-krume-teil { color: var(--pp-leise); }
.pp-krume-hier { color: var(--pp-tinte); font-weight: 500; }

/* Fliesstext */

.pp-text { max-width: 760px; }
.pp-text > :first-child { margin-top: 0; }
.pp-text h2 { margin: 56px 0 0; font-size: 32px; line-height: 1.2; letter-spacing: -.6px; }
.pp-text h3 { margin: 32px 0 0; font-size: 20px; font-weight: 650; line-height: 1.35; }
.pp-text p, .pp-text li { color: var(--pp-text); font-size: 17px; line-height: 1.7; }
.pp-text p { margin: 14px 0 0; }
.pp-text ul, .pp-text ol { margin: 14px 0 0; padding-left: 22px; }
.pp-text li { margin: 6px 0 0; }
.pp-text strong { color: var(--pp-tinte); font-weight: 600; }
.pp-text a, .pp-karte p a, .pp-fragen a, .pp-merkmale a { color: var(--pp-akzent-tief); text-decoration: underline; text-underline-offset: 2px; }
.pp-text a:hover, .pp-karte p a:hover, .pp-fragen a:hover, .pp-merkmale a:hover { color: var(--pp-akzent); }

.pp-text code, .pp-tafel code, .pp-karte code, .pp-schritte code { padding: 1px 6px; border-radius: 5px; background: var(--pp-grau); color: var(--pp-tinte); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .86em; white-space: nowrap; }
.pp-zone-grau .pp-text code, .pp-zone-grau .pp-schritte code { background: #fff; }

.pp-mehr { display: inline-block; margin-top: 18px; color: var(--pp-akzent-tief); font-size: 16px; font-weight: 600; text-decoration: none; }
.pp-mehr svg { margin-left: 6px; vertical-align: -2px; }
.pp-mehr:hover { color: var(--pp-akzent); text-decoration: underline; }

/* Karten mit Link */

.pp-karte-link { position: relative; }
.pp-karte-link h3 a { color: var(--pp-tinte); text-decoration: none; }
.pp-karte-link h3 a::after { content: ""; position: absolute; inset: 0; border-radius: 16px; }
.pp-karte-link:hover { border-color: #c5ded2; box-shadow: var(--pp-schatten); }
.pp-karte-link:hover h3 a { color: var(--pp-akzent-tief); }
.pp-karte-hier { border-color: var(--pp-akzent); }
.pp-karte-hier h3 a { color: var(--pp-akzent-tief); }

.pp-netz-drei { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pp-netz-zwei { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Tafeln */

.pp-tafel-rahmen { position: relative; overflow-x: auto; border: 1px solid var(--pp-linie); border-radius: 16px; background: #fff; }
.pp-tafel { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 15px; }
.pp-tafel-schmal { min-width: 0; hyphens: auto; }
.pp-tafel-schmal th, .pp-tafel-schmal td { padding: 12px 14px; }
.pp-tafel th, .pp-tafel td { padding: 14px 18px; border-bottom: 1px solid var(--pp-linie); text-align: left; vertical-align: top; line-height: 1.55; }
.pp-tafel thead th { background: var(--pp-grau); color: var(--pp-tinte); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.pp-tafel tbody th { color: var(--pp-tinte); font-weight: 600; }
.pp-tafel td { color: var(--pp-text); }
.pp-tafel tr:last-child th, .pp-tafel tr:last-child td { border-bottom: 0; }
.pp-tafel .pp-tafel-eigen { background: #f6fbf8; }
.pp-tafel thead .pp-tafel-eigen { background: var(--pp-akzent-hell); color: var(--pp-akzent-tief); }

.pp-wertung { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 50%; font-size: 12px; font-weight: 700; line-height: 1; vertical-align: -5px; }
.pp-wertung-ja { background: var(--pp-akzent); color: #fff; }
.pp-wertung-teils { background: var(--pp-bernstein-hell); color: var(--pp-bernstein); }
.pp-wertung-nein { background: var(--pp-rot-hell); color: var(--pp-rot); }

/* Rechenbeispiel */

.pp-rechnung { max-width: 560px; margin: 0; padding: 20px 22px; border: 1px solid var(--pp-linie); border-radius: 14px; background: #fff; box-shadow: var(--pp-schatten); }
.pp-rechnung-titel { margin: 0 0 10px; font-size: 14px; font-weight: 650; color: var(--pp-tinte); }
.pp-rechnung ol { margin: 0; padding: 0; list-style: none; }
.pp-rechnung li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--pp-linie); color: var(--pp-text); font-size: 15px; font-variant-numeric: tabular-nums; }
.pp-rechnung li b { color: var(--pp-tinte); font-weight: 600; white-space: nowrap; }
.pp-rechnung li.pp-rechnung-an { color: var(--pp-akzent-tief); }
.pp-rechnung li.pp-rechnung-an b { color: var(--pp-akzent-tief); }
.pp-rechnung-fuss { margin: 12px 0 0; color: var(--pp-leise); font-size: 13px; }

.pp-rechnungen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

/* Beispielseiten */

.pp-steckbrief { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0; }
.pp-steckbrief div { padding: 16px 18px; border: 1px solid var(--pp-linie); border-radius: 14px; background: #fff; }
.pp-steckbrief dt { color: var(--pp-leise); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.pp-steckbrief dd { margin: 6px 0 0; color: var(--pp-tinte); font-size: 16px; font-weight: 600; line-height: 1.4; }

.pp-aufbau { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 24px; align-items: start; }
.pp-aufbau-spalte { display: grid; gap: 20px; min-width: 0; }

.pp-einstellung { margin: 0; padding: 0; list-style: none; border: 1px solid var(--pp-linie); border-radius: 16px; background: #fff; box-shadow: var(--pp-schatten); }
.pp-einstellung-kopf { display: flex; justify-content: space-between; gap: 12px; margin: 0; padding: 16px 20px; border-bottom: 1px solid var(--pp-linie); }
.pp-einstellung-kopf span { font-size: 14px; font-weight: 650; }
.pp-einstellung-kopf em { color: var(--pp-leise); font-size: 12px; font-style: normal; }
.pp-einstellung li { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; padding: 11px 20px; border-bottom: 1px solid var(--pp-linie); font-size: 14.5px; }
.pp-einstellung li:last-child { border-bottom: 0; }
.pp-einstellung li span { color: var(--pp-text); }
.pp-einstellung li span small { display: block; color: var(--pp-leise); font-size: 12px; }
.pp-einstellung li b { color: var(--pp-tinte); font-weight: 600; overflow-wrap: anywhere; }

.pp-achtung { margin: 0; padding: 18px 20px; border: 1px solid #f0dcc3; border-radius: 14px; background: var(--pp-bernstein-hell); color: #6b3d0c; font-size: 15.5px; line-height: 1.6; }
.pp-achtung b { color: #5a3309; }

/* Handbuch */

.pp-reiter-karte { margin: 0 0 22px; padding: 26px 28px; border: 1px solid var(--pp-linie); border-radius: 18px; background: #fff; }
.pp-reiter-karte h2 { margin: 0; font-size: 26px; letter-spacing: -.4px; }
.pp-reiter-karte h3 { margin: 24px 0 4px; color: var(--pp-leise); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.pp-feldliste { margin: 0; }
.pp-feldliste > div { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: 6px 28px; padding: 16px 0; border-top: 1px solid var(--pp-linie); }
.pp-feldliste dt { color: var(--pp-tinte); font-size: 16px; font-weight: 600; line-height: 1.45; }
.pp-feldliste dt small { display: block; margin-top: 4px; color: var(--pp-leise); font-size: 12.5px; font-weight: 500; }
.pp-feldliste dd { margin: 0; color: var(--pp-text); font-size: 15.5px; line-height: 1.6; }
.pp-feldliste dd p { margin: 0; }
.pp-feldliste dd p + p { margin-top: 6px; }
.pp-marken { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pp-marken span { padding: 2px 9px; border-radius: 999px; background: var(--pp-grau); color: var(--pp-tinte); font-size: 12.5px; font-weight: 600; }
.pp-marken .pp-marke-pflicht { background: var(--pp-rot-hell); color: var(--pp-rot); }
.pp-marken .pp-marke-standard { background: var(--pp-akzent-hell); color: var(--pp-akzent-tief); }

.pp-begriffe { margin: 0; }
.pp-begriffe > div { padding: 20px 0; border-top: 1px solid var(--pp-linie); }
.pp-begriffe dt { color: var(--pp-tinte); font-size: 18px; font-weight: 650; }
.pp-begriffe dd { margin: 6px 0 0; max-width: 760px; color: var(--pp-text); font-size: 16px; line-height: 1.65; }

.pp-symbole { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.pp-symbole li { padding: 6px 12px; border: 1px solid var(--pp-linie); border-radius: 999px; background: #fff; color: var(--pp-tinte); font-size: 14px; }

/* Rechtstexte */

.pp-recht { max-width: 820px; overflow-wrap: break-word; hyphens: auto; }
.pp-recht h2 { margin: 36px 0 0; font-size: 24px; letter-spacing: -.3px; }
.pp-recht h3 { margin: 28px 0 0; font-size: 18px; }
.pp-recht p, .pp-recht li { color: var(--pp-text); font-size: 16px; line-height: 1.7; }
.pp-recht p { margin: 12px 0 0; }
.pp-recht ul { margin: 12px 0 0; padding-left: 22px; }
.pp-recht a { color: var(--pp-akzent-tief); }
.pp-quelle { color: var(--pp-leise); font-size: 14px; }

/* 404 */

.pp-fehlt { padding: 120px 0 140px; text-align: center; }
.pp-fehlt h1 { margin: 22px auto 16px; max-width: 760px; font-size: 48px; letter-spacing: -1px; }
.pp-fehlt .pp-lede { margin-bottom: 0; }


/* Kleinteile */

.pp-held-weiter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; margin: 20px 0 0; font-size: 15px; }
.pp-held-weiter a { color: var(--pp-akzent-tief); font-weight: 500; text-underline-offset: 3px; }
.pp-held-weiter a:hover { color: var(--pp-akzent); }

.pp-merkmale h3 a { color: inherit; text-decoration: none; }
.pp-merkmale h3 a:hover { color: var(--pp-akzent-tief); text-decoration: underline; }

.pp-meldung-gelb { background: #fdf6e3; border-color: #efdca7; color: #735506; }
.pp-meldung-rot { background: var(--pp-rot-hell); border-color: #f1c6c3; color: #8f2c27; }

.pp-zone-knapp { padding: 48px 0; }
.pp-schmal-breit { max-width: 1040px; }
.pp-feld-hinweis { margin: 10px 0 0; color: var(--pp-text); font-size: 15.5px; }
.pp-schritte-breit { max-width: 860px; }

.pp-unsichtbar { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.pp-netz + .pp-achtung, .pp-tafel-rahmen + .pp-achtung { margin-top: 24px; }
.pp-mehr + .pp-mehr { margin-left: 26px; }

.pp-zelle { display: flex; align-items: flex-start; gap: 10px; }
.pp-zelle .pp-wertung { flex: none; margin: 1px 0 0; }

.pp-tipp { margin: 0; padding: 18px 20px; border: 1px solid #c8dbf1; border-radius: 14px; background: var(--pp-blau-hell); color: var(--pp-blau); font-size: 15.5px; line-height: 1.6; }
.pp-tipp b { color: #163f6f; }

/* Fokus fuer Tastatur */

a:focus-visible, summary:focus-visible { outline: 2px solid var(--pp-akzent); outline-offset: 3px; border-radius: 6px; }
.pp-knopf:focus-visible { outline: 2px solid var(--pp-akzent-tief); outline-offset: 3px; }
.pp-schluss a:focus-visible { outline-color: #fff; }

/* Breiten */

@media (max-width: 1180px) {
  .pp-nav { gap: 18px; }
  .pp-nav a { font-size: 14.5px; }
}

@media (max-width: 1080px) {
  .pp-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pp-bento-mitte { grid-column: 1 / -1; order: -1; }
  .pp-netz { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pp-beispiele { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pp-teilung { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .pp-titel-klebt { position: static; }
  .pp-schluss { grid-template-columns: minmax(0, 1fr); }
  .pp-schluss .pp-knopfreihe { justify-content: flex-start; }
  .pp-fuss-raster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pp-netz-drei { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pp-netz-fuenf { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pp-steckbrief { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pp-aufbau, .pp-rechnungen { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 1020px) {
  html { scroll-padding-top: 128px; }
  .pp-kopf-innen { flex-wrap: wrap; height: auto; gap: 0 24px; padding: 12px 24px 0; }
  .pp-kopf-aktion { margin-left: auto; }
  .pp-nav { order: 3; flex: 1 0 100%; justify-content: flex-start; gap: 22px; margin: 4px -24px 0; padding: 0 24px 2px; overflow-x: auto; scrollbar-width: none; }
  .pp-nav a { padding: 11px 0; }
  .pp-nav::-webkit-scrollbar { display: none; }
  .pp-nav a[aria-current="page"]::after, .pp-nav .pp-nav-zweig::after { bottom: -2px; }
}

@media (max-width: 900px) {
  .pp-seitenkopf h1 { font-size: 40px; }
  .pp-held h1 { font-size: 46px; letter-spacing: -1px; }
  .pp-zone h2 { font-size: 34px; }
  .pp-text h2 { font-size: 30px; }
  .pp-reiter-karte h2 { font-size: 26px; }
  .pp-recht h2 { font-size: 24px; }
  .pp-aussage { font-size: 30px; }
}

@media (max-width: 640px) {
  .pp-kopf-demo { display: none; }
  .pp-kopf-aktion { gap: 14px; }
  .pp-held { padding-top: 56px; }
  .pp-held h1 { font-size: 36px; }
  .pp-lede { font-size: 18px; }
  .pp-spur { padding: 0 16px; }
  .pp-buehne { margin-top: 48px; padding: 8px; }
  .pp-kachel, .pp-kachel-korb { padding: 16px; }
  .pp-korb li { grid-template-columns: 34px minmax(0, 1fr) auto; gap: 10px; }
  .pp-korb-bild { width: 34px; height: 34px; font-size: 15px; }
  .pp-korb-name { font-size: 14px; }
  .pp-korb-preis { font-size: 14px; }
  .pp-buehne::before { border-radius: 20px; }
  .pp-bento { grid-template-columns: minmax(0, 1fr); }
  .pp-zone { padding: 72px 0; }
  .pp-zone h2 { font-size: 30px; }
  .pp-reiter-karte h2 { font-size: 22px; }
  .pp-recht h2 { font-size: 21px; }
  .pp-zone-grau + .pp-zone-schluss { padding-top: 48px; }
  .pp-titel { margin-bottom: 40px; }
  .pp-titel p { font-size: 17px; }
  .pp-vergleich { grid-template-columns: minmax(0, 1fr); }
  .pp-vergleich-ohne { border-right: 0; border-bottom: 1px solid var(--pp-linie); }
  .pp-vergleich-ohne, .pp-vergleich-mit { padding: 28px 24px 22px; }
  .pp-band { padding: 72px 0; }
  .pp-aussage { font-size: 24px; }
  .pp-schichten { padding: 32px 18px; min-height: 0; }
  .pp-fenster-hinten, .pp-fenster-vorn, .pp-tabelle { width: 100%; }
  .pp-feldreihe { align-items: end; }
  .pp-feld span { white-space: normal; }
  .pp-tabelle p { gap: 8px; padding: 12px 6px; }
  .pp-tabelle .pp-tabelle-kopf { font-size: 11px; letter-spacing: 0; }
  .pp-netz, .pp-beispiele { grid-template-columns: minmax(0, 1fr); }
  .pp-tafel-schmal { min-width: 560px; }
  .pp-schritte li { padding-left: 56px; }
  .pp-preiskarte { padding: 28px 20px 22px; }
  .pp-preiskarte-preis { font-size: 44px; }
  .pp-takt-wahl label { padding: 8px 12px; font-size: 13.5px; }
  .pp-schluss { padding: 36px 24px; }
  .pp-schluss h2 { font-size: 30px; }
  .pp-kopf-innen { gap: 0 12px; padding: 10px 16px 0; }
  .pp-kopf .pp-marke { gap: 8px; font-size: 15.5px; }
  .pp-kopf-aktion { gap: 12px; }
  .pp-knopf-klein { padding: 7px 13px; }
  .pp-nav { margin: 2px -16px 0; padding: 0 16px 1px; }
  .pp-fuss li { margin: 0; }
  .pp-fuss nav a { display: inline-block; padding: 7px 0; }
  .pp-held-weiter a, .pp-mehr { padding: 6px 0; }
  .pp-seitenkopf { padding: 36px 0 40px; }
  .pp-seitenkopf h1 { font-size: 32px; letter-spacing: -.6px; }
  .pp-fuss-raster, .pp-netz-zwei, .pp-netz-drei, .pp-netz-fuenf, .pp-steckbrief { grid-template-columns: minmax(0, 1fr); }
  .pp-feldliste > div { grid-template-columns: minmax(0, 1fr); }
  .pp-reiter-karte { padding: 20px 18px; }
  .pp-text h2 { font-size: 26px; }
  .pp-einstellung li { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .pp-fehlt { padding: 72px 0 88px; }
  .pp-fehlt h1 { font-size: 34px; }
}

@media (max-width: 380px) {
  .pp-kopf-link { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
