:root {
  --black: #090909;
  --ink: #171717;
  --charcoal: #282828;
  --muted: #72706b;
  --paper: #f7f4ef;
  --warm: #e8e1d6;
  --line: #d7cec0;
  --white: #ffffff;
  --sage: #73796d;
  --silver: #a4a29d;
  --video-brightness: 1.08;
  --video-saturation: 0.96;
  --video-contrast: 0.96;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-restoring-scroll body {
  visibility: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  width: 100%;
  padding: 22px clamp(22px, 5vw, 74px);
  color: var(--white);
}

.brand {
  position: relative;
  display: block;
  width: min(180px, 44vw);
  padding: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-logo {
  display: block;
}

.brand-logo-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.brand-logo-light {
  opacity: 1;
}

.nav {
  justify-self: center;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  width: max-content;
  max-width: 100%;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.nav a,
.nav-cta {
  text-shadow: 0 1px 16px rgb(0 0 0 / 35%);
}

.nav .certificate-link {
  white-space: nowrap;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  position: relative;
  width: max-content;
  min-width: max-content;
  min-height: 34px;
  color: var(--white);
  text-align: left;
  white-space: nowrap;
}

.language-current,
.language-hover-option {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  text-shadow: 0 1px 18px rgb(0 0 0 / 36%);
  text-transform: none;
  white-space: nowrap;
  writing-mode: horizontal-tb;
}

.language-current {
  position: relative;
  gap: 7px;
  padding: 0;
  flex-shrink: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.language-current-text {
  display: inline-block;
  white-space: nowrap;
  writing-mode: horizontal-tb;
}

.language-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-separator {
  width: 1px;
  height: 18px;
  align-self: center;
  background: rgb(255 255 255 / 72%);
}

.language-current:hover,
.language-switch.is-open .language-current {
  opacity: 0.78;
  transform: translateY(-1px);
}

.language-hover-option {
  position: absolute;
  top: calc(100% - 4px);
  left: 24px;
  width: max-content;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  transition:
    opacity 220ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.language-switch:hover .language-hover-option,
.language-switch:focus-within .language-hover-option {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-cta {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  border: 0;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  opacity: 0.82;
}

.site-header.is-scrolled {
  color: var(--charcoal);
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 1;
}

.site-header.is-scrolled .nav a,
.site-header.is-scrolled .nav-cta,
.site-header.is-scrolled .language-current,
.site-header.is-scrolled .language-hover-option {
  color: var(--charcoal);
  text-shadow: none;
}

.site-header:not(.is-scrolled) .nav a,
.site-header:not(.is-scrolled) .nav-cta,
.site-header:not(.is-scrolled) .language-current,
.site-header:not(.is-scrolled) .language-hover-option {
  color: var(--white);
}

.site-header.is-scrolled .header-separator {
  background: rgb(40 40 40 / 62%);
}

.site-header.is-scrolled .nav {
  border-color: rgb(255 255 255 / 8%);
  background: rgb(255 255 255 / 12%);
  box-shadow: 0 2px 8px rgb(15 23 42 / 2%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

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

.hero-video {
  z-index: 1;
  filter: brightness(var(--video-brightness)) saturate(var(--video-saturation)) contrast(var(--video-contrast));
  visibility: visible;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 420ms ease;
  will-change: opacity, transform;
}

.hero-video.is-active,
.hero-video.is-outgoing {
  visibility: visible;
}

.hero-video.is-active {
  z-index: 2;
  opacity: 1;
}

.hero-video.is-outgoing {
  z-index: 1;
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgb(7 8 8 / 72%) 0%, rgb(7 8 8 / 42%) 42%, rgb(247 244 239 / 8%) 100%),
    linear-gradient(0deg, rgb(8 8 8 / 52%) 0%, rgb(8 8 8 / 0%) 44%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(700px, calc(100% - 36px));
  margin-left: clamp(18px, 3.7vw, 58px);
  padding-bottom: clamp(32px, 4.8vh, 66px);
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7.2vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-content p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 22px;
  color: rgb(255 253 250 / 84%);
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-actions .button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 11px;
}

.button.light {
  background: var(--white);
  color: var(--black);
}

.button.ghost {
  border-color: rgb(255 255 255 / 58%);
  color: var(--white);
}

.button.light:hover {
  background: #f4f4f2;
  box-shadow: 0 4px 12px rgb(0 0 0 / 9%);
}

.button.ghost:hover {
  border-color: rgb(255 255 255 / 72%);
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
}

.hero-panel {
  position: absolute;
  right: clamp(22px, 5vw, 74px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 18px;
  color: rgb(255 253 250 / 76%);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-panel span {
  border-top: 1px solid rgb(255 255 255 / 42%);
  padding-top: 10px;
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 90px 0;
}

.intro {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.intro h2,
.showcase-copy h2,
.assurance .section-heading h2,
.process .section-heading h2 {
  max-width: 680px;
  font-size: clamp(26px, 2.65vw, 40px);
  line-height: 1.2;
}

.section-index {
  margin: 0;
  color: var(--silver);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.intro-detail p,
.showcase-copy p:last-child,
.assurance-grid span,
.metrics span,
.process li p,
.contact-copy p {
  color: var(--muted);
}

.intro-detail {
  display: grid;
  gap: 24px;
  padding: 24px 26px;
  border-left: 3px solid #2e7180;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 18px 42px rgb(25 45 55 / 7%);
}

.intro-detail p {
  margin-bottom: 0;
}

.route-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}

.route-map span {
  position: relative;
  min-height: 64px;
  display: grid;
  align-content: center;
  padding: 0 16px 0 34px;
  border: 1px solid #dbe7e8;
  border-radius: 4px;
  background: var(--white);
  color: #1f343c;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgb(22 43 52 / 5%);
}

.route-map span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e7180;
  transform: translateY(-50%);
}

.route-map span:last-child {
  border-right: 1px solid #dbe7e8;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(380px, 1.16fr);
  gap: clamp(28px, 6vw, 92px);
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.showcase-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list article {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 260px;
  overflow: hidden;
  padding: 30px 28px 28px;
  border: 1px solid #dce7e9;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 20px 50px rgb(24 47 58 / 8%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-list article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1f4f61 0%, #43a58a 100%);
}

.service-list article:hover {
  border-color: #bdd4d8;
  box-shadow: 0 24px 58px rgb(24 47 58 / 11%);
  transform: translateY(-2px);
}

.service-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.service-list small {
  color: #2e7180;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-list h3,
.service-list p {
  grid-column: auto;
}

.service-list span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #edf6f5;
  color: #255f6d;
  font-size: 13px;
  font-weight: 800;
}

.service-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-points {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 10px;
  height: 6px;
  border-left: 2px solid #2e7180;
  border-bottom: 2px solid #2e7180;
  transform: rotate(-45deg);
}

.service-tags {
  grid-column: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.service-tags b {
  display: inline-grid;
  min-height: 24px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.image-band {
  position: relative;
  min-height: 48vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(12 20 26 / 46%), rgb(12 20 26 / 24%)),
    url("assets/segia-testing-equipment-banner.jpg") center 58% / cover;
  color: var(--white);
}

.band-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.band-shade {
  display: none;
}

.band-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
  padding-bottom: clamp(52px, 9vw, 104px);
}

.image-band p {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.05;
}

.assurance {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 5vw, 68px);
}

.section-heading {
  max-width: 820px;
}

.assurance-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.assurance-grid div {
  min-height: 210px;
  padding: 30px;
  background: var(--paper);
}

.assurance-grid strong {
  display: block;
  margin-bottom: 22px;
  font-size: 18px;
}

.category-strip {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}

.category-strip span {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border: 1px solid #dce7e9;
  border-radius: 4px;
  background: var(--white);
  color: #1f343c;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgb(22 43 52 / 5%);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--charcoal);
  color: var(--white);
}

.metrics div {
  min-height: 260px;
  padding: clamp(34px, 6vw, 76px);
  border-right: 1px solid rgb(255 255 255 / 12%);
}

.metrics strong {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1;
}

.metrics span {
  color: rgb(255 253 250 / 68%);
}

.process {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 5vw, 68px);
}

.process ol {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process li {
  min-height: 210px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.process li:last-child {
  border-right: 0;
}

.process li span {
  display: block;
  margin-bottom: 46px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.section-lead {
  display: grid;
  align-content: start;
  gap: 12px;
}

.section-lead .section-index {
  margin-bottom: 10px;
}

.section-lead .eyebrow,
.showcase-copy .eyebrow {
  color: #2e7180;
}

.section-lead h2,
.showcase-copy h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
}

.section-lead > p:last-child,
.showcase-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.intro {
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: stretch;
  padding-top: 110px;
  padding-bottom: 96px;
}

.compliance-panel {
  display: grid;
  gap: 14px;
  align-self: stretch;
  padding: 18px;
  border: 1px solid #dce7e9;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(46 113 128 / 8%), transparent 42%),
    #fff;
  box-shadow: 0 20px 54px rgb(23 43 52 / 8%);
}

.compliance-panel .route-map {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compliance-panel .route-map span {
  min-height: 92px;
  padding: 24px 22px 18px;
  border-color: #e0eaeb;
  border-radius: 6px;
  box-shadow: none;
}

.compliance-panel .route-map span::before {
  left: 22px;
  top: 18px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  transform: none;
}

.compliance-note {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 6px;
  background: #233237;
  color: var(--white);
}

.compliance-note strong {
  font-size: 18px;
}

.compliance-note p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
}

.showcase {
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 98px 0;
  border-top: 1px solid #e3ddd3;
}

.showcase-copy {
  position: static;
  display: grid;
  align-content: start;
  gap: 12px;
  max-width: 760px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  min-height: 288px;
  padding: 26px 28px;
  border-color: #e1e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgb(25 45 55 / 6%);
}

.service-list article::before {
  display: none;
}

.service-list article:hover {
  border-color: #c9dcdf;
  box-shadow: 0 18px 42px rgb(24 47 58 / 9%);
  transform: translateY(-1px);
}

.service-card-head {
  display: flex;
  grid-column: auto;
  grid-row: auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-list span {
  width: 54px;
  height: 54px;
  border: 1px solid #d7e5e6;
  background: #f3f8f8;
  color: #214f5b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.service-list small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-list h3 {
  grid-column: auto;
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.service-list p {
  grid-column: auto;
  margin: 0;
  color: var(--muted);
}

.service-points {
  grid-column: auto;
  grid-row: auto;
  gap: 8px;
  margin: 0;
  padding-top: 2px;
}

.service-points li {
  padding-left: 18px;
  color: #2f3a3d;
}

.image-band {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgb(9 12 13 / 60%), rgb(9 12 13 / 20%)),
    url("assets/segia-testing-equipment-banner.jpg") center 58% / cover;
}

.band-copy {
  width: min(1180px, calc(100% - 44px));
  padding-bottom: clamp(58px, 8vw, 92px);
}

.image-band p {
  max-width: 780px;
  font-size: clamp(34px, 4.6vw, 64px);
}

.assurance {
  grid-template-columns: minmax(280px, 0.75fr) minmax(460px, 1.25fr);
  align-items: start;
  gap: clamp(34px, 6vw, 90px);
  padding-top: 98px;
  padding-bottom: 82px;
}

.assurance .category-strip {
  grid-column: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-strip span {
  min-height: 78px;
  padding: 0 22px;
  border-color: #e1e8e8;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(46 113 128 / 7%), transparent 52%),
    #fff;
  box-shadow: 0 12px 32px rgb(22 43 52 / 5%);
}

.process {
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: clamp(34px, 6vw, 90px);
  padding-top: 84px;
  padding-bottom: 104px;
}

.process ol {
  grid-column: auto;
  gap: 12px;
  margin: 0;
  border-top: 0;
}

.process li {
  position: relative;
  min-height: 188px;
  padding: 30px 24px 24px;
  border: 1px solid #e1e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgb(22 43 52 / 5%);
}

.process li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 38px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-top: 1px solid #b9c8c9;
  border-right: 1px solid #b9c8c9;
  background: #fff;
  transform: rotate(45deg);
}

.process li span {
  margin-bottom: 34px;
  color: #2e7180;
  font-family: inherit;
  font-size: 20px;
  font-weight: 800;
}

.middle-area {
  width: 100%;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfc 62%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.middle-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 0;
  border-bottom: 1px solid #e4ddd2;
}

.middle-section:last-child {
  border-bottom: 0;
}

.middle-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.middle-kicker {
  margin: 0;
  color: #5e6b70;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.middle-copy h2 {
  max-width: 430px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", "SimSun", serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
}

.middle-copy p:not(.middle-kicker) {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.middle-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: #edf4ff;
  color: #1f3947;
}

.middle-icon svg {
  width: 27px;
  height: 27px;
}

.middle-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid #e7e0d6;
}

.overview-grid article {
  display: grid;
  min-height: 250px;
  align-content: start;
  gap: 18px;
  padding: 4px clamp(18px, 2vw, 30px) 0;
  border-right: 1px solid #e7e0d6;
}

.overview-grid h3,
.solution-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.overview-grid p,
.solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.overview-grid a {
  width: fit-content;
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.overview-grid a::after {
  content: " ->";
  color: #1f3947;
}

.solution-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(620px, 1.38fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

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

.solution-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 28px;
  border: 1px solid #dedfe2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgb(25 39 50 / 5%);
}

.solution-grid ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #313d43;
  font-size: 13px;
  line-height: 1.65;
}

.category-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(700px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: end;
  padding-top: 52px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid #dedfe2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.category-grid span {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 20px 12px;
  border-right: 1px solid #dedfe2;
  color: #25343b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.category-grid span:last-child {
  border-right: 0;
}

.category-grid span::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border: 2px solid #233237;
  border-radius: 7px;
  opacity: 0.78;
}

.process-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(620px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding-top: 52px;
  padding-bottom: 66px;
}

.process-strip ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #dedfe2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.process-strip li {
  min-height: 150px;
  padding: 28px 22px;
  border-right: 1px solid #dedfe2;
}

.process-strip li:last-child {
  border-right: 0;
}

.process-strip span {
  display: block;
  margin-bottom: 18px;
  color: #233237;
  font-size: 17px;
  font-weight: 800;
}

.process-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.middle-area {
  width: 100%;
  background:
    radial-gradient(circle at 50% 0, rgb(76 102 139 / 8%), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 45%, #ffffff 100%);
  border-top: 1px solid #e7edf3;
}

.middle-area .middle-section {
  width: min(1560px, calc(100% - 96px));
  margin: 0 auto;
  border-bottom: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 56px 0 52px;
}

.proof-strip article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 0 28px;
  border-right: 1px solid #dfe6ee;
}

.proof-strip article:first-child {
  padding-left: 6px;
}

.proof-strip article:last-child {
  border-right: 0;
  padding-right: 6px;
}

.proof-strip strong,
.trust-grid h3 {
  display: block;
  margin: 0 0 8px;
  color: #1f2b38;
  font-size: 17px;
  line-height: 1.3;
}

.proof-strip p,
.trust-grid p {
  margin: 0;
  color: #6e7782;
  font-size: 14px;
  line-height: 1.7;
}

.middle-icon {
  width: 50px;
  height: 50px;
  background: #eaf2ff;
  color: #526f9b;
}

.proof-strip .middle-icon,
.metrics-band .middle-icon,
.trust-grid .middle-icon {
  width: 58px;
  height: 58px;
}

.proof-strip .middle-icon svg,
.metrics-band .middle-icon svg,
.trust-grid .middle-icon svg {
  width: 31px;
  height: 31px;
}

.middle-icon-green {
  background: #edf7ee;
  color: #4b7f4c;
}

.middle-icon-gold {
  background: #fff6dc;
  color: #c58b1b;
}

.middle-icon-purple {
  background: #f2edff;
  color: #735fa8;
}

.compliance-solution {
  padding: 42px 0 62px;
}

.solution-title {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.solution-title h2 {
  margin: 0 0 16px;
  color: #172231;
  font-family: "Inter", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.solution-title p {
  margin: 0;
  color: #65717d;
  font-size: 14px;
  line-height: 1.8;
}

.solution-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dce3ec;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
}

.solution-tabs span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-right: 1px solid #dce3ec;
  color: #45515f;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.solution-tabs span.is-active {
  background: #111;
  color: #fff;
}

.solution-tabs span:last-child {
  border-right: 0;
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(34px, 5vw, 96px);
  min-height: 430px;
  padding: clamp(44px, 5vw, 72px);
  border: 1px solid #dce3ec;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgb(36 52 76 / 7%);
}

.solution-detail h3,
.specialty-card h3 {
  margin: 0 0 22px;
  color: #172231;
  font-size: 22px;
  line-height: 1.3;
}

.solution-detail p {
  max-width: 680px;
  margin: 0 0 26px;
  color: #65717d;
  font-size: 13px;
  line-height: 1.85;
}

.solution-detail ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  color: #344150;
  font-size: 13px;
  line-height: 1.65;
  list-style: none;
}

.solution-detail li {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.solution-item-icon {
  width: 16px;
  height: 16px;
  margin-top: 0.18em;
  color: #7b85aa;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.solution-link:hover {
  background: #252525;
  box-shadow: 0 4px 12px rgb(17 17 17 / 10%);
}

.specialty-card {
  align-self: stretch;
  padding: 40px 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(123 133 170 / 10%), transparent 56%),
    #f7f8fb;
}

.specialty-card dl {
  display: grid;
  margin: 0;
}

.specialty-card div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #dce3ec;
  color: #3c4754;
  font-size: 13px;
}

.specialty-card div:last-child {
  border-bottom: 0;
}

.specialty-card dt {
  font-weight: 800;
}

.specialty-card dd {
  margin: 0;
  color: #65717d;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 52px 0;
  border-top: 1px solid #e5ebf1;
  border-bottom: 1px solid #e5ebf1;
}

.metrics-band article {
  display: grid;
  grid-template-columns: 66px max-content;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  border-right: 1px solid #dfe6ee;
}

.metrics-band article:last-child {
  border-right: 0;
}

.metrics-band strong {
  display: block;
  color: #1f2b38;
  font-size: 34px;
  line-height: 1;
}

.metrics-band p {
  margin: 8px 0 0;
  color: #5f6c78;
  font-size: 14px;
  white-space: nowrap;
}

.trust-section {
  padding: 70px 0 104px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trust-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  align-content: center;
  justify-content: stretch;
  min-height: 170px;
  padding: 36px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(36 52 76 / 5%);
}

.trust-grid article > div {
  min-width: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(22px, 3.6vw, 48px);
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 56px;
  padding: clamp(20px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
}

.contact .contact-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  white-space: normal;
}

.contact .contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-line;
}

.contact-methods {
  display: grid;
  gap: 4px;
  max-width: 390px;
  margin: clamp(12px, 1.8vw, 20px) 0 0;
  padding: 0;
  list-style: none;
}

.contact-methods li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: center;
  padding: 5px 0;
  border-top: 1px solid var(--line);
}

.contact-methods span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-method-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-icon-wechat {
  fill: currentColor;
  stroke: none;
}

.contact-method-icon-phone {
  width: 15px;
  height: 15px;
  margin-left: 1.5px;
}

.contact-methods strong,
.contact-methods a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
}

.contact-qr {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 4px;
}

.contact-methods a:hover {
  color: var(--black);
}

form,
label {
  display: grid;
}

form {
  align-content: start;
  gap: 8px;
}

label {
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-control {
  position: relative;
  display: block;
}

.field-icon {
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 17px;
  color: var(--silver);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
  pointer-events: none;
}

.field-control-textarea .field-icon {
  top: 14px;
  transform: none;
}

.field-validation {
  position: absolute;
  top: calc(100% + 9px);
  left: 36%;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: min(260px, 90vw);
  padding: 7px 10px;
  border: 1px solid #a8a8a8;
  background: #fff;
  box-shadow: 3px 4px 8px rgb(0 0 0 / 18%);
  color: #171717;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.field-validation::before {
  position: absolute;
  top: -6px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #a8a8a8;
  border-left: 1px solid #a8a8a8;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.field-validation[hidden] {
  display: none;
}

.field-validation-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  background: #090909;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 7px 0 7px 30px;
}

input::placeholder,
textarea::placeholder {
  color: #aaa39a;
}

button {
  justify-self: center;
  width: min(180px, 32%);
  min-height: 34px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#contact-form button:hover:not(:disabled) {
  border-color: #252525;
  background: #252525;
  box-shadow: 0 4px 12px rgb(9 9 9 / 10%);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
}

.contact-form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

#contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgb(40 40 40 / 10%);
  background: #f0f0ee;
  color: var(--charcoal);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(30px, 5vw, 68px);
  width: min(1040px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 62px) 0 34px;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
  filter: none;
}

.footer-contact {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--charcoal);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
}

.footer-links h2 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-links a {
  display: flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a::before {
  content: "›";
  margin-right: 8px;
  color: var(--silver);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: min(1040px, calc(100% - 96px));
  margin: 0 auto;
  padding: 16px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-data-badge {
  flex: 0 0 auto;
  width: 220px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.footer-copyright {
  display: grid;
  gap: 8px;
}

.footer-icp:hover {
  color: var(--ink);
}

.footer-icp {
  width: fit-content;
  max-width: 100%;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  color: var(--muted);
}

.footer-legal a {
  padding: 0 10px;
  border-right: 1px solid rgb(40 40 40 / 28%);
  line-height: 1;
}

.footer-legal a:first-child {
  padding-left: 0;
}

.footer-legal a:last-child {
  padding-right: 0;
  border-right: 0;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-panel {
    left: 22px;
    right: 22px;
    justify-content: space-between;
  }

  .intro,
  .showcase,
  .assurance,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    position: static;
  }

  .assurance-grid,
  .process ol {
    grid-column: auto;
  }

  .assurance-grid,
  .category-strip,
  .metrics,
  .process ol {
    grid-template-columns: 1fr;
  }

  .process li,
  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-overview,
  .solution-section,
  .category-section,
  .process-strip {
    grid-template-columns: 1fr;
  }

  .middle-copy h2,
  .middle-copy p:not(.middle-kicker) {
    max-width: 680px;
  }

  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #e7e0d6;
  }

  .overview-grid article {
    min-height: 220px;
    padding: 24px;
    border-bottom: 1px solid #e7e0d6;
  }

  .overview-grid article:nth-child(2n) {
    border-right: 0;
  }

  .overview-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid span {
    border-bottom: 1px solid #dedfe2;
  }

  .category-grid span:nth-child(4n) {
    border-right: 0;
  }

  .category-grid span:nth-last-child(-n + 4) {
    border-bottom: 0;
  }

  .process-strip ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-strip li:nth-child(2n) {
    border-right: 0;
  }

  .process-strip li:nth-child(-n + 2) {
    border-bottom: 1px solid #dedfe2;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip article {
    padding: 18px;
    min-height: 88px;
    border-right: 1px solid #dfe6ee;
    border-bottom: 1px solid #dfe6ee;
  }

  .proof-strip article:nth-child(2n) {
    border-right: 0;
  }

  .proof-strip article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .solution-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-tabs span:nth-child(2n) {
    border-right: 0;
  }

  .solution-tabs span:nth-child(-n + 2) {
    border-bottom: 1px solid #dce3ec;
  }

  .solution-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .metrics-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-band article:nth-child(2n) {
    border-right: 0;
  }

  .metrics-band article:nth-child(-n + 2) {
    border-bottom: 1px solid #dfe6ee;
  }

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

  .trust-grid article {
    grid-template-columns: 66px 1fr;
    justify-content: stretch;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 128px;
    padding: 7px 9px;
  }

  .nav-cta {
    min-height: 30px;
    padding: 0;
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    width: max-content;
  }

  .language-current {
    min-height: 30px;
    font-size: 13px;
    gap: 6px;
  }

  .language-icon {
    width: 17px;
    height: 17px;
  }

  .language-hover-option {
    right: 0;
    left: auto;
    min-height: 30px;
    font-size: 13px;
  }

  .language-switch:focus-within .language-hover-option {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2px);
  }

  .language-switch.is-open .language-hover-option {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-separator {
    height: 17px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-bottom: 30px;
  }

  .hero {
    min-height: 620px;
    height: 100svh;
    max-height: 780px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-content p:not(.kicker) {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .section,
  .showcase,
  .contact {
    width: calc(100% - 32px);
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .image-band {
    min-height: 520px;
    background-attachment: scroll;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card-head,
  .service-points {
    grid-column: auto;
    grid-row: auto;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-map span:nth-child(2n) {
    border-right: 1px solid #dbe7e8;
  }

  .route-map span:nth-child(-n + 2) {
    border-bottom: 1px solid #dbe7e8;
  }

  .category-strip {
    grid-column: auto;
  }

  .category-strip span {
    min-height: 58px;
  }

  .service-list small,
  .service-list h3,
  .service-list p,
  .service-tags {
    grid-column: auto;
  }

  .service-tags {
    margin-top: 0;
  }

  .middle-section {
    width: calc(100% - 32px);
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .middle-copy {
    gap: 12px;
  }

  .middle-copy h2 {
    font-size: 32px;
  }

  .overview-grid,
  .solution-grid,
  .category-grid,
  .process-strip ol {
    grid-template-columns: 1fr;
  }

  .overview-grid article,
  .solution-grid article,
  .process-strip li {
    min-height: 0;
  }

  .overview-grid article,
  .overview-grid article:nth-last-child(-n + 2),
  .category-grid span,
  .category-grid span:nth-last-child(-n + 4),
  .process-strip li,
  .process-strip li:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #dedfe2;
  }

  .overview-grid article:last-child,
  .category-grid span:last-child,
  .process-strip li:last-child {
    border-bottom: 0;
  }

  .solution-grid article {
    grid-template-columns: 50px 1fr;
    padding: 22px;
  }

  .category-grid span {
    min-height: 86px;
  }

  .middle-area .middle-section {
    width: calc(100% - 32px);
  }

  .proof-strip,
  .solution-tabs,
  .metrics-band,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .proof-strip article:nth-child(2n),
  .metrics-band article,
  .metrics-band article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid #dfe6ee;
  }

  .proof-strip article:last-child,
  .metrics-band article:last-child {
    border-bottom: 0;
  }

  .solution-tabs span,
  .solution-tabs span:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #dce3ec;
  }

  .solution-tabs span:last-child {
    border-bottom: 0;
  }

  .solution-panel {
    padding: 24px 18px;
  }

  .specialty-card {
    padding: 22px 18px;
  }

  .specialty-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .trust-grid article {
    grid-template-columns: 52px 1fr;
    min-height: 0;
    padding: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    width: calc(100% - 32px);
    gap: 6px;
  }

  .footer-data-badge {
    width: min(200px, 100%);
    height: auto;
    max-height: 42px;
    margin-top: 14px;
  }
}

@media (max-width: 620px) {
  .middle-area .middle-section {
    width: calc(100% - 24px);
  }

  .proof-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 76vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 30px 0 28px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .proof-strip::-webkit-scrollbar,
  .solution-tabs::-webkit-scrollbar {
    display: none;
  }

  .proof-strip article,
  .proof-strip article:nth-child(2n),
  .proof-strip article:last-child {
    grid-column: auto;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 96px;
    padding: 18px;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    background: #fff;
    scroll-snap-align: start;
  }

  .proof-strip .middle-icon,
  .metrics-band .middle-icon {
    width: 48px;
    height: 48px;
  }

  .proof-strip .middle-icon svg,
  .metrics-band .middle-icon svg {
    width: 26px;
    height: 26px;
  }

  .proof-strip strong {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .proof-strip p {
    font-size: 13px;
    line-height: 1.45;
  }

  .compliance-solution {
    padding-top: 34px;
  }

  .solution-title {
    margin-bottom: 24px;
  }

  .solution-title h2 {
    font-size: 28px;
  }

  .solution-tabs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-template-columns: none;
    overflow-x: auto;
    border-bottom: 1px solid #dce3ec;
    border-radius: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .solution-tabs span,
  .solution-tabs span:nth-child(-n + 2),
  .solution-tabs span:last-child {
    min-width: 174px;
    min-height: 48px;
    padding: 0 18px;
    border-right: 1px solid #dce3ec;
    border-bottom: 0;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .solution-panel {
    gap: 24px;
    padding: 28px 18px;
  }

  .solution-detail h3,
  .specialty-card h3 {
    font-size: 24px;
  }

  .solution-detail p,
  .solution-detail ul,
  .specialty-card div {
    font-size: 15px;
  }

  .solution-detail li {
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 9px;
  }

  .solution-item-icon {
    width: 18px;
    height: 18px;
  }

  .solution-link {
    min-height: 48px;
    padding: 0 22px;
    font-size: 15px;
  }

  .specialty-card {
    padding: 24px 18px;
  }

  .metrics-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 30px 0;
  }

  .metrics-band article,
  .metrics-band article:nth-child(2n) {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    min-height: 146px;
    padding: 18px 10px;
    border-right: 1px solid #dfe6ee;
    border-bottom: 1px solid #dfe6ee;
    text-align: center;
  }

  .metrics-band article:nth-child(2n),
  .metrics-band article:last-child {
    border-right: 0;
  }

  .metrics-band article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .metrics-band strong {
    font-size: 30px;
  }

  .metrics-band p {
    margin-top: 2px;
    font-size: 13px;
    white-space: normal;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-grid article {
    min-height: 0;
    padding: 22px 18px;
  }
}
