.page-products {
  --pd-hero-fg: #F5EEDC;
  --pd-gap: 28px;
  font-family: var(--font-body);
  background: var(--bg);
}
.page-products img {
  max-width: 100%;
  height: auto;
}
.page-products .pd-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
.page-products .pd-hero {
  position: relative;
  background: var(--navy);
  color: var(--pd-hero-fg);
  padding: 48px 0 0;
  overflow: hidden;
  border-bottom: var(--border-w) solid var(--line);
}
.page-products .pd-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: var(--border-w) solid rgba(198, 255, 0, 0.3);
  border-radius: 50%;
  top: -130px;
  right: -70px;
  pointer-events: none;
}
.page-products .pd-hero::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 34px;
  background: var(--accent);
  border: var(--border-w) solid var(--line);
  right: 14px;
  bottom: 46px;
  transform: rotate(-5deg);
  z-index: 1;
  pointer-events: none;
}
.page-products .pd-hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}
.page-products .pd-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-gap);
}
.page-products .pd-hero__trust-line {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: var(--border-w) solid var(--line);
  background: var(--ink);
  color: var(--pd-hero-fg);
  padding: 12px 20px;
  margin-top: 48px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.page-products .pd-hero__trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-products .pd-hero__trust-line span:not(:last-child)::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  margin-left: 8px;
}
.page-products .pd-breadcrumb a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}
.page-products .pd-breadcrumb .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}
.page-products .pd-breadcrumb .breadcrumb__current {
  color: rgba(255, 255, 255, 0.85);
}
.page-products .pd-hero__eyebrow {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  padding: 6px 12px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.page-products .pd-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  margin: 24px 0 16px;
  letter-spacing: 0.01em;
  color: var(--pd-hero-fg);
}
.page-products .pd-hero__lead {
  font-size: 17px;
  line-height: 1.75;
  max-width: 460px;
  color: rgba(245, 238, 220, 0.85);
  margin: 0 0 28px;
}
.page-products .pd-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  text-decoration: none;
}
.page-products .pd-hero__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding-bottom: 64px;
}
.page-products .pd-hero__metric {
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--card);
  color: var(--ink);
}
.page-products .pd-hero__metric--lime {
  background: var(--lime);
}
.page-products .pd-hero__metric--navy {
  background: rgba(11, 34, 58, 0.9);
  color: var(--pd-hero-fg);
}
.page-products .pd-hero__num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.page-products .pd-hero__desc {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-products .pd-hero__metric--navy .pd-hero__desc,
.page-products .pd-hero__metric--lime .pd-hero__desc {
  color: var(--ink);
}
.page-products .pd-hero__metric--navy .pd-hero__num {
  color: var(--lime);
}
.page-products .pd-service {
  padding: 64px 0 80px;
}
.page-products .pd-tabs {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.page-products .pd-tabs__bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  background: var(--ink);
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
}
.page-products .pd-tabs__btn {
  flex-shrink: 0;
  border: var(--border-w) solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.page-products .pd-tabs__btn:hover {
  transform: translateY(-2px);
}
.page-products .pd-tabs__btn.is-active {
  background: var(--lime);
  box-shadow: var(--shadow-hard);
  transform: translateY(-2px);
}
.page-products .pd-section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: var(--border-w) solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 28px;
}
.page-products .pd-section-head__index {
  align-self: flex-start;
  background: var(--accent);
  color: var(--bg);
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  margin-bottom: 8px;
}
.page-products .pd-section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.page-products .pd-section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.page-products .pd-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.page-products .pd-feature-card {
  position: relative;
  display: flex;
  gap: 18px;
  background: var(--card);
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-products .pd-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.page-products .pd-feature-card__icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border: var(--border-w) solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.page-products .pd-feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .pd-feature-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.page-products .pd-feature-card__body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.page-products .pd-feature-card__body p {
  font-size: 15px;
  line-height: 1.65;
  color: #4B3B30;
  margin: 0 0 12px;
}
.page-products .pd-feature-card__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-products .pd-feature-card__body li {
  background: var(--panel);
  border: 2px solid var(--line);
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.page-products .pd-summary-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  background: var(--navy);
  color: var(--pd-hero-fg);
}
.page-products .pd-summary-bar__item {
  padding: 18px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(245, 238, 220, 0.78);
}
.page-products .pd-summary-bar__item:nth-child(2n) {
  border-right: 0;
}
.page-products .pd-summary-bar__item:nth-last-child(-n+2) {
  border-bottom: 0;
}
.page-products .pd-summary-bar__item span {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--lime);
}
.page-products .pd-cover-map {
  margin: 0 0 28px;
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  background: var(--panel);
}
.page-products .pd-cover-map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .pd-table-wrap {
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  background: var(--card);
  overflow-x: auto;
}
.page-products .pd-table-wrap .data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}
.page-products .pd-table-wrap caption {
  text-align: left;
  background: var(--navy);
  color: var(--pd-hero-fg);
  border-bottom: var(--border-w) solid var(--line);
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.page-products .pd-data-table th,
.page-products .pd-data-table td {
  padding: 12px 14px;
  text-align: left;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}
.page-products .pd-data-table thead th {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.page-products .pd-data-table tbody tr:nth-child(odd) {
  background: var(--panel);
}
.page-products .pd-data-table tbody tr:nth-child(even) {
  background: var(--card);
}
.page-products .pd-data-table tbody tr:hover {
  background: var(--lime);
}
.page-products .pd-data-table tbody th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid var(--line);
}
.page-products .pd-table-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--card);
  border: 2px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.page-products .pd-version-visual {
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  background: var(--ink);
  padding: 20px;
  margin-bottom: 32px;
}
.page-products .pd-version-visual img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}
.page-products .pd-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.page-products .pd-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: var(--border-w);
  background: var(--line);
}
.page-products .pd-timeline__item {
  position: relative;
  padding-left: 34px;
  margin-bottom: 20px;
}
.page-products .pd-timeline__item:last-child {
  margin-bottom: 0;
}
.page-products .pd-timeline__marker {
  position: absolute;
  left: 0;
  top: 18px;
  width: 17px;
  height: 17px;
  border: var(--border-w) solid var(--line);
  background: var(--lime);
  border-radius: 50%;
}
.page-products .pd-timeline__item--current .pd-timeline__marker {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--lime);
}
.page-products .pd-timeline__card {
  background: var(--card);
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  padding: 16px 18px;
}
.page-products .pd-timeline__item--current .pd-timeline__card {
  background: var(--lime);
}
.page-products .pd-timeline__version {
  display: inline-block;
  background: var(--navy);
  color: var(--pd-hero-fg);
  border: 2px solid var(--line);
  padding: 3px 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.page-products .pd-timeline__item--current .pd-timeline__version {
  background: var(--ink);
  color: var(--lime);
}
.page-products .pd-timeline__card p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: #4B3B30;
}
.page-products .pd-timeline__item--current .pd-timeline__card p {
  color: var(--ink);
}
.page-products .pd-download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.page-products .pd-phone-mock {
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  background: var(--ink);
  padding: 14px;
}
.page-products .pd-phone-mock img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-products .pd-download-info h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}
.page-products .pd-download-info > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.page-products .pd-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.page-products .pd-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}
.page-products .pd-download-code {
  display: inline-block;
  border: var(--border-w) dashed var(--navy);
  background: var(--bg);
  padding: 16px;
  text-align: center;
  max-width: 100%;
}
.page-products .pd-download-code img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
.page-products .pd-download-code p {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 10px 0 0;
}
.page-products .pd-download-note {
  margin-top: 28px;
  background: var(--navy);
  color: var(--pd-hero-fg);
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
}
.page-products .pd-download-note p {
  margin: 0;
}
.page-products .pd-download-note strong {
  color: var(--lime);
}
.page-products .pd-bottom-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
  border-top: var(--border-w) solid var(--line);
  padding-top: 36px;
}
.page-products .pd-bottom-index__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--card);
  border: var(--border-w) solid var(--line);
  box-shadow: var(--shadow-hard);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.page-products .pd-bottom-index__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.page-products .pd-bottom-index__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.page-products .pd-bottom-index__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}
