:root {
  color-scheme: light;
  --color-accent: #009eff;
  --color-accent-hover: #008be0;
  --color-accent-soft: #e5f6ff;
  --color-on-accent: #ffffff;
  --color-surface-page: #ffffff;
  --color-surface-card: #f7fafc;
  --color-surface-band: #f4f8fb;
  --color-surface-control: #ffffff;
  --color-text-title: #080c12;
  --color-text-body: #263445;
  --color-text-muted: #65748a;
  --color-border: #d8e2ec;
  --color-border-soft: rgba(216, 226, 236, 0.82);
  --color-border-strong: rgba(216, 226, 236, 0.9);
  --color-header-bg: rgba(255, 255, 255, 0.94);
  --color-menu-bg: rgba(255, 255, 255, 0.96);
  --shadow-card: 0 18px 44px -30px rgba(77, 108, 132, 0.36);
  --shadow-floating: 0 18px 50px rgba(41, 70, 92, 0.18);
  --shadow-header: 0 1px 0 rgba(216, 226, 236, 0.7);
  --blue: var(--color-accent);
  --blue-strong: var(--color-accent-hover);
  --blue-soft: var(--color-accent-soft);
  --bg: var(--color-surface-page);
  --panel: var(--color-surface-card);
  --band: var(--color-surface-band);
  --text: var(--color-text-title);
  --body: var(--color-text-body);
  --muted: var(--color-text-muted);
  --line: var(--color-border);
  --shadow: var(--shadow-card);
  --section: min(1296px, calc(100vw - 48px));
  --font-sans: "Noto Sans SC", "Alibaba PuHuiTi 3.0", "PingFang SC", "Microsoft YaHei", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-latin: Inter, "Noto Sans SC", system-ui, sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 15px;
  --text-lg: 18px;
  --title-sm: 20px;
  --title-md: 24px;
  --title-lg: 32px;
  --title-xl: 56px;
  --lh-tight: 1.28;
  --lh-title: 1.34;
  --lh-body: 1.72;
  --measure-copy: 64ch;
  --measure-card: 32ch;
  --measure-note: 24ch;
  --measure-title: 14em;
  --measure-title-wide: 18em;
  --radius-control: 10px;
  --radius-card: 18px;
  --radius-card-mobile: 14px;
  --radius-panel: 22px;
  --radius-feature: 24px;
  --radius-hero-panel: 28px;
  --radius-pill: 999px;
  --pill-height: 34px;
  --pill-height-sm: 32px;
  --pill-pad-x: 22px;
  --pill-pad-x-compact: 14px;
  --pill-bg: var(--color-accent-soft);
  --pill-text: var(--color-text-muted);
  --pill-active-bg: var(--color-accent);
  --pill-active-text: var(--color-on-accent);
  --card-padding-x: 24px;
  --card-padding-y: 24px;
  --card-padding-mobile-x: 20px;
  --card-padding-mobile-y: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
.brand strong,
.catalog-row strong,
.focus-card li strong,
.process-list strong,
.hotline-card strong {
  word-break: keep-all;
  overflow-wrap: normal;
}

p,
dd,
small,
.catalog-row span,
.industry-grid span,
.problem-grid span,
.tag-row span,
.chip-grid span {
  word-break: normal;
  overflow-wrap: break-word;
}

.text-measure {
  max-width: var(--measure-copy);
}

.section-lede,
.card-copy,
.card-action {
  text-wrap: pretty;
}

.section-lede {
  max-width: var(--measure-copy);
  margin-bottom: 0;
  color: var(--body);
  font-size: var(--text-md);
  line-height: var(--lh-body);
}

.card-copy {
  margin-bottom: 20px;
  color: var(--body);
  font-size: var(--text-sm);
  line-height: var(--lh-body);
}

.card-action {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.focus-copy {
  max-width: 39em;
  min-height: 48px;
  margin-bottom: 24px;
  color: var(--body);
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  text-align: left;
  text-wrap: pretty;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px 1fr 160px;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 0 calc((100vw - var(--section)) / 2);
  background: var(--color-header-bg);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.nav-cta,
.secondary-button,
.primary-button,
.menu-button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-control);
  background: var(--blue);
  color: var(--color-on-accent);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.section-shell {
  width: var(--section);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 86px;
  align-items: center;
  min-height: 620px;
  padding: 64px 0 72px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(42px, 4vw, var(--title-xl));
  font-weight: 800;
  line-height: 1.13;
}

.hero-desc {
  max-width: var(--measure-copy);
  margin-bottom: 34px;
  color: var(--body);
  font-size: var(--text-lg);
  line-height: var(--lh-body);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.primary-button,
.secondary-button {
  width: 160px;
  height: 48px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--color-surface-control);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.secondary-button:hover {
  border-color: transparent;
  background: var(--blue-soft);
  color: var(--blue);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tag-row span,
.chip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--pill-height);
  padding: 0 var(--pill-pad-x);
  border-radius: var(--radius-pill);
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

.service-panel,
.stats,
.catalog,
.problem-grid,
.focus-card,
.hotline-card {
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-panel {
  min-height: 360px;
  padding: 28px 38px;
  border-radius: var(--radius-hero-panel);
}

.panel-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--color-surface-control);
}

.panel-head strong {
  font-size: 15px;
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: var(--blue-soft);
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 700;
}

.panel-head span:first-of-type {
  background: var(--blue);
  color: var(--color-on-accent);
}

.service-list {
  margin: 22px 0 0;
}

.service-list div {
  display: grid;
  grid-template-columns: 92px 1fr 98px;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--color-border-strong);
}

.service-list div:last-child {
  border-bottom: 0;
}

.service-list dt {
  font-weight: 800;
}

.service-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-list em {
  color: var(--text);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.service-list div:nth-child(2) em {
  color: var(--blue);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr)) minmax(280px, 1.4fr);
  align-items: center;
  gap: 28px;
  min-height: 118px;
  padding: 0 44px;
  border-radius: var(--radius-card);
}

