.page-products {
  --page-max-w: 1200px;
  --page-accent: var(--accent);
  --page-violet: var(--violet);
  --page-orange: var(--orange);
  --page-panel-light: #152338;
  --page-panel-glow: rgba(0, 255, 204, 0.08);
  --page-card-grad: linear-gradient(135deg, rgba(16, 28, 46, 0.9) 0%, rgba(22, 35, 63, 0.6) 100%);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-products *,
.page-products *::before,
.page-products *::after {
  box-sizing: border-box;
}

.page-products .section {
  padding: 4.5rem 1.25rem;
  position: relative;
}

.page-products .eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.page-products h1,
.page-products h2,
.page-products h3 {
  font-family: var(--font-display);
  color: var(--text);
}

.page-products .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 56rem;
  margin: 0;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-products .btn--primary {
  background: var(--accent);
  color: #0a0e14;
  box-shadow: 0 0 0 rgba(0, 255, 204, 0);
}

.page-products .btn--primary:hover {
  background: #33ffd6;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 255, 204, 0.25);
}

.page-products .btn--ghost {
  background: transparent;
  border-color: rgba(230, 237, 243, 0.35);
  color: var(--text);
}

.page-products .btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.page-products .badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.page-products .badge--accent {
  background: rgba(0, 255, 204, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.page-products .badge--violet {
  background: rgba(179, 136, 255, 0.12);
  color: var(--violet);
  border: 1px solid rgba(179, 136, 255, 0.3);
}

.page-products .badge--orange {
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

/* ---------- Hero 分屏首屏 ---------- */
.products-hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--page-max-w);
  margin: 0 auto;
  padding: 6rem 1.25rem 3rem;
  position: relative;
}

.products-hero__copy {
  flex: 1 1 50%;
  position: relative;
  z-index: 2;
}

.products-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  max-width: 13em;
}

.products-hero__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.products-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-hero__stat {
  background: var(--panel);
  border: 1px solid rgba(230, 237, 243, 0.06);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  min-width: 8.5rem;
}

.products-hero__stat .stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.375rem;
}

.products-hero__stat .stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.products-hero__visual {
  flex: 1 1 50%;
  position: relative;
  min-height: 300px;
  background: linear-gradient(145deg, rgba(16, 28, 46, 0.5) 0%, rgba(22, 35, 63, 0.3) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(230, 237, 243, 0.07);
  overflow: hidden;
}

.products-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 204, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.products-hero__orb {
  position: absolute;
  top: 18%;
  right: 12%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.18) 0%, rgba(0, 255, 204, 0.03) 60%, transparent 100%);
  filter: blur(2px);
}

.products-hero__chart {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(10, 14, 20, 0.72);
  border: 1px solid rgba(230, 237, 243, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.75rem;
  backdrop-filter: blur(4px);
}

.products-hero__chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line--home {
  stroke: var(--accent);
}

.chart-line--away {
  stroke: var(--violet);
  stroke-dasharray: 5 4;
}

.chart-dot {
  fill: var(--bg);
  stroke-width: 2;
}

.chart-dot--home {
  stroke: var(--accent);
}

.chart-dot--away {
  stroke: var(--violet);
}

.chart-axis {
  stroke: rgba(230, 237, 243, 0.18);
  stroke-width: 1;
}

.products-hero__chart-label {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.dot-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.375rem;
}

.dot-mark--accent {
  background: var(--accent);
}

.dot-mark--violet {
  background: var(--violet);
}

/* ---------- 服务总览 ---------- */
.products-overview {
  max-width: var(--page-max-w);
  margin: 0 auto;
}

.products-overview__heading {
  margin-bottom: 2.5rem;
}

.products-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.products-overview__card {
  display: flex;
  flex-direction: column;
  background: var(--page-card-grad), var(--panel);
  border: 1px solid rgba(230, 237, 243, 0.07);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.products-overview__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px 200px at 20% 0%, rgba(0, 255, 204, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.products-overview__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 204, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.products-overview__card:hover::before {
  opacity: 1;
}

.products-overview__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(0, 255, 204, 0.08);
  border: 1px solid rgba(0, 255, 204, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.icon-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-overview__card:nth-child(2) .products-overview__card-icon {
  background: rgba(179, 136, 255, 0.08);
  border-color: rgba(179, 136, 255, 0.2);
}

.products-overview__card:nth-child(2) .icon-svg {
  stroke: var(--violet);
}

.products-overview__card:nth-child(3) .products-overview__card-icon {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.25);
}

.products-overview__card:nth-child(3) .icon-svg {
  stroke: var(--orange);
}

.products-overview__card-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.625rem;
}

.products-overview__card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1.25rem;
  flex: 1;
}

.products-overview__card--large .products-overview__card-desc {
  max-width: 42rem;
}

.products-overview__card--tall {
  min-height: 260px;
}

.products-overview__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.products-overview__card-link {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.products-overview__card:hover .products-overview__card-link {
  color: var(--accent);
}

.products-overview__card--note {
  background: linear-gradient(145deg, rgba(179, 136, 255, 0.08) 0%, rgba(16, 28, 46, 0.6) 100%);
  border-color: rgba(179, 136, 255, 0.18);
  justify-content: center;
}

.products-overview__note-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 0.5rem;
}

.products-overview__note-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 24rem;
  margin: 0 0 1rem;
}

