﻿:root {
  --ink: #162235;
  --muted: #5d6a7b;
  --line: #d6e7f0;
  --paper: #ffffff;
  --soft: #f4fbfe;
  --moon: #e1e8f0;
  --snow: #d0e7f5;
  --sky: #87ceeb;
  --ice: #78d1e5;
  --morning: #89abe3;
  --galaxy: #446ccf;
  --lake: #007ba7;
  --ocean: #006994;
  --deep: #0b4d66;
  --warm: #f8f2ea;
  --copper: #bb8765;
  --shadow: 0 18px 50px rgba(20, 55, 72, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(135deg, rgba(7, 82, 111, 0.96), rgba(18, 32, 52, 0.98)),
    var(--deep);
  border-bottom: 1px solid rgba(135, 206, 235, 0.22);
  box-shadow: 0 14px 32px rgba(6, 44, 60, 0.16);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(100%, var(--max));
  min-height: 78px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.brand span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand strong {
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.25;
  white-space: nowrap;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a,
.language-switch {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
}

.language-switch {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.language-switch:hover {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0.18) 68%),
    linear-gradient(180deg, rgba(5, 65, 92, 0.08), rgba(5, 65, 92, 0.18));
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 86px 28px 96px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: 4.6rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  color: #405266;
  font-size: 1.22rem;
}

.slogan {
  max-width: 820px;
  margin: 0;
  color: var(--deep);
  font-size: 2rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.center-action {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 105, 148, 0.18);
}

.btn.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--ocean), var(--galaxy));
}

.btn.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(0, 105, 148, 0.28);
}

.btn.light {
  color: var(--deep);
  background: var(--paper);
  border-color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--ocean);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 10px;
  background: var(--copper);
}

.stats-band {
  width: min(100%, var(--max));
  margin: -46px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  box-shadow: var(--shadow);
}

.stat {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 22px;
  background: var(--paper);
  border-top: 3px solid var(--sky);
}

.stat strong {
  color: var(--deep);
  font-size: 1.8rem;
  line-height: 1.2;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 86px 0;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 28px;
}

.soft-section {
  background: linear-gradient(180deg, var(--soft), #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.split.align-start {
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.page-hero-copy h1,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.long-copy p,
.page-hero-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-media {
  margin: 0;
}

.feature-media img,
.page-hero img,
.media-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-media img {
  aspect-ratio: 4 / 3;
}

.feature-media figcaption,
.media-grid figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-tile {
  min-height: 260px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.category-tile:hover {
  transform: translateY(-2px);
  border-color: var(--sky);
  box-shadow: var(--shadow);
}

.category-tile img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 26px;
  background: linear-gradient(180deg, var(--soft), var(--paper));
}

.category-tile span {
  display: block;
  padding: 16px 18px 18px;
  color: var(--ink);
  font-weight: 800;
}

.capability-strip {
  padding-top: 0;
}

.capability-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.capability-cards article,
.values-grid article,
.process-grid article,
.quality-list article,
.metric-grid article,
.gallery-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-cards article,
.values-grid article,
.process-grid article,
.quality-list article {
  padding: 28px;
}

.capability-cards span,
.process-grid span,
.quality-list span {
  color: var(--copper);
  font-weight: 900;
}

.capability-cards h3,
.values-grid h3,
.process-grid h3,
.quality-list h3,
.gallery-card h3 {
  margin: 12px 0 8px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.capability-cards p,
.values-grid p,
.process-grid p,
.quality-list p,
.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  width: min(100% - 56px, var(--max));
  margin: 0 auto 74px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 105, 148, 0.94), rgba(68, 108, 207, 0.9)),
    var(--ocean);
  border-radius: 8px;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: var(--paper);
}

.page-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 70px 28px 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.page-hero-copy {
  padding: 32px 0;
}

.page-hero-copy h1 {
  max-width: 700px;
}

.page-hero-copy p {
  max-width: 680px;
}

.page-hero img {
  height: 420px;
}

.products-hero img,
.contact-hero img {
  object-position: center;
}

.product-banner {
  position: relative;
  min-height: 310px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.product-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 45, 65, 0.82), rgba(8, 45, 65, 0.35)),
    rgba(8, 45, 65, 0.18);
}

.product-banner div {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 28px 54px;
}

.product-banner .eyebrow,
.product-banner h1 {
  color: var(--paper);
}

.product-banner h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

.product-center-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.product-center {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 104px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sidebar-title {
  display: grid;
  gap: 2px;
  padding: 20px 22px;
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--ocean), var(--deep)),
    var(--deep);
}

.sidebar-title span {
  font-size: 1.18rem;
  font-weight: 900;
}

.sidebar-title small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.category-tree {
  display: grid;
}

