.page-products {
  --pg-green: #00FF9F;
  --pg-purple: #B537F2;
  --pg-cyan: #00D4FF;
  --pg-glass: rgba(255, 255, 255, 0.08);
  --pg-glow: rgba(0, 255, 159, 0.4);
  --pg-card-line: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #0B132B 0%, #0B1B3F 55%, #0B132B 100%);
  color: #F0F4FF;
  overflow-x: hidden;
}

.page-products .products-crumb {
  padding-top: 20px;
}

.page-products .breadcrumb {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #A8B2D1;
}

.page-products .breadcrumb__link {
  color: #A8B2D1;
  text-decoration: none;
  transition: color 0.3s;
}

.page-products .breadcrumb__link:hover {
  color: #00FF9F;
}

.page-products .breadcrumb__sep {
  margin: 0 10px;
  color: #6A7BA7;
}

.page-products .breadcrumb__current {
  color: #00FF9F;
}

.page-products .app-hero {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 36px;
  padding-bottom: 48px;
  position: relative;
}

.page-products .app-hero::before {
  content: "";
  position: absolute;
  inset: 20px -10% 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.page-products .app-hero__content,
.page-products .app-hero__visual {
  position: relative;
  z-index: 1;
}

.page-products .app-hero__content {
  max-width: 640px;
}

.page-products .app-hero .page-title {
  margin: 16px 0 14px;
  font-size: clamp(1.9rem, 5.2vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 255, 159, 0.35);
}

.page-products .app-hero .page-lead {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #A8B2D1;
  max-width: 56ch;
}

.page-products .app-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.page-products .app-hero__points span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 255, 159, 0.1);
  border: 1px solid rgba(0, 255, 159, 0.3);
  color: #00FF9F;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.page-products .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.page-products .hero-metric {
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.page-products .hero-metric__value {
  display: block;
  font-family: "Orbitron", "Rajdhani", "Noto Sans SC", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00FF9F;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(0, 255, 159, 0.35);
}

.page-products .hero-metric__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #A8B2D1;
}

.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-products .app-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  position: relative;
}

.page-products .phone-frame {
  position: relative;
  width: 100%;
  max-width: 200px;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(0, 255, 159, 0.4), rgba(181, 55, 242, 0.3), rgba(0, 212, 255, 0.2));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 255, 159, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transform: perspective(1000px) rotateY(-12deg) rotateZ(4deg) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-products .phone-frame::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.page-products .phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.page-products .phone-frame__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 14px;
  border-radius: 8px;
  background: rgba(11, 19, 43, 0.82);
  z-index: 2;
}

.page-products .phone-coord {
  position: absolute;
  bottom: 16px;
  right: -6px;
  font-size: 12px;
  color: #6A7BA7;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.page-products .panel-head {
  margin-bottom: 36px;
  max-width: 720px;
}

.page-products .panel-head .legend-label {
  margin-bottom: 10px;
}

.page-products .panel-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin: 8px 0 14px;
  text-shadow: 0 0 14px rgba(0, 255, 159, 0.25);
}

.page-products .panel-head p {
  color: #A8B2D1;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.page-products .download-panel,
.page-products .subscribe-panel,
.page-products .favorites-panel,
.page-products .features-panel {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-products .download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.page-products .download-card {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.page-products .download-card__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #00FF9F;
  color: #00FF9F;
  font-family: "Orbitron", "Rajdhani", "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 0 12px rgba(0, 255, 159, 0.2);
}

.page-products .download-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.page-products .download-card p {
  color: #A8B2D1;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.page-products .download-note {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border: 1px dashed rgba(0, 255, 159, 0.3);
  border-radius: 14px;
  background: rgba(0, 255, 159, 0.04);
}

.page-products .download-note img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
}

.page-products .download-note__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #A8B2D1;
}

.page-products .subscribe-block {
  margin-bottom: 8px;
}

.page-products .steps-group--primary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.page-products .steps-group--batch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-products .steps-group__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-products .step-card {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.page-products .step-card:hover {
  border-color: rgba(0, 255, 159, 0.5);
}

.page-products .step-card--big {
  border-color: rgba(0, 255, 159, 0.4);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.08), rgba(255, 255, 255, 0.04));
}

