.page-products {
  --hero-gap: 3rem;
  --card-hover-glow: 0 0 20px rgba(0,245,255,0.25);
}

.page-products .breadcrumb {
  margin-block: 1rem 0;
}

.page-products .breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.page-products .breadcrumb-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-products .breadcrumb-link:hover {
  color: var(--color-primary);
}

.page-products .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin-right: 0.5rem;
  color: var(--color-text-muted);
}

.page-products .breadcrumb-current {
  color: var(--color-primary);
  font-weight: 700;
}

.page-products .hero-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 2rem 3rem;
  align-items: center;
}

.page-products .hero-left {
  flex: 1;
  order: 1;
}

.page-products .hero-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-products .hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.page-products .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.page-products .feature-item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

.page-products .feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,245,255,0.4);
}

.page-products .hero-cta {
  display: inline-block;
  margin-top: 1rem;
}

.page-products .hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 0;
  min-height: 400px;
}

.page-products .phone-model {
  width: 180px;
  height: 360px;
  background: var(--color-surface);
  border-radius: 24px;
  padding: 8px;
  border: 2px solid rgba(0,245,255,0.3);
  box-shadow: 0 0 40px rgba(0,245,255,0.1);
  position: relative;
  transition: transform 0.6s ease;
}

.page-products .phone-model:hover {
  transform: rotateY(-8deg) scale(1.02);
}

.page-products .phone-screen {
  width: 100%;
  height: 100%;
  background: #0f1a2e;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-products .phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(0,245,255,0.05);
  border-bottom: 1px solid rgba(0,245,255,0.1);
}

.page-products .phone-time {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.page-products .phone-battery {
  width: 20px;
  height: 10px;
  border: 1px solid var(--color-primary);
  border-radius: 2px;
  position: relative;
}

.page-products .phone-battery::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--color-primary);
  width: 60%;
  border-radius: 1px;
}

.page-products .phone-content {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.page-products .phone-data-line {
  height: 8px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  border-radius: 4px;
  opacity: 0.8;
  animation: pulseWidth 2s ease-in-out infinite;
}

.page-products .phone-data-line:nth-child(2) { animation-delay: 0.3s; }
.page-products .phone-data-line:nth-child(3) { animation-delay: 0.6s; }
.page-products .phone-data-line:nth-child(4) { animation-delay: 0.9s; }
.page-products .phone-data-line:nth-child(5) { animation-delay: 1.2s; }

@keyframes pulseWidth {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.page-products .section {
  padding-block: 4rem;
}

.page-products .section-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-products .section-desc {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.6;
}

.page-products .features-grid {
  margin-top: 1rem;
}

.page-products .features-card {
  background: var(--color-surface);
  border: 1px solid rgba(0,245,255,0.1);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-products .features-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--card-hover-glow);
  transform: translateY(-4px);
}

.page-products .card-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-products .card-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  margin: 0;
}

.page-products .card-text {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.page-products .card-data {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,245,255,0.1);
}

.page-products .mini-radar {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  aspect-ratio: 1/1;
}

.page-products .data-depth {
  background: rgba(0,245,255,0.03);
  border-block: 1px solid rgba(0,245,255,0.08);
}

.page-products .depth-layout {
  align-items: center;
}

.page-products .depth-visual {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,245,255,0.1);
}

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

.page-products .depth-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.page-products .depth-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.page-products .depth-item:hover {
  border-left-color: var(--color-secondary);
  box-shadow: var(--card-hover-glow);
}

.page-products .depth-metric {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-primary);
  min-width: 4rem;
}

.page-products .depth-label {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
}

.page-products .how-to-use {
  background: var(--color-surface);
}

.page-products .usage-cards {
  margin-top: 1rem;
}

.page-products .usage-card {
  background: var(--color-bg);
  border: 1px solid rgba(0,245,255,0.15);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.page-products .usage-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--card-hover-glow);
}

.page-products .usage-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,245,255,0.1);
  margin-bottom: 0.5rem;
}

.page-products .card-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: auto;
}

.page-products .cta-banner {
  background: linear-gradient(135deg, rgba(0,245,255,0.08) 0%, rgba(255,107,0,0.08) 100%);
  padding-block: 4rem;
}

.page-products .cta-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-products .cta-text {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.page-products .cta-decor {
  display: block;
  margin: 2rem auto 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .page-products .phone-model {
    transition: none;
  }
  .page-products .phone-data-line {
    animation: none;
  }
  .page-products .features-card:hover {
    transform: none;
  }
  .page-products .depth-item:hover {
    transform: none;
  }
}

@media (min-width: 768px) {
  .page-products .hero-split {
    flex-direction: row;
    gap: var(--hero-gap);
  }
  .page-products .hero-left {
    order: 0;
  }
  .page-products .hero-right {
    order: 1;
  }
  .page-products .hero-title {
    font-size: 2.5rem;
  }
  .page-products .phone-model {
    width: 220px;
    height: 440px;
  }
  .page-products .section-title {
    font-size: 2rem;
  }
  .page-products .depth-metric {
    font-size: 2rem;
  }
  .page-products .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-products .hero-split {
    padding-block: 3rem 4rem;
  }
  .page-products .phone-model {
    width: 260px;
    height: 520px;
  }
  .page-products .section {
    padding-block: 5rem;
  }
}
