.page-products {
  --product-line: #D8D0C0;
  --product-grid-size: 24px;
  --product-shadow: 0 14px 40px rgba(38, 38, 38, 0.08);
  --product-shadow-hover: 0 24px 54px rgba(26, 122, 74, 0.14);
  background:
    linear-gradient(90deg, transparent 23px, rgba(216, 208, 192, 0.28) 24px, transparent 25px),
    linear-gradient(0deg, transparent 23px, rgba(216, 208, 192, 0.18) 24px, transparent 25px);
  background-size: var(--product-grid-size) var(--product-grid-size);
  overflow: hidden;
}

.page-products .container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-products .section {
  padding: 72px 0;
  position: relative;
}

.page-products .section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.page-products .section-index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #C96F2D;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-products .section-index::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #C96F2D, transparent);
}

.page-products .section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}

.page-products .section-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  max-width: 680px;
}

.page-products .media-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--white);
}

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

.page-products .media-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-top: 12px;
  display: block;
}

.page-products .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

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

/* ---------- Hero ---------- */
.page-products .solution-hero {
  padding: 64px 0 56px;
  position: relative;
  background: linear-gradient(135deg, var(--paper) 0%, #E8E0D0 100%);
  border-bottom: 2px solid var(--ink);
}

.page-products .solution-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 62%, rgba(201, 162, 39, 0.12) 62%, rgba(201, 162, 39, 0.12) 63%, transparent 63%),
    linear-gradient(120deg, transparent 74%, rgba(26, 122, 74, 0.10) 74%, rgba(26, 122, 74, 0.10) 75%, transparent 75%);
  pointer-events: none;
}

.page-products .solution-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-products .solution-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-products .breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.page-products .breadcrumb a {
  color: var(--kiwi);
  text-decoration: none;
  font-weight: 600;
}

.page-products .breadcrumb a:hover {
  text-decoration: underline;
}

.page-products .breadcrumb-sep {
  color: var(--grid);
}

.page-products .solution-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 760px;
}

.page-products .solution-hero-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray);
  max-width: 680px;
  margin: 0;
}

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

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.2s ease;
}

.page-products .btn-primary {
  background: var(--kiwi);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-products .btn-primary:hover {
  background: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(26, 122, 74, 0.28);
}

.page-products .btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-products .btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.page-products .btn-light {
  background: var(--paper);
  color: var(--ink);
  border: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-products .btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(38, 38, 38, 0.12);
}

.page-products .btn-dark {
  background: var(--ink);
  color: var(--paper);
  border: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-products .btn-dark:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(38, 38, 38, 0.24);
}

.page-products .solution-hero-chart {
  position: relative;
  background: var(--ink);
  padding: 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  overflow: hidden;
}

.page-products .solution-hero-chart::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(59, 175, 116, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.page-products .chart-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  opacity: 0.3;
}

.page-products .chart-grid span {
  border-right: 1px solid rgba(245, 240, 230, 0.20);
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
  background: radial-gradient(circle, rgba(201, 162, 39, 0.5) 0, transparent 1.5px);
  background-size: 12px 12px;
  background-position: 4px 4px;
}

.page-products .chart-caption {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 230, 0.66);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.page-products .chart-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0 0;
  position: relative;
  z-index: 2;
}

.page-products .chart-stats div {
  background: rgba(38, 38, 38, 0.7);
  border: 1px solid rgba(216, 208, 192, 0.26);
  border-radius: 2px;
  padding: 10px 14px;
}

.page-products .chart-stats dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.66);
}

.page-products .chart-stats dd {
  margin: 4px 0 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
}

.page-products .chart-diamond {
  position: absolute;
  width: 74px;
  height: 74px;
  background: linear-gradient(45deg, rgba(201, 162, 39, 0.9), rgba(201, 162, 39, 0.2));
  transform: rotate(45deg) scale(0.6);
  top: 18px;
  left: 30px;
  border: 2px solid rgba(201, 162, 39, 0.62);
  animation: products-diamond-float 6s var(--ease-out) infinite;
  opacity: 0.7;
}

@keyframes products-diamond-float {
  0%, 100% { transform: rotate(45deg) scale(0.6) translateY(0); }
  50% { transform: rotate(45deg) scale(0.68) translateY(-6px); }
}

/* ---------- Core overview ---------- */
.page-products .service-overview {
  padding-top: 32px;
}

.page-products .overview-grid {
  gap: 20px;
}

.page-products .overview-card {
  background: var(--white);
  border: 1px solid rgba(216, 208, 192, 0.72);
  padding: 28px 24px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-products .overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--product-shadow-hover);
}

.page-products .overview-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--kiwi);
}

.page-products .overview-num {
  font-size: 13px;
  color: var(--oasis);
  letter-spacing: 0.12em;
}

.page-products .overview-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin: 0;
  color: var(--ink);
}

.page-products .overview-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
  flex: 1;
}

