.page-products {
  --pd-blue: var(--color-deep-blue);
  --pd-blue-2: #0A2138;
  --pd-gold: var(--color-gold);
  --pd-gold-2: #F0C75E;
  --pd-green: var(--color-prairie-green);
  --pd-green-2: var(--color-footer-green);
  --pd-orange: var(--color-desert-orange);
  --pd-sand: var(--color-sand);
  --pd-ink: var(--color-ink);
  --pd-gray: var(--color-light-gray);
  --pd-white: var(--color-white);
  --pd-dark-gold: var(--color-dark-gold);
  --pd-radius-lg: 28px;
  --pd-radius-md: 18px;
  --pd-radius-sm: 12px;
  --pd-radius-pill: var(--radius-pill);
  --pd-shadow-card: 0 8px 28px rgba(11,42,74,.10);
  --pd-shadow-hover: 0 14px 40px rgba(11,42,74,.16);
  --pd-ease: 240ms ease;
  --pd-ease-spring: 260ms cubic-bezier(.34,1.56,.64,1);
  font-family: var(--font-body);
  background-color: var(--color-light-gray);
  color: var(--color-ink);
  overflow-x: hidden;
}

.page-products .pd-hero {
  position: relative;
  padding: 36px 0 64px;
  background: linear-gradient(150deg, var(--pd-blue) 0%, var(--pd-blue-2) 78%);
  color: var(--pd-white);
  overflow: hidden;
}
.page-products .pd-hero::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.28) 0%, rgba(212,160,23,0) 70%);
  pointer-events: none;
}
.page-products .pd-hero::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,124,90,.22) 0%, rgba(62,124,90,0) 70%);
  pointer-events: none;
}
.page-products .pd-hero__arc {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 340px;
  border-radius: 50%;
  border: 2px solid rgba(212,160,23,.18);
  box-shadow: 0 0 0 28px rgba(212,160,23,.05), 0 0 0 56px rgba(212,160,23,.03);
  transform: rotate(18deg);
  pointer-events: none;
}
.page-products .pd-hero__dots {
  position: absolute;
  left: 24px;
  bottom: 36px;
  width: 150px;
  height: 120px;
  background-image: radial-gradient(rgba(212,160,23,.38) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .5;
  pointer-events: none;
}
.page-products .pd-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page-products .pd-hero__copy {
  max-width: 680px;
}
.page-products .pd-hero .breadcrumb {
  margin-bottom: 20px;
}
.page-products .pd-hero .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.page-products .pd-hero .breadcrumb__link {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--pd-ease);
}
.page-products .pd-hero .breadcrumb__link:hover {
  color: var(--pd-gold-2);
}
.page-products .pd-hero .breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255,255,255,.4);
}
.page-products .pd-hero .breadcrumb__current {
  color: var(--pd-gold-2);
}
.page-products .pd-hero__kicker {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--pd-gold-2);
  text-transform: uppercase;
}
.page-products .pd-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.24;
  letter-spacing: .02em;
}
.page-products .pd-hero__lead {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
}
.page-products .pd-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-products .pd-hero__tags li {
  padding: 6px 16px;
  border-radius: var(--pd-radius-pill);
  border: 1px solid rgba(212,160,23,.45);
  background: rgba(212,160,23,.14);
  color: var(--pd-gold-2);
  font-size: 14px;
  font-weight: 600;
}
.page-products .pd-hero__visual {
  position: relative;
  width: min(360px, 100%);
  margin-inline: auto;
}
.page-products .pd-hero__phone {
  position: relative;
  padding: 12px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.18);
  background: linear-gradient(160deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 100%);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
  transform: rotate(1.8deg);
  transition: transform var(--pd-ease), box-shadow var(--pd-ease);
}
.page-products .pd-hero__phone:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
}
.page-products .pd-hero__phone::after {
  content: "";
  display: block;
  width: 92px;
  height: 5px;
  border-radius: var(--pd-radius-pill);
  background: rgba(255,255,255,.35);
  margin: 10px auto 2px;
}
.page-products .pd-hero__phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
  background: var(--pd-white);
}
.page-products .pd-hero__visual-note {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: var(--pd-radius-pill);
  background: var(--pd-gold);
  color: var(--pd-white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(212,160,23,.35);
  z-index: 2;
}

.page-products .pd-version {
  padding: 64px 0;
  background: radial-gradient(circle at 85% 12%, rgba(212,160,23,.07) 0, rgba(212,160,23,0) 28%), var(--pd-gray);
}
.page-products .pd-section-header {
  margin-bottom: 40px;
}
.page-products .pd-section-title {
  margin: 8px 0 14px;
  font-family: var(--font-title);
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.3;
  color: var(--pd-blue);
}
.page-products .pd-section-lead {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: #52606D;
}
.page-products .pd-version-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.page-products .pd-version-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border-radius: var(--pd-radius-lg);
  border: 1px solid rgba(11,42,74,.08);
  background: var(--pd-white);
  box-shadow: var(--pd-shadow-card);
  transition: transform var(--pd-ease), box-shadow var(--pd-ease);
}
.page-products .pd-version-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pd-shadow-hover);
}
.page-products .pd-version-card--classic {
  border-top: 4px solid var(--pd-green);
}
.page-products .pd-version-card--speed {
  border-top: 4px solid var(--pd-gold);
  background: radial-gradient(circle at 92% 8%, rgba(212,160,23,.08) 0, rgba(212,160,23,0) 26%), var(--pd-white);
}
.page-products .pd-version-card__flag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  border-radius: var(--pd-radius-pill);
  background: linear-gradient(135deg, var(--pd-gold), var(--pd-dark-gold));
  color: var(--pd-white);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212,160,23,.3);
}
.page-products .pd-version-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.page-products .pd-version-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--pd-radius-sm);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--pd-white);
}
.page-products .pd-version-card--classic .pd-version-card__icon {
  background: var(--pd-green);
}
.page-products .pd-version-card--speed .pd-version-card__icon {
  background: linear-gradient(135deg, var(--pd-gold), var(--pd-dark-gold));
}
.page-products .pd-version-card__name {
  margin: 0;
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--pd-blue);
}
.page-products .pd-version-card__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: #52606D;
}
.page-products .pd-version-card__desc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #4B5563;
}
.page-products .pd-version-card__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
.page-products .pd-version-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pd-ink);
}
.page-products .pd-version-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pd-gold);
  opacity: .8;
}
.page-products .pd-version-card--classic .pd-version-card__list li::before {
  background: var(--pd-green);
}
.page-products .pd-version-card__btn {
  align-self: flex-start;
}
.page-products .pd-version-visual {
  margin: 0 0 28px;
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
  box-shadow: var(--pd-shadow-card);
}
.page-products .pd-version-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .pd-version-table-wrap {
  overflow-x: auto;
  border-radius: var(--pd-radius-md);
  box-shadow: var(--pd-shadow-card);
}
.page-products .pd-version-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--pd-white);
}
.page-products .pd-version-table th,
.page-products .pd-version-table td {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  border-bottom: 1px solid rgba(11,42,74,.06);
}
.page-products .pd-version-table thead th {
  background: var(--pd-blue);
  color: var(--pd-gold-2);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
}
.page-products .pd-version-table tbody th {
  color: var(--pd-blue);
  font-weight: 600;
}
.page-products .pd-version-table tbody td:last-child {
  color: var(--pd-ink);
}
.page-products .pd-version-table tbody tr:nth-child(even) {
  background: rgba(245,247,250,.6);
}

