/* Homepage composition refresh: theme colors only. */
body.home .pp-home {
  display: flex;
  flex-direction: column;
}

body.home .pp-home-hero {
  order: 1;
}

body.home .pp-home-directions {
  order: 2;
}

body.home .pp-home-selection {
  order: 3;
}

body.home .pp-home-products {
  order: 4;
}

body.home .pp-home-materials {
  order: 2;
}

body.home .pp-home-catalog {
  order: 5;
}

body.home .pp-home-contact {
  order: 6;
}

/* Stronger first screen with an overlapping navigation panel. */
body.home .pp-home-hero {
  min-height: 600px;
  margin-bottom: 52px;
}

body.home .pp-home-hero::after {
  background: hsla(var(--awb-color8-h), var(--awb-color8-s), var(--awb-color8-l), calc(var(--awb-color8-a) - 38%));
}

body.home .pp-home-hero__image {
  object-position: center 56%;
  transform: scale(1.025);
}

body.home .pp-home-hero__inner {
  padding-top: 74px;
  padding-bottom: 142px;
}

body.home .pp-home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

body.home .pp-home-hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--pp-orange);
}

body.home .pp-home-hero h1 {
  max-width: 820px;
  font-size: 62px !important;
  line-height: 1.02 !important;
}

body.home .pp-home-hero__lead {
  max-width: 750px;
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.55;
}

body.home .pp-home-hero__actions {
  margin-top: 28px;
}

body.home .pp-home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 20px 34px;
  margin-top: 24px;
}

body.home .pp-home-hero__nav {
  bottom: -52px;
  min-height: 104px;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  border-radius: 7px;
  background: var(--awb-color1);
  box-shadow: 0 18px 42px hsla(var(--awb-color8-h), var(--awb-color8-s), var(--awb-color8-l), calc(var(--awb-color8-a) - 86%));
}

body.home .pp-home-hero__nav a,
body.home .pp-home-hero__nav a:visited {
  min-height: 102px;
  padding: 24px 26px;
  color: var(--pp-ink) !important;
  border: 0;
  border-right: 1px solid var(--pp-line);
  background: var(--awb-color1);
  font-size: 17px;
  line-height: 1.35;
}

body.home .pp-home-hero__nav a:first-child {
  border-left: 0;
}

body.home .pp-home-hero__nav a:last-child {
  border-right: 0;
}

body.home .pp-home-hero__nav a span {
  color: var(--pp-orange);
  font-size: 22px;
}

body.home .pp-home-hero__nav a:hover,
body.home .pp-home-hero__nav a:focus-visible {
  color: var(--awb-color1) !important;
  background: var(--pp-orange);
}

body.home .pp-home-hero__nav a:hover span,
body.home .pp-home-hero__nav a:focus-visible span {
  color: var(--awb-color1);
}

body.home .pp-home-hero-form {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -64px;
  width: min(1280px, calc(100% - 48px));
  padding: 0;
  transform: translateX(-50%);
  border: 1px solid var(--pp-orange);
  border-radius: 7px;
  color: var(--pp-ink);
  background: var(--awb-color1);
  box-shadow: 0 20px 46px hsla(var(--awb-color8-h), var(--awb-color8-s), var(--awb-color8-l), calc(var(--awb-color8-a) - 80%));
  overflow: hidden;
}

body.home .pp-home-lead-form {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(140px, 0.8fr) minmax(160px, 0.9fr) minmax(210px, 1.2fr) auto;
  grid-template-areas:
    "intro name phone task submit"
    "intro consent consent captcha submit";
  gap: 8px 12px;
  align-items: center;
  margin: 0;
  padding: 16px 18px 16px 0;
}

body.home .pp-home-lead-form__intro {
  grid-area: intro;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: -16px 4px -16px 0;
  padding: 16px 20px;
  color: var(--pp-ink);
  background: var(--awb-color1);
  border-right: 1px solid var(--pp-line);
}

body.home .pp-home-lead-form__intro strong,
body.home .pp-home-lead-form__intro-text {
  display: block;
}

