:root {
  --pp-green: #47ab38;
  --pp-green-dark: #2d8625;
  --pp-green-soft: #edf8eb;
  --pp-ink: #17231f;
  --pp-text: #46534e;
  --pp-muted: #74807b;
  --pp-line: #dfe8e3;
  --pp-surface: #f7f9f8;
  --pp-white: #ffffff;
  --pp-red: #ff4d55;
  --pp-yellow: #ffd43b;
  --pp-shadow: 0 18px 60px rgba(27, 57, 45, .1);
  --pp-radius: 26px;
}

* {
  box-sizing: border-box;
}

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

body.product-page {
  margin: 0;
  color: var(--pp-ink);
  background: var(--pp-white);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.product-page img {
  display: block;
  max-width: 100%;
}

.product-page button,
.product-page input,
.product-page select {
  font: inherit;
}

.product-page a {
  color: inherit;
  text-decoration: none;
}

.pp-container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.pp-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--pp-green-dark);
  border-radius: 10px;
  transform: translateY(-150%);
}

.pp-skip:focus {
  transform: translateY(0);
}

.pp-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(35, 63, 52, .08);
  backdrop-filter: blur(14px);
}

.pp-header__row {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.pp-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 275px;
}

.pp-logo img {
  width: 121px;
  height: auto;
  filter: brightness(0) saturate(100%);
}

.pp-logo__text {
  max-width: 150px;
  color: var(--pp-muted);
  font-size: 11px;
  line-height: 1.35;
}

.pp-nav {
  margin-left: auto;
}

.pp-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-nav a {
  font-size: 14px;
  font-weight: 700;
}

.pp-nav a:hover,
.pp-nav a:focus-visible {
  color: var(--pp-green-dark);
}

.pp-header__phone {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 800;
}

.pp-header__phone small {
  display: block;
  color: var(--pp-muted);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.pp-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--pp-line);
  border-radius: 14px;
  background: #fff;
}

.pp-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--pp-ink);
}

.pp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 18px;
  padding: 0;
  color: var(--pp-muted);
  font-size: 13px;
  list-style: none;
}

.pp-breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #b1bab6;
}

.pp-breadcrumbs a:hover {
  color: var(--pp-green-dark);
}

.pp-hero {
  padding-bottom: 34px;
}

.pp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .85fr);
  gap: 34px;
  align-items: stretch;
}

.pp-product-visual,
.pp-buybox {
  border: 1px solid #edf1ef;
  border-radius: var(--pp-radius);
  background: var(--pp-surface);
}

.pp-product-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 36px;
  overflow: hidden;
}

.pp-product-visual::before {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 171, 56, .15), rgba(71, 171, 56, 0) 70%);
  content: "";
}

.pp-product-visual__image {
  position: relative;
  z-index: 1;
  width: min(520px, 90%);
  height: auto;
  object-fit: contain;
}

.pp-visual-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #22691d;
  background: #fff;
  border: 1px solid #d8ecd4;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(34, 76, 56, .08);
  font-size: 13px;
  font-weight: 800;
}

.pp-visual-badge::before {
  width: 9px;
  height: 9px;
  background: var(--pp-green);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(71, 171, 56, .12);
}

.pp-visual-notes {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pp-visual-notes span {
  padding: 12px 10px;
  text-align: center;
  color: var(--pp-text);
  background: rgba(255, 255, 255, .94);
  border: 1px solid #e3ebe7;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
}

.pp-buybox {
  padding: 38px;
  background: #fff;
  box-shadow: var(--pp-shadow);
}

.pp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--pp-green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pp-kicker::before {
  width: 24px;
  height: 2px;
  background: var(--pp-green);
  content: "";
}

.pp-buybox h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.pp-lead {
  margin: 0 0 22px;
  color: var(--pp-text);
  font-size: 17px;
}

.pp-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.pp-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #3f4f48;
  background: var(--pp-surface);
  border: 1px solid #e6ece9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.pp-status--green {
  color: #24691e;
  background: var(--pp-green-soft);
  border-color: #d7ecd4;
}

