.page-products {
  --color-primary: #0B1D3A;
  --color-accent-yellow: #FFD700;
  --color-accent-purple: #7B2D8E;
  --color-warm-white: #F5F5F5;
  --color-dark-gray: #2A2A2A;
  --color-accent-blue: #00D4FF;
  --color-soft-purple: #A55BEE;
  --color-transparent-dark: rgba(11,29,58,0.8);
  --font-h1: 2.5rem;
  --font-h2: 1.75rem;
  --font-h3: 1.25rem;
  --font-body: 1rem;
  --font-small: 0.875rem;
  --max-width: 1200px;
  --spacer-xs: 0.25rem;
  --spacer-sm: 0.5rem;
  --spacer-md: 1rem;
  --spacer-lg: 2rem;
  --spacer-xl: 4rem;
  --header-h: 56px;
  background: var(--color-primary);
}
.page-products .breadcrumb {
  padding: var(--spacer-md) var(--spacer-lg) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: var(--font-small);
  color: var(--color-soft-purple);
  letter-spacing: 0.03em;
}
.page-products .breadcrumb a {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.page-products .breadcrumb a:hover,
.page-products .breadcrumb a:focus {
  color: var(--color-accent-yellow);
}
.page-products .breadcrumb [aria-current="page"] {
  color: var(--color-accent-yellow);
  font-weight: 600;
}
.page-products .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacer-lg);
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .page-products .container {
    padding: 0 var(--spacer-md);
  }
}
.page-products .hero-console {
  padding: var(--spacer-xl) 0 var(--spacer-lg);
  position: relative;
  overflow: hidden;
}
.page-products .hero-console::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-products .hero-console-inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacer-lg);
  position: relative;
  z-index: 1;
}
@media (min-width: 860px) {
  .page-products .hero-console-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--spacer-xl);
  }
}
.page-products .hero-console-text {
  flex: 1 1 50%;
}
.page-products .hero-console-text h1 {
  font-size: var(--font-h1);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--color-accent-yellow), var(--color-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 var(--spacer-md);
}
@media (max-width: 480px) {
  .page-products .hero-console-text h1 {
    font-size: 1.75rem;
  }
}
.page-products .hero-console-sub {
  font-size: var(--font-body);
  color: var(--color-warm-white);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 var(--spacer-lg);
  opacity: 0.88;
}
.page-products .hero-console-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacer-sm);
}
@media (min-width: 600px) {
  .page-products .hero-console-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacer-md);
  }
}
.page-products .console-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacer-xs);
  padding: var(--spacer-md) var(--spacer-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-warm-white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.page-products .console-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.page-products .console-card:hover,
.page-products .console-card:focus {
  border-color: var(--color-accent-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.12);
}
.page-products .console-card:hover::after,
.page-products .console-card:focus::after {
  opacity: 1;
}
.page-products .console-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.page-products .console-card-label {
  font-size: var(--font-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.page-products .console-card-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--color-accent-purple);
  color: var(--color-warm-white);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.page-products .hero-console-visual {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-products .hero-console-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(0,212,255,0.10);
  object-fit: cover;
  display: block;
}
@media (min-width: 860px) {
  .page-products .hero-console-img {
    max-width: 540px;
  }
}
@media (min-width: 1100px) {
  .page-products .hero-console-img {
    max-width: 620px;
  }
}
@media (max-width: 480px) {
  .page-products .hero-console-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .console-card {
    padding: var(--spacer-sm);
  }
  .page-products .console-card-icon {
    font-size: 1.3rem;
  }
}
.page-products .product-section {
  padding: var(--spacer-xl) 0;
  position: relative;
  overflow: hidden;
}
.page-products .product-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.page-products .section-wide::before {
  background: linear-gradient(135deg, rgba(123,45,142,0.06) 0%, transparent 60%);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}
.page-products .section-narrow::before {
  background: linear-gradient(225deg, rgba(0,212,255,0.04) 0%, transparent 60%);
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}
.page-products .product-section-inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacer-lg);
  position: relative;
  z-index: 1;
  align-items: center;
}
@media (min-width: 800px) {
  .page-products .section-wide .product-section-inner {
    flex-direction: row;
    gap: var(--spacer-xl);
  }
  .page-products .section-narrow .product-section-inner {
    flex-direction: row-reverse;
    gap: var(--spacer-xl);
  }
}
.page-products .device-frame {
  flex-shrink: 0;
  position: relative;
  background: var(--color-primary);
  border: 2px solid var(--color-accent-purple);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(123,45,142,0.18);
  transition: box-shadow 0.4s, transform 0.4s;
}
.page-products .device-frame:hover {
  box-shadow: 0 0 50px rgba(255,215,0,0.12), 0 0 30px rgba(123,45,142,0.25);
  transform: translateY(-4px);
}
.page-products .phone-frame {
  width: 200px;
  height: 400px;
  border-radius: 28px;
  padding: 50px 10px 10px;
  box-sizing: border-box;
  border-color: var(--color-accent-purple);
}
@media (min-width: 600px) {
  .page-products .phone-frame {
    width: 230px;
    height: 460px;
    border-radius: 32px;
    padding: 56px 12px 12px;
  }
}
.page-products .phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: var(--color-dark-gray);
  border-radius: 4px;
  z-index: 3;
}
@media (min-width: 600px) {
  .page-products .phone-notch {
    top: 18px;
    width: 70px;
    height: 9px;
  }
}
.page-products .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0a1628;
}
.page-products .device-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-products .monitor-frame {
  width: 320px;
  height: 200px;
  border-radius: 10px;
  padding: 10px 10px 22px;
  box-sizing: border-box;
  border-color: var(--color-soft-purple);
}
@media (min-width: 600px) {
  .page-products .monitor-frame {
    width: 420px;
    height: 260px;
    border-radius: 12px;
    padding: 12px 12px 28px;
  }
}
@media (min-width: 900px) {
  .page-products .monitor-frame {
    width: 480px;
    height: 300px;
  }
}
.page-products .monitor-frame::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  background: var(--color-dark-gray);
  border-radius: 3px;
  z-index: 3;
}
@media (min-width: 600px) {
  .page-products .monitor-frame::after {
    bottom: 6px;
    width: 100px;
    height: 12px;
  }
}
.page-products .monitor-screen {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #0a1628;
}
.page-products .product-info {
  flex: 1 1 50%;
  min-width: 0;
}
.page-products .product-info h2 {
  font-size: var(--font-h2);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-accent-yellow);
  margin: 0 0 var(--spacer-sm);
  line-height: 1.2;
}
@media (max-width: 480px) {
  .page-products .product-info h2 {
    font-size: 1.35rem;
  }
}
.page-products .product-summary {
  font-size: var(--font-body);
  color: var(--color-warm-white);
  line-height: 1.7;
  margin: 0 0 var(--spacer-md);
  opacity: 0.9;
}
.page-products .btn-expand {
  display: inline-flex;
  align-items: center;
  gap: var(--spacer-sm);
  background: none;
  border: 1px solid var(--color-accent-blue);
  color: var(--color-accent-blue);
  padding: var(--spacer-xs) var(--spacer-md);
  border-radius: 30px;
  font-size: var(--font-small);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.page-products .btn-expand:hover,
.page-products .btn-expand:focus {
  background: rgba(0,212,255,0.08);
  border-color: var(--color-accent-yellow);
  color: var(--color-accent-yellow);
}
.page-products .expand-icon {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 1.1rem;
  line-height: 1;
}
.page-products .btn-expand[aria-expanded="true"] .expand-icon {
  transform: rotate(45deg);
}
.page-products .product-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.page-products .product-detail[data-expand-content] {
  max-height: 0;
}
.page-products .product-detail.is-open {
  max-height: 320px;
  opacity: 1;
  margin-top: var(--spacer-md);
}
.page-products .product-detail p {
  color: var(--color-warm-white);
  font-size: var(--font-small);
  line-height: 1.7;
  margin: 0 0 var(--spacer-sm);
  opacity: 0.85;
}
.page-products .product-features {
  list-style: none;
  padding: 0;
  margin: var(--spacer-sm) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer-sm);
}
.page-products .product-features li {
  font-size: var(--font-small);
  color: var(--color-accent-blue);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.02em;
}
.page-products .product-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-products .visual-img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0,212,255,0.06);
  object-fit: cover;
  display: block;
  transition: transform 0.4s, box-shadow 0.4s;
}
.page-products .visual-img:hover {
  transform: scale(1.01);
  box-shadow: 0 0 40px rgba(123,45,142,0.12);
}
.page-products .visual-img-db {
  max-width: 180px;
  border-radius: 50%;
}
@media (min-width: 600px) {
  .page-products .visual-img-db {
    max-width: 220px;
  }
}
@media (min-width: 800px) {
  .page-products .product-visual {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .page-products .visual-img {
    max-width: 100%;
  }
  .page-products .visual-img-db {
    max-width: 200px;
  }
}
.page-products .products-cta {
  padding: var(--spacer-xl) 0 var(--spacer-lg);
  border-top: 1px solid rgba(255,215,0,0.08);
}
.page-products .products-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacer-md);
}
.page-products .cta-text {
  font-size: var(--font-body);
  color: var(--color-warm-white);
  opacity: 0.8;
  margin: 0;
  line-height: 1.7;
}
.page-products .cta-text .brand-link {
  color: var(--color-accent-yellow);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.page-products .cta-text .brand-link:hover,
.page-products .cta-text .brand-link:focus {
  border-bottom-color: var(--color-accent-yellow);
  color: var(--color-accent-blue);
}
.page-products .data-flow-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent-blue), transparent);
  border-radius: 2px;
  animation: productsFlowPulse 2.4s ease-in-out infinite;
}
@keyframes productsFlowPulse {
  0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1.2); }
}
@media (max-width: 480px) {
  .page-products .hero-console {
    padding: var(--spacer-lg) 0 var(--spacer-md);
  }
  .page-products .product-section {
    padding: var(--spacer-lg) 0;
  }
  .page-products .phone-frame {
    width: 160px;
    height: 320px;
    border-radius: 22px;
    padding: 40px 8px 8px;
  }
  .page-products .phone-notch {
    top: 10px;
    width: 48px;
    height: 6px;
  }
  .page-products .monitor-frame {
    width: 260px;
    height: 160px;
    border-radius: 8px;
    padding: 8px 8px 18px;
  }
  .page-products .monitor-frame::after {
    width: 60px;
    height: 8px;
    bottom: 3px;
  }
  .page-products .product-features li {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  .page-products .visual-img-db {
    max-width: 140px;
  }
}
@media (min-width: 1200px) {
  .page-products .hero-console-text h1 {
    font-size: 2.8rem;
  }
  .page-products .phone-frame {
    width: 250px;
    height: 500px;
    border-radius: 36px;
    padding: 62px 14px 14px;
  }
  .page-products .phone-notch {
    top: 20px;
    width: 80px;
    height: 10px;
  }
  .page-products .monitor-frame {
    width: 520px;
    height: 320px;
    border-radius: 14px;
    padding: 14px 14px 32px;
  }
  .page-products .monitor-frame::after {
    width: 120px;
    height: 14px;
    bottom: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-products .data-flow-line {
    animation: none;
  }
  .page-products .device-frame,
  .page-products .visual-img,
  .page-products .console-card {
    transition: none;
  }
  .page-products .device-frame:hover,
  .page-products .visual-img:hover {
    transform: none;
  }
  .page-products .product-detail {
    transition: none;
  }
}