body.home .pp-home-lead-form__eyebrow {
  margin-bottom: 7px;
  color: var(--pp-orange);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

body.home .pp-home-lead-form__intro strong {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
}

body.home .pp-home-lead-form__intro-text {
  margin-top: 5px;
  color: var(--pp-muted);
  font-size: 12px;
  line-height: 1.35;
}

body.home .pp-home-lead-form__field {
  min-width: 0;
  display: block;
  margin: 0;
}

body.home .pp-home-lead-form__field--name {
  grid-area: name;
}

body.home .pp-home-lead-form__field--phone {
  grid-area: phone;
}

body.home .pp-home-lead-form__field--task {
  grid-area: task;
}

body.home .pp-home-lead-form__field > span {
  display: block;
  margin-bottom: 4px;
  color: var(--pp-muted);
  font-size: 11px;
  line-height: 1.2;
}

body.home .pp-home-lead-form input[type="text"],
body.home .pp-home-lead-form input[type="tel"] {
  width: 100%;
  height: 42px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid var(--pp-line);
  border-radius: 5px;
  color: var(--pp-ink);
  background: var(--awb-color1);
  font: inherit;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: none;
}

body.home .pp-home-lead-form input[type="text"]:focus,
body.home .pp-home-lead-form input[type="tel"]:focus {
  border-color: var(--pp-orange);
  outline: 2px solid hsla(var(--awb-color5-h), var(--awb-color5-s), var(--awb-color5-l), calc(var(--awb-color5-a) - 76%));
  outline-offset: 1px;
}

body.home .pp-home-lead-form__consent {
  grid-area: consent;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  color: var(--pp-muted);
  font-size: 10px;
  line-height: 1.3;
}

body.home .pp-home-lead-form__consent input {
  width: 14px;
  height: 14px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--pp-orange);
}

body.home .pp-home-lead-form__consent a,
body.home .pp-home-lead-form__consent a:visited {
  color: var(--pp-muted);
  text-decoration: underline;
}

body.home .pp-home-lead-form__captcha {
  grid-area: captcha;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
  margin: 0;
  color: var(--pp-muted);
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

body.home .pp-home-lead-form__captcha-image {
  display: block;
  width: 166px;
  height: 50px;
  flex: 0 0 166px;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  border-radius: 4px;
  background: var(--awb-color1);
}

body.home .pp-home-lead-form__captcha-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

body.home .pp-home-lead-form__captcha input[type="text"] {
  width: 76px;
  height: 50px;
  flex: 0 0 76px;
  padding: 5px 8px;
  font-size: 18px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

body.home .pp-home-lead-form__captcha input[type="hidden"] {
  display: none;
}

body.home .pp-home-lead-form__submit {
  grid-area: submit;
  min-height: 46px;
  align-self: center;
  padding: 11px 18px;
  border: 1px solid var(--pp-orange);
  border-radius: 5px;
  color: var(--awb-color1);
  background: var(--pp-orange);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  cursor: pointer;
}

body.home .pp-home-lead-form__submit:hover,
body.home .pp-home-lead-form__submit:focus-visible {
  border-color: var(--awb-color7);
  background: var(--awb-color7);
}

body.home .pp-home-lead-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

body.home .pp-home-lead-form__notice {
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.35;
}

body.home .pp-home-lead-form__notice--ok {
  color: var(--pp-ink);
  border: 1px solid var(--pp-line);
  background: var(--pp-surface);
}

body.home .pp-home-lead-form__notice--error {
  color: var(--awb-color7);
  border: 1px solid var(--pp-orange);
  background: var(--awb-color1);
}

body.home .pp-home-lead-form__toast {
  display: none;
}

@supports (animation-name: pp-home-lead-toast) {
  body.home .pp-home-lead-form__toast {
    position: fixed;
    z-index: 100050;
    top: 50%;
    left: 50%;
    display: block;
    width: min(440px, calc(100% - 32px));
    padding: 15px 18px;
    transform: translate(-50%, calc(-50% - 12px));
    border: 1px solid var(--pp-orange);
    border-radius: 6px;
    color: var(--pp-ink);
    background: var(--awb-color1);
    box-shadow: 0 18px 46px hsla(var(--awb-color8-h), var(--awb-color8-s), var(--awb-color8-l), calc(var(--awb-color8-a) - 76%));
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    pointer-events: none;
    animation: pp-home-lead-toast 2s ease both;
  }
}

@keyframes pp-home-lead-toast {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate(-50%, calc(-50% - 12px));
  }

  10%,
  85% {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
  }

  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(-50% - 8px));
  }
}

