.page-products {
  --pl-cut: 16px;
  --pl-gutter: clamp(20px, 4vw, 64px);
  --pl-deep: #0A1E3F;
  --pl-night: #1A2A4A;
  --pl-gold: #D4A017;
  --pl-green: #2ECC71;
  --pl-silver: #B0B8C8;
  background: var(--pl-deep);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-products .container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pl-gutter);
}

.page-products img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products a {
  text-decoration: none;
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pl-silver);
}

.page-products .breadcrumb a {
  color: var(--color-bronze);
  transition: color 0.25s ease;
}

.page-products .breadcrumb a:hover {
  color: var(--pl-gold);
}

.page-products .breadcrumb__current {
  color: var(--color-white);
}

.page-products .route-line {
  margin: 0;
}

.pl-platform-hero {
  position: relative;
  padding-block: 48px 80px;
  background:
    linear-gradient(120deg, var(--pl-deep) 0%, #0D2547 58%, #17325E 100%);
  isolation: isolate;
}

.pl-platform-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 46px,
    rgba(212, 160, 23, 0.07) 46px 47px
  );
  z-index: -1;
}

.pl-platform-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, transparent 40%, rgba(212, 160, 23, 0.2) 40% 48%, transparent 48%);
  z-index: -1;
}

.pl-platform-hero__line {
  display: block;
  width: 76px;
  height: 8px;
  margin-block: 16px 0;
  margin-left: var(--pl-gutter);
  background: var(--pl-gold);
  transform: skewX(-32deg);
}

.pl-platform-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

.pl-platform-hero__content {
  max-width: 860px;
}

.pl-platform-hero__label {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--pl-green);
}

.pl-platform-hero__content h1 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 5.2vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.pl-platform-hero__lead {
  max-width: 680px;
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--pl-silver);
}

.pl-platform-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.pl-platform-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}

.pl-hero-stat {
  position: relative;
  padding: 24px 20px;
  background: var(--pl-night);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-left: 3px solid var(--pl-gold);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pl-hero-stat:hover {
  transform: translateY(-3px);
  border-color: var(--pl-green);
}

.pl-hero-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.pl-hero-stat__num span {
  font-size: 0.5em;
  color: var(--pl-gold);
}

.pl-hero-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--pl-silver);
}

.pl-feats,
.pl-coverage,
.pl-pricing,
.pl-download {
  padding-block: 76px 88px;
}

.pl-feats .section-head,
.pl-coverage .section-head,
.pl-pricing .section-head,
.pl-download .section-head {
  margin-bottom: 40px;
}

.pl-feats__grid {
  display: grid;
  gap: 20px;
}

.pl-feat-card {
  position: relative;
  padding: 30px 28px;
  background: linear-gradient(145deg, var(--pl-night) 0%, #101F3B 100%);
  border: 1px solid rgba(212, 160, 23, 0.16);
  border-top: 3px solid var(--pl-gold);
  clip-path: polygon(0 0, calc(100% - var(--pl-cut)) 0, 100% var(--pl-cut), 100% 100%, var(--pl-cut) 100%, 0 calc(100% - var(--pl-cut)));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pl-feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.pl-feat-card__index {
  display: block;
  font-family: var(--font-mono);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--pl-gold);
  opacity: 0.9;
}

.pl-feat-card h3 {
  margin: 18px 0 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-white);
}

.pl-feat-card p {
  margin: 0 0 16px;
  color: var(--pl-silver);
  font-size: 15px;
}

.pl-feat-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pl-feat-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--color-white);
}

.pl-feat-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 3px;
  background: var(--pl-green);
  transform: skewX(-20deg);
}

.pl-feats__media {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.pl-feats__wire {
  margin: 0;
  background: var(--pl-night);
  border: 1px solid rgba(212, 160, 23, 0.18);
  padding: 14px 14px 0;
}

.pl-feats__wire img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pl-feats__wire figcaption,
.pl-coverage__map figcaption,
.pl-pricing__figure figcaption,
.pl-download__qr figcaption {
  padding: 14px 6px;
  font-size: 13px;
  color: var(--pl-silver);
  border-top: 1px solid rgba(176, 184, 200, 0.2);
}

.pl-feats__datapanel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: stretch;
  background: var(--pl-night);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.pl-feats__datapanel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pl-feats__datapanel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.pl-feats__metrics {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.pl-feats__metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pl-feats__metric dt {
  font-size: 14px;
  color: var(--pl-silver);
}

.pl-feats__metric dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--pl-green);
  white-space: nowrap;
}

.pl-coverage {
  background:
    linear-gradient(180deg, var(--pl-deep) 0%, #0C2344 100%);
}

.pl-coverage__layout {
  display: grid;
  gap: 40px;
  align-items: center;
}

.pl-coverage__info {
  display: grid;
  gap: 24px;
}

.pl-coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pl-cov-stat {
  padding: 20px 18px;
  background: var(--pl-night);
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-bottom: 3px solid var(--pl-gold);
}

.pl-cov-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.pl-cov-stat__num span {
  font-size: 0.55em;
  color: var(--pl-gold);
}

.pl-cov-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--pl-silver);
}