.stats strong {
  display: block;
  font-family: var(--font-latin);
  font-size: 28px;
  line-height: 1.1;
}

.stats span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.stats p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.section-block {
  padding-top: 96px;
}

.section-heading {
  max-width: var(--measure-copy);
  margin-bottom: 34px;
}

.section-title {
  margin-bottom: 12px;
  max-width: var(--measure-title);
  font-size: var(--title-lg);
  line-height: var(--lh-title);
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

.section-title--wide {
  max-width: var(--measure-title-wide);
}

.section-title--process {
  max-width: 12em;
  margin-bottom: 0;
}

.section-heading p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--body);
  font-size: var(--text-md);
  line-height: var(--lh-body);
}

.catalog {
  overflow: hidden;
  border-radius: var(--radius-panel);
  padding: 28px 36px 30px;
}

.catalog-row {
  display: grid;
  grid-template-columns: 230px 1.25fr 1.25fr 160px;
  gap: 28px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--color-border-soft);
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-row:last-child {
  border-bottom: 0;
}

.catalog-head {
  min-height: 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.catalog-row strong {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}

.catalog-row strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: var(--color-border-strong);
  transform: translateY(-50%);
}

.catalog-row.active strong {
  color: var(--blue);
}

.catalog-row.active strong::before {
  background: var(--blue);
}

.catalog-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  text-align: left;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 74px;
  padding: 58px 52px;
  border-radius: var(--radius-panel);
}

.problem-grid article,
.industry-grid article,
.assurance-grid article {
  min-width: 0;
}

.info-card {
  text-align: left;
}

.info-card h3,
.info-card .card-copy,
.info-card__action {
  justify-self: start;
  align-self: start;
  text-align: left;
}

.problem-grid h3,
.industry-grid h3,
.assurance-grid h3,
.focus-card h3 {
  margin-bottom: 13px;
  font-size: var(--title-sm);
  line-height: var(--lh-title);
}

.problem-grid p,
.industry-grid p,
.assurance-grid p {
  margin-bottom: 20px;
}

.problem-grid p,
.industry-grid p,
.assurance-grid p {
  max-width: none;
}

.info-card--problem .info-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--pill-height);
  width: fit-content;
  max-width: 100%;
  padding: 0 var(--pill-pad-x);
  border-radius: var(--radius-pill);
  background: var(--pill-bg);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
}