.page-products .overview-card .tag {
  align-self: flex-start;
}

/* ---------- Service guide ---------- */
.page-products .service-guide {
  padding-top: 32px;
}

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

.page-products .service-guide-media {
  position: relative;
}

.page-products .service-guide-media::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 72px;
  height: 72px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  pointer-events: none;
}

.page-products .service-guide-media img {
  height: 500px;
  object-fit: cover;
}

.page-products .service-guide-copy .section-head {
  margin-bottom: 18px;
}

.page-products .service-guide-copy p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  margin: 0 0 16px;
}

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

.page-products .check-list li {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.page-products .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kiwi);
  color: #F5F0E6;
  font-size: 12px;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}

/* ---------- Watchlist ---------- */
.page-products .watchlist {
  background: linear-gradient(160deg, rgba(26, 122, 74, 0.05) 0%, rgba(26, 122, 74, 0.0) 40%);
  border-top: 1px solid rgba(216, 208, 192, 0.7);
  border-bottom: 1px solid rgba(216, 208, 192, 0.7);
}

.page-products .watchlist-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

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

.page-products .watchlist-league-card {
  background: var(--ink);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.page-products .watchlist-league-card::after {
  content: "[]";
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(201, 162, 39, 0.6);
  transform: rotate(90deg);
}

.page-products .watchlist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  border: 1px solid rgba(216, 208, 192, 0.28);
  padding: 14px 16px;
  border-radius: 2px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.page-products .watchlist-item:hover {
  border-color: var(--emerald);
  transform: translateX(4px);
}

.page-products .watchlist-icon {
  font-size: 24px;
  width: 32px;
  text-align: center;
}

.page-products .watchlist-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--paper);
  margin: 0;
}

.page-products .watchlist-meta {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(216, 208, 192, 0.56);
  margin: 2px 0 0;
}

.page-products .watchlist-item .tag {
  margin-left: auto;
}

.page-products .watchlist-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(216, 208, 192, 0.36);
  border-radius: 2px;
  min-height: 64px;
  color: rgba(216, 208, 192, 0.54);
  font-size: 24px;
}

.page-products .watchlist-guide p:not(.media-note) {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
  margin: 12px 0 0;
}

.page-products .watchlist-capacity {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--kiwi);
  background: rgba(26, 122, 74, 0.08);
  border-left: 3px solid var(--kiwi);
  padding: 8px 12px;
  margin-top: 14px;
}

.watchlist-guide img {
  height: 450px;
  object-fit: cover;
}

/* ---------- Timeline ---------- */
.page-products .timeline-section {
  padding-top: 24px;
}

.page-products .timeline-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 0 20px;
  position: relative;
  border-bottom: 1px solid rgba(216, 208, 192, 0.7);
  margin-bottom: 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--kiwi) var(--grid);
  cursor: grab;
}

.page-products .timeline-track {
  position: relative;
  min-width: 680px;
  height: 120px;
  pointer-events: none;
}

.page-products .timeline-axis {
  position: absolute;
  top: 50%;
  left: 2%;
  right: 2%;
  height: 3px;
  background: linear-gradient(90deg, var(--grid), var(--kiwi) 30%, var(--gold) 60%, var(--oasis) 100%);
  transform: translateY(-50%);
}

.page-products .timeline-axis::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(38, 38, 38, 0.16);
}

.page-products .timeline-node {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: auto;
}

.page-products .timeline-node::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--kiwi);
  transform: rotate(45deg);
  margin-bottom: 6px;
  transition: background-color 0.2s ease;
}

.page-products .timeline-node:hover::before {
  background: var(--gold);
}

.page-products .timeline-node b {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
  background: var(--paper);
  padding: 2px 6px;
  border: 1px solid rgba(216, 208, 192, 0.8);
}

.page-products .timeline-node i {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  color: var(--oasis);
  letter-spacing: 0.08em;
}

.page-products .timeline-chart {
  margin-top: 8px;
  background: var(--white);
  border: 1px solid rgba(216, 208, 192, 0.66);
}

.page-products .timeline-chart img {
  max-height: 420px;
  object-fit: cover;
}

/* ---------- Apple compat ---------- */
.page-products .apple-compat {
  background: linear-gradient(105deg, var(--ink) 0%, #333333 100%);
  color: var(--paper);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--ink);
}

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

.page-products .apple-compat-copy .section-title,
.page-products .apple-compat-copy .section-desc {
  color: var(--paper);
}

.page-products .apple-compat-copy .section-desc {
  color: #B8B8B8;
}

.page-products .apple-compat-copy .section-index::before {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page-products .apple-compat-copy p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: #C8C8C8;
  margin: 0 0 20px;
}

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

.page-products .compat-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(216, 208, 192, 0.18);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.22s ease, background-color 0.22s ease;
}

.page-products .compat-list li:hover {
  border-color: rgba(201, 162, 39, 0.55);
  background: rgba(245, 240, 230, 0.07);
}

