.page-products {
  --product-bg: var(--bg-cream);
  --product-deep: var(--bg-deep);
  --product-deep-2: var(--bg-deep-2);
  --product-accent: var(--accent);
  --product-gold: var(--gold);
  --product-cyan: var(--cyan);
  --product-text: var(--text-main);
  --product-line: var(--line);
  --product-card-radius: 14px;
  background: var(--product-bg);
  color: var(--product-text);
  overflow-x: hidden;
}

.page-products .container {
  width: min(100% - 40px, var(--container-max));
  margin-inline: auto;
}

.page-products .section {
  padding-block: 64px;
}

.page-products .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--product-accent);
}

.page-products .section-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--product-accent);
  display: inline-block;
}

.page-products .section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.page-products .section-head h2 {
  font-family: var(--font-headline);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: var(--product-text);
}

.page-products .section-desc {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(43, 32, 26, 0.76);
  margin: 0;
}

.page-products .section-desc a {
  color: var(--product-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-products .page-header {
  margin: 0;
  padding: 0;
}

.page-products .product-page-hero {
  background: var(--product-deep);
  position: relative;
  padding: 96px 0 72px;
  color: #F5F0E8;
  isolation: isolate;
}

.page-products .product-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(0, 180, 216, 0.28) 18% 32%, transparent 32% 48%, rgba(255, 107, 53, 0.24) 48% 62%, transparent 62%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 20px);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: -1;
}

.page-products .product-page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--product-accent) 0%, var(--product-gold) 38%, var(--product-cyan) 100%);
  z-index: 2;
}

.page-products .product-page-hero .breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 72px;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 232, 0.72);
}

.page-products .product-page-hero .breadcrumbs-list a {
  color: rgba(245, 240, 232, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}

.page-products .product-page-hero .breadcrumbs-list a:hover {
  color: var(--product-accent);
}

.page-products .product-page-hero .breadcrumbs-list li + li::before {
  content: "/";
  margin-right: 8px;
  opacity: 0.5;
}

.page-products .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.page-products .hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--product-gold);
}

.page-products .hero-copy .eyebrow-line {
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--product-accent);
}

.page-products .hero-copy h1 {
  font-family: var(--font-headline);
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.12;
  letter-spacing: 0.05em;
  margin: 0 0 24px;
  color: #F5F0E8;
}

.page-products .hero-lead {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.82);
  margin: 0 0 32px;
}

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

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  cursor: pointer;
  transition: background 0.24s var(--ease-out), color 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}

.page-products .btn-primary {
  background: var(--product-accent);
  color: #fff;
}

.page-products .btn-primary:hover {
  background: #e85720;
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.32);
}

.page-products .btn-ghost {
  background: transparent;
  color: #F5F0E8;
  box-shadow: inset 0 0 0 1px rgba(245, 240, 232, 0.48);
}

.page-products .btn-ghost:hover {
  background: rgba(245, 240, 232, 0.1);
}

.page-products .hero-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  background: rgba(245, 240, 232, 0.1);
  border-left: 3px solid var(--product-accent);
}

.page-products .hero-badge img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-products .badge-note {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F5F0E8;
  line-height: 1.5;
}

.page-products .version-overview {
  position: relative;
}

.page-products .version-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--product-accent) 24%, transparent 70%);
}

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

.page-products .chamfer {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-products .stat-block {
  background: #fff;
  border: 1px solid var(--product-line);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 112px;
  justify-content: center;
  border-left: 4px solid var(--product-accent);
}

.page-products .stat-num {
  font-family: var(--font-headline);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--product-deep);
  line-height: 1;
}

.page-products .stat-label {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(43, 32, 26, 0.6);
}

.page-products .overview-note {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(27, 58, 92, 0.04);
  border-bottom: 3px solid var(--product-gold);
}

.page-products .note-mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--product-deep);
  color: #F5F0E8;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 0 100%);
}

