.page-products {
  --products-glow: rgba(155, 60, 255, 0.18);
  --products-gold-strong: #E8A33D;
  --products-panel-bg: linear-gradient(150deg, rgba(155, 60, 255, 0.12) 0%, rgba(26, 58, 107, 0.55) 55%, rgba(11, 29, 58, 0.9) 100%);
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -5%, rgba(155, 60, 255, 0.16), transparent 60%),
    radial-gradient(900px 420px at -10% 30%, rgba(245, 208, 97, 0.07), transparent 55%),
    linear-gradient(180deg, #081226 0%, #0B1D3A 40%, #0E2347 100%);
  color: var(--text-primary);
  overflow-x: hidden;
}

.page-products .container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-products .section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-products .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  position: relative;
}

.page-products .section-index {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold-start);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-products .section-index::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-end), transparent);
}

.page-products .section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0;
}

.page-products .section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 0;
}

.page-products .mono-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-start);
}

.page-products .image-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

.page-products .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-products .image-frame figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(8, 18, 38, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.page-products .btn-primary {
  background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
  color: #0B1D3A;
  border-color: rgba(245, 208, 97, 0.6);
  box-shadow: 0 8px 28px rgba(232, 163, 61, 0.22);
}

.page-products .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(232, 163, 61, 0.36);
  background: linear-gradient(135deg, #FFE085 0%, #F0A93F 100%);
}

.page-products .btn-outline {
  background: rgba(155, 60, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(155, 60, 255, 0.5);
}

.page-products .btn-outline:hover {
  background: rgba(155, 60, 255, 0.22);
  border-color: var(--neon-purple);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(155, 60, 255, 0.25);
}

.page-products .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.page-products .breadcrumb a:hover {
  color: var(--gold-start);
}

.page-products .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* Hero */
.page-products .products-hero {
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.page-products .products-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(155, 60, 255, 0.24) 0%, transparent 68%);
  pointer-events: none;
  animation: pageProductsGlow 9s ease-in-out infinite alternate;
}

@keyframes pageProductsGlow {
  0% {
    opacity: 0.55;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(30px) scale(1.1);
  }
}

.page-products .hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.page-products .hero-copy .mono-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(245, 208, 97, 0.1);
  border: 1px solid rgba(245, 208, 97, 0.28);
}

.page-products .hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.02em;
  margin: 22px 0 18px;
  background: linear-gradient(135deg, #F5D061 0%, #E8A33D 55%, #9B3CFF 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-products .hero-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 0;
}

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

.page-products .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 520px;
}

.page-products .metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.page-products .metric-num {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--gold-start);
  line-height: 1.2;
  margin: 0;
}

.page-products .metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.04em;
}

.page-products .hero-tree {
  background: linear-gradient(150deg, rgba(26, 58, 107, 0.55), rgba(8, 18, 38, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

.page-products .hero-tree::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 208, 97, 0.2), transparent 30%, transparent 65%, rgba(155, 60, 255, 0.25));
  pointer-events: none;
}

.page-products .products-tree {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.page-products .products-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  padding: 8px 4px;
}

.page-products .products-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-start);
  background: linear-gradient(145deg, rgba(245, 208, 97, 0.12), rgba(11, 29, 58, 0.9));
  border: 2px solid rgba(245, 208, 97, 0.6);
  box-shadow: 0 0 18px rgba(245, 208, 97, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .products-node:hover {
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(155, 60, 255, 0.35);
  border-color: var(--neon-purple);
}

.page-products .products-step + .products-step::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -8px;
  width: 16px;
  border-top: 2px dashed rgba(245, 208, 97, 0.4);
}

.page-products .skill-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

/* Download */
.page-products .products-download {
  background: linear-gradient(180deg, transparent, rgba(8, 18, 38, 0.6) 100%);
}

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

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

.page-products .download-card {
  position: relative;
  background: linear-gradient(145deg, rgba(19, 41, 75, 0.9), rgba(11, 29, 58, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 4px solid var(--gold-end);
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.page-products .download-card::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 60, 255, 0.12), transparent 70%);
  transition: transform 0.4s ease;
}

