.page-products {
  position: relative;
  background: var(--deep-blue);
  color: var(--text-primary);
  overflow-x: hidden;
}

.page-products__hero {
  position: relative;
  padding: 56px 0 24px;
  overflow: hidden;
}

.page-products__hero::before {
  content: "";
  position: absolute;
  top: -24%;
  right: -14%;
  width: 74%;
  height: 130%;
  background: linear-gradient(125deg, rgba(0, 180, 255, 0.16) 0%, rgba(255, 59, 59, 0.05) 55%, transparent 76%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-products__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-products__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--electric-blue);
}

.page-products__eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--electric-blue);
}

.page-products__hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.2vw, 54px);
  line-height: 1.2;
  max-width: 21ch;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-products__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 58ch;
  margin: 0 0 28px;
}

.page-products__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.page-products__btn-slant {
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  padding-right: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-products__btn-slant:hover {
  transform: translateX(4px);
}

.page-products__hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
}

.page-products__hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-products__hero-meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 12px rgba(0, 180, 255, 0.9);
}

.page-products__hero-visual {
  position: relative;
  margin: 0 -8px -8px 0;
}

.page-products__frame-glow {
  position: absolute;
  inset: 16px 16px -16px -16px;
  border: 1px solid rgba(0, 180, 255, 0.45);
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}

.page-products__hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(42, 58, 94, 0.65);
}

.page-products .breadcrumbs {
  margin-top: 48px;
}

.page-products__section {
  padding-top: 72px;
}

.page-products__section-head {
  margin-bottom: 36px;
}

.page-products__section-desc {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.page-products__feature-grid {
  gap: 22px;
}

.page-products__feature-card {
  position: relative;
  overflow: hidden;
  border-left: 3px solid var(--electric-blue);
  min-height: 220px;
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease);
}

.page-products__feature-card:nth-child(even) {
  border-left-color: var(--orange);
}

.page-products__feature-card:hover {
  transform: translateY(-4px);
  border-left-color: rgba(0, 180, 255, 0.85);
}

.page-products__feature-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-products__feature-card:nth-child(even)::after {
  background: radial-gradient(circle, rgba(255, 138, 0, 0.12) 0%, transparent 70%);
}

.page-products__feature-num {
  position: absolute;
  top: 10px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 180, 255, 0.1);
  user-select: none;
  pointer-events: none;
}

.page-products__feature-card:nth-child(even) .page-products__feature-num {
  color: rgba(255, 138, 0, 0.1);
}

.page-products__feature-card .card__body {
  position: relative;
  z-index: 1;
  padding: 28px 24px 30px;
}

.page-products__feature-card .card__label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric-blue);
  margin-bottom: 10px;
}

.page-products__feature-card:nth-child(even) .card__label {
  color: var(--orange);
}

.page-products__feature-card .card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}

.page-products__feature-card .card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-products__download-grid {
  display: grid;
  gap: 28px;
}

.page-products__download-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(42, 58, 94, 0.6);
}

.page-products__sys-panel {
  display: flex;
  flex-direction: column;
  padding: 20px 18px;
  background: rgba(22, 32, 58, 0.55);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.page-products__sys-item {
  background: var(--navy-blue);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 0 20px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-products__sys-item[open] {
  border-color: rgba(0, 180, 255, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.page-products__sys-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}

.page-products__sys-item summary::-webkit-details-marker {
  display: none;
}

.page-products__sys-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(0, 180, 255, 0.14);
  color: var(--electric-blue);
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.3s var(--ease);
}

.page-products__sys-item[open] summary::after {
  content: "\2212";
}

.page-products__sys-item p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-products__sys-item .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.page-products__download-note {
  margin: 12px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 138, 0, 0.06);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-products__compat-grid {
  display: grid;
  gap: 28px;
}

.page-products__compat-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(42, 58, 94, 0.55);
}

.page-products__compat-list {
  display: grid;
  gap: 14px;
}

.page-products__platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--navy-blue);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-products__platform-card:hover {
  border-color: rgba(0, 180, 255, 0.5);
  transform: translateX(4px);
}

.page-products__platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.22), rgba(0, 180, 255, 0.06));
  border: 1px solid rgba(0, 180, 255, 0.3);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--electric-blue);
}

.page-products__platform-card:nth-child(2) .page-products__platform-icon {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.22), rgba(255, 138, 0, 0.06));
  border-color: rgba(255, 138, 0, 0.34);
  color: var(--orange);
}

.page-products__platform-card:nth-child(3) .page-products__platform-icon {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.2), rgba(255, 59, 59, 0.05));
  border-color: rgba(255, 59, 59, 0.3);
  color: var(--red);
}

.page-products__platform-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
}

.page-products__platform-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-products__compat-note {
  margin: 8px 0 0;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(0, 180, 255, 0.06);
  border: 1px solid rgba(0, 180, 255, 0.14);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-products__guide-grid {
  display: grid;
  gap: 30px;
}

.page-products__guide-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(42, 58, 94, 0.55);
}

.page-products__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px;
}

.page-products__steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  position: relative;
}

.page-products__steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -26px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0, 180, 255, 0.5), rgba(0, 180, 255, 0.05));
}

.page-products__step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--electric-blue);
}

.page-products__steps li h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
}

.page-products__steps li p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-products__journal-grid {
  display: grid;
  gap: 30px;
}

.page-products__journal-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(42, 58, 94, 0.55);
}

.page-products__journal-more {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-products__journal-more a {
  color: var(--electric-blue);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 180, 255, 0.5);
}

.page-products__journal-more a:hover {
  border-bottom-style: solid;
}

.page-products__trust-section {
  margin-top: 84px;
  padding: 42px 0;
  background: linear-gradient(105deg, rgba(0, 180, 255, 0.12) 0%, transparent 40%, rgba(255, 59, 59, 0.05) 92%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-products__trust-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.page-products__trust-box h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
}

.page-products__trust-box p {
  margin: 0;
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.page-products__trust-stats {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
}

.page-products__trust-stats li {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--electric-blue);
  background: rgba(22, 32, 58, 0.7);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.page-products__trust-stats li:nth-child(even) {
  border-left-color: var(--orange);
}

.page-products__trust-box .btn-outline {
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .page-products__hero {
    padding: 88px 0 56px;
  }

  .page-products__hero-inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 64px;
  }

  .page-products__section {
    padding-top: 96px;
  }

  .page-products__section-head {
    margin-bottom: 48px;
  }

  .page-products__feature-card .card__title {
    font-size: 22px;
  }

  .page-products__feature-card .card__body p {
    font-size: 15px;
  }

  .page-products__download-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 48px;
  }

  .page-products__compat-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 48px;
  }

  .page-products__guide-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 48px;
  }

  .page-products__journal-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 48px;
  }

  .page-products__journal-media {
    order: 2;
  }

  .page-products__trust-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
}