.page-products .pd-bigscreen {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(145deg, var(--pd-green-2) 0%, #12302A 100%);
  color: var(--pd-white);
  overflow: hidden;
}
.page-products .pd-bigscreen::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.25) 0, rgba(212,160,23,0) 70%);
  pointer-events: none;
}
.page-products .pd-bigscreen__glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(212,160,23,.16);
  box-shadow: 0 0 0 26px rgba(212,160,23,.04);
  pointer-events: none;
}
.page-products .pd-bigscreen__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-products .pd-bigscreen__content {
  order: 2;
}
.page-products .pd-bigscreen .section__title {
  color: var(--pd-gold-2);
}
.page-products .pd-bigscreen__title {
  margin: 8px 0 14px;
  font-family: var(--font-title);
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.3;
}
.page-products .pd-bigscreen__desc {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
}
.page-products .pd-bigscreen__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.page-products .pd-bigscreen__steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--pd-radius-md);
  padding: 18px 20px;
  transition: background var(--pd-ease), transform var(--pd-ease);
}
.page-products .pd-bigscreen__steps li:hover {
  background: rgba(255,255,255,.12);
  transform: translateX(4px);
}
.page-products .pd-bigscreen__steps li > span {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pd-gold);
  color: var(--pd-white);
  font-weight: 700;
  font-size: 14px;
}
.page-products .pd-bigscreen__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}
.page-products .pd-bigscreen__steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.page-products .pd-bigscreen__visual {
  order: 1;
  margin: 0;
  padding: 10px;
  border-radius: var(--pd-radius-lg);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.page-products .pd-bigscreen__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--pd-radius-md);
  object-fit: cover;
}