.page-products .overview-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(43, 32, 26, 0.78);
}

.page-products .overview-note a {
  color: var(--product-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--product-accent);
}

.page-products .download-channels {
  padding-block: 72px;
  background: var(--product-deep);
  position: relative;
  isolation: isolate;
}

.page-products .download-channels::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, transparent 0 24px, rgba(255, 255, 255, 0.03) 24px 26px),
    linear-gradient(160deg, rgba(255, 107, 53, 0.12) 0%, transparent 42%);
  z-index: -1;
  pointer-events: none;
}

.page-products .download-channels .section-tag {
  color: var(--product-accent);
}

.page-products .download-channels .section-head h2 {
  color: #F5F0E8;
}

.page-products .download-channels .section-desc {
  color: rgba(245, 240, 232, 0.78);
}

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

.page-products .channel-card {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid rgba(245, 240, 232, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.page-products .channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--product-accent), var(--product-gold));
}

.page-products .channel-card.channel-desktop::before {
  background: linear-gradient(90deg, var(--product-cyan), var(--product-gold));
}

.page-products .channel-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: 26px;
  width: 110px;
  height: 110px;
  background: repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, 0.05) 8px 10px);
  transform: rotate(8deg);
  pointer-events: none;
}

.page-products .channel-decor {
  display: none;
}

.page-products .channel-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-products .channel-body .badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--product-accent);
  background: rgba(255, 107, 53, 0.14);
  border-left: 3px solid var(--product-accent);
  margin-bottom: 18px;
}

.page-products .channel-body .badge--gold {
  color: var(--product-gold);
  background: rgba(212, 175, 55, 0.14);
  border-left-color: var(--product-gold);
}

.page-products .channel-body h3 {
  font-family: var(--font-headline);
  font-size: 23px;
  letter-spacing: 0.04em;
  color: #F5F0E8;
  margin: 0 0 14px;
}

.page-products .channel-body > p {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(245, 240, 232, 0.72);
  margin: 0 0 20px;
}

.page-products .channel-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-products .channel-points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.82);
}

.page-products .channel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 13px;
  height: 3px;
  background: var(--product-accent);
}

.page-products .channel-desktop .channel-points li::before {
  background: var(--product-cyan);
}

.page-products .channel-media {
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

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

.page-products .channel-btn {
  width: 100%;
  margin-top: auto;
}

.page-products .channel-meta {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.5);
}

.page-products .version-compare {
  background: var(--product-bg);
}

.page-products .compare-wrap {
  background: #fff;
  border: 1px solid var(--product-line);
  padding: 32px 24px;
  position: relative;
}

.page-products .compare-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.14), transparent 56%);
  pointer-events: none;
}

.page-products .compare-wrap .section-head {
  margin-bottom: 32px;
}

.page-products .compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page-products .compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}

.page-products .compare-table th,
.page-products .compare-table td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid var(--product-line);
  vertical-align: top;
}

.page-products .compare-table thead th {
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--product-deep);
  border-bottom: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.page-products .compare-table thead th:first-child {
  background: var(--product-deep-2);
}

.page-products .compare-table thead th:last-child {
  background: var(--product-deep-2);
}

.page-products .compare-table tbody th {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--product-text);
  background: rgba(27, 58, 92, 0.04);
  border-left: 3px solid var(--product-accent);
  letter-spacing: 0.03em;
}

.page-products .compare-table tbody td {
  color: rgba(43, 32, 26, 0.78);
}

.page-products .compare-table tbody td:first-of-type {
  border-left: 2px solid var(--product-gold);
}

.page-products .compare-table tbody tr:last-child th,
.page-products .compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.page-products .compare-figure {
  margin: 28px 0 0;
  border-top: 1px dashed var(--product-line);
  padding-top: 28px;
}

.page-products .compare-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-products .compare-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(43, 32, 26, 0.56);
}

.page-products .install-guide {
  background: var(--product-bg);
  border-top: 1px solid var(--product-line);
}

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