.industry-grid article,
.assurance-grid article {
  display: flex;
  flex-direction: column;
  min-height: 118px;
  padding: var(--card-padding-y) var(--card-padding-x) 22px;
  border-radius: var(--radius-card);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.industry-grid h3 {
  margin-bottom: 10px;
}

.industry-grid p {
  margin-bottom: 18px;
}

.info-card--industry .info-card__action {
  display: block;
  margin-top: auto;
}

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

.assurance-grid article {
  position: relative;
  padding-left: 44px;
}

.assurance-card {
  text-align: left;
}

.assurance-grid article::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 24px;
  width: 4px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--blue);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 48px;
}

.focus-card {
  display: grid;
  grid-template-rows: auto 48px auto auto;
  align-content: start;
  padding: 38px 44px 34px;
  border-radius: var(--radius-panel);
}

.focus-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 32px;
}

.chip-grid span {
  width: 100%;
  min-width: 0;
  padding: 0 var(--pill-pad-x-compact);
}

.chip-grid .active {
  background: var(--blue);
  color: var(--pill-active-text);
}

.focus-card ol,
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-card ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-strong);
}

.step-tile {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  align-content: center;
  min-width: 0;
  min-height: 70px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--color-surface-control);
  text-align: left;
}

.focus-card b {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pill-bg);
  color: var(--blue);
  font-family: var(--font-latin);
  font-weight: 800;
  line-height: 1;
}

.step-tile strong {
  min-width: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

.step-tile small,
.process-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  min-width: 0;
}

.step-tile small {
  grid-column: 2;
  min-width: 0;
  margin-top: 2px;
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
}

.process-band {
  margin-top: 112px;
  background: var(--band);
}

.process-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
  min-height: 300px;
}

.process-inner h2 {
  margin: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.process-list li {
  position: relative;
  min-width: 0;
  text-align: center;
}

.process-list li::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 1px;
  background: var(--line);
}

.process-list li:last-child::after {
  display: none;
}

.process-list span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--color-surface-control);
  color: var(--text);
  font-family: var(--font-latin);
  font-weight: 800;
}

.process-list li:first-child span {
  background: var(--blue);
  color: var(--pill-active-text);
}

.process-list strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  white-space: nowrap;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 92px;
  align-items: center;
  padding: 90px 0 70px;
}

.hotline-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 112px;
  padding: 24px 36px;
  border-radius: var(--radius-feature);
  background: var(--pill-bg);
}