.page-products .pd-channels {
  padding: 64px 0;
  background: var(--pd-white);
}
.page-products .pd-channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.page-products .pd-channel-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--pd-radius-lg);
  border: 1px solid rgba(11,42,74,.08);
  background: var(--pd-gray);
  padding: 28px 24px;
  transition: box-shadow var(--pd-ease), transform var(--pd-ease);
}
.page-products .pd-channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.page-products .pd-channel-card:first-child::before {
  background: linear-gradient(90deg, var(--pd-green), #2D6A3F);
}
.page-products .pd-channel-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--pd-blue), var(--pd-gold));
}
.page-products .pd-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pd-shadow-hover);
}
.page-products .pd-channel-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.page-products .pd-channel-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--pd-radius-pill);
  font-size: 13px;
  font-weight: 700;
}
.page-products .pd-channel-card__badge--android {
  background: rgba(62,124,90,.14);
  color: var(--pd-green);
}
.page-products .pd-channel-card__badge--ios {
  background: rgba(11,42,74,.1);
  color: var(--pd-blue);
}
.page-products .pd-channel-card__name {
  margin: 0;
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--pd-blue);
}
.page-products .pd-channel-card__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-products .pd-channel-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pd-ink);
}
.page-products .pd-channel-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pd-green);
  font-weight: 700;
}
.page-products .pd-channel-card:nth-child(2) .pd-channel-card__list li::before {
  color: var(--pd-blue);
}
.page-products .pd-channel-card__btn {
  display: inline-block;
}
.page-products .pd-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--pd-radius-pill);
  background: linear-gradient(135deg, var(--pd-gold) 0%, var(--pd-dark-gold) 100%);
  color: var(--pd-white);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212,160,23,.35);
  transition: transform var(--pd-ease-spring), box-shadow var(--pd-ease);
}
.page-products .pd-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212,160,23,.45);
}
.page-products .pd-download-btn:focus-visible {
  outline: 3px solid rgba(212,160,23,.4);
  outline-offset: 3px;
}
.page-products .pd-channels__note {
  margin: 0;
  padding: 16px 20px;
  border-left: 3px solid var(--pd-orange);
  border-radius: var(--pd-radius-md);
  background: var(--pd-sand);
  font-size: 14px;
  line-height: 1.7;
  color: #6B4E00;
}

.page-products .pd-install {
  padding: 64px 0;
  background: var(--pd-sand);
}
.page-products .pd-install-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-products .pd-install__visual {
  margin: 0;
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
  box-shadow: var(--pd-shadow-card);
}
.page-products .pd-install__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .pd-install__content {
  display: grid;
  gap: 24px;
}
.page-products .pd-install__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.page-products .pd-install__steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(11,42,74,.05);
  border-radius: var(--pd-radius-md);
  background: var(--pd-white);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(11,42,74,.06);
}
.page-products .pd-install__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--pd-blue);
  color: var(--pd-white);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
}
.page-products .pd-install__steps h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--pd-blue);
}
.page-products .pd-install__steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4B5563;
}
.page-products .pd-install-faq-wrap {
  border-radius: var(--pd-radius-md);
  border: 1px dashed rgba(11,42,74,.18);
  padding: 18px 20px;
  background: rgba(255,255,255,.5);
}
.page-products .pd-install-faq__title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--pd-blue);
}
.page-products .pd-install-faq {
  list-style: none;
  counter-reset: faq;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-products .pd-install-faq li {
  counter-increment: faq;
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #4B5563;
}
.page-products .pd-install-faq li::before {
  content: "Q" counter(faq);
  flex-shrink: 0;
  font-weight: 700;
  color: var(--pd-orange);
}
.page-products .pd-install-faq strong {
  color: var(--pd-blue);
}

.page-products .pd-highlight {
  padding: 64px 0;
  background: linear-gradient(150deg, var(--pd-blue) 0%, var(--pd-blue-2) 80%);
  color: var(--pd-white);
}
.page-products .pd-highlight__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-products .pd-highlight__visual {
  margin: 0;
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.page-products .pd-highlight__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .pd-highlight .section__title {
  color: var(--pd-gold-2);
}
.page-products .pd-highlight__title {
  margin: 8px 0 14px;
  font-family: var(--font-title);
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.3;
}
.page-products .pd-highlight__desc {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}
.page-products .pd-highlight__actions {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-products .pd-highlight__link {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--pd-radius-pill);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform var(--pd-ease), box-shadow var(--pd-ease);
}
.page-products .pd-highlight__link:hover {
  transform: translateY(-2px);
}
.page-products .pd-highlight__link--gold {
  background: linear-gradient(135deg, var(--pd-gold), var(--pd-dark-gold));
  color: var(--pd-white);
  box-shadow: 0 8px 24px rgba(212,160,23,.3);
}
.page-products .pd-highlight__link--outline {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--pd-white);
}
.page-products .pd-highlight__link:focus-visible {
  outline: 3px solid rgba(212,160,23,.5);
  outline-offset: 3px;
}

@media (min-width: 600px) {
  .page-products .pd-bigscreen__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-products .pd-install__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-products .pd-install-faq {
    grid-template-columns: 1fr;
  }
  .page-products .pd-install-faq li {
    align-items: flex-start;
  }
}

@media (min-width: 960px) {
  .page-products .pd-hero {
    padding: 48px 0 76px;
  }
  .page-products .pd-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
  .page-products .pd-hero__copy {
    flex: 1 1 52%;
  }
  .page-products .pd-hero__visual {
    flex: 0 0 360px;
    margin: 0;
  }
  .page-products .pd-version-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .page-products .pd-bigscreen__inner {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
  }
  .page-products .pd-bigscreen__content {
    order: 1;
  }
  .page-products .pd-bigscreen__visual {
    order: 2;
  }
  .page-products .pd-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .page-products .pd-install-layout {
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
  }
  .page-products .pd-install__steps {
    grid-template-columns: 1fr;
  }
  .page-products .pd-highlight__inner {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
  }
}