.page-products .step-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--product-line);
  padding: 26px;
  border-left: 4px solid var(--product-accent);
  position: relative;
}

.page-products .step-item:nth-child(2) {
  border-left-color: var(--product-gold);
}

.page-products .step-item:nth-child(3) {
  border-left-color: var(--product-cyan);
}

.page-products .step-num {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--product-accent);
  opacity: 0.32;
  white-space: nowrap;
}

.page-products .step-content h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.page-products .step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(43, 32, 26, 0.72);
}

.page-products .install-media {
  margin-top: 32px;
}

.page-products .install-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  border: 1px solid var(--product-line);
}

.page-products .sys-requirements {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px dashed rgba(43, 32, 26, 0.2);
}

.page-products .sys-requirements h3 {
  font-family: var(--font-headline);
  font-size: 20px;
  letter-spacing: 0.05em;
  margin: 0 0 22px;
}

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

.page-products .requirement-item {
  background: rgba(27, 58, 92, 0.04);
  padding: 18px 20px;
  border-bottom: 2px solid var(--product-line);
}

.page-products .requirement-label {
  display: block;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--product-deep);
  margin-bottom: 6px;
}

.page-products .requirement-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(43, 32, 26, 0.75);
}

.page-products .download-faq {
  padding-top: 0;
}

.page-products .faq-inner {
  background: var(--product-deep);
  padding: 36px 28px;
  color: #F5F0E8;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-products .faq-inner .section-tag {
  color: var(--product-gold);
}

.page-products .faq-copy h2 {
  font-family: var(--font-headline);
  font-size: 26px;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}

.page-products .faq-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.76);
  margin: 0 0 22px;
}

.page-products .faq-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-products .faq-preview-list li {
  padding: 18px 0 18px 20px;
  border-left: 3px solid var(--product-accent);
  background: rgba(245, 240, 232, 0.03);
  display: grid;
  gap: 8px;
}

.page-products .faq-q {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #F5F0E8;
}

.page-products .faq-a {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.64);
}

@media (max-width: 600px) {
  .page-products .section {
    padding-block: 48px;
  }

  .page-products .product-page-hero {
    padding: 72px 0 56px;
  }

  .page-products .hero-badge {
    flex-wrap: wrap;
  }

  .page-products .channel-body {
    padding: 24px 18px;
  }

  .page-products .compare-wrap,
  .page-products .faq-inner {
    padding: 24px 16px;
  }

  .page-products .hero-actions .btn {
    width: calc(50% - 8px);
  }
}

@media (min-width: 600px) {
  .page-products .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .page-products .channel-card {
    min-height: 100%;
  }

  .page-products .channel-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 0 0;
    color: rgba(245, 240, 232, 0.24);
  }

  .page-products .channel-decor svg {
    width: 64px;
    height: 64px;
  }

  .page-products .channel-body {
    padding-top: 26px;
  }

  .page-products .channel-display {
    margin: 14px 8px 20px;
  }

  .page-products .channel-display img {
    max-height: 420px;
  }

  .page-products .install-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .page-products .step-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-products .sys-requirements h3 {
    margin-bottom: 26px;
  }

  .page-products .requirement-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 860px) {
  .page-products .hero-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.6fr);
    gap: 48px;
    align-items: end;
  }

  .page-products .hero-badge {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    margin-bottom: 8px;
    padding: 18px 22px;
  }

  .page-products .overview-stats.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .page-products .section-head h2 {
    font-size: 32px;
  }

  .page-products .compare-wrap {
    padding: 44px 40px;
  }

  .page-products .faq-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 44px 40px;
  }
}

@media (min-width: 1100px) {
  .page-products .channel-grid {
    gap: 32px;
  }

  .page-products .channel-decor {
    padding-top: 36px;
  }

  .page-products .channel-decor svg {
    width: 84px;
    height: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products *,
  .page-products *::before,
  .page-products *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