.pp-status__dot {
  width: 8px;
  height: 8px;
  background: var(--pp-green);
  border-radius: 50%;
}

.pp-specs-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.pp-spec-quick {
  min-width: 0;
  padding: 14px;
  background: var(--pp-surface);
  border-radius: 14px;
}

.pp-spec-quick strong {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
  line-height: 1.2;
}

.pp-spec-quick span {
  color: var(--pp-muted);
  font-size: 11px;
}

.pp-option-group {
  margin: 20px 0;
  padding: 0;
  border: 0;
}

.pp-option-group legend {
  width: 100%;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
}

.pp-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pp-option {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--pp-text);
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .2s, background .2s, color .2s;
}

.pp-option:hover,
.pp-option:focus-visible {
  border-color: var(--pp-green);
}

.pp-option.is-active,
.pp-option[aria-pressed="true"] {
  color: #fff;
  background: var(--pp-green);
  border-color: var(--pp-green);
}

.pp-variant-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
  color: var(--pp-muted);
  font-size: 11px;
}

.pp-variant-note span {
  padding: 8px 10px;
  background: #fbfcfb;
  border: 1px solid #edf1ef;
  border-radius: 10px;
}

.pp-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.pp-price {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}

.pp-old-price {
  color: #9ba4a0;
  font-size: 17px;
  text-decoration: line-through;
}

.pp-discount {
  align-self: center;
  padding: 5px 9px;
  color: #785d00;
  background: var(--pp-yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.pp-price-caption {
  margin: 7px 0 18px;
  color: var(--pp-muted);
  font-size: 12px;
}

.pp-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  color: #fff;
  background: linear-gradient(135deg, #57bd47, #3da532);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 13px 30px rgba(71, 171, 56, .24);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.pp-btn:hover,
.pp-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(71, 171, 56, .32);
}

.pp-btn--wide {
  width: 100%;
}

.pp-btn--outline {
  color: var(--pp-green-dark);
  background: #fff;
  border: 1px solid var(--pp-green);
  box-shadow: none;
}

.pp-buybox__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.pp-mini-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: var(--pp-green-dark);
  background: var(--pp-green-soft);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.pp-trustline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.pp-trustline__item {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 16px;
}

.pp-trustline__item strong {
  display: block;
  font-size: 14px;
}

.pp-trustline__item span {
  color: var(--pp-muted);
  font-size: 12px;
}

.pp-anchor-nav {
  position: static;
  z-index: 80;
  background: rgba(255, 255, 255, .96);
  border-block: 1px solid var(--pp-line);
  backdrop-filter: blur(12px);
}

.pp-anchor-nav__scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pp-anchor-nav__scroll::-webkit-scrollbar {
  display: none;
}

.pp-anchor-nav a {
  flex: 0 0 auto;
  padding: 15px 0;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 800;
}

.pp-anchor-nav a:hover,
.pp-anchor-nav a:focus-visible {
  color: var(--pp-green-dark);
  border-color: var(--pp-green);
}

.pp-section {
  padding: 82px 0;
}

.pp-section--soft {
  background: var(--pp-surface);
}

.pp-section--dark {
  color: #fff;
  background: #173229;
}

.pp-section__head {
  max-width: 820px;
  margin-bottom: 34px;
}

.pp-section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.pp-section__head p {
  margin: 0;
  color: var(--pp-text);
  font-size: 17px;
}

.pp-section--dark .pp-section__head p {
  color: #c9d8d2;
}

.pp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pp-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 20px;
}

.pp-card__num,
.pp-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--pp-green-dark);
  background: var(--pp-green-soft);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 900;
}

.pp-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.pp-card p {
  margin: 0;
  color: var(--pp-text);
  font-size: 14px;
}

.pp-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pp-fit {
  padding: 30px;
  border-radius: 22px;
}