.page-products .compat-version {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 3px;
}

.page-products .compat-list p {
  margin: 0;
  font-size: 14px;
}

.page-products .apple-compat-media {
  position: relative;
}

.page-products .apple-compat-media::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  z-index: 0;
  pointer-events: none;
}

.page-products .apple-compat-media img,
.page-products .apple-compat-media .media-note {
  position: relative;
  z-index: 1;
}

/* ---------- Device binding ---------- */
.page-products .device-binding {
  padding-top: 24px;
}

.page-products .binding-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 8px;
}

.page-products .binding-step {
  padding: 24px 22px 22px;
  position: relative;
  background: var(--white);
  border-left: 3px solid var(--kiwi);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.page-products .binding-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--product-shadow);
}

.page-products .binding-step-num {
  font-size: 26px;
  font-weight: 800;
  color: rgba(26, 122, 74, 0.3);
  line-height: 1;
}

.page-products .binding-step h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  margin: 0;
  color: var(--ink);
}

.page-products .binding-step p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

.page-products .binding-media {
  margin-top: 30px;
  position: relative;
  text-align: center;
}

.page-products .binding-media img {
  max-height: 480px;
  object-fit: cover;
  margin: 0 auto;
  border: 1px solid rgba(216, 208, 192, 0.7);
}

/* ---------- Connect strip ---------- */
.page-products .connect-strip {
  padding-top: 16px;
  padding-bottom: 80px;
}

.page-products .connect-strip-inner {
  background: linear-gradient(135deg, var(--kiwi) 0%, var(--emerald) 70%, #57C08A 100%);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.page-products .connect-strip-inner::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border: 22px solid rgba(245, 240, 230, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.page-products .connect-strip-inner::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 120px;
  height: 120px;
  background: rgba(201, 162, 39, 0.2);
  transform: rotate(45deg) skew(12deg, 12deg);
  pointer-events: none;
}

.page-products .connect-strip-inner .section-index {
  color: rgba(245, 240, 230, 0.86);
}

.page-products .connect-strip-inner .section-index::before {
  background: linear-gradient(90deg, rgba(245, 240, 230, 0.8), transparent);
}

.page-products .connect-strip-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 26px;
  margin: 6px 0 4px;
  color: var(--white);
  line-height: 1.25;
}

.page-products .connect-strip-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.9);
  margin: 0;
  max-width: 480px;
}

.page-products .connect-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* ---------- Reveal ---------- */
.page-products [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.55s var(--ease-out);
}

.page-products [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-products [data-reveal-group] [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.page-products [data-reveal-group] [data-reveal]:nth-child(3) { transition-delay: 160ms; }
.page-products [data-reveal-group] [data-reveal]:nth-child(4) { transition-delay: 240ms; }
.page-products [data-reveal-group] [data-reveal]:nth-child(5) { transition-delay: 320ms; }
.page-products [data-reveal-group] [data-reveal]:nth-child(6) { transition-delay: 400ms; }

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

.page-products .text-mono {
  font-family: var(--font-mono);
}

/* ---------- Responsive: 768px+ ---------- */
@media (min-width: 768px) {
  .page-products .solution-hero {
    padding: 84px 0 76px;
  }

  .page-products .solution-hero-inner {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .page-products .solution-hero-title {
    font-size: 46px;
  }

  .page-products .solution-hero-lead {
    font-size: 17px;
  }

  .page-products .solution-hero-chart {
    min-height: 360px;
  }

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

  .page-products .section {
    padding: 96px 0;
  }

  .page-products .section-title {
    font-size: 38px;
  }

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

  .page-products .service-guide-grid {
    grid-template-columns: 1.05fr 0.9fr;
    gap: 56px;
  }

  .page-products .watchlist-head {
    flex-direction: row;
    align-items: flex-end;
  }

  .page-products .watchlist-head .section-desc {
    max-width: 320px;
    margin: 0 0 4px;
    text-align: right;
  }

  .page-products .watchlist-content-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .page-products .watchlist-league-card {
    padding: 24px;
    gap: 14px;
  }

  .page-products .timeline-track {
    min-width: 860px;
  }

  .page-products .apple-compat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

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

  .page-products .connect-strip-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 32px;
  }

  .page-products .connect-strip-actions {
    flex-shrink: 0;
  }
}

/* ---------- Responsive: 1024px+ ---------- */
@media (min-width: 1024px) {
  .page-products .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-products .solution-hero-title {
    font-size: 52px;
    line-height: 1.12;
  }

  .page-products .solution-hero-chart {
    padding: 32px;
    min-height: 400px;
  }

  .page-products .overview-card {
    min-height: 218px;
  }

  .page-products .timeline-track {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-products .chart-diamond {
    animation: none;
  }

  .page-products .overview-card,
  .page-products .binding-step,
  .page-products .btn,
  .page-products .watchlist-item {
    transition: none;
  }
}

.page-products {
  --pos: inherit;
}