.products-overview__note-mark {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 72px;
  height: 72px;
  opacity: 0.7;
}

.products-overview__note-mark svg {
  width: 100%;
  height: 100%;
}

/* ---------- 赛前核对 ---------- */
.products-prematch {
  background: linear-gradient(180deg, rgba(16, 28, 46, 0.35) 0%, transparent 100%);
  border-top: 1px solid rgba(230, 237, 243, 0.05);
  border-bottom: 1px solid rgba(230, 237, 243, 0.05);
}

.products-prematch__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--page-max-w);
  margin: 0 auto;
  align-items: stretch;
}

.products-prematch__content {
  flex: 1 1 55%;
}

.products-prematch__content h2,
.products-postmatch__content h2,
.products-mobile__content h2,
.products-source h2 {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.products-section__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

.products-steps-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.products-steps-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.products-steps-num {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 2.5rem;
  text-align: right;
  opacity: 0.85;
}

.products-steps-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.3125rem;
}

.products-steps-item p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.products-prematch__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid rgba(230, 237, 243, 0.08);
  border-radius: 999px;
}

.products-prematch__visual {
  flex: 1 1 45%;
  position: relative;
}

.products-prematch__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(230, 237, 243, 0.1);
  object-fit: cover;
  display: block;
}

.products-prematch__legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot--home {
  background: var(--accent);
}

.legend-dot--away {
  background: var(--violet);
}

/* ---------- 标签页服务分类 ---------- */
.products-facility {
  max-width: var(--page-max-w);
  margin: 0 auto;
}

.products-facility__intro {
  margin-bottom: 2rem;
}

.products-facility__intro .lead {
  margin-bottom: 0;
}

.products-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  border-bottom: 1px solid rgba(230, 237, 243, 0.08);
  padding-bottom: 0.875rem;
  margin-bottom: 1.5rem;
}

.products-tabs__list .tabs__button {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(230, 237, 243, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.products-tabs__list .tabs__button:hover {
  border-color: var(--accent);
  color: var(--text);
}

.products-tabs__list .tabs__button[aria-selected="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0e14;
}

.products-tabs__panel {
  padding: 0.25rem 0;
}

.products-tabs__panel--hidden[hidden] {
  display: none;
}

.products-tabs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.products-tabs__item {
  background: var(--panel);
  border: 1px solid rgba(230, 237, 243, 0.06);
  border-radius: var(--radius);
  padding: 1.375rem 1.5rem;
  transition: border-color 0.2s ease;
}

.products-tabs__item:hover {
  border-color: rgba(0, 255, 204, 0.25);
}

.products-tabs__item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.products-tabs__item p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ---------- 赛后复盘 ---------- */
.products-postmatch {
  background: linear-gradient(90deg, rgba(179, 136, 255, 0.05) 0%, transparent 70%);
  border-top: 1px solid rgba(230, 237, 243, 0.05);
  border-bottom: 1px solid rgba(230, 237, 243, 0.05);
}

.products-postmatch__layout,
.products-postmatch {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--page-max-w);
  margin: 0 auto;
}

.products-postmatch__visual {
  flex: 1 1 42%;
}

.products-postmatch__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(230, 237, 243, 0.1);
  object-fit: cover;
  display: block;
}

.products-postmatch__content {
  flex: 1 1 58%;
}

.products-feature-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.products-feature-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.products-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.products-postmatch__note {
  background: rgba(179, 136, 255, 0.08);
  border-left: 3px solid var(--violet);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  max-width: 32rem;
}