.page-products .pd-bottom-index__arrow {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border: 2px solid var(--line);
  font-weight: 700;
}
@media (max-width: 520px) {
  .page-products .pd-feature-card {
    flex-direction: column;
  }
  .page-products .pd-feature-card__icon {
    width: 100%;
    height: 160px;
  }
  .page-products .pd-summary-bar {
    grid-template-columns: 1fr;
  }
  .page-products .pd-summary-bar__item {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }
  .page-products .pd-summary-bar__item:last-child {
    border-bottom: 0;
  }
  .page-products .pd-hero__metric {
    padding: 14px 16px;
  }
}
@media (min-width: 720px) {
  .page-products .pd-summary-bar {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-products .pd-summary-bar__item {
    border-bottom: 0;
    border-right: 2px solid var(--line);
  }
  .page-products .pd-summary-bar__item:last-child {
    border-right: 0;
  }
  .page-products .pd-bottom-index {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 860px) {
  .page-products .pd-download-grid {
    grid-template-columns: 240px 1fr;
  }
}
@media (min-width: 900px) {
  .page-products .pd-hero__inner {
    grid-template-columns: 5fr 3fr;
    align-items: end;
    min-height: 480px;
  }
  .page-products .pd-hero__copy {
    padding-bottom: 48px;
  }
  .page-products .pd-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