/* PU and PPU lead the page; TPU remains visible as a secondary direction. */
body.home .pp-home-directions {
  padding-top: 54px;
  padding-bottom: 58px;
  background: var(--awb-color1);
}

body.home .pp-home-section__heading {
  margin-bottom: 26px;
}

body.home .pp-home-section__heading h2,
body.home .pp-home-selection h2,
body.home .pp-home-contact h2 {
  font-size: 40px;
  line-height: 1.1;
}

body.home .pp-home-direction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.home .pp-home-direction {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 150px;
  border-color: var(--pp-line);
  background: var(--awb-color1);
  box-shadow: 0 10px 28px hsla(var(--awb-color8-h), var(--awb-color8-s), var(--awb-color8-l), calc(var(--awb-color8-a) - 94%));
}

body.home .pp-home-direction:nth-child(3) {
  grid-column: auto;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 150px;
  background: var(--awb-color1);
}

body.home .pp-home-direction__media {
  height: 100%;
  min-height: 100%;
}

body.home .pp-home-direction__body {
  justify-content: center;
  padding: 16px;
}

body.home .pp-home-direction h3 {
  font-size: 20px;
  line-height: 1.18;
}

body.home .pp-home-direction__body > p {
  display: -webkit-box;
  margin: 8px 0 10px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home .pp-home-direction .pp-home-text-link {
  font-size: 13px;
}

/* Selection becomes a clear bridge from materials to product cards. */
body.home .pp-home-selection {
  position: relative;
  z-index: 3;
  width: min(1280px, calc(100% - 48px));
  margin: 32px auto 0;
  padding: 28px 32px;
  color: var(--pp-ink);
  border: 1px solid var(--pp-line);
  border-top: 4px solid var(--pp-orange);
  border-radius: 7px;
  background: var(--awb-color1);
  box-shadow: 0 18px 42px hsla(var(--awb-color8-h), var(--awb-color8-s), var(--awb-color8-l), calc(var(--awb-color8-a) - 88%));
}

body.home .pp-home-selection__inner {
  width: 100%;
  max-width: none;
  gap: 36px;
}

body.home .pp-home-selection h2 {
  color: var(--pp-ink);
  font-size: 31px;
}

body.home .pp-home-selection p {
  max-width: 900px;
  margin-top: 10px;
  color: var(--pp-muted);
  font-size: 16px;
  line-height: 1.55;
}

/* Editorial product grid with explicit priority for PU and PPU. */
body.home .pp-home-products {
  padding-top: 0;
  padding-bottom: 0;
  color: var(--pp-ink);
  background: transparent;
}

body.home .pp-home-materials.pp-home-products {
  padding-top: 38px;
  padding-bottom: 42px;
  background: var(--pp-surface);
}

body.home .pp-home-materials .pp-home-section__heading {
  max-width: 920px;
  margin-bottom: 20px;
}

body.home .pp-home-product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--pp-line);
}

body.home .pp-home-product {
  grid-column: span 3;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 150px;
  height: 150px;
  border-color: var(--pp-line);
  background: var(--awb-color1);
  box-shadow: 0 8px 24px hsla(var(--awb-color8-h), var(--awb-color8-s), var(--awb-color8-l), calc(var(--awb-color8-a) - 95%));
}

body.home .pp-home-product:nth-child(1) {
  order: 1;
}

body.home .pp-home-product:nth-child(2) {
  order: 2;
}

body.home .pp-home-product:nth-child(3) {
  order: 3;
}

body.home .pp-home-product:nth-child(8) {
  order: 4;
}

body.home .pp-home-product:nth-child(6) {
  order: 5;
}

body.home .pp-home-product:nth-child(4) {
  order: 6;
}

body.home .pp-home-product:nth-child(5) {
  order: 7;
}

body.home .pp-home-product:nth-child(7) {
  order: 8;
}

body.home .pp-home-product:nth-child(9) {
  order: 9;
}