.page-products .download-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--neon-purple);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.page-products .download-card:hover::after {
  transform: scale(1.6);
}

.page-products .download-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  margin: 12px 0 8px;
}

.page-products .download-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 18px;
}

.page-products .download-card .btn {
  padding: 11px 20px;
  font-size: 0.88rem;
}

.page-products .install-tip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(155, 60, 255, 0.1);
  border: 1px dashed rgba(155, 60, 255, 0.35);
  border-radius: 14px;
  padding: 18px 22px;
}

.page-products .install-tip p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

.page-products .app-preview {
  aspect-ratio: 800 / 1200;
  max-height: 720px;
  margin: 0;
  justify-self: center;
  width: min(360px, 100%);
}

/* Panel */
.page-products .products-panel {
  position: relative;
}

.page-products .products-panel::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 208, 97, 0.07), transparent 65%);
  pointer-events: none;
}

.page-products .panel-filter {
  background: var(--products-panel-bg);
  border: 1px solid rgba(155, 60, 255, 0.28);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-products .panel-filter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-start), var(--neon-purple), transparent);
  opacity: 0.7;
}

.page-products .panel-filter label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  margin: 0 6px 6px 0;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-products .panel-filter label:hover {
  background: rgba(245, 208, 97, 0.14);
  border-color: rgba(245, 208, 97, 0.4);
  color: var(--gold-start);
}

.page-products .panel-filter input:checked + label {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #0B1D3A;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(232, 163, 61, 0.25);
  font-weight: 600;
}

.page-products .panel-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

.page-products .panel-category-card {
  background: linear-gradient(135deg, rgba(19, 41, 75, 0.75), rgba(8, 18, 38, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.page-products .panel-category-card:hover {
  border-color: rgba(155, 60, 255, 0.45);
  transform: translateY(-2px);
}

.page-products .panel-category-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 10px 0 6px;
}

.page-products .panel-category-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.page-products .panel-filter:has(#panel-ecom:checked) .panel-category-card:not([data-cat="ecom"]),
.page-products .panel-filter:has(#panel-live:checked) .panel-category-card:not([data-cat="live"]),
.page-products .panel-filter:has(#panel-sports:checked) .panel-category-card:not([data-cat="sports"]),
.page-products .panel-filter:has(#panel-social:checked) .panel-category-card:not([data-cat="social"]),
.page-products .panel-filter:has(#panel-media:checked) .panel-category-card:not([data-cat="media"]) {
  display: none;
}

.page-products .panel-filter:has(#panel-all:checked) .panel-category-card {
  display: block;
}

.page-products .panel-shot {
  aspect-ratio: 1200 / 800;
  margin: 24px 0 0;
}

/* Multi */
.page-products .products-multi {
  background: radial-gradient(760px 380px at 10% 20%, rgba(245, 208, 97, 0.06), transparent 60%);
}

.page-products .multi-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-products .multi-shot {
  aspect-ratio: 1600 / 900;
  margin: 0;
}

.page-products .multi-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.page-products .multi-points li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-products .multi-points li:last-child {
  border-bottom: none;
}

.page-products .multi-points p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Register */
.page-products .products-register {
  position: relative;
}

.page-products .products-register::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(155, 60, 255, 0.14), transparent 65%);
  pointer-events: none;
}

.page-products .register-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-products .register-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
}

.page-products .register-step {
  background: linear-gradient(145deg, rgba(19, 41, 75, 0.8), rgba(11, 29, 58, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 26px 26px 26px 78px;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-products .register-step:hover {
  background: linear-gradient(145deg, rgba(19, 41, 75, 0.95), rgba(26, 58, 107, 0.75));
  transform: translateX(6px);
}

.page-products .step-num {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-start);
  border: 2px solid rgba(245, 208, 97, 0.55);
  background: rgba(11, 29, 58, 0.7);
  transition: all 0.3s ease;
}

.page-products .register-step:hover .step-num {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #0B1D3A;
  box-shadow: 0 0 22px rgba(245, 208, 97, 0.35);
}

.page-products .register-step h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.page-products .register-step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.65;
}

.page-products .register-shot {
  aspect-ratio: 800 / 600;
  margin: 0;
}

/* Support */
.page-products .products-support {
  background: linear-gradient(180deg, transparent, rgba(155, 60, 255, 0.05) 100%);
}

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

.page-products .support-card {
  background: linear-gradient(145deg, rgba(19, 41, 75, 0.9), rgba(8, 18, 38, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.page-products .support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 208, 97, 0.35);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

.page-products .support-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 12px 0 8px;
}

.page-products .support-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 4px 0;
}

.page-products .support-card a {
  color: var(--gold-start);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.page-products .support-card a:hover {
  color: var(--neon-purple);
}

.page-products .support-hotline {
  border-top: 3px solid var(--gold-end);
}

.page-products .support-note {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold-end);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
}

/* Compare */
.page-products .products-compare {
  position: relative;
}

.page-products .compare-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-products .compare-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(19, 41, 75, 0.75), rgba(8, 18, 38, 0.6));
}

.page-products .compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.page-products .compare-table th,
.page-products .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.page-products .compare-table thead th {
  background: rgba(245, 208, 97, 0.08);
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gold-start);
  border-bottom: 1px solid rgba(245, 208, 97, 0.25);
  white-space: nowrap;
}

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

.page-products .compare-table tbody th {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.page-products .compare-table tbody tr:hover {
  background: rgba(155, 60, 255, 0.12);
}

.page-products .compare-table tbody tr:hover td {
  color: var(--text-primary);
}

.page-products .compare-table td:last-child {
  color: var(--gold-start);
  font-weight: 500;
}

.page-products .compare-shot {
  aspect-ratio: 1200 / 800;
  margin: 0;
}

.page-products .trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}

.page-products .trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 16px 20px;
}