.pl-coverage__note {
  margin: 0;
  padding: 18px 20px;
  background: rgba(26, 42, 74, 0.65);
  border-left: 3px solid var(--pl-green);
  font-size: 14px;
  line-height: 1.8;
  color: var(--pl-silver);
}

.pl-coverage__map {
  margin: 0;
  background: var(--pl-night);
  border: 1px solid rgba(212, 160, 23, 0.18);
  padding: 14px 14px 0;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.pl-coverage__map img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pl-pricing {
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 160, 23, 0.12), transparent 40%),
    var(--pl-deep);
}

.pl-pricing__layout {
  display: grid;
  gap: 40px;
}

.pl-pricing__tablewrap {
  background: linear-gradient(160deg, var(--pl-night), #0B2140);
  border: 1px solid rgba(212, 160, 23, 0.24);
  padding: 28px;
}

.pl-billing {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
}

.pl-billing__option {
  font-size: 14px;
  color: var(--pl-silver);
}

.pl-billing__option--active {
  color: var(--pl-gold);
  font-weight: 700;
}

.pl-billing__track {
  position: relative;
  width: 64px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
}

.pl-billing__knob {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pl-gold);
  transform: translateY(-50%);
}

.pl-price-table {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pl-price-table__row {
  display: contents;
}

.pl-price-table__row > span {
  padding: 14px 12px;
  background: var(--pl-deep);
  font-size: 14px;
  line-height: 1.5;
}

.pl-price-table__row--head > span {
  background: var(--pl-night);
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--pl-gold);
  letter-spacing: 0.04em;
}

.pl-price-table__row--total > span {
  background: #0A1A30;
  font-family: var(--font-mono);
  font-weight: 700;
  border-top: 2px solid var(--pl-gold);
}

.pl-price-table__row--total > span:first-child {
  color: var(--pl-gold);
}

.pl-price-table__row--total > span:nth-child(2) {
  color: var(--pl-green);
}

.pl-price-table__row--total > span:last-child {
  color: var(--pl-gold);
  white-space: nowrap;
}

.pl-pricing__note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--pl-silver);
}

.pl-pricing__visual {
  display: grid;
  gap: 24px;
  align-content: start;
}

.pl-pricing__figure {
  margin: 0;
  background: var(--pl-night);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 14px 14px 0;
}

.pl-pricing__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pl-tagscrowd {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pl-tagscrowd .tag {
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pl-tagscrowd .tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.pl-tagscrowd .tag:nth-child(3n + 1) {
  font-size: 17px;
}

.pl-tagscrowd .tag:nth-child(5n) {
  font-size: 15px;
}

.pl-download {
  position: relative;
  background:
    linear-gradient(110deg, var(--pl-deep) 0%, var(--pl-night) 100%);
}

.pl-download::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 8px;
  background: var(--pl-gold);
}

.pl-download__layout {
  display: grid;
  gap: 40px;
  align-items: center;
}

.pl-download__content {
  display: grid;
  gap: 18px;
  align-content: start;
}

.pl-download__content > .tag {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 8px 14px;
}

.pl-download__platform {
  background: rgba(26, 42, 74, 0.6);
  border-left: 3px solid var(--pl-gold);
  padding: 22px 24px;
}

.pl-download__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: download-steps;
}

.pl-download__steps li {
  position: relative;
  padding-left: 40px;
  counter-increment: download-steps;
  font-size: 15px;
  color: var(--color-white);
}

.pl-download__steps li::before {
  content: counter(download-steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--pl-gold);
  color: var(--pl-deep);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  transform: skewX(-18deg);
}

.pl-download__scenario {
  margin: 0;
  padding: 18px 20px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.28);
  font-size: 14px;
  line-height: 1.85;
  color: var(--pl-silver);
}

.pl-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pl-download__faq {
  margin: 0;
  font-size: 14px;
  color: var(--pl-silver);
}

.pl-download__faq a {
  color: var(--pl-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pl-download__faq a:hover {
  color: var(--color-green);
}

.pl-download__qr {
  position: relative;
  margin: 0;
  background: #0C2142;
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 18px 18px 0;
  overflow: hidden;
}

.pl-download__qr::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 160, 23, 0.18);
  pointer-events: none;
}

.pl-download__qr img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 720px) {
  .pl-platform-hero {
    padding-block: 64px 96px;
  }

  .pl-platform-hero__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
  }

  .pl-feats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-coverage__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .pl-pricing__layout {
    grid-template-columns: 1.4fr 1fr;
  }

  .pl-download__layout {
    grid-template-columns: 1.4fr 1fr;
  }

  .pl-download__qr {
    max-width: 420px;
    justify-self: center;
  }
}

@media (min-width: 1024px) {
  .pl-feats,
  .pl-coverage,
  .pl-pricing,
  .pl-download {
    padding-block: 104px 120px;
  }

  .pl-feats__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .pl-feat-card--primary {
    grid-row: span 2;
  }

  .pl-feats__media {
    grid-template-columns: 3fr 2fr;
  }

  .pl-coverage__layout {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
  }

  .pl-pricing__layout {
    gap: 48px;
  }

  .pl-download__layout {
    gap: 48px;
  }
}