.pp-fit--yes {
  background: #f0faee;
  border: 1px solid #d2eccc;
}

.pp-fit--no {
  background: #fff7f7;
  border: 1px solid #f0dddd;
}

.pp-fit h3 {
  margin: 0 0 17px;
  font-size: 23px;
}

.pp-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pp-checklist li {
  position: relative;
  padding-left: 29px;
  color: var(--pp-text);
}

.pp-checklist li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--pp-green);
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.pp-fit--no .pp-checklist li::before {
  background: #d66a6f;
  content: "!";
}

.pp-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 20px;
}

.pp-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pp-table th,
.pp-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--pp-line);
  text-align: left;
  vertical-align: top;
}

.pp-table th {
  color: var(--pp-muted);
  background: #fbfcfb;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pp-table td {
  color: var(--pp-text);
  font-size: 14px;
}

.pp-table tr:last-child td {
  border-bottom: 0;
}

.pp-table strong {
  color: var(--pp-ink);
}

.pp-table .is-current td {
  background: #f1faef;
}

.pp-note {
  margin-top: 16px;
  padding: 16px 18px;
  color: var(--pp-text);
  background: #fffce9;
  border: 1px solid #eee6aa;
  border-radius: 14px;
  font-size: 13px;
}

.pp-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 24px;
}

.pp-spec-list {
  margin: 0;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 20px;
  overflow: hidden;
}

.pp-spec-list div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--pp-line);
}

.pp-spec-list div:last-child {
  border-bottom: 0;
}

.pp-spec-list dt {
  color: var(--pp-muted);
}

.pp-spec-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.pp-engineer {
  position: relative;
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg, #2d6f34, #173229);
  border-radius: 22px;
  overflow: hidden;
}

.pp-engineer::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  content: "";
}

.pp-engineer__label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: #d9f2d4;
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pp-engineer h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.25;
}

.pp-engineer p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: #d7e5df;
}

.pp-engineer .pp-btn {
  position: relative;
  z-index: 1;
}

.pp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: pp-step;
}

.pp-step {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 20px;
  counter-increment: pp-step;
}

.pp-step::before {
  display: block;
  margin-bottom: 28px;
  color: var(--pp-green);
  content: "0" counter(pp-step);
  font-size: 28px;
  font-weight: 900;
}

.pp-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pp-step p {
  margin: 0;
  color: var(--pp-text);
  font-size: 14px;
}

.pp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pp-process__item {
  padding: 24px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
}

.pp-process__item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #153126;
  background: #9ce290;
  border-radius: 12px;
  font-weight: 900;
}

.pp-process__item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pp-process__item p {
  margin: 0;
  color: #c9d8d2;
  font-size: 13px;
}

.pp-cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pp-cost-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 22px;
}

.pp-cost-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.pp-cost-card__price {
  margin-bottom: 16px;
  color: var(--pp-green-dark);
  font-size: 34px;
  font-weight: 900;
}

.pp-cost-card p {
  color: var(--pp-text);
}

.pp-faq {
  display: grid;
  gap: 12px;
}

.pp-faq details {
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 16px;
}

.pp-faq summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.pp-faq summary::-webkit-details-marker {
  display: none;
}

.pp-faq summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--pp-green-dark);
  background: var(--pp-green-soft);
  border-radius: 50%;
  content: "+";
  transform: translateY(-50%);
}

.pp-faq details[open] summary::after {
  content: "−";
}

.pp-faq__answer {
  padding: 0 22px 22px;
  color: var(--pp-text);
}

.pp-faq__answer p {
  margin: 0;
}

.pp-cta {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
  padding: 46px;
  color: #fff;
  background: linear-gradient(135deg, #1b3f33, #2e7c39);
  border-radius: 28px;
}

.pp-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.1;
}

.pp-cta p {
  margin: 0;
  color: #d6e6df;
}

.pp-cta__actions {
  display: grid;
  gap: 10px;
}