.hotline-card span {
  grid-column: 1 / 2;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hotline-card strong {
  grid-column: 1 / 2;
  font-family: var(--font-latin);
  font-size: 30px;
  line-height: 1.2;
}

.hotline-card em {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--pill-active-text);
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  width: var(--section);
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.footer-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.site-footer strong {
  color: var(--text);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 24px;
  margin-top: 8px;
}

.footer-legal span {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1023px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-menu {
    position: fixed;
    top: 72px;
    right: 24px;
    z-index: 30;
    display: grid;
    gap: 6px;
    min-width: 168px;
    padding: 14px;
    border-radius: 16px;
    background: var(--color-menu-bg);
    box-shadow: var(--shadow-floating);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a {
    padding: 10px 12px;
    border-radius: var(--radius-control);
    color: var(--body);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu a:hover {
    background: var(--blue-soft);
    color: var(--blue);
  }

  .hero,
  .contact-section,
  .process-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
  }

  .stats,
  .problem-grid,
  .industry-grid,
  .assurance-grid,
  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog {
    padding: 20px 24px;
  }

  .catalog-row {
    grid-template-columns: 190px 1fr;
  }

  .catalog-head {
    display: none;
  }

  .catalog-row span:nth-of-type(2),
  .catalog-row em {
    display: none;
  }

  .process-inner {
    gap: 34px;
    padding: 58px 0;
  }

  .process-inner h2 {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  :root {
    --section: min(342px, calc(100vw - 48px));
  }

  .site-header {
    padding: 0 24px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 18px;
    height: 18px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 48px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 13px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1.28;
  }

  .hero-desc {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .primary-button,
  .secondary-button {
    width: 50%;
    min-width: 0;
    height: 44px;
    padding: 0 12px;
  }

  .tag-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .tag-row span {
    min-height: var(--pill-height-sm);
    padding: 0 var(--pill-pad-x-compact);
    font-size: 11px;
  }

  .service-panel {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .panel-head {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    background: transparent;
  }

  .panel-head span {
    display: none;
  }

  .service-list div {
    grid-template-columns: 92px 1fr;
    min-height: 48px;
  }

  .service-list em {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    padding: 28px 24px;
    text-align: center;
  }

  .stats p {
    grid-column: 1 / -1;
    font-size: 12px;
  }

  .stats strong {
    font-size: 24px;
  }

  .section-block {
    padding-top: 72px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-heading p,
  .contact-copy p {
    font-size: 14px;
  }

  .catalog {
    padding: 12px 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-row {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 6px;
    padding: 14px 16px;
    background: var(--panel);
    border-bottom: 0;
    margin-bottom: 8px;
  }

  .catalog-row strong {
    padding-left: 12px;
    font-size: 14px;
  }

  .catalog-row strong::before {
    left: 0;
    height: 24px;
  }

  .catalog-row span {
    color: var(--muted);
    font-size: 12px;
    text-align: left;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .industry-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid {
    gap: 12px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .problem-grid article,
  .industry-grid article,
  .assurance-grid article {
    padding: 18px 20px;
    border-radius: var(--radius-card-mobile);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .problem-grid article {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    gap: 8px;
    min-height: 112px;
  }

  .problem-grid h3 {
    font-size: 18px;
    line-height: 1.35;
  }

  .problem-grid h3,
  .problem-grid p,
  .problem-grid span {
    margin: 0;
  }

  .problem-grid p {
    display: none;
  }

  .info-card--problem .info-card__action {
    min-width: 0;
    justify-content: flex-start;
    padding: 0;
    background: transparent;
    text-align: left;
    font-size: 12px;
    line-height: 1.45;
  }

  .industry-grid {
    gap: 12px;
  }

  .industry-grid article {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: start;
    gap: 6px;
    min-height: 112px;
    padding: 18px 20px;
  }

  .industry-grid h3 {
    font-size: 18px;
    line-height: 1.35;
  }

  .industry-grid h3,
  .industry-grid p {
    margin: 0;
  }

  .industry-grid p {
    display: none;
  }

  .info-card--industry .info-card__action {
    float: none;
    text-align: left;
  }

  .assurance-grid {
    gap: 12px;
  }

  .assurance-grid article {
    display: grid;
    align-content: start;
    min-height: 168px;
    padding: 30px 18px 22px 30px;
  }

  .assurance-grid article::before {
    top: 31px;
    left: 16px;
    height: 30px;
    transform: none;
  }

  .assurance-grid h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .assurance-grid p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.65;
  }

  .focus-card {
    grid-template-rows: auto auto auto auto;
    row-gap: 18px;
    padding: 28px 24px 24px;
  }

  .focus-copy {
    min-height: 0;
    margin-bottom: 0;
  }

  .chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .chip-grid span {
    min-height: var(--pill-height-sm);
    padding: 0 var(--pill-pad-x-compact);
    font-size: 12px;
  }

  .focus-card ol {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
  }

  .step-tile {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 3px;
    justify-items: center;
    text-align: center;
  }

  .focus-card b {
    grid-row: auto;
  }

  .step-tile strong {
    font-size: 12px;
    white-space: nowrap;
  }

  .step-tile small {
    grid-column: auto;
    font-size: 10px;
    line-height: 1.45;
    word-break: keep-all;
  }

  .process-band {
    margin-top: 72px;
  }

  .process-inner {
    padding: 58px 0;
  }

  .section-title--process {
    max-width: none;
  }

  .process-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 34px 88px 1fr;
    gap: 14px;
    align-items: center;
    text-align: left;
  }

  .process-list li::after {
    top: 38px;
    left: 16px;
    width: 1px;
    height: 28px;
  }

  .process-list span {
    margin: 0;
  }

  .process-list small {
    margin: 0;
    text-align: right;
  }

  .contact-section {
    padding: 72px 0 58px;
    text-align: center;
  }

  .hotline-card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 112px;
    padding: 24px;
  }

  .hotline-card em {
    display: none;
  }

  .hotline-card strong {
    font-size: 28px;
  }

  .site-footer {
    padding: 26px 0 48px;
  }

  .footer-company,
  .footer-legal {
    display: grid;
    gap: 5px;
  }

  .footer-legal span {
    white-space: normal;
  }
}