.products-postmatch__note p {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* ---------- 移动端对比 ---------- */
.products-mobile {
  max-width: var(--page-max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.products-mobile__content {
  flex: 1 1 55%;
}

.products-mobile__visual {
  flex: 1 1 35%;
}

.products-mobile__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(230, 237, 243, 0.1);
  object-fit: cover;
  display: block;
}

.products-mobile__points {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-top: 1.5rem;
}

.products-mobile__point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.products-mobile__point-mark {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.4;
  min-width: 2rem;
}

.products-mobile__point h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.3125rem;
}

.products-mobile__point p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- 数据来源 ---------- */
.products-source {
  background: linear-gradient(180deg, rgba(16, 28, 46, 0.35) 0%, transparent 100%);
  border-top: 1px solid rgba(230, 237, 243, 0.05);
  border-bottom: 1px solid rgba(230, 237, 243, 0.05);
}

.products-source__layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: var(--page-max-w);
  margin: 0 auto;
}

.products-source__heading {
  max-width: var(--page-max-w);
  margin: 0 auto 2.5rem;
}

.products-source__visual {
  flex: 1 1 48%;
}

.products-source__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(230, 237, 243, 0.1);
  object-fit: cover;
  display: block;
}

.products-source__content {
  flex: 1 1 48%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.products-source__item {
  background: var(--panel);
  border: 1px solid rgba(230, 237, 243, 0.06);
  border-radius: var(--radius);
  padding: 1.25rem 1.375rem;
}

.products-source__item h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.375rem;
  letter-spacing: 0.02em;
}

.products-source__item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ---------- 底部CTA ---------- */
.products-bottom-cta {
  max-width: var(--page-max-w);
  margin: 0 auto;
  padding-bottom: 5rem;
}

.products-bottom-cta__inner {
  background: linear-gradient(135deg, rgba(16, 28, 46, 0.85) 0%, rgba(22, 35, 63, 0.65) 100%);
  border: 1px solid rgba(230, 237, 243, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.products-bottom-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.products-bottom-cta p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.products-bottom-cta__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}

.link-arrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  transition: color 0.2s ease;
}

.link-arrow:hover {
  color: var(--accent);
}

/* ---------- 响应式：平板（≥700px） ---------- */
@media (min-width: 700px) {
  .page-products .section {
    padding: 5rem 2rem;
  }

  .products-hero {
    flex-direction: row;
    align-items: center;
    padding: 7rem 2rem 4rem;
    gap: 3.5rem;
  }

  .products-hero__visual {
    min-height: 340px;
  }

  .products-overview__grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-overview__card--large {
    grid-column: span 2;
  }

  .products-overview__card--tall {
    grid-row: span 2;
  }

  .products-overview__card--note {
    grid-column: span 1;
  }

  .products-prematch__layout {
    flex-direction: row;
    align-items: center;
  }

  .products-postmatch__layout,
  .products-postmatch {
    flex-direction: row;
    align-items: center;
  }

  .products-mobile {
    flex-direction: row;
    align-items: center;
  }

  .products-source__layout {
    flex-direction: row;
    align-items: center;
  }

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

  .products-bottom-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2.5rem;
  }
}

/* ---------- 响应式：桌面（≥1000px） ---------- */
@media (min-width: 1000px) {
  .page-products .section {
    padding: 6rem 2rem;
  }

  .products-hero {
    padding: 8rem 2rem 5rem;
    gap: 4rem;
  }

  .products-hero__title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  }

  .products-overview__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, auto);
  }

  .products-overview__card {
    padding: 2rem 1.875rem;
  }

  .products-overview__card--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .products-overview__card:nth-child(2) {
    grid-column: 3 / 5;
  }

  .products-overview__card:nth-child(3) {
    grid-column: span 2;
  }

  .products-overview__card--note {
    grid-column: span 2;
  }

  .products-source__content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- 减少动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-products .btn,
  .page-products .products-overview__card,
  .page-products .products-tabs__item {
    transition: none;
    transform: none;
  }

  .page-products .products-overview__card:hover {
    transform: none;
  }
}

/* ---------- 宽屏防溢出 ---------- */
@media (min-width: 1440px) {
  .products-hero,
  .products-overview,
  .products-prematch__layout,
  .products-facility,
  .products-postmatch__layout,
  .products-postmatch,
  .products-mobile,
  .products-source__heading,
  .products-source__layout,
  .products-bottom-cta {
    max-width: 1320px;
  }
}