.pp-cta__actions .pp-btn--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
}

.pp-footer {
  margin-top: 82px;
  padding: 44px 0 110px;
  color: #d7e1dd;
  background: #15251f;
}

.pp-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr .8fr;
  gap: 40px;
}

.pp-footer .pp-logo__text {
  color: #aebdb7;
}

.pp-footer .pp-logo img {
  filter: none;
}

.pp-footer__legal,
.pp-footer__links {
  color: #aebdb7;
  font-size: 12px;
}

.pp-footer__links {
  display: grid;
  gap: 8px;
}

.pp-footer__links a:hover {
  color: #fff;
}

.pp-mobile-bar {
  display: none;
}

.pp-mobile-bar a,
.pp-mobile-bar button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.pp-mobile-bar a {
  color: var(--pp-green-dark);
  background: var(--pp-green-soft);
}

.pp-mobile-bar button {
  color: #fff;
  background: var(--pp-green);
  border: 0;
}

.pp-dialog {
  width: min(540px, calc(100% - 24px));
  padding: 0;
  color: var(--pp-ink);
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(11, 34, 25, .3);
}

.pp-dialog::backdrop {
  background: rgba(12, 28, 22, .72);
  backdrop-filter: blur(5px);
}

.pp-dialog__inner {
  position: relative;
  padding: 36px;
}

.pp-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--pp-text);
  background: var(--pp-surface);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
}

.pp-dialog h2 {
  max-width: 430px;
  margin: 0 0 10px;
  padding-right: 30px;
  font-size: 30px;
  line-height: 1.15;
}

.pp-dialog__lead {
  margin: 0 0 22px;
  color: var(--pp-text);
}

.pp-form {
  display: grid;
  gap: 14px;
}

.pp-field {
  display: grid;
  gap: 6px;
}

.pp-field label {
  font-size: 12px;
  font-weight: 800;
}

.pp-field input,
.pp-field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--pp-ink);
  background: #fff;
  border: 1px solid #d6e0db;
  border-radius: 13px;
  outline: 0;
}

.pp-field input:focus,
.pp-field select:focus {
  border-color: var(--pp-green);
  box-shadow: 0 0 0 4px rgba(71, 171, 56, .12);
}

.pp-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--pp-muted);
  font-size: 11px;
}

.pp-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--pp-green);
}

.pp-consent a {
  color: var(--pp-green-dark);
  text-decoration: underline;
}

.pp-noscript {
  padding: 12px;
  color: #702e31;
  background: #fff3f3;
  text-align: center;
}