.page-products .trust-badge p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* More */
.page-products .products-more {
  background: linear-gradient(180deg, transparent, rgba(8, 18, 38, 0.55) 100%);
}

.page-products .more-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-products .more-list .index-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding-left 0.25s ease;
}

.page-products .more-list .index-item:hover {
  padding-left: 10px;
}

.page-products .more-list .index-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.page-products .more-list .index-item a:hover {
  color: var(--gold-start);
}

/* Utility: sr-only for radio inputs */
.page-products .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tablet */
@media (min-width: 640px) {
  .page-products .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-products .section-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .page-products .section-index {
    padding-top: 6px;
    min-width: 50px;
  }

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

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

  .page-products .download-card.download-pc {
    grid-column: 1 / -1;
  }

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

  .page-products .register-step {
    padding: 60px 20px 22px;
    text-align: center;
  }

  .page-products .step-num {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }

  .page-products .register-step:hover {
    transform: translateY(-4px);
  }

  .page-products .support-channels {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .page-products .more-list .index-item {
    grid-template-columns: 100px 1fr;
    align-items: center;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .page-products .hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 60px;
  }

  .page-products .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .products-tree {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 0;
  }

  .page-products .products-step {
    flex-direction: row;
    text-align: left;
    gap: 18px;
    padding: 16px 10px;
  }

  .page-products .products-step + .products-step::before {
    content: "";
    position: absolute;
    left: 31px;
    top: -14px;
    width: 0;
    height: 28px;
    border-left: 2px dashed rgba(245, 208, 97, 0.4);
    border-top: none;
  }

  .page-products .download-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: start;
  }

  .page-products .app-preview {
    width: 100%;
    max-height: none;
    align-self: start;
    position: sticky;
    top: 24px;
  }

  .page-products .panel-filter {
    padding: 32px;
  }

  .page-products .panel-board {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .panel-shot {
    margin-top: 28px;
  }

  .page-products .multi-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 52px;
  }

  .page-products .register-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
    gap: 52px;
  }

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

  .page-products .register-step {
    padding: 26px 26px 26px 78px;
    text-align: left;
  }

  .page-products .step-num {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
  }

  .page-products .register-step:hover {
    transform: translateX(6px);
  }

  .page-products .compare-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 40px;
  }

  .page-products .trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-products .products-more .more-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
  }
}

@media (min-width: 1280px) {
  .page-products .hero-copy h1 {
    font-size: 2.7rem;
  }

  .page-products .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