body.home .pp-home-product:nth-child(1),
body.home .pp-home-product:nth-child(2) {
  grid-column: span 6;
  grid-template-columns: minmax(180px, 38%) minmax(0, 1fr);
  min-height: 170px;
  height: 170px;
}

body.home .pp-home-product:nth-child(3),
body.home .pp-home-product:nth-child(6),
body.home .pp-home-product:nth-child(8) {
  grid-column: span 3;
}

@media (min-width: 1181px) {
  body.home .pp-home-product:nth-child(5),
  body.home .pp-home-product:nth-child(7),
  body.home .pp-home-product:nth-child(9) {
    grid-column: span 4;
  }
}

body.home .pp-home-product__media,
body.home .pp-home-product__media img {
  min-height: 0;
}

body.home .pp-home-product__media img {
  height: 100%;
  aspect-ratio: auto;
}

body.home .pp-home-product__media > a[href="https://www.polimerportal.ru/ads/trubki-iz-termoplastichnogo-poliuretana-vitur/"] img,
body.home .pp-home-product__media > a[href="https://www.polimerportal.ru/ads/poliuretanovaya-lenta-dlya-styazhek-zhgutov-elektroprovodov-ltpu-18-tu-6-55-221-1109-90/"] img {
  transform: scale(1.36);
}

body.home .pp-home-product__media > a[href="https://www.polimerportal.ru/ads/sferoplastiki-tipa-eds-eds-ap-eds-te-eds-ak-tu-6-55-221-1516-98/"] img {
  transform: scale(1.56);
}

body.home .pp-home-product:nth-child(1) .pp-home-product__media img,
body.home .pp-home-product:nth-child(2) .pp-home-product__media img {
  height: 100%;
  min-height: 166px;
}

body.home .pp-home-product:nth-child(3) .pp-home-product__media img,
body.home .pp-home-product:nth-child(6) .pp-home-product__media img,
body.home .pp-home-product:nth-child(8) .pp-home-product__media img {
  height: 100%;
}

body.home .pp-home-product__body {
  justify-content: center;
  padding: 14px;
}

body.home .pp-home-product:nth-child(1) .pp-home-product__body,
body.home .pp-home-product:nth-child(2) .pp-home-product__body {
  justify-content: center;
  padding: 18px;
}

body.home .pp-home-product h3 {
  font-size: 18px;
  overflow-wrap: anywhere;
}

body.home .pp-home-product:nth-child(1) h3,
body.home .pp-home-product:nth-child(2) h3 {
  font-size: 23px;
}

body.home .pp-home-product__body > p:not(.pp-home-product__type) {
  display: -webkit-box;
  margin: 7px 0 9px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.home .pp-home-product .pp-home-product__type {
  margin-bottom: 5px;
  font-size: 11px;
}

body.home .pp-home-product .pp-home-text-link {
  font-size: 12px;
}

/* Compact full-catalog preview instead of another wall of large cards. */
body.home .pp-home-catalog {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--pp-surface);
}

body.home .pp-home-catalog .pp-home-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

body.home .pp-home-catalog .pp-home-category-grid__link,
body.home .pp-home-catalog .pp-home-category-grid__link:visited {
  display: grid;
  grid-template-columns: 133px minmax(0, 1fr);
  grid-template-rows: 1fr;
  height: 135px;
  min-height: 135px;
  padding: 0;
  border-radius: 7px;
  background: var(--awb-color1);
}

body.home .pp-home-catalog .pp-home-category-grid__image {
  width: 133px;
  height: 133px;
  min-height: 133px;
  object-fit: cover;
  object-position: center;
}

body.home .pp-home-catalog .pp-home-category-grid__title {
  justify-content: flex-start;
  padding: 16px;
  text-align: left;
}