.page-products .step-card--big img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  margin-top: 16px;
}

.page-products .step-num {
  display: inline-block;
  font-family: "Orbitron", "Rajdhani", "Noto Sans SC", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #00FF9F;
  border: 1px solid #00FF9F;
  border-radius: 8px;
  padding: 4px 12px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  box-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

.page-products .step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-products .step-card p {
  font-size: 14px;
  color: #A8B2D1;
  line-height: 1.65;
  margin: 0;
}

.page-products .batch-flag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 22px;
  padding: 14px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(0, 255, 159, 0.15), rgba(181, 55, 242, 0.1));
  border-left: 3px solid #00FF9F;
}

.page-products .batch-flag__mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00FF9F;
  box-shadow: 0 0 12px #00FF9F;
  animation: pg-blink 1.6s infinite;
}

.page-products .batch-flag strong {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #00FF9F;
}

.page-products .guide-figure {
  margin: 18px 0 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.page-products .guide-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
}

.page-products .guide-figure figcaption {
  padding: 12px 8px 6px;
  font-size: 12px;
  color: #6A7BA7;
  letter-spacing: 0.04em;
}

.page-products .favorites-tabs {
  padding: 22px 18px;
  border-radius: 14px;
  background: rgba(11, 27, 63, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-products .tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-products .favorites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-products .fav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
}

.page-products .fav-card__icon {
  font-size: 1.6rem;
  color: #00FF9F;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(0, 255, 159, 0.3);
}

.page-products .fav-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.page-products .fav-card p {
  font-size: 13px;
  color: #A8B2D1;
  line-height: 1.6;
  margin: 0;
}

.page-products .fav-path {
  margin: 28px 0 0;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  font-size: 14px;
  color: #A8B2D1;
  line-height: 1.9;
}

.page-products .fav-path li::marker {
  color: #00D4FF;
}

.page-products .features-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.page-products .features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-products .feature-item {
  padding: 18px;
}

.page-products .feature-item__tag {
  display: inline-block;
  font-family: "Orbitron", "Rajdhani", "Noto Sans SC", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.page-products .feature-item__tag--green {
  background: rgba(0, 255, 159, 0.18);
  color: #00FF9F;
  border: 1px solid rgba(0, 255, 159, 0.4);
}

.page-products .feature-item__tag--purple {
  background: rgba(181, 55, 242, 0.18);
  color: #B537F2;
  border: 1px solid rgba(181, 55, 242, 0.4);
}

.page-products .feature-item__tag--cyan {
  background: rgba(0, 212, 255, 0.18);
  color: #00D4FF;
  border: 1px solid rgba(0, 212, 255, 0.4);
}

.page-products .feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.page-products .feature-item p {
  font-size: 14px;
  color: #A8B2D1;
  line-height: 1.65;
  margin: 0;
}

.page-products .features-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
}

.page-products .features-chart img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.page-products .features-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-products .features-support-note {
  width: 100%;
  font-size: 13px;
  color: #6A7BA7;
  line-height: 1.7;
  margin-top: 8px;
}

@keyframes pg-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (min-width: 640px) {
  .page-products .download-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .steps-group--primary {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .favorites-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .download-note {
    flex-direction: row;
    align-items: center;
  }

  .page-products .download-note img {
    width: 220px;
    flex-shrink: 0;
  }

  .page-products .hero-metric__value {
    font-size: 1.7rem;
  }
}

@media (min-width: 960px) {
  .page-products .app-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .page-products .app-hero__visual {
    min-height: 520px;
  }

  .page-products .phone-frame {
    max-width: 250px;
    transform: perspective(1200px) rotateY(-16deg) rotateZ(5deg) rotateX(2deg);
  }

  .page-products .steps-group--batch {
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .page-products .steps-group__side {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-products .guide-figure--primary {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
  }

  .page-products .guide-figure--primary img {
    max-width: 520px;
  }

  .page-products .features-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .page-products .features-chart {
    min-height: 320px;
  }

  .page-products .favorites-tabs {
    padding: 28px 26px;
  }
}
