.page-products {
  --products-highlight: rgba(0, 232, 143, 0.12);
  --products-blue-line: rgba(0, 180, 255, 0.32);
  max-width: 1240px;
  margin-inline: auto;
  padding: 28px 20px 80px;
  color: var(--text);
  font-family: var(--font-body);
}

.page-products .breadcrumb {
  margin-bottom: 28px;
}

.page-products .page-heading {
  margin-bottom: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-products .page-heading__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  background: var(--products-highlight);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.page-products .page-heading__title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.06;
  letter-spacing: 0.02em;
}

.page-products .page-heading__lead {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.products-heading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-btn-skew {
  display: inline-block;
  transform: skewX(-6deg);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.products-btn-skew:hover {
  transform: skewX(-6deg) translateX(2px);
}

.products-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 4px 14px 4px 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--products-highlight);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.page-products .products-download__title,
.page-products .products-benefits__title,
.page-products .products-features__title,
.page-products .products-versions__title,
.page-products .products-faq-links h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.6vw, 34px);
  line-height: 1.14;
  letter-spacing: 0.02em;
}

.products-download {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  padding: 26px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 232, 143, 0.08), rgba(0, 180, 255, 0.04)), var(--surface);
  border: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.products-download::before {
  content: "V3";
  position: absolute;
  right: -6px;
  bottom: -26px;
  font-family: var(--font-heading);
  font-size: 130px;
  line-height: 1;
  color: rgba(0, 180, 255, 0.12);
  transform: skewX(-10deg);
  pointer-events: none;
}

.products-download__lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.products-steps {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: product-step;
}

.products-steps li {
  counter-increment: product-step;
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.products-steps li::before {
  content: counter(product-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--products-highlight);
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 14px;
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 50%, calc(100% - 4px) 100%, 0 100%);
}

.products-download__note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.products-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-download__media {
  align-self: center;
  margin: 0;
  text-align: center;
}

.products-download__img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-inline: auto;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(0, 180, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.35);
}

.products-download__media figcaption {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.products-benefits {
  margin-bottom: 64px;
  scroll-margin-top: 24px;
}

.products-benefits__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.products-benefits__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--success);
  color: var(--muted);
  font-size: 13px;
}

.products-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--success);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.75);
}

.products-benefits__lead {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.products-benefits__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.products-benefits__tags span {
  display: inline-block;
  padding: 3px 10px;
  color: var(--blue);
  font-size: 12px;
  background: rgba(0, 180, 255, 0.06);
  border: 1px solid var(--products-blue-line);
}

.products-table-wrap {
  margin-bottom: 18px;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
}

.products-benefits__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}

.products-table-caption {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.products-benefits__table thead th {
  padding: 13px 12px;
  color: #04100a;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: left;
  background: var(--green);
  border-right: 1px solid rgba(4, 16, 10, 0.25);
}

.products-benefits__table thead th:last-child {
  border-right: 0;
}

.products-benefits__table tbody th {
  width: 34%;
  padding: 12px;
  color: var(--text);
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.products-benefits__table tbody td {
  padding: 12px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.18s ease, color 0.18s ease;
}

.products-benefits__table tbody td:last-child {
  border-right: 0;
}

.products-benefits__table tbody tr:last-child th,
.products-benefits__table tbody tr:last-child td {
  border-bottom: 0;
}

.products-benefits__table tbody tr:hover {
  background: rgba(0, 180, 255, 0.07);
}

.products-benefits__table tbody tr:hover td {
  color: var(--text);
}

.products-ico--on,
.products-ico--off {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.products-ico--on {
  color: var(--success);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.products-ico--off {
  color: var(--muted);
  border: 1px solid var(--line);
}

.products-benefits__media {
  margin: 0 0 10px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.products-benefits__media img {
  display: block;
  width: 100%;
  height: auto;
}

.products-benefits__footnote {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.products-features {
  margin-bottom: 64px;
  scroll-margin-top: 24px;
}

.products-features__lead {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.products-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.products-feature {
  position: relative;
  padding: 18px 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.products-feature:hover {
  border-top-color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.products-feature:first-child::after {
  content: "LIVE";
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 90, 54, 0.14);
  pointer-events: none;
}

.products-feature__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.products-feature__text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.products-feature__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.products-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.25s ease;
}

.products-feature:hover .products-feature__media img {
  transform: scale(1.03);
}

.products-features__links {
  display: flex;
  justify-content: flex-end;
}

.products-versions {
  margin-bottom: 64px;
  scroll-margin-top: 24px;
}

.products-versions__lead {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.products-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-timeline__item {
  position: relative;
  margin: 0;
  padding: 22px 18px 20px 64px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}

.products-timeline__item--v3 {
  border-left-color: var(--green);
  background: linear-gradient(135deg, rgba(0, 232, 143, 0.08), transparent 60%), var(--surface);
}

.products-timeline__version {
  position: absolute;
  left: 16px;
  top: 20px;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
}

.products-timeline__item--v3 .products-timeline__version {
  color: var(--green);
}

.products-timeline__item h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 18px;
}

.products-timeline__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.products-faq-links {
  display: grid;
  gap: 12px;
  padding: 28px 22px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.1), rgba(0, 232, 143, 0.06)), var(--surface);
  border: 1px solid var(--line);
}

.products-faq-links p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.products-faq-links__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

@media (min-width: 760px) {
  .page-products {
    padding: 40px 28px 96px;
  }

  .products-download {
    grid-template-columns: minmax(0, 1fr) 300px;
    padding: 32px 28px;
  }

  .products-download__img {
    max-width: 280px;
  }

  .products-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .products-timeline__item {
    padding: 22px 16px 18px;
    border-left: 0;
    border-top: 4px solid var(--blue);
  }

  .products-timeline__item--v3 {
    border-top-color: var(--green);
    border-left: 0;
  }

  .products-timeline__version {
    position: static;
    display: block;
    margin-bottom: 14px;
    font-size: 30px;
  }
}

@media (min-width: 1080px) {
  .products-download {
    grid-template-columns: minmax(0, 1fr) 360px;
    padding: 40px 44px;
  }

  .products-download__img {
    max-width: 320px;
  }

  .products-benefits__table {
    min-width: 0;
  }
}