.category-tree-item {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.category-tree-item.is-child {
  padding-left: 34px;
  color: #425268;
  font-weight: 700;
  background: #fbfdfe;
}

.category-tree-item:hover,
.category-tree-item.is-active {
  color: var(--ocean);
  background: var(--soft);
}

.category-tree-item small {
  min-width: 26px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  background: var(--moon);
  font-size: 0.76rem;
}

.product-main {
  min-width: 0;
}

.product-toolbar {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.product-toolbar h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.15;
}

.product-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-item {
  min-width: 0;
}

.product-item button {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.product-item button:hover {
  transform: translateY(-2px);
  border-color: var(--sky);
  box-shadow: var(--shadow);
}

.product-thumb {
  display: block;
  background: linear-gradient(180deg, #f8fcfd, #fff);
  border-bottom: 1px solid var(--line);
}

.product-thumb img {
  width: 100%;
  height: 310px;
  padding: 20px;
  object-fit: contain;
}

.product-item strong {
  display: block;
  padding: 0 16px;
  color: var(--ink);
  font-size: 1rem;
}

.product-detail-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.detail-back {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ocean);
  background: var(--soft);
  font-weight: 800;
  cursor: pointer;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.detail-layout figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.detail-layout img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  padding: 26px;
}

.detail-layout h2 {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.15;
}

.detail-meta {
  display: grid;
  gap: 1px;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.detail-meta div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  background: var(--paper);
}

.detail-meta dt,
.detail-meta dd {
  margin: 0;
  padding: 13px 15px;
}

.detail-meta dt {
  color: var(--deep);
  background: var(--soft);
  font-weight: 850;
}

.detail-meta dd {
  color: var(--muted);
}

.detail-note {
  margin: 0 0 24px;
  color: var(--muted);
}

.long-copy {
  display: grid;
  gap: 16px;
}

.long-copy p {
  margin: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-grid article {
  padding: 26px;
  border-top: 3px solid var(--ice);
}

.metric-grid strong {
  display: block;
  color: var(--deep);
  font-size: 1.7rem;
}

.metric-grid span {
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-tabs button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: #37465a;
  font-weight: 800;
  cursor: pointer;
}

.category-tabs button:hover,
.category-tabs button.is-active {
  color: var(--paper);
  border-color: var(--ocean);
  background: var(--ocean);
}

.product-library {
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.gallery-card {
  display: none;
  overflow: hidden;
}

.gallery-card.is-visible {
  display: block;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(180deg, #f8fcfd, var(--paper));
  border-bottom: 1px solid var(--line);
}

.gallery-card h3,
.gallery-card p {
  padding: 0 18px;
}

.gallery-card h3 {
  margin-top: 18px;
}

.gallery-card p {
  padding-bottom: 20px;
  font-size: 0.94rem;
}

.category-card img {
  height: 430px;
  padding: 18px;
  background: #fff;
}

.category-card h3 {
  margin: 0;
  padding: 18px 20px 22px;
  text-align: center;
}

.mockup-media img {
  object-fit: contain;
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-grid figure {
  margin: 0;
}

.media-grid img {
  height: 260px;
}

.quality-list {
  display: grid;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.contact-copy address {
  margin-top: 22px;
  color: var(--deep);
  font-style: normal;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(120, 209, 229, 0.38);
  border-color: var(--ice);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ocean);
  font-weight: 750;
}

.site-footer {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  color: var(--paper);
  background: var(--ink);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-lang {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 1040px) {
  .nav-wrap {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background:
      linear-gradient(135deg, rgba(7, 82, 111, 0.98), rgba(18, 32, 52, 0.99)),
      var(--deep);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .language-switch {
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: 3.3rem;
  }

  .slogan {
    font-size: 1.55rem;
  }

  .stats-band,
  .metric-grid,
  .category-preview,
  .product-library,
  .product-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-library {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .page-hero,
  .contact-grid,
  .product-center,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

  .page-hero img {
    height: 360px;
  }

  .capability-cards,
  .values-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 570px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
      rgba(5, 65, 92, 0.08);
  }

  .hero-content {
    padding: 62px 20px 76px;
  }

  .hero-content h1 {
    font-size: 2.42rem;
  }

  .hero-copy,
  .section-copy p,
  .section-heading p,
  .long-copy p,
  .page-hero-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .slogan {
    font-size: 1.25rem;
  }

  .stats-band {
    margin-top: 0;
    padding: 0;
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .section {
    padding: 62px 0;
  }

  .section-inner,
  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-copy h2,
  .section-heading h2,
  .page-hero-copy h1,
  .cta-band h2 {
    font-size: 1.85rem;
  }

  .page-hero {
    padding-top: 42px;
  }

  .page-hero img {
    height: 250px;
  }

  .category-preview,
  .product-library,
  .product-grid,
  .metric-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-banner div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-banner h1 {
    font-size: 2.2rem;
  }

  .product-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .product-thumb img {
    height: 280px;
  }

  .detail-layout img {
    height: 360px;
  }

  .detail-meta div {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 360px;
  }

  .product-library {
    min-height: 0;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .category-tabs button {
    white-space: nowrap;
  }

  .cta-band,
  .site-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