@media (max-width: 1080px) {
  .pp-header__row {
    min-height: 74px;
  }

  .pp-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--pp-line);
    box-shadow: 0 20px 40px rgba(20, 42, 33, .12);
  }

  .pp-nav.is-open {
    display: block;
  }

  .pp-nav__list {
    display: grid;
    gap: 2px;
  }

  .pp-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
  }

  .pp-menu-btn {
    display: block;
    margin-left: auto;
  }

  .pp-header__phone {
    margin-left: 0;
  }

  .pp-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pp-product-visual {
    min-height: 590px;
  }

  .pp-buybox {
    padding: 30px;
  }

  .pp-trustline,
  .pp-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-cards,
  .pp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

  .pp-container {
    width: min(100% - 28px, 680px);
  }

  .pp-logo {
    min-width: 0;
  }

  .pp-logo__text {
    display: none;
  }

  .pp-header__phone {
    font-size: 0;
  }

  .pp-header__phone::before {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--pp-green-dark);
    background: var(--pp-green-soft);
    border-radius: 14px;
    content: "☎";
    font-size: 20px;
  }

  .pp-header__phone small {
    display: none;
  }

  .pp-hero__grid,
  .pp-spec-layout,
  .pp-cta {
    grid-template-columns: 1fr;
  }

  .pp-product-visual {
    min-height: 520px;
  }

  .pp-anchor-nav {
    top: 74px;
  }

  .pp-fit-grid,
  .pp-cost-grid {
    grid-template-columns: 1fr;
  }

  .pp-cta {
    padding: 34px;
  }

  .pp-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  body.product-page {
    padding-bottom: 72px;
    font-size: 15px;
  }

  .pp-container {
    width: calc(100% - 24px);
  }

  .pp-header__row {
    min-height: 66px;
    gap: 9px;
  }

  .pp-logo img {
    width: 105px;
  }

  .pp-header__phone::before,
  .pp-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .pp-nav {
    top: 66px;
  }

  .pp-breadcrumbs {
    margin-top: 16px;
    font-size: 11px;
  }

  .pp-hero__grid {
    gap: 14px;
  }

  .pp-product-visual {
    min-height: 390px;
    padding: 24px;
    border-radius: 20px;
  }

  .pp-product-visual__image {
    width: min(310px, 88%);
  }

  .pp-visual-badge {
    top: 13px;
    left: 13px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .pp-visual-notes {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 5px;
  }

  .pp-visual-notes span {
    padding: 8px 5px;
    border-radius: 10px;
    font-size: 9px;
  }

  .pp-buybox {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .pp-buybox h1 {
    font-size: 31px;
  }

  .pp-lead {
    font-size: 15px;
  }

  .pp-specs-quick {
    gap: 6px;
  }

  .pp-spec-quick {
    padding: 10px 8px;
  }

  .pp-spec-quick strong {
    font-size: 15px;
  }

  .pp-spec-quick span {
    font-size: 9px;
  }

  .pp-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pp-option {
    min-height: 46px;
  }

  .pp-variant-note {
    grid-template-columns: 1fr;
  }

  .pp-price {
    font-size: 33px;
  }

  .pp-buybox__links,
  .pp-trustline,
  .pp-cards,
  .pp-steps,
  .pp-process {
    grid-template-columns: 1fr;
  }

  .pp-trustline {
    gap: 8px;
  }

  .pp-trustline__item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
  }

  .pp-anchor-nav {
    top: 66px;
  }

  .pp-anchor-nav__scroll {
    gap: 19px;
  }

  .pp-anchor-nav a {
    padding: 12px 0;
    font-size: 12px;
  }

  .pp-section {
    padding: 58px 0;
  }

  .pp-section__head {
    margin-bottom: 24px;
  }

  .pp-section__head h2 {
    font-size: 31px;
  }

  .pp-section__head p {
    font-size: 15px;
  }

  .pp-card,
  .pp-fit,
  .pp-cost-card,
  .pp-engineer,
  .pp-step {
    padding: 21px;
  }

  .pp-spec-list div {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 13px 15px;
  }

  .pp-spec-list dd {
    text-align: left;
  }

  .pp-cta {
    padding: 27px 21px;
    border-radius: 22px;
  }

  .pp-footer {
    margin-top: 58px;
    padding-bottom: 40px;
  }

  .pp-mobile-bar { display: none !important; }

  .pp-dialog__inner {
    padding: 28px 18px 20px;
  }

  .pp-dialog h2 {
    font-size: 25px;
  }
}

.pp-option-help {
  margin: 10px 0 0;
  color: var(--pp-muted);
  font-size: 12px;
}

.pp-table--prices {
  min-width: 960px;
}

.pp-table--prices s {
  color: var(--pp-muted);
  text-decoration-thickness: 1px;
}

.pp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pp-related-card {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pp-related-card:hover,
.pp-related-card:focus-visible {
  border-color: rgba(71, 171, 56, .45);
  box-shadow: 0 18px 34px rgba(20, 42, 33, .09);
  transform: translateY(-3px);
}

.pp-related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8faf8;
  border-radius: 13px;
}

.pp-related-card span {
  color: var(--pp-green-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pp-related-card strong {
  font-size: 16px;
  line-height: 1.25;
}

.pp-related-card small {
  color: var(--pp-muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .pp-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .pp-related-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