body.home .pp-home-catalog .pp-home-category-grid__title-text {
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.home .pp-home-catalog .pp-home-category-grid__link:hover,
body.home .pp-home-catalog .pp-home-category-grid__link:focus-visible {
  border-color: var(--pp-orange);
  transform: translateY(-1px);
}

body.home .pp-home-catalog__action {
  margin-top: 24px;
}

@media (min-width: 1181px) {
  body.home .pp-home-catalog .pp-home-category-grid__item:nth-child(4n + 1):nth-last-child(2) {
    grid-column-start: 2;
  }
}

body.home .pp-home-contact {
  padding-top: 44px;
  padding-bottom: 44px;
  background: var(--awb-color1);
}

body.home .pp-home-contact h2 {
  font-size: 31px;
}

body.home .pp-home-contact p {
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 1180px) {
  body.home .pp-home-hero h1 {
    font-size: 54px !important;
  }

  body.home .pp-home-direction {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  body.home .pp-home-direction__media {
    min-height: 150px;
  }

  body.home .pp-home-direction:nth-child(3) {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  body.home .pp-home-product:nth-child(1),
  body.home .pp-home-product:nth-child(2) {
    grid-template-columns: minmax(210px, 42%) minmax(0, 1fr);
  }

  body.home .pp-home-product {
    grid-column: span 3;
  }

  body.home .pp-home-product:nth-child(1),
  body.home .pp-home-product:nth-child(2) {
    grid-column: span 6;
  }

  body.home .pp-home-product:nth-child(3),
  body.home .pp-home-product:nth-child(6),
  body.home .pp-home-product:nth-child(8) {
    grid-column: span 3;
  }

  body.home .pp-home-catalog .pp-home-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body.home .pp-home-hero {
    flex-direction: column;
    min-height: 0;
    margin-bottom: 0;
  }

  body.home .pp-home-hero__inner {
    padding-top: 62px;
    padding-bottom: 42px;
  }

  body.home .pp-home-hero h1 {
    font-size: 46px !important;
  }

  body.home .pp-home-hero__nav {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100% - 48px, 1280px);
    margin: 0 auto 26px;
    transform: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home .pp-home-hero__nav a,
  body.home .pp-home-hero__nav a:first-child {
    min-height: 88px;
    padding: 18px;
    border-top: 0;
    border-right: 1px solid var(--pp-line);
  }

  body.home .pp-home-hero-form {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100% - 48px, 1280px);
    margin: 0 auto 26px;
    transform: none;
  }

  body.home .pp-home-lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "intro intro"
      "name phone"
      "task task"
      "captcha consent"
      "submit submit";
    padding: 0 18px 18px;
  }

  body.home .pp-home-lead-form__intro {
    margin: 0 -18px 4px;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--pp-line);
  }

  body.home .pp-home-lead-form__captcha {
    justify-content: flex-start;
  }

  body.home .pp-home-directions {
    padding-top: 48px;
  }

  body.home .pp-home-materials.pp-home-products {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  body.home .pp-home-direction-grid {
    grid-template-columns: 1fr;
  }

  body.home .pp-home-direction,
  body.home .pp-home-direction:nth-child(3) {
    grid-column: auto;
    grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
    min-height: 250px;
  }

  body.home .pp-home-selection {
    width: min(100% - 48px, 1280px);
    margin-top: 32px;
  }

  body.home .pp-home-product {
    grid-column: span 6;
  }

  body.home .pp-home-product:nth-child(1),
  body.home .pp-home-product:nth-child(2) {
    grid-column: 1 / -1;
  }

  body.home .pp-home-product:nth-child(3),
  body.home .pp-home-product:nth-child(6),
  body.home .pp-home-product:nth-child(8) {
    grid-column: span 6;
  }

  body.home .pp-home-catalog .pp-home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .pp-home-catalog .pp-home-category-grid__link,
  body.home .pp-home-catalog .pp-home-category-grid__link:visited {
    grid-template-columns: 106px minmax(0, 1fr);
    height: 108px;
    min-height: 108px;
  }

  body.home .pp-home-catalog .pp-home-category-grid__image {
    width: 106px;
    height: 106px;
    min-height: 106px;
  }
}

@media (max-width: 680px) {
  body.home .pp-home-hero__inner {
    padding-top: 42px;
    padding-bottom: 30px;
  }

  body.home .pp-home-hero h1 {
    font-size: 34px !important;
  }

  body.home .pp-home-hero__lead {
    font-size: 17px;
  }

  body.home .pp-home-hero__facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.home .pp-home-hero__nav {
    width: min(100% - 32px, 1280px);
    grid-template-columns: 1fr;
  }

  body.home .pp-home-hero__nav a,
  body.home .pp-home-hero__nav a:first-child {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--pp-line);
  }

  body.home .pp-home-hero__nav a:last-child {
    border-bottom: 0;
  }

  body.home .pp-home-hero-form {
    width: min(100% - 32px, 1280px);
    margin-bottom: 20px;
  }

  body.home .pp-home-lead-form {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "name"
      "phone"
      "task"
      "captcha"
      "consent"
      "submit";
    gap: 11px;
  }

  body.home .pp-home-lead-form__intro {
    margin-bottom: 2px;
  }

  body.home .pp-home-lead-form__submit {
    width: 100%;
  }

  body.home .pp-home-section__heading h2,
  body.home .pp-home-selection h2,
  body.home .pp-home-contact h2 {
    font-size: 30px;
  }

  body.home .pp-home-direction,
  body.home .pp-home-direction:nth-child(3) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home .pp-home-direction__media {
    height: 210px;
    min-height: 210px;
  }

  body.home .pp-home-direction__media img {
    height: 210px;
  }

  body.home .pp-home-selection {
    width: min(100% - 32px, 1280px);
    margin-bottom: 0;
    padding: 24px 22px;
  }

  body.home .pp-home-materials.pp-home-products {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  body.home .pp-home-product-grid {
    margin-top: 20px;
    padding-top: 22px;
  }

  body.home .pp-home-product,
  body.home .pp-home-product:nth-child(1),
  body.home .pp-home-product:nth-child(2),
  body.home .pp-home-product:nth-child(3),
  body.home .pp-home-product:nth-child(6),
  body.home .pp-home-product:nth-child(8) {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    height: auto;
  }

  body.home .pp-home-product:nth-child(1) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(2) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(6) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(8) .pp-home-product__media img,
  body.home .pp-home-product__media img {
    width: 100%;
    height: 210px;
    min-height: 0;
  }

  body.home .pp-home-product:nth-child(3),
  body.home .pp-home-product:nth-child(4),
  body.home .pp-home-product:nth-child(5),
  body.home .pp-home-product:nth-child(7),
  body.home .pp-home-product:nth-child(9) {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  body.home .pp-home-product:nth-child(3) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(4) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(5) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(7) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(9) .pp-home-product__media img {
    height: 100%;
    min-height: 190px;
  }

  body.home .pp-home-product:nth-child(5) .pp-home-product__media img,
  body.home .pp-home-product:nth-child(9) .pp-home-product__media img {
    transform: scale(1.36);
  }

  body.home .pp-home-product:nth-child(7) .pp-home-product__media img {
    transform: scale(1.56);
  }

  body.home .pp-home-product:nth-child(3) .pp-home-product__body,
  body.home .pp-home-product:nth-child(4) .pp-home-product__body,
  body.home .pp-home-product:nth-child(5) .pp-home-product__body,
  body.home .pp-home-product:nth-child(7) .pp-home-product__body,
  body.home .pp-home-product:nth-child(9) .pp-home-product__body {
    padding: 18px;
  }

  body.home .pp-home-product:nth-child(3) h3,
  body.home .pp-home-product:nth-child(4) h3,
  body.home .pp-home-product:nth-child(5) h3,
  body.home .pp-home-product:nth-child(7) h3,
  body.home .pp-home-product:nth-child(9) h3 {
    font-size: 20px;
  }

  body.home .pp-home-product:nth-child(1) .pp-home-product__body,
  body.home .pp-home-product:nth-child(2) .pp-home-product__body {
    padding: 22px;
  }

  body.home .pp-home-product:nth-child(1) h3,
  body.home .pp-home-product:nth-child(2) h3 {
    font-size: 24px;
  }

  body.home .pp-home-catalog .pp-home-category-grid {
    width: min(100% - 32px, 1280px);
    grid-template-columns: 1fr;
  }

  body.home .pp-home-catalog .pp-home-category-grid__link,
  body.home .pp-home-catalog .pp-home-category-grid__link:visited {
    grid-template-columns: 90px minmax(0, 1fr);
    height: 92px;
    min-height: 92px;
  }

  body.home .pp-home-catalog .pp-home-category-grid__image {
    width: 90px;
    height: 90px;
    min-height: 90px;
  }
}
