@font-face {
  font-family: "Xiaolin Sans";
  src: url("./assets-goal/NotoSansSC-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family:
    "Xiaolin Sans",
    "Noto Sans SC",
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
  --display:
    "Noto Serif SC",
    "Noto Serif CJK SC",
    "Source Han Serif SC",
    "STZhongsong",
    "华文中宋",
    "SimSun",
    serif;
  --ink: #111315;
  --muted: #555b60;
  --subtle: #7b8085;
  --paper: #fbfcfd;
  --surface: #ffffff;
  --soft: #edf1f5;
  --line: rgba(17, 19, 21, 0.11);
  --red: #d71920;
  --yellow: #f2c400;
  --blue: #0c62ce;
  --black: #08090a;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.035) 0 10%, transparent 10% 100%),
    linear-gradient(225deg, rgba(12, 98, 206, 0.045) 0 12%, transparent 12% 100%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 46%, #f8fafc 76%, #ffffff 100%);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 76px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1fr) minmax(130px, auto);
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  border-bottom: 1px solid rgba(17, 19, 21, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 34px rgba(17, 19, 21, 0.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  font-size: 14px;
  font-weight: 800;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
  color: rgba(17, 19, 21, 0.66);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a,
.header-tel,
.btn,
.footer a {
  transition:
    color 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.nav a {
  position: relative;
}

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

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0 42%, var(--yellow) 42% 58%, var(--blue) 58% 100%);
}

.header-tel {
  justify-self: end;
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 19, 21, 0.32);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.header-tel:hover,
.btn-secondary:hover {
  background: #fff;
  border-color: rgba(17, 19, 21, 0.58);
}

.hero {
  position: relative;
  min-height: clamp(650px, 78vh, 720px);
  padding: clamp(124px, 10vw, 168px) var(--gutter) clamp(72px, 7vw, 104px);
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 32%, rgba(251, 252, 253, 0.24) 58%, rgba(251, 252, 253, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(247, 250, 252, 0.16)),
    url("./assets-v11/generated/hero-hangtag-light-studio.png");
  background-position: center, center, center;
  background-size: cover, cover, cover;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 76px;
  bottom: 0;
  z-index: -1;
  width: 42vw;
  min-width: 420px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(251, 252, 253, 0.18)),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 8px;
  display: none;
  background: linear-gradient(90deg, var(--red) 0 28%, var(--yellow) 28% 44%, var(--blue) 44% 72%, var(--black) 72% 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  animation: hero-in 700ms var(--ease) both;
}

.color-strip {
  width: 138px;
  height: 9px;
  margin-bottom: clamp(28px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 0.64fr 0.9fr 0.76fr;
}

.color-strip span:nth-child(1) {
  background: var(--red);
}

.color-strip span:nth-child(2) {
  background: var(--yellow);
}

.color-strip span:nth-child(3) {
  background: var(--blue);
}

.color-strip span:nth-child(4) {
  background: var(--black);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 9.2em;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.1;
}

.hero h1 span,
.intro-panel h2 span,
.section h2 span,
.contact h2 span {
  display: block;
}

.hero p {
  margin: clamp(26px, 3vw, 36px) 0 0;
  max-width: 38em;
  color: var(--muted);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.95;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-width: 150px;
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
}

.btn-primary:hover {
  background: #b9131a;
}

.btn-secondary {
  border: 1px solid rgba(17, 19, 21, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.intro-panel,
.section,
.contact,
.footer {
  width: min(var(--max), calc(100vw - 48px));
  margin-inline: auto;
}

.intro-panel {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(520px, 1.05fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.intro-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 28%, var(--yellow) 28% 46%, var(--blue) 46% 72%, var(--black) 72% 100%);
}

.intro-copy {
  padding: clamp(34px, 4vw, 54px);
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.intro-panel h2 {
  max-width: 12em;
  font-size: clamp(30px, 2.9vw, 48px);
  line-height: 1.17;
}

.intro-copy p {
  margin: 22px 0 0;
  max-width: 36em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.88;
}

.intro-copy p span {
  display: block;
}

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.facts div {
  min-width: 0;
  padding: clamp(36px, 5vw, 66px) 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-right: 1px solid var(--line);
}

.facts div:last-child {
  border-right: 0;
}

.facts dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.facts div:last-child dt {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 42px);
}

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

.section {
  position: relative;
  isolation: isolate;
  padding: clamp(82px, 9vw, 136px) 0;
  border-top: 1px solid rgba(17, 19, 21, 0.09);
}

.section::before,
.contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(112deg, rgba(217, 25, 32, 0.055) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 253, 0.96));
}

.craft::before,
.credentials::before,
.about::before {
  background:
    linear-gradient(90deg, rgba(12, 98, 206, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 253, 0.96));
}

.process::before {
  background:
    linear-gradient(90deg, rgba(242, 196, 0, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 253, 0.96));
}

.section h2,
.contact h2 {
  max-width: 10.4em;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.16;
}

.section-copy {
  width: min(760px, 100%);
}

.section-copy p,
.about-copy p,
.equipment-copy p,
.credentials-copy p {
  margin: 22px 0 0;
  max-width: 42em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.88;
  text-wrap: pretty;
}

.equipment,
.credentials,
.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

.equipment-copy,
.credentials-copy {
  position: sticky;
  top: 108px;
}

.products .section-copy {
  width: min(980px, 100%);
  margin: 0 auto 38px;
}

.products .section-copy h2 {
  max-width: 13em;
}

.product-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  grid-template-rows: repeat(2, minmax(244px, auto));
  gap: 10px;
  border-top: 0;
}

.product-grid article {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  border: 1px solid rgba(17, 19, 21, 0.1);
  background: #fff;
}

.product-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--red);
}

.product-grid article:nth-child(2)::before {
  background: var(--yellow);
}

.product-grid article:nth-child(3)::before {
  background: var(--blue);
}

.product-grid img {
  width: 100%;
  height: 244px;
  min-height: 0;
  object-fit: cover;
}

.product-grid article:first-child {
  grid-row: span 2;
}

.product-grid article:first-child img {
  height: 520px;
}

.product-grid h3 {
  margin: 0;
  align-self: auto;
  padding: 18px 20px 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.16;
}

.product-grid p {
  margin: 0;
  align-self: auto;
  padding: 10px 20px 22px;
  max-width: 32em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.craft {
  display: grid;
  grid-template-columns: minmax(480px, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.craft-image {
  margin: 0;
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.craft-list {
  margin-top: 36px;
  display: grid;
  border-top: 0;
}

.craft-list article {
  display: block;
  padding: 22px 24px;
  border-bottom: 0;
  background: var(--red);
  color: #fff;
}

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

.craft-list article:nth-child(2) {
  background: var(--yellow);
  color: var(--ink);
}

.craft-list article:nth-child(3) {
  background: var(--blue);
  color: #fff;
}

.craft-list h3,
.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.18;
}

.craft-list p,
.process-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.craft-list article:nth-child(1) p,
.craft-list article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.78);
}

.craft-list article:nth-child(2) p {
  color: rgba(17, 19, 21, 0.68);
}

.equipment h2,
.credentials h2 {
  max-width: 9.2em;
  font-size: clamp(34px, 3.4vw, 54px);
}

.equipment-tags,
.credential-types {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.equipment-tags span,
.credential-types span {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border-bottom: 0;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.equipment-tags span:nth-child(2) {
  background: var(--yellow);
  color: var(--ink);
}

.equipment-tags span:nth-child(3),
.credential-types span:nth-child(2) {
  background: var(--blue);
  color: #fff;
}

.equipment-board,
.credential-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 19, 21, 0.2);
  border-left: 1px solid rgba(17, 19, 21, 0.1);
}

.equipment-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.equipment-card,
.credential-card {
  min-width: 0;
  border-right: 1px solid rgba(17, 19, 21, 0.1);
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.equipment-card img {
  width: 100%;
  height: 108px;
  object-fit: contain;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.equipment-card div,
.credential-card div {
  min-height: 68px;
  padding: 11px 12px 14px;
}

.equipment-card span,
.credential-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

.equipment-card h3,
.credential-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.38;
}

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

.credential-card img {
  width: 100%;
  height: 136px;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.process .section-copy {
  margin-bottom: 44px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 21, 0.2);
  border-left: 1px solid rgba(17, 19, 21, 0.1);
}

.process-list li {
  position: relative;
  min-height: 216px;
  padding: 32px 26px 28px;
  border-right: 1px solid rgba(17, 19, 21, 0.1);
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
}

.process-list li::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -1px;
  width: 76px;
  height: 7px;
  background: var(--red);
}

.process-list li:nth-child(2)::before {
  background: var(--yellow);
}

.process-list li:nth-child(3)::before {
  background: var(--blue);
}

.process-list li:nth-child(4)::before {
  background: var(--black);
}

.process-list span {
  display: block;
  margin-bottom: 46px;
  color: rgba(17, 19, 21, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.process-list h3 {
  margin-bottom: 12px;
}

.about {
  align-items: start;
  grid-template-columns: minmax(300px, 0.42fr) minmax(320px, 0.58fr);
}

.about-copy h2 {
  max-width: 11em;
}

.about-card {
  padding: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--red) 0 5px, var(--yellow) 5px 10px, var(--blue) 10px 15px, var(--black) 15px 20px, transparent 20px),
    var(--surface);
}

.about-card > span {
  display: block;
  margin: 0;
  padding: 26px 28px 22px 46px;
  border-bottom: 1px solid var(--line);
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.about-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card div {
  min-width: 0;
  padding: 24px 20px 26px;
  border-right: 1px solid var(--line);
}

.about-card div:last-child {
  border-right: 0;
}

.about-card dt {
  color: var(--muted);
  font-size: 13px;
}

.about-card dd {
  margin: 8px 0 0;
  font-size: 17px;
  font-weight: 800;
}

.contact {
  position: relative;
  padding: clamp(78px, 8vw, 124px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  border-top: 1px solid rgba(17, 19, 21, 0.09);
}

.contact-card {
  margin: 0;
  padding: 28px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-style: normal;
  font-size: 18px;
  line-height: 1.55;
}

.contact-card::before {
  content: "";
  width: 132px;
  height: 8px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--red) 0 32%, var(--yellow) 32% 48%, var(--blue) 48% 74%, var(--black) 74% 100%);
}

.contact-card strong {
  font-size: 24px;
}

.contact-card a {
  width: fit-content;
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--red);
}

.contact-card span {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  position: relative;
  padding: 42px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(17, 19, 21, 0.09);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.032), transparent 24%, rgba(12, 98, 206, 0.036) 76%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), #ffffff);
  color: var(--muted);
  font-size: 13px;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 176px;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 32%, var(--yellow) 32% 48%, var(--blue) 48% 74%, var(--black) 74% 100%);
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.footer-brand,
.footer-contact {
  min-width: 0;
}

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

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-style: normal;
  font-weight: 800;
}

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

@keyframes hero-in {
  from {
    opacity: 0.001;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav {
    display: none;
  }

  .intro-panel,
  .products,
  .craft,
  .equipment,
  .credentials,
  .about,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .products .section-copy,
  .equipment-copy,
  .credentials-copy {
    position: static;
  }

  .facts {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-grid article {
    grid-template-columns: minmax(140px, 190px) minmax(150px, 0.36fr) minmax(0, 1fr);
  }

  .equipment-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    height: auto;
    min-height: 70px;
    padding: 16px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    font-size: 13px;
  }

  .header-tel {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    padding: 128px 18px 88px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(251, 252, 253, 0.34) 78%, rgba(248, 251, 253, 0.72) 100%),
      url("./assets-v11/generated/hero-hangtag-light-studio.png");
    background-position: center, 66% 72%;
    background-size: cover, auto 92%;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    left: 18px;
    right: 18px;
  }

  .hero h1 {
    max-width: 7.4em;
    font-size: clamp(32px, 8.9vw, 40px);
    line-height: 1.13;
  }

  .hero p {
    max-width: 31em;
    font-size: 15px;
    line-height: 1.82;
  }

  .btn {
    min-width: 0;
    flex: 1 1 148px;
    padding-inline: 14px;
  }

  .intro-panel,
  .section,
  .contact,
  .footer {
    width: calc(100vw - 36px);
  }

  .intro-panel {
    margin-top: -26px;
  }

  .intro-copy {
    padding: 30px 22px 26px;
  }

  .intro-panel h2,
  .section h2,
  .contact h2,
  .equipment h2,
  .credentials h2 {
    max-width: 100%;
    font-size: clamp(27px, 7vw, 34px);
    line-height: 1.18;
  }

  .intro-copy p,
  .section-copy p,
  .about-copy p,
  .equipment-copy p,
  .credentials-copy p {
    font-size: 15px;
    line-height: 1.82;
  }

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

  .facts div {
    min-height: 106px;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 72px 0;
  }

  .products,
  .craft,
  .equipment,
  .credentials,
  .about,
  .contact {
    gap: 32px;
  }

  .about-card > span {
    padding: 24px 22px 20px 40px;
  }

  .about-card dl {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-card div {
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .product-grid article {
    min-height: 0;
    display: block;
  }

  .product-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 12px;
  }

  .product-grid article:first-child {
    grid-row: auto;
  }

  .product-grid img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.22;
  }

  .product-grid article:first-child img {
    height: auto;
  }

  .product-grid h3 {
    padding: 24px 18px 10px;
  }

  .product-grid p {
    padding: 0 18px 24px;
  }

  .craft-image,
  .craft-image img {
    min-height: 300px;
  }

  .craft-list article {
    grid-template-columns: 7px minmax(0, 1fr);
    gap: 14px;
  }

  .craft-list article p {
    grid-column: 2;
  }

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

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

  .equipment-card img {
    height: 96px;
  }

  .credential-card img {
    height: 128px;
  }

  .process-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-list li {
    min-height: 188px;
  }

  .process-list span {
    margin-bottom: 28px;
  }

  .contact {
    padding: 72px 0;
  }

  .footer {
    flex-direction: column;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

/* Modular homepage pass */
.section,
.contact {
  margin-top: clamp(24px, 3.4vw, 46px);
  border-top: 0;
}

.section::before,
.contact::before {
  display: none;
}

.section {
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid rgba(17, 19, 21, 0.095);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px rgba(17, 19, 21, 0.052);
}

.section h2,
.contact h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
}

.products {
  min-height: 540px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 0;
  overflow: hidden;
}

.products .section-copy {
  width: auto;
  margin: 0;
  padding: clamp(42px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(17, 19, 21, 0.1);
}

.products .section-copy::after {
  content: "";
  width: 168px;
  height: 9px;
  margin-top: 40px;
  background: linear-gradient(90deg, var(--red) 0 32%, var(--yellow) 32% 50%, var(--blue) 50% 76%, var(--black) 76% 100%);
}

.products .section-copy h2 {
  max-width: 8.8em;
}

.product-grid {
  width: auto;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 0;
}

.product-grid article,
.product-grid article:first-child {
  grid-row: auto;
}

.product-grid article {
  border-width: 0 0 0 1px;
  background: #fff;
}

.product-grid img,
.product-grid article:first-child img {
  height: clamp(260px, 30vw, 390px);
}

.craft {
  padding: 0;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.craft-image {
  min-height: 100%;
  border: 0;
  border-right: 1px solid rgba(17, 19, 21, 0.1);
}

.craft-image img {
  min-height: 100%;
}

.craft-copy {
  padding: clamp(42px, 5vw, 70px);
}

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

.craft-list article {
  min-height: 178px;
  padding: 22px;
}

.equipment,
.credentials {
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 66px);
  align-items: stretch;
}

.equipment-copy,
.credentials-copy {
  position: static;
}

.equipment-board,
.credential-grid {
  gap: 10px;
  border: 0;
}

.equipment-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.equipment-card,
.credential-card {
  border: 1px solid rgba(17, 19, 21, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.credential-card:nth-child(n + 9) {
  display: none;
}

.equipment-card:nth-child(n + 10) {
  display: none;
}

.equipment-card img {
  height: 96px;
}

.equipment-card div {
  min-height: 62px;
  padding: 10px 12px 12px;
}

.credential-card img {
  height: 118px;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
}

.process .section-copy {
  width: auto;
  margin: 0;
}

.process-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}

.process-list li {
  min-height: 190px;
  border: 1px solid rgba(17, 19, 21, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.process-list span {
  margin-bottom: 30px;
}

.about {
  padding: 0;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
}

.about-heading {
  position: relative;
  min-height: 440px;
  padding: 0;
  display: block;
  border-right: 1px solid rgba(17, 19, 21, 0.1);
  background: #fff;
  color: var(--ink);
}

.about-heading img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 44% center;
  filter: saturate(0.92) contrast(1.02);
}

.about-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(255, 255, 255, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 52%);
}

.about-photo-caption {
  position: absolute;
  left: clamp(24px, 3vw, 42px);
  right: clamp(24px, 3vw, 42px);
  bottom: clamp(24px, 3vw, 42px);
  z-index: 1;
  color: var(--ink);
}

.about-photo-caption::before {
  content: "";
  display: block;
  width: 126px;
  height: 7px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--red) 0 36%, var(--yellow) 36% 56%, var(--blue) 56% 100%);
}

.about-photo-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.about-photo-caption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 700;
}

.about-body {
  padding: clamp(42px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-body h2 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.1;
  white-space: nowrap;
}

.about-logo {
  width: min(430px, 100%);
  height: auto;
  margin: 0 0 28px;
  object-fit: contain;
}

.about-body p {
  margin: 0;
  max-width: 48em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-meta {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 21, 0.12);
}

.about-meta div {
  min-width: 0;
  padding: 26px 22px 0 0;
}

.about-meta dt {
  color: var(--muted);
  font-size: 13px;
}

.about-meta dd {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.about-meta div:last-child dd {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 34px);
}

.contact {
  padding: 0;
  display: block;
  background: transparent;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  border: 1px solid rgba(17, 19, 21, 0.095);
  background: #fff;
  box-shadow: 0 18px 52px rgba(17, 19, 21, 0.052);
}

.contact-copy {
  position: relative;
  padding: clamp(42px, 5vw, 70px);
}

.contact-copy::before {
  content: "";
  position: absolute;
  left: clamp(42px, 5vw, 70px);
  top: 0;
  width: 170px;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 32%, var(--yellow) 32% 50%, var(--blue) 50% 76%, var(--black) 76% 100%);
}

.contact-copy p {
  margin: 22px 0 0;
  max-width: 38em;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

.contact-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-actions a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 19, 21, 0.22);
  font-size: 13px;
  font-weight: 800;
}

.contact-actions a:first-child {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.contact-card {
  padding: clamp(34px, 4vw, 52px);
  border: 0;
  border-left: 1px solid rgba(17, 19, 21, 0.1);
  background:
    linear-gradient(180deg, rgba(242, 196, 0, 0.07), transparent 44%),
    #f8fafc;
}

.contact-card::before {
  display: none;
}

.contact-label {
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.contact-lines {
  display: grid;
  gap: 14px;
}

.contact-lines div {
  display: grid;
  gap: 4px;
}

.contact-lines span,
.contact-address {
  color: var(--muted);
  font-size: 13px;
}

.contact-lines a {
  font-size: 20px;
}

.footer {
  margin-top: clamp(30px, 4vw, 56px);
}

@media (max-width: 1120px) {
  .products,
  .craft,
  .equipment,
  .credentials,
  .process,
  .about,
  .contact-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .products .section-copy,
  .craft-image,
  .about-heading,
  .contact-card {
    border-right: 0;
    border-left: 0;
  }

  .product-grid,
  .equipment-board,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .craft-list,
  .about-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 28px 20px;
  }

  .products,
  .craft,
  .about {
    padding: 0;
  }

  .products .section-copy,
  .craft-copy,
  .about-heading,
  .about-body,
  .contact-copy,
  .contact-card {
    padding: 30px 22px;
  }

  .product-grid,
  .equipment-board,
  .credential-grid,
  .process-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid article {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 21, 0.1);
  }

  .product-grid img,
  .product-grid article:first-child img {
    height: auto;
    aspect-ratio: 1.16;
  }

  .craft-image,
  .craft-image img {
    min-height: 280px;
  }

  .equipment-card:nth-child(n + 5),
  .credential-card:nth-child(n + 7) {
    display: none;
  }

  .about-heading {
    min-height: 250px;
  }

  .about-heading img {
    min-height: 280px;
  }

  .about-body h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .contact-copy::before {
    left: 22px;
    width: 138px;
  }
}

.hero::after {
  content: none !important;
  display: none !important;
}

.intro-panel {
  margin-top: clamp(28px, 4vw, 56px);
}

.hero {
  min-height: 720px;
  background-position: center, center, calc(100% - 52px) center;
  background-size: cover, cover, auto 88%;
  background-repeat: no-repeat;
}

.hero-copy {
  width: min(620px, 100%);
}

.hero h1 {
  max-width: 8.6em;
  font-size: clamp(38px, 3.7vw, 58px);
  line-height: 1.08;
}

.hero p {
  max-width: 33em;
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.9;
}

/* Top rhythm alignment */
.hero {
  min-height: clamp(620px, 58vw, 680px);
  padding-top: clamp(118px, 10vw, 156px);
  padding-bottom: clamp(68px, 7vw, 96px);
  background-position: center, center, calc(100% - 36px) center;
  background-size: cover, cover, auto 82%;
}

.hero-copy {
  width: min(590px, 100%);
}

.hero h1 {
  max-width: 8.8em;
  font-size: clamp(36px, 3.35vw, 54px);
  line-height: 1.12;
}

.hero p {
  margin-top: clamp(22px, 2.4vw, 30px);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.85;
}

.hero-actions {
  margin-top: clamp(26px, 3vw, 38px);
}

.about {
  min-height: clamp(510px, 40vw, 580px);
  grid-template-columns: minmax(620px, 0.9fr) minmax(0, 1fr);
}

.about-heading,
.about-heading {
  min-height: inherit;
}

.about-heading {
  display: flex;
  align-items: flex-start;
}

.about-heading img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
}

.about-heading::after {
  background:
    linear-gradient(180deg, transparent 58%, rgba(255, 255, 255, 0.9)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 58%);
}

.about-body {
  padding: clamp(46px, 5vw, 70px);
}

.about-body h2 {
  max-width: none;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.12;
  white-space: nowrap;
}

.about-logo {
  width: min(500px, 100%);
  margin-bottom: clamp(24px, 2.5vw, 34px);
}

.about-body p {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.9;
}

.about-meta {
  margin-top: clamp(34px, 3.6vw, 48px);
}

.about-meta dd {
  font-size: clamp(32px, 3.3vw, 48px);
}

.about-meta div:last-child dd {
  font-size: clamp(26px, 2.6vw, 38px);
}

@media (max-width: 1120px) {
  .about {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .about-heading {
    min-height: 380px;
  }

  .about-heading img {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 640px;
    padding: 112px 18px 68px;
    background-position: center, 65% 76%;
    background-size: cover, auto 84%;
  }

  .hero h1 {
    max-width: 7.4em;
    font-size: clamp(32px, 8.9vw, 40px);
    line-height: 1.13;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.78;
  }

  .about-heading {
    min-height: 0;
    padding-bottom: 64px;
  }

  .about-heading img {
    min-height: 0;
  }

  .about-body {
    padding: 34px 22px 38px;
  }

  .about-body h2 {
    font-size: clamp(28px, 7.4vw, 34px);
  }

  .about-body p {
    font-size: 15px;
    line-height: 1.82;
  }
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.module-page .nav a[aria-current="page"] {
  color: var(--red);
}

.home-portals {
  align-items: stretch;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.home-portals .section-copy {
  width: auto;
  max-width: none;
}

.home-portals .section-copy h2 {
  max-width: 9.5em;
  font-size: clamp(30px, 3.2vw, 48px);
}

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

.portal-card {
  min-height: 136px;
  padding: clamp(18px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 19, 21, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.72));
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.portal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 19, 21, 0.28);
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.08);
}

.portal-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.portal-card strong {
  max-width: 13em;
  font-family: var(--display);
  font-size: clamp(20px, 1.85vw, 28px);
  line-height: 1.14;
  font-weight: 700;
}

.services-main {
  padding: 104px 0 0;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.services-hero h1 {
  max-width: 10.5em;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.25vw, 50px);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: 0;
}

.services-hero p {
  max-width: 42em;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.service-jump {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(17, 19, 21, 0.1);
  background: #fff;
}

.service-jump a {
  min-height: 72px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(17, 19, 21, 0.1);
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  font-size: 14px;
  font-weight: 800;
}

.service-jump a:nth-child(2n) {
  border-right: 0;
}

.service-jump a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-jump a:hover {
  background: var(--paper);
}

.service-jump a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.module-main {
  padding-bottom: 0;
}

.module-hero {
  margin-bottom: clamp(30px, 5vw, 70px);
}

.module-hero h1 {
  max-width: 11em;
}

.module-section {
  margin-bottom: 0;
}

.module-page .equipment-card:nth-child(n + 10),
.module-page .credential-card:nth-child(n + 9) {
  display: block;
}

@media (max-width: 1120px) {
  .home-portals,
  .services-hero {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 760px) {
  .home-portals {
    gap: 18px;
  }

  .portal-grid,
  .service-jump {
    grid-template-columns: minmax(0, 1fr);
  }

  .portal-card {
    min-height: 128px;
  }

  .portal-card strong {
    font-size: clamp(22px, 6.8vw, 28px);
  }

  .services-main {
    padding-top: 82px;
  }

  .services-hero h1 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .service-jump a,
  .service-jump a:nth-child(2n),
  .service-jump a:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  }

  .service-jump a:last-child {
    border-bottom: 0;
  }

  .module-page .equipment-card:nth-child(n + 5),
.module-page .credential-card:nth-child(n + 7) {
    display: block;
  }
}

/* Museum drawer direction */
.museum-drawer {
  position: relative;
  width: 100vw;
  height: clamp(150px, 10.4vw, 182px);
  margin: clamp(22px, 3vw, 42px) calc(50% - 50vw) 0;
  display: grid;
  grid-template-columns:
    clamp(238px, 17.5vw, 330px)
    clamp(178px, 14vw, 270px)
    minmax(520px, 1fr)
    clamp(116px, 9.5vw, 178px);
  align-items: stretch;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 16%, transparent 82%, rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, #1d1b18 0%, #0f0f0e 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.museum-drawer::before,
.museum-drawer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.museum-drawer::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 16%, transparent 78%, rgba(0, 0, 0, 0.42)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 84px);
}

.museum-drawer::after {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.82);
  box-shadow:
    inset 0 16px 28px rgba(255, 255, 255, 0.025),
    inset 0 -18px 34px rgba(0, 0, 0, 0.45);
}

.museum-drawer-copy {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 1.9vw, 34px) clamp(24px, 3.2vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent),
    rgba(11, 10, 9, 0.42);
}

.museum-drawer-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.12;
  font-weight: 700;
}

.museum-drawer-copy p {
  width: min(13.5em, 100%);
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.46;
  font-weight: 700;
}

.museum-drawer-link {
  width: fit-content;
  min-width: clamp(142px, 9.4vw, 178px);
  min-height: clamp(36px, 2.35vw, 44px);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 800;
}

.museum-drawer-link svg,
.museum-drawer-arrows svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.museum-drawer-link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.museum-cabinet {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 0.9vw, 18px) 0;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-right: 1px solid rgba(0, 0, 0, 0.72);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 24%, rgba(0, 0, 0, 0.32)),
    #171512;
}

.museum-cabinet-right {
  grid-template-rows: minmax(0, 1fr);
  opacity: 0.9;
}

.cabinet-drawer {
  position: relative;
  margin: 0 clamp(12px, 1vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 34%, rgba(0, 0, 0, 0.48)),
    #24211c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -12px 22px rgba(0, 0, 0, 0.42);
}

.cabinet-drawer + .cabinet-drawer {
  margin-top: clamp(8px, 0.72vw, 14px);
}

.cabinet-drawer span {
  position: absolute;
  left: 50%;
  top: 30%;
  width: clamp(44px, 3.7vw, 76px);
  height: clamp(14px, 1.05vw, 22px);
  transform: translateX(-50%);
  border: 2px solid rgba(195, 190, 174, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%),
    rgba(48, 45, 38, 0.8);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.55);
}

.museum-drawer-rail {
  position: relative;
  z-index: 2;
  align-self: center;
  height: clamp(104px, 7.3vw, 132px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
  background: rgba(0, 0, 0, 0.22);
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.drawer-sample {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.drawer-sample::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 42%, rgba(0, 0, 0, 0.66)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.drawer-sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96) brightness(0.88);
  transform: scale(1.02);
  transition:
    filter 220ms var(--ease),
    transform 220ms var(--ease);
}

.drawer-sample:hover img {
  filter: saturate(1) contrast(1.02) brightness(0.98);
  transform: scale(1.055);
}

.drawer-sample span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  min-height: 24px;
  padding: 5px 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.42);
  font-size: clamp(10px, 0.68vw, 12px);
  font-weight: 800;
  white-space: nowrap;
}

.museum-drawer-arrows {
  position: absolute;
  right: clamp(20px, 2.45vw, 54px);
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateY(-50%);
}

.museum-drawer-arrows span {
  width: clamp(34px, 2.5vw, 48px);
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #fff;
}

.drawer-footer {
  width: 100vw;
  min-height: clamp(42px, 3.1vw, 58px);
  margin: 0 calc(50% - 50vw);
  padding: 0 clamp(46px, 3.8vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-top: 0;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(17, 19, 21, 0.08);
}

.drawer-footer::before {
  display: none;
}

.drawer-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 48px);
}

.drawer-footer .footer-brand::before {
  content: "";
  flex: 0 0 clamp(146px, 10.6vw, 216px);
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 36%, var(--yellow) 36% 56%, var(--blue) 56% 82%, var(--black) 82% 100%);
}

.drawer-footer p,
.drawer-footer span,
.drawer-footer a {
  color: rgba(17, 19, 21, 0.62);
  font-size: clamp(11px, 0.8vw, 13px);
}

.drawer-footer p,
.drawer-footer a {
  font-weight: 800;
}

.drawer-footer .footer-brand span {
  line-height: 1.4;
}

.drawer-footer .footer-contact {
  gap: clamp(20px, 2.5vw, 42px);
}

@media (max-width: 1180px) {
  .museum-drawer {
    grid-template-columns: minmax(250px, 0.3fr) minmax(0, 1fr) minmax(92px, auto);
  }

  .museum-cabinet {
    display: none;
  }

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

  .drawer-sample:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 760px) {
  .museum-drawer {
    min-height: 0;
    margin-top: 24px;
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 18px 22px;
    gap: 18px;
  }

  .museum-drawer-copy {
    padding: 0;
    background: transparent;
  }

  .museum-drawer-copy p {
    width: min(22em, 100%);
  }

  .museum-drawer-link {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .museum-drawer-rail {
    height: 178px;
    grid-template-columns: repeat(6, 170px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .drawer-sample,
  .drawer-sample:nth-child(n + 5) {
    display: block;
    scroll-snap-align: start;
  }

  .museum-drawer-arrows {
    display: none;
  }

  .drawer-footer {
    min-height: 0;
    padding: 20px 18px 22px;
    grid-template-columns: minmax(0, 1fr);
  }

  .drawer-footer .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .drawer-footer .footer-brand::before {
    flex-basis: auto;
    width: 176px;
  }

  .drawer-footer .footer-contact {
    justify-content: flex-start;
  }
}

/* Image2 approved homepage concept */
.concept-home {
  background: #050505;
}

.concept-home .skip-link {
  z-index: 200;
}

.concept-shell {
  width: min(1680px, calc(100vw - 20px));
  margin: 10px auto 24px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
}

.concept-home .concept-header {
  position: relative;
  inset: auto;
  height: 54px;
  padding: 0 52px;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr) minmax(180px, auto);
  gap: 24px;
  border-bottom: 1px solid rgba(17, 19, 21, 0.11);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.concept-home .brand {
  font-size: 17px;
  letter-spacing: 0;
}

.concept-home .nav {
  gap: clamp(22px, 2.2vw, 44px);
  justify-content: center;
  color: rgba(17, 19, 21, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.concept-home .nav a[aria-current="page"]::after {
  display: none;
}

.concept-tel {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.concept-tel svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.concept-hero {
  position: relative;
  min-height: 424px;
  display: grid;
  grid-template-columns: 42.2% 57.8%;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #fff, #fbfbfa);
}

.concept-hero::before,
.concept-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.concept-hero::before {
  left: 0;
  right: 42%;
  top: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.045) 1px, transparent 1px) 22px 0 / 220px 100%,
    linear-gradient(180deg, rgba(17, 19, 21, 0.04) 1px, transparent 1px) 0 68px / 100% 180px;
  opacity: 0.42;
}

.concept-hero::after {
  left: 18px;
  bottom: 22px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(17, 19, 21, 0.13);
  border-radius: 50%;
  box-shadow:
    0 -8px 0 -6px rgba(17, 19, 21, 0.13),
    0 8px 0 -6px rgba(17, 19, 21, 0.13),
    -8px 0 0 -6px rgba(17, 19, 21, 0.13),
    8px 0 0 -6px rgba(17, 19, 21, 0.13);
}

.concept-hero-copy {
  position: relative;
  z-index: 2;
  padding: 70px 40px 34px 82px;
  display: flex;
  flex-direction: column;
}

.concept-strip {
  width: 150px;
  height: 6px;
  margin: 0 0 34px;
}

.concept-hero h1 {
  width: 11.8em;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 2.8vw, 44px);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: 0;
}

.concept-hero h1 span {
  display: block;
}

.concept-hero-copy > p {
  width: min(34em, 100%);
  margin: 20px 0 0;
  color: rgba(17, 19, 21, 0.56);
  font-size: 13.5px;
  line-height: 1.66;
  font-weight: 700;
}

.concept-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}

.concept-btn {
  min-width: 180px;
  height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(17, 19, 21, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition:
    background-color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.concept-btn-primary {
  border-color: var(--red);
  background: #c9342c;
  color: #fff;
}

.concept-btn:hover {
  border-color: rgba(17, 19, 21, 0.45);
  background: #fff;
}

.concept-btn-primary:hover {
  border-color: #af241e;
  background: #af241e;
}

.concept-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concept-color-proof {
  margin-top: auto;
  width: 360px;
}

.concept-color-proof div,
.concept-footer-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 0.72fr;
}

.concept-color-proof div {
  width: 150px;
  height: 7px;
}

.concept-color-proof span:nth-child(1),
.concept-footer-strip span:nth-child(1) {
  background: var(--red);
}

.concept-color-proof span:nth-child(2),
.concept-footer-strip span:nth-child(2) {
  background: var(--yellow);
}

.concept-color-proof span:nth-child(3),
.concept-footer-strip span:nth-child(3) {
  background: var(--blue);
}

.concept-color-proof span:nth-child(4),
.concept-footer-strip span:nth-child(4) {
  background: var(--black);
}

.concept-color-proof p {
  margin: 8px 0 0;
  color: rgba(17, 19, 21, 0.36);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.concept-hero-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.concept-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.concept-about {
  height: 172px;
  min-height: 0;
  display: grid;
  grid-template-columns: 18% 21% 28% 33%;
  border-top: 1px solid rgba(17, 19, 21, 0.12);
  border-bottom: 1px solid rgba(17, 19, 21, 0.12);
  background: #fff;
}

.concept-factory {
  min-width: 0;
  overflow: hidden;
}

.concept-factory img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-company {
  padding: 24px 32px 18px;
  border-right: 1px solid rgba(17, 19, 21, 0.09);
}

.concept-company span {
  display: block;
  margin-bottom: 12px;
  color: rgba(17, 19, 21, 0.5);
  font-size: 13px;
  font-weight: 900;
}

.concept-company h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1.15;
  font-weight: 750;
  white-space: nowrap;
}

.concept-company img {
  width: min(252px, 100%);
  height: auto;
}

.concept-about-text {
  margin: 0;
  padding: 50px 28px 20px 0;
  color: rgba(17, 19, 21, 0.57);
  font-size: 12.5px;
  line-height: 1.74;
  font-weight: 700;
}

.concept-stats {
  margin: 0;
  padding: 40px 26px 20px 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-stats div {
  min-width: 0;
  padding: 0 20px;
  border-left: 1px solid rgba(17, 19, 21, 0.13);
}

.concept-stats dt {
  display: grid;
  gap: 7px;
  justify-items: start;
  color: rgba(17, 19, 21, 0.48);
  font-size: 12px;
  font-weight: 850;
}

.concept-stats svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(17, 19, 21, 0.58);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concept-stats dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.1vw, 36px);
  line-height: 1;
  white-space: nowrap;
}

.concept-stats div:last-child dd {
  font-family: var(--display);
  font-size: clamp(23px, 1.85vw, 31px);
}

.concept-portals {
  height: 164px;
  padding: 16px 23px 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  background: #fff;
  border-bottom: 1px solid rgba(17, 19, 21, 0.12);
}

.concept-portal {
  position: relative;
  min-width: 0;
  padding: 23px 16px 13px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.14);
  background: #fff;
  color: var(--ink);
}

.concept-portal::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 80px;
  height: 4px;
  background: var(--black);
}

.concept-portal-red::before {
  background: var(--red);
}

.concept-portal-yellow::before {
  background: var(--yellow);
}

.concept-portal-blue::before {
  background: var(--blue);
}

.concept-portal span,
.concept-portal strong,
.concept-portal small {
  position: relative;
  z-index: 2;
}

.concept-portal span {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 900;
}

.concept-portal strong {
  display: block;
  width: 9em;
  color: rgba(17, 19, 21, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

.concept-portal small {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: rgba(17, 19, 21, 0.72);
  font-size: 22px;
  line-height: 1;
}

.concept-portal img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.concept-portal:nth-child(4) img {
  width: 38%;
}

.concept-museum {
  position: relative;
  height: 162px;
  overflow: hidden;
  background: #0d0d0c;
}

.concept-museum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-museum a {
  position: absolute;
  left: 48px;
  top: 96px;
  width: 140px;
  height: 36px;
}

.concept-footer {
  min-height: 40px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 146px auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  background: #fff;
  color: rgba(17, 19, 21, 0.58);
  font-size: 12px;
}

.concept-footer-strip {
  width: 136px;
  height: 7px;
}

.concept-footer p {
  margin: 0;
  font-weight: 850;
}

.concept-footer > span {
  justify-self: start;
}

.concept-footer address {
  display: flex;
  gap: 36px;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .concept-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .concept-home .concept-header {
    padding-inline: 24px;
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .concept-home .nav {
    display: none;
  }

  .concept-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .concept-hero-copy {
    padding: 70px 28px 28px;
  }

  .concept-hero-art {
    position: absolute;
    inset: 54px 0 0;
    z-index: 0;
    opacity: 0.34;
  }

  .concept-hero-copy {
    min-height: 520px;
  }

  .concept-actions {
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-btn {
    min-width: 0;
  }

  .concept-actions .concept-btn:last-child {
    grid-column: 1 / -1;
  }

  .concept-about {
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
    height: auto;
  }

  .concept-factory {
    min-height: 220px;
  }

  .concept-about-text,
  .concept-stats {
    grid-column: 1 / -1;
  }

  .concept-about-text {
    padding: 24px 28px;
  }

  .concept-stats {
    padding: 0 12px 24px;
  }

  .concept-portals {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-portal {
    min-height: 132px;
  }

  .concept-footer {
    padding: 18px 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .concept-footer address {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .concept-home .concept-header {
    height: 64px;
    padding-inline: 18px;
  }

  .concept-home .brand {
    font-size: 14px;
  }

  .concept-tel {
    font-size: 13px;
  }

  .concept-tel svg {
    display: none;
  }

  .concept-hero {
    min-height: 520px;
  }

  .concept-hero-copy {
    padding: 72px 18px 24px;
  }

  .concept-hero h1 {
    width: min(9em, 100%);
    font-size: clamp(33px, 10vw, 42px);
  }

  .concept-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .concept-actions .concept-btn:last-child {
    grid-column: auto;
  }

  .concept-color-proof {
    width: 100%;
  }

  .concept-about {
    grid-template-columns: minmax(0, 1fr);
  }

  .concept-company {
    padding: 28px 22px;
  }

  .concept-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 0 22px 26px;
  }

  .concept-stats div {
    padding: 0;
    border-left: 0;
  }

  .concept-portals {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .concept-museum {
    height: 162px;
  }

  .concept-museum img {
    width: auto;
    min-width: 100%;
    object-position: left center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Blue target homepage */
.blue-home {
  --goal-blue: #0057ff;
  --goal-blue-dark: #07235d;
  --goal-blue-deep: #062b68;
  --goal-red: #df251d;
  --goal-text: #061a44;
  --goal-muted: #526783;
  --goal-line: #d9e6f7;
  --goal-card-shadow: 0 10px 28px rgba(36, 97, 168, 0.14);
  color: var(--goal-text);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.98), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(98, 178, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fbfdff 58%, #ffffff 100%);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
}

.blue-home::before {
  content: "";
  position: fixed;
  inset: 56px 0 auto;
  z-index: -1;
  height: 470px;
  opacity: 0.42;
  background:
    radial-gradient(ellipse 420px 260px at -6% 44%, rgba(64, 151, 255, 0.13), transparent 72%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.06) 60%),
    repeating-linear-gradient(152deg, rgba(11, 95, 226, 0.014) 0 1px, transparent 1px 46px),
    linear-gradient(135deg, rgba(236, 246, 255, 0.62), rgba(247, 251, 255, 0.7));
  pointer-events: none;
}

.blue-home svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.blue-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(9, 49, 108, 0.08);
  box-shadow: 0 5px 22px rgba(13, 48, 105, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.blue-header-inner,
.blue-hero-inner,
.blue-section,
.blue-footer-inner,
.blue-footer-bottom {
  width: min(1312px, calc(100vw - 48px));
  margin-inline: auto;
}

.blue-header-inner {
  width: 100%;
  height: 100%;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
}

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

.blue-brand img {
  width: 45px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

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

.blue-brand strong {
  color: #0a1d3d;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.blue-brand em {
  color: rgba(6, 26, 68, 0.62);
  font-size: 10px;
  line-height: 1.1;
  font-style: normal;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.blue-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 46px);
  min-width: 0;
  height: 100%;
  overflow-x: auto;
  color: rgba(7, 25, 54, 0.86);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  scrollbar-width: none;
}

.blue-nav::-webkit-scrollbar {
  display: none;
}

.blue-nav a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.blue-nav a::before,
.blue-nav a::after {
  content: "";
  position: absolute;
  bottom: 11px;
  height: 3px;
  opacity: 0;
}

.blue-nav a::after {
  left: 0;
  width: 40px;
  background: var(--goal-blue);
}

.blue-nav a::before {
  left: 0;
  width: 16px;
  background: var(--goal-red);
  z-index: 1;
}

.blue-nav a.is-active {
  color: var(--goal-text);
}

.blue-nav a.is-active::before,
.blue-nav a.is-active::after {
  opacity: 1;
}

.blue-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.blue-phone {
  min-width: 176px;
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #1268ee, #0a4fd2);
  box-shadow: 0 12px 26px rgba(10, 85, 221, 0.2);
  font-size: 17px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.blue-phone svg {
  width: 18px;
  height: 18px;
  color: currentColor;
  fill: currentColor;
  stroke: none;
}

.blue-quote {
  min-width: 88px;
  height: 32px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #ed372d, #d81f18);
  box-shadow: 0 6px 14px rgba(210, 37, 28, 0.28);
  font-size: 13px;
  font-weight: 900;
}

.blue-main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.96) 0 50%, #f8fcff 50% 83.8%, #fff 83.8% 100%);
}

.blue-main::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 1px;
  background: #050505;
  pointer-events: none;
}

.blue-hero {
  position: relative;
  min-height: 474px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(231, 243, 255, 0.96) 100%),
    #f4faff;
}

.blue-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(250, 253, 255, 0.08) 0%, rgba(255, 255, 255, 0.18) 41%, rgba(224, 240, 255, 0.08) 100%),
    url("./assets-goal/hero-bg-soft.png") center top / 100% 100% no-repeat;
  opacity: 0.96;
  filter: saturate(1.06) contrast(1.02);
  pointer-events: none;
}

.blue-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 640px 180px at 58% 100%, rgba(72, 165, 255, 0.15), transparent 70%),
    linear-gradient(115deg, rgba(206, 231, 255, 0.34) 0 14%, rgba(255, 255, 255, 0.12) 14.5% 36%, transparent 36.4%),
    linear-gradient(74deg, transparent 0 77%, rgba(197, 225, 255, 0.32) 77.6% 90%, transparent 90.5%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 42%, rgba(255, 255, 255, 0.08) 56%, rgba(222, 239, 255, 0.18) 100%),
    linear-gradient(90deg, transparent 0 21%, rgba(61, 131, 205, 0.016) 21.1% 21.2%, transparent 21.3% 43%, rgba(61, 131, 205, 0.014) 43.1% 43.2%, transparent 43.3% 68%, rgba(61, 131, 205, 0.014) 68.1% 68.2%, transparent 68.3%),
    linear-gradient(0deg, transparent 0 26%, rgba(61, 131, 205, 0.014) 26.2% 26.36%, transparent 26.56% 53%, rgba(61, 131, 205, 0.012) 53.1% 53.24%, transparent 53.44%),
    repeating-linear-gradient(151deg, rgba(10, 91, 214, 0.032) 0 1px, transparent 1px 48px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 48%, rgba(255, 255, 255, 0.3));
  opacity: 0.94;
  mix-blend-mode: normal;
  pointer-events: none;
}

.blue-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 474px;
  padding-top: 20px;
}

.blue-hero-copy {
  position: relative;
  z-index: 3;
  width: 650px;
}

.blue-kicker {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 6px;
  color: var(--goal-blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.blue-kicker span {
  height: 20px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 87, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
}

.blue-kicker em {
  color: rgba(6, 26, 68, 0.72);
  font-style: normal;
  letter-spacing: 0.2px;
}

.blue-hero h1 {
  width: 610px;
  margin: 0;
  color: var(--goal-text);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.blue-hero h1 span {
  display: block;
}

.blue-hero mark {
  display: inline-block;
  margin-right: 4px;
  padding: 0;
  color: var(--goal-red);
  background: transparent;
  white-space: nowrap;
}

.blue-lead {
  margin: 9px 0 0;
  color: rgba(6, 26, 68, 0.78);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 800;
}

.blue-proof-row {
  width: 625px;
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.blue-proof-row div {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
}

.blue-icon {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 87, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  color: var(--goal-blue);
}

.blue-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  place-self: center;
}

.blue-proof-row strong {
  min-width: 0;
  color: #09295d;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.blue-proof-row small {
  color: rgba(6, 26, 68, 0.58);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  white-space: nowrap;
}

.blue-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blue-btn {
  min-width: 180px;
  height: 38px;
  padding: 0 20px 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(6, 26, 68, 0.38);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--goal-text);
  font-size: 14px;
  font-weight: 900;
}

.blue-btn-primary {
  min-width: 143px;
  border-color: transparent;
  color: #fff;
  background: linear-gradient(180deg, #ee382f, #d91f18);
  box-shadow: 0 7px 16px rgba(217, 31, 24, 0.23);
}

.blue-btn svg {
  width: 18px;
  height: 18px;
}

.blue-hero-tags {
  position: absolute;
  z-index: 2;
  left: 660px;
  top: 0;
  width: calc(50vw - 4px);
  min-width: 764px;
  max-width: 900px;
  height: 384px;
  max-width: none;
  object-fit: cover;
  object-position: left top;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    transparent 24px,
    rgba(0, 0, 0, 0.76) 40px,
    #000 54px,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    transparent 24px,
    rgba(0, 0, 0, 0.76) 40px,
    #000 54px,
    #000 100%
  );
  pointer-events: none;
}

.blue-about-card,
.blue-stat-card,
.blue-service-card,
.blue-choice-card,
.blue-equipment-card,
.blue-cert,
.blue-clients,
.blue-footer-quote {
  border: 1px solid rgba(123, 168, 220, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--goal-card-shadow);
}

.blue-about-card {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  width: min(628px, calc((100% - 12px) * 0.482));
  height: 170px;
  display: grid;
  grid-template-columns: minmax(244px, 43.8%) minmax(0, 1fr);
  overflow: hidden;
}

.blue-factory-frame {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.blue-factory-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blue-factory-badge {
  position: absolute;
  left: 16px;
  top: 108px;
  width: 88px;
  height: 50px;
  padding: 7px 10px 6px 12px;
  display: grid;
  align-content: center;
  gap: 1px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #2b80ff, #0f55c8);
  box-shadow: 0 10px 20px rgba(7, 54, 128, 0.24);
}

.blue-factory-badge strong {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.blue-factory-badge small {
  padding-bottom: 1px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.blue-factory-badge em {
  font-size: 9px;
  line-height: 1.15;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.blue-about-copy {
  padding: 20px 22px 16px;
}

.blue-about-copy > span {
  color: rgba(6, 26, 68, 0.62);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.blue-about-copy h2 {
  margin: 8px 0 8px;
  color: var(--goal-text);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0;
}

.blue-about-copy p {
  margin: 0 0 6px;
  color: rgba(6, 26, 68, 0.68);
  font-size: 11px;
  line-height: 1.55;
  font-weight: 700;
}

.blue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.blue-tags span {
  height: 20px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d5e5fb;
  border-radius: 999px;
  color: rgba(6, 52, 116, 0.74);
  background: #f8fbff;
  font-size: 10px;
  font-weight: 800;
}

.blue-stat-card {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  width: min(674px, calc((100% - 12px) * 0.518));
  height: 135px;
  margin: 0;
  padding: 25px 20px 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blue-stat-card div {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  border-left: 1px solid #d6e2f2;
}

.blue-stat-card div:first-child {
  border-left: 0;
}

.blue-stat-card dt {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: rgba(6, 26, 68, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.blue-stat-card dt svg {
  width: 27px;
  height: 27px;
  color: var(--goal-blue);
}

.blue-stat-card div:nth-child(2) dt svg {
  color: var(--goal-red);
}

.blue-stat-card dd {
  margin: 8px 0 0;
  color: var(--goal-text);
  white-space: nowrap;
}

.blue-stat-card dd strong {
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.blue-stat-card dd span {
  margin-left: 3px;
  font-size: 12px;
  font-weight: 800;
}

.blue-section {
  position: relative;
}

.blue-services {
  margin-top: 14px;
}

.blue-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.blue-service-card {
  position: relative;
  height: 98px;
  padding: 16px 14px 12px;
  overflow: hidden;
}

.blue-service-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 44%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(247, 251, 255, 0.82));
  pointer-events: none;
}

.blue-service-card span {
  position: relative;
  z-index: 2;
  display: block;
  color: #071f4f;
  font-size: 14px;
  font-weight: 950;
}

.blue-service-card p {
  position: relative;
  z-index: 2;
  width: 9.2em;
  margin: 7px 0 0;
  color: rgba(6, 26, 68, 0.68);
  font-size: 10.5px;
  line-height: 1.36;
  font-weight: 700;
  overflow-wrap: normal;
  word-break: keep-all;
}

.blue-service-card em {
  position: absolute;
  left: 14px;
  bottom: 10px;
  z-index: 2;
  color: #0a56d6;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.blue-service-card img {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
  width: 39%;
  height: 70%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-50%);
}

.blue-service-card:nth-child(2) img,
.blue-service-card:nth-child(3) img,
.blue-service-card:nth-child(5) img,
.blue-service-card:nth-child(6) img {
  width: 42%;
}

.blue-service-card:nth-child(1) img {
  right: 8px;
  width: 34%;
  height: 82%;
}

.blue-service-card:nth-child(2) img {
  right: 8px;
  width: 44%;
  height: 84%;
}

.blue-service-card:nth-child(3) img {
  right: 6px;
  height: 68%;
}

.blue-service-card:nth-child(4) img {
  right: 9px;
  width: 37%;
  height: 72%;
}

.blue-service-card:nth-child(5) img {
  right: 7px;
  height: 68%;
}

.blue-service-card:nth-child(6) img {
  right: 7px;
  height: 68%;
}

.blue-systems {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.blue-choice-card,
.blue-equipment-card {
  height: 166px;
  overflow: hidden;
}

.blue-choice-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  grid-template-rows: 72px 94px;
  padding: 0;
}

.blue-choice-title {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  overflow: hidden;
  color: transparent;
  background: #0a438f;
}

.blue-choice-title::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: #07387e;
}

.blue-choice-title::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 25px;
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: var(--goal-red);
}

.blue-choice-title small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.blue-choice-title strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
  white-space: nowrap;
}

.blue-choice-list {
  grid-column: 1 / 3;
  grid-row: 1;
  min-width: 0;
  padding-left: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #fff;
  border-bottom: 1px solid #d9e7f7;
}

.blue-choice-list div {
  position: relative;
  min-width: 0;
  padding: 12px 14px 12px 72px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-left: 1px solid #d9e7f7;
}

.blue-choice-list div:first-child {
  border-left: 0;
}

.blue-choice-list svg {
  position: absolute;
  left: 25px;
  top: 15px;
  width: 42px;
  height: 42px;
  color: #0a63ff;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.blue-choice-list div::before {
  display: none;
}

.blue-choice-list b {
  color: #07235d;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
}

.blue-choice-list span {
  color: rgba(6, 26, 68, 0.58);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
}

.blue-flow {
  grid-column: 1 / 3;
  grid-row: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: #fff;
  border-top: 1px solid #d9e7f7;
}

.blue-flow-head {
  display: none;
}

.blue-flow-head strong {
  color: #07235d;
  font-size: 22px;
  font-weight: 950;
}

.blue-flow-head span {
  color: rgba(6, 26, 68, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.blue-flow ol {
  min-width: 0;
  margin: 0;
  padding: 0 42px 0 48px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  list-style: none;
}

.blue-flow li {
  position: relative;
  min-width: 0;
  color: #09295d;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  text-align: left;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
}

.blue-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 14px;
  top: 17px;
  width: auto;
  height: auto;
  color: #2669e8;
  background: none;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
}

.blue-flow li span {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--goal-blue);
  font-size: 10px;
  font-weight: 950;
}

.blue-flow li svg {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  margin-left: 22px;
  color: #0a63ff;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.blue-flow li b,
.blue-flow li small {
  min-width: 0;
  display: block;
  white-space: nowrap;
}

.blue-flow li b {
  color: #07235d;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.blue-flow li small {
  margin-top: 5px;
  color: rgba(6, 26, 68, 0.58);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
}

.blue-equipment-card {
  position: relative;
  display: block;
  padding: 24px 24px;
}

.blue-systems > .blue-equipment-card {
  display: none;
}

.blue-equipment-card div {
  position: relative;
  z-index: 2;
  width: 170px;
}

.blue-equipment-card span {
  color: #07235d;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.blue-equipment-card p {
  margin: 10px 0 18px;
  color: rgba(6, 26, 68, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.blue-equipment-card em {
  color: #0a56d6;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.blue-equipment-card img {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 318px;
  height: 104px;
  object-fit: contain;
  object-position: right bottom;
}

.blue-trust {
  height: 56px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.blue-cert,
.blue-clients {
  height: 54px;
  display: flex;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
}

.blue-cert {
  gap: 18px;
  padding: 0 10px 0 0;
  border-color: transparent;
  background: transparent;
}

.blue-cert div,
.blue-clients > strong,
.blue-clients > span {
  display: grid;
  gap: 4px;
  white-space: nowrap;
}

.blue-cert strong,
.blue-clients > strong {
  color: #07235d;
  font-size: 15px;
  font-weight: 950;
}

.blue-cert span,
.blue-clients > span {
  color: rgba(6, 26, 68, 0.56);
  font-size: 10px;
  font-weight: 700;
}

.blue-cert img {
  width: 140px;
  height: 48px;
  object-fit: contain;
}

.blue-clients {
  min-width: 0;
  gap: 22px;
  padding-left: 6px;
  border: 0;
  background: transparent;
}

.blue-clients ul {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(70px, 1fr));
  align-items: center;
  flex: 1;
  list-style: none;
}

.blue-clients li {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-left: 1px solid #d8e3f0;
  color: #111827;
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
  letter-spacing: 0.4px;
}

.blue-clients small {
  margin-top: 4px;
  color: rgba(6, 26, 68, 0.56);
  font-size: 8px;
  font-weight: 800;
}

.blue-footer {
  position: relative;
  min-height: 166px;
  margin-top: 0;
  color: #d9e9ff;
  background:
    radial-gradient(circle at 90% 10%, rgba(39, 127, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #06337a, #05265f 60%, #041d50);
}

.blue-footer-inner {
  position: relative;
  height: 130px;
  display: grid;
  grid-template-columns: 280px 410px 184px minmax(0, 310px);
  align-items: start;
  gap: 42px;
  padding-top: 22px;
}

.blue-footer-inner::before,
.blue-footer-inner::after,
.blue-footer-contact::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 1px;
  height: 104px;
  background: rgba(217, 233, 255, 0.2);
  pointer-events: none;
}

.blue-footer-inner::before {
  left: 254px;
}

.blue-footer-inner::after {
  left: 746px;
}

.blue-footer-contact {
  position: relative;
}

.blue-footer-contact::before {
  left: calc(100% + 21px);
}

.blue-brand-footer img {
  width: 42px;
  height: 35px;
}

.blue-brand-footer strong {
  color: #fff;
  font-size: 16px;
}

.blue-brand-footer em {
  color: rgba(255, 255, 255, 0.72);
}

.blue-footer-brand p {
  margin: 14px 0 12px;
  color: rgba(217, 233, 255, 0.76);
  font-size: 11px;
  line-height: 1.65;
  font-weight: 700;
}

.blue-socials {
  display: flex;
  gap: 9px;
}

.blue-socials span {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.blue-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.blue-footer-links div,
.blue-footer-contact {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.blue-footer-links strong,
.blue-footer-contact strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.blue-footer-links a,
.blue-footer-links span,
.blue-footer-contact a,
.blue-footer-contact span {
  color: rgba(217, 233, 255, 0.76);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.ui-contact-page .ui-hero-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ui-contact-page .ui-matrix-card {
  border-right: 1px solid var(--ui-line);
  border-bottom: 1px solid var(--ui-line);
}

.ui-contact-page .ui-matrix-card:nth-child(2n) {
  border-right: 0;
}

.ui-contact-page .ui-matrix-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.blue-footer-quote {
  position: relative;
  height: 112px;
  padding: 14px 22px 16px;
  overflow: hidden;
  color: var(--goal-text);
  background: #fff;
  box-shadow: 0 14px 34px rgba(1, 23, 65, 0.18);
  transform: translateY(-6px);
}

.blue-footer-quote strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #09295d;
  font-size: 19px;
  font-weight: 950;
}

.blue-footer-quote span {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 6px;
  color: rgba(6, 26, 68, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.blue-footer-quote em {
  position: relative;
  z-index: 2;
  width: 134px;
  height: 32px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(180deg, #ef392f, #d91f18);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.blue-footer-quote img {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 160px;
  height: 86px;
  object-fit: contain;
  opacity: 0.9;
}

.blue-footer-bottom {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(217, 233, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
}

.blue-to-top {
  position: absolute;
  right: max(24px, calc((100vw - 1312px) / 2));
  bottom: 11px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07235d;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 950;
}

@media (min-width: 1181px) {
  .blue-main::before {
    display: none;
  }
}

@media (max-width: 1180px) {
  .blue-header {
    height: auto;
  }

  .blue-header-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    padding-block: 10px;
  }

  .blue-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    line-height: 32px;
  }

  .blue-nav a {
    height: 32px;
  }

  .blue-hero,
  .blue-hero-inner {
    min-height: 700px;
  }

  .blue-hero-tags {
    left: auto;
    right: -80px;
    top: 24px;
    width: 58vw;
    opacity: 0.5;
  }

  .blue-hero-copy {
    width: min(650px, 100%);
  }

  .blue-about-card,
  .blue-stat-card {
    width: 100%;
    left: 0;
    right: auto;
  }

  .blue-about-card {
    bottom: 142px;
  }

  .blue-stat-card {
    bottom: 0;
  }

  .blue-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blue-systems,
  .blue-trust,
  .blue-footer-inner {
    grid-template-columns: minmax(0, 1fr);
    height: auto;
  }

  .blue-footer {
    min-height: 0;
  }

  .blue-footer-inner {
    padding-bottom: 24px;
  }

  .blue-footer-inner::before,
  .blue-footer-inner::after,
  .blue-footer-contact::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .blue-header-inner,
  .blue-hero-inner,
  .blue-section,
  .blue-footer-inner,
  .blue-footer-bottom {
    width: min(100% - 28px, 1312px);
  }

  .blue-brand strong {
    font-size: 14px;
  }

  .blue-brand em {
    display: none;
  }

  .blue-header-actions {
    gap: 8px;
  }

  .blue-phone {
    font-size: 13px;
  }

  .blue-quote {
    min-width: 76px;
    padding-inline: 12px;
  }

  .blue-hero,
  .blue-hero-inner {
    min-height: 0;
  }

  .blue-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .blue-hero h1 {
    width: min(100%, 460px);
    font-size: clamp(28px, 7.9vw, 34px);
    line-height: 1.12;
  }

  .blue-hero h1 span {
    max-width: 100%;
  }

  .blue-hero mark {
    white-space: normal;
  }

  .blue-kicker {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .blue-proof-row {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .blue-proof-row strong,
  .blue-proof-row small {
    white-space: normal;
  }

  .blue-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .blue-hero-tags {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 20px;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .blue-about-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 3;
    grid-template-columns: minmax(0, 1fr);
    height: auto;
  }

  .blue-stat-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 4;
  }

  .blue-factory-photo {
    height: 170px;
  }

  .blue-stat-card {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
  }

  .blue-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blue-choice-card {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .blue-choice-title {
    grid-column: auto;
    grid-row: auto;
    padding: 20px;
  }

  .blue-choice-list,
  .blue-flow {
    grid-column: auto;
    grid-row: auto;
  }

  .blue-choice-list,
  .blue-flow,
  .blue-flow ol,
  .blue-clients ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .blue-choice-list {
    background: #fff;
  }

  .blue-equipment-card {
    min-height: 220px;
  }

  .blue-equipment-card img {
    width: 72%;
  }

  .blue-clients {
    display: grid;
    gap: 10px;
  }

  .blue-clients li {
    border-left: 0;
    border-top: 1px solid #d8e3f0;
  }
}

/* Blue UI replica pages */
.blue-home .blue-brand {
  gap: 0;
}

.blue-home .blue-brand img {
  width: 280px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.blue-home .blue-brand span {
  display: none;
}

.blue-home .blue-header-inner {
  grid-template-columns: 330px minmax(0, 1fr) 190px;
}

@media (max-width: 1360px) and (min-width: 1181px) {
  .blue-home .blue-header {
    height: 74px;
  }

  .blue-home .blue-header-inner {
    min-height: 0;
    grid-template-columns: 280px minmax(0, 1fr) 176px;
    row-gap: 0;
    padding-block: 0;
  }

  .blue-home .blue-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    gap: clamp(16px, 1.8vw, 28px);
    line-height: 1;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .blue-home .blue-nav::-webkit-scrollbar {
    display: none;
  }

  .blue-home .blue-nav a {
    height: 100%;
  }

  .blue-home .blue-nav a::after {
    bottom: 11px;
  }

  .blue-home .blue-header-actions {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
  }
}

.blue-home .blue-brand-footer img {
  width: 252px;
  height: 44px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.ui-page {
  --ui-blue: #0b55dd;
  --ui-blue-2: #0b67ff;
  --ui-red: #ed1c24;
  --ui-yellow: #f2b400;
  --ui-ink: #071936;
  --ui-muted: rgba(7, 25, 54, 0.66);
  --ui-line: #dbe7f7;
  --ui-soft: #f4f8ff;
  min-height: 100vh;
  color: var(--ui-ink);
  background:
    radial-gradient(ellipse at 0 16%, rgba(226, 52, 64, 0.06), transparent 24%),
    radial-gradient(ellipse at 94% 10%, rgba(47, 135, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #f7fbff 0, #fff 46%, #f6faff 100%);
  font-family:
    "Xiaolin Sans",
    "Noto Sans SC",
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
}

.ui-page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(18, 76, 150, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 22px rgba(13, 48, 105, 0.06);
  backdrop-filter: blur(18px);
}

.ui-page .brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.ui-page .brand img {
  display: block;
  width: 280px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.ui-page .brand span {
  display: none;
}

.ui-page .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 46px);
  min-width: 0;
  height: 100%;
  overflow-x: auto;
  color: rgba(7, 25, 54, 0.86);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.ui-page .nav a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.ui-page .nav a[aria-current="page"] {
  color: var(--ui-blue);
}

.ui-page .nav a[aria-current="page"]::after,
.ui-page .nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  bottom: 11px;
  height: 3px;
}

.ui-page .nav a[aria-current="page"]::after {
  left: 0;
  width: 40px;
  background: var(--ui-blue);
}

.ui-page .nav a[aria-current="page"]::before {
  left: 0;
  width: 16px;
  background: var(--ui-red);
  z-index: 1;
}

.ui-page .header-tel {
  justify-self: end;
  min-width: 176px;
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #1268ee, #0a4fd2);
  box-shadow: 0 12px 26px rgba(10, 85, 221, 0.2);
  font-size: 17px;
  font-weight: 950;
}

.ui-page .header-tel::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 3.5 9.4 6.3 8 9.1c1.2 2.4 3 4.2 5.3 5.4l2.8-1.4 2.8 2.8c.4.4.5.9.2 1.4-.9 1.9-2.8 3-4.9 2.7C9 19.2 4.8 15 4 9.8c-.3-2.1.8-4 2.7-4.9.5-.2 1-.1 1.4.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 3.5 9.4 6.3 8 9.1c1.2 2.4 3 4.2 5.3 5.4l2.8-1.4 2.8 2.8c.4.4.5.9.2 1.4-.9 1.9-2.8 3-4.9 2.7C9 19.2 4.8 15 4 9.8c-.3-2.1.8-4 2.7-4.9.5-.2 1-.1 1.4.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.museum-page .site-header,
.module-page:not(.ui-page) .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(18, 76, 150, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 22px rgba(13, 48, 105, 0.06);
  backdrop-filter: blur(18px);
}

.museum-page .brand,
.module-page:not(.ui-page) .brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.museum-page .brand img,
.module-page:not(.ui-page) .brand img {
  display: block;
  width: 280px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.museum-page .brand span,
.module-page:not(.ui-page) .brand span {
  display: none;
}

.museum-page .nav,
.module-page:not(.ui-page) .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 46px);
  min-width: 0;
  height: 100%;
  overflow-x: auto;
  color: rgba(7, 25, 54, 0.86);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.museum-page .nav a,
.module-page:not(.ui-page) .nav a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.museum-page .nav a[aria-current="page"],
.module-page:not(.ui-page) .nav a[aria-current="page"] {
  color: var(--ui-blue);
}

.museum-page .nav a[aria-current="page"]::after,
.museum-page .nav a[aria-current="page"]::before,
.module-page:not(.ui-page) .nav a[aria-current="page"]::after,
.module-page:not(.ui-page) .nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  bottom: 11px;
  height: 3px;
}

.museum-page .nav a[aria-current="page"]::after,
.module-page:not(.ui-page) .nav a[aria-current="page"]::after {
  left: 0;
  width: 40px;
  background: var(--ui-blue);
}

.museum-page .nav a[aria-current="page"]::before,
.module-page:not(.ui-page) .nav a[aria-current="page"]::before {
  left: 0;
  width: 16px;
  background: var(--ui-red);
  z-index: 1;
}

.museum-page .header-tel,
.module-page:not(.ui-page) .header-tel {
  justify-self: end;
  min-width: 176px;
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, #1268ee, #0a4fd2);
  box-shadow: 0 12px 26px rgba(10, 85, 221, 0.2);
  font-size: 17px;
  font-weight: 950;
}

.museum-page .header-tel::before,
.module-page:not(.ui-page) .header-tel::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 3.5 9.4 6.3 8 9.1c1.2 2.4 3 4.2 5.3 5.4l2.8-1.4 2.8 2.8c.4.4.5.9.2 1.4-.9 1.9-2.8 3-4.9 2.7C9 19.2 4.8 15 4 9.8c-.3-2.1.8-4 2.7-4.9.5-.2 1-.1 1.4.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 3.5 9.4 6.3 8 9.1c1.2 2.4 3 4.2 5.3 5.4l2.8-1.4 2.8 2.8c.4.4.5.9.2 1.4-.9 1.9-2.8 3-4.9 2.7C9 19.2 4.8 15 4 9.8c-.3-2.1.8-4 2.7-4.9.5-.2 1-.1 1.4.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ui-main {
  padding-top: 0;
}

.ui-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 45%, rgba(238, 247, 255, 0.72) 70%, rgba(229, 241, 255, 0.92) 100%),
    radial-gradient(ellipse at 94% 18%, rgba(67, 144, 255, 0.18), transparent 42%);
}

.ui-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 840px 390px at -12% 70%, rgba(24, 115, 255, 0.1), transparent 62%),
    repeating-linear-gradient(150deg, rgba(0, 91, 220, 0.05) 0 1px, transparent 1px 38px);
  pointer-events: none;
}

.ui-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
  min-height: 338px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.86fr);
  align-items: center;
  gap: 60px;
}

.ui-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ui-blue);
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
}

.ui-section-label::before {
  content: "";
  width: 5px;
  height: 17px;
  border-radius: 8px;
  background: var(--ui-blue);
}

.ui-color-strip {
  width: 90px;
  height: 8px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 28px 24px 24px 14px;
}

.ui-color-strip span:nth-child(1) {
  background: var(--ui-red);
}

.ui-color-strip span:nth-child(2) {
  background: var(--ui-yellow);
}

.ui-color-strip span:nth-child(3) {
  background: var(--ui-blue);
}

.ui-color-strip span:nth-child(4) {
  background: #080808;
}

.ui-hero h1 {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ui-ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}

.ui-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 650;
}

.ui-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.ui-btn {
  min-width: 176px;
  height: 46px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(11, 85, 221, 0.55);
  border-radius: 7px;
  color: var(--ui-blue);
  background: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 950;
}

.ui-btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #176cf1, #074bd1);
  box-shadow: 0 12px 28px rgba(11, 85, 221, 0.2);
}

.ui-btn-red {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #f2352f, #d91c19);
  box-shadow: 0 12px 24px rgba(217, 28, 25, 0.2);
}

.ui-hero-cards,
.ui-hero-matrix {
  display: grid;
  gap: 18px;
  align-self: center;
}

.ui-hero-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ui-hero-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--ui-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(28, 75, 130, 0.08);
}

.ui-mini-card,
.ui-matrix-card {
  position: relative;
  min-height: 184px;
  padding: 34px 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
}

.ui-mini-card {
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(28, 75, 130, 0.1);
}

.ui-matrix-card {
  min-height: 160px;
  justify-items: start;
  text-align: left;
  border-right: 1px solid var(--ui-line);
  border-bottom: 1px solid var(--ui-line);
}

.ui-matrix-card:nth-child(3n) {
  border-right: 0;
}

.ui-matrix-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.ui-matrix-card.is-dark {
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(33, 104, 214, 0.18), transparent 38%),
    linear-gradient(135deg, #111b2b, #07101e);
}

.ui-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  line-height: 0;
  border-radius: 50%;
  color: var(--ui-blue) !important;
  background: #edf4ff;
}

.ui-matrix-card .ui-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  background: transparent;
}

.ui-icon svg {
  width: 31px;
  height: 31px;
  display: block;
  place-self: center;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon path,
.ui-icon circle,
.ui-icon rect,
.ui-icon line,
.ui-icon polyline,
.ui-icon polygon {
  fill: none !important;
  stroke: currentColor !important;
}

.ui-icon-red {
  color: var(--ui-red);
}

.ui-icon-yellow {
  color: var(--ui-yellow);
}

.ui-mini-card strong,
.ui-matrix-card strong {
  display: block;
  color: currentColor;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 950;
}

.ui-mini-card > span:not(.ui-icon),
.ui-matrix-card > span:not(.ui-icon) {
  display: block;
  margin-top: 12px;
  color: var(--ui-muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.ui-matrix-card.is-dark > span:not(.ui-icon) {
  color: rgba(255, 255, 255, 0.72);
}

.ui-proofbar {
  position: relative;
  z-index: 3;
  width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
  min-height: 88px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border: 1px solid rgba(210, 226, 247, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(26, 74, 140, 0.09);
}

.ui-proofbar > div {
  min-width: 0;
  height: 52px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-left: 1px solid var(--ui-line);
}

.ui-proofbar > div:first-child {
  border-left: 0;
}

.ui-proofbar .ui-icon {
  margin: 0;
  transform: translateY(-3px);
}

.ui-proofbar p {
  margin: 0;
  transform: translateY(-3px);
}

.ui-proofbar strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.ui-proofbar p span {
  display: block;
  margin-top: 5px;
  color: var(--ui-muted);
  font-size: 13px;
  font-weight: 650;
}

.ui-content {
  width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
  margin: 12px auto 0;
}

.ui-panel {
  border: 1px solid rgba(210, 226, 247, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 42px rgba(29, 77, 135, 0.07);
}

.ui-panel-title {
  padding: 18px 30px 0;
}

.ui-panel-title h2 {
  margin: 0;
  color: var(--ui-ink);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 950;
}

.ui-process-grid {
  padding: 14px 28px 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) 228px;
  gap: 20px;
}

.ui-step-card,
.ui-side-note {
  min-height: 148px;
  padding: 18px 20px;
  border: 1px solid var(--ui-line);
  border-radius: 10px;
  background: #fff;
}

.ui-step-card {
  position: relative;
}

.ui-step-card:not(:nth-child(6))::after {
  content: "->";
  position: absolute;
  right: -18px;
  top: 70px;
  color: var(--ui-blue);
  font-size: 23px;
  font-weight: 950;
}

.ui-step-card .num {
  display: block;
  color: rgba(11, 85, 221, 0.3);
  font-family: Georgia, serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
}

.ui-step-card h3 {
  margin: 15px 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.ui-step-card p,
.ui-side-note p {
  margin: 0;
  color: var(--ui-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.ui-side-note {
  background: linear-gradient(135deg, #edf5ff, #fff);
}

.ui-side-note strong {
  display: block;
  margin: 0 0 10px;
  color: var(--ui-blue);
  font-size: 18px;
  font-weight: 950;
}

.ui-side-note .ui-icon {
  display: none;
}

.ui-side-note .ui-btn {
  min-width: 150px;
  height: 40px;
  margin-top: 12px;
  font-size: 13px;
}

.ui-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 32px;
}

.ui-copy-card {
  padding: 38px 54px;
}

.ui-copy-card h2 {
  max-width: 760px;
  margin: 12px 0 16px;
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
  font-size: clamp(28px, 2.45vw, 40px);
  line-height: 1.15;
  font-weight: 950;
}

.ui-copy-card p {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 650;
}

.ui-contact-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.ui-contact-step {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.ui-contact-step + .ui-contact-step {
  padding-left: 24px;
  border-left: 1px solid var(--ui-line);
}

.ui-contact-step .ui-icon {
  width: 58px;
  height: 58px;
  margin: 0;
  border: 1px solid rgba(11, 85, 221, 0.2);
  border-radius: 14px;
  background: #f5f9ff;
}

.ui-contact-step strong {
  display: block;
  color: var(--ui-ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.ui-contact-step p span {
  display: block;
  margin-top: 8px;
  color: var(--ui-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.ui-contact-card {
  padding: 28px 42px;
  background: linear-gradient(135deg, #f4f8ff, #fff);
}

.ui-contact-card h3 {
  margin: 0 0 20px;
  color: var(--ui-blue);
  font-size: 20px;
  font-weight: 950;
}

.ui-contact-list {
  display: grid;
}

.ui-contact-list div {
  min-height: 54px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  border-top: 1px dashed rgba(120, 152, 190, 0.38);
}

.ui-contact-list div:first-child {
  border-top: 0;
}

.ui-contact-list span {
  color: var(--ui-muted);
  font-size: 15px;
  font-weight: 750;
}

.ui-contact-list strong,
.ui-contact-list a {
  color: var(--ui-ink);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 950;
}

.ui-catalog-layout {
  padding: 16px;
  display: grid;
  grid-template-columns: 284px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.ui-catalog-side {
  padding: 0 0 18px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.ui-tab {
  height: 54px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: var(--ui-blue);
  font-size: 17px;
  font-weight: 950;
}

.ui-tab.is-red {
  background: linear-gradient(180deg, #f12d28, #d91f1b);
}

.ui-tab.is-yellow {
  background: linear-gradient(180deg, #f7bd16, #eba700);
}

.ui-catalog-side p {
  margin: 20px 22px;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 650;
}

.ui-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
  align-content: start;
}

.ui-equipment-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ui-data-card {
  min-height: 74px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--ui-line);
  border-radius: 7px;
  background: #fff;
}

.ui-equipment-grid .ui-data-card {
  min-height: 126px;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 8px;
  position: relative;
}

.ui-data-card img {
  width: 76px;
  height: 48px;
  object-fit: contain;
}

.ui-equipment-grid .ui-data-card img {
  width: 100%;
  height: 62px;
}

.ui-equipment-grid .ui-data-card em {
  position: absolute;
  right: 16px;
  bottom: 12px;
}

.ui-data-card span {
  display: block;
  color: var(--ui-muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
}

.ui-data-card strong {
  display: block;
  margin-top: 6px;
  color: #061834;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.ui-data-card em {
  justify-self: end;
  color: var(--ui-blue);
  font-size: 20px;
  font-style: normal;
  font-weight: 950;
}

.ui-bottom-strip {
  width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
  min-height: 64px;
  margin: 12px auto 0;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid #dce9f8;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.ui-bottom-strip div {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--ui-line);
}

.ui-bottom-strip div:first-child {
  border-left: 0;
}

.ui-bottom-strip strong {
  display: block;
  color: var(--ui-blue);
  font-size: 18px;
  font-weight: 950;
}

.ui-bottom-strip .ui-icon,
.ui-bottom-strip p {
  margin: 0;
  transform: translateY(-3px);
}

.ui-bottom-strip p span {
  color: var(--ui-muted);
  font-size: 13px;
  font-weight: 650;
}

.ui-footer {
  margin-top: 14px;
  color: rgba(229, 240, 255, 0.84);
  background:
    radial-gradient(circle at 98% 2%, rgba(27, 112, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #092f68, #061d40 68%, #04152e);
}

.ui-footer-inner {
  width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 54px;
}

.ui-footer-logo img {
  width: 270px;
  height: auto;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
}

.ui-footer-logo p,
.ui-footer-mid p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}

.ui-footer-mid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ui-footer-mid strong,
.ui-footer-contact strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.ui-footer-mid a,
.ui-footer-contact a,
.ui-footer-contact span {
  display: block;
  margin-top: 8px;
  color: rgba(229, 240, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
}

.ui-footer-bottom {
  width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-top: 1px solid rgba(229, 240, 255, 0.14);
  color: rgba(229, 240, 255, 0.6);
  font-size: 13px;
}

.ui-credentials-page .ui-hero-inner {
  min-height: 296px;
}

.ui-credentials-page .ui-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 46%, rgba(255, 255, 255, 0.9) 66%, rgba(239, 247, 255, 0.34) 100%),
    url("./assets-goal/credentials-hero-bg-ai.png") right center / auto 100% no-repeat,
    linear-gradient(90deg, #fff, #edf6ff);
}

.ui-credentials-page .ui-hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(239, 247, 255, 0.18));
}

.ui-process-page .ui-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0 38%, rgba(255, 255, 255, 0.84) 55%, rgba(226, 239, 255, 0.34) 100%),
    url("./assets-goal/process-hero-bg-variant.png") center center / cover no-repeat,
    linear-gradient(90deg, #fff, #edf6ff);
}

.ui-process-page .ui-hero::before {
  background:
    radial-gradient(ellipse 760px 310px at -10% 72%, rgba(24, 115, 255, 0.06), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(235, 245, 255, 0.08)),
    repeating-linear-gradient(150deg, rgba(0, 91, 220, 0.018) 0 1px, transparent 1px 44px);
}

.ui-contact-page .ui-hero {
  padding: 22px 0 10px;
  background:
    radial-gradient(ellipse 900px 360px at 100% 50%, rgba(215, 233, 255, 0.58), transparent 72%),
    linear-gradient(180deg, #f8fbff, #fff);
}

.ui-contact-page .ui-hero::before {
  background:
    radial-gradient(ellipse 840px 330px at -10% 70%, rgba(24, 115, 255, 0.06), transparent 62%),
    repeating-linear-gradient(150deg, rgba(0, 91, 220, 0.032) 0 1px, transparent 1px 40px);
}

.ui-contact-page .ui-hero-inner {
  padding: 30px 68px;
  border: 1px solid rgba(210, 226, 247, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(29, 77, 135, 0.08);
}

.ui-credentials-page .ui-mini-card {
  min-height: 168px;
  padding: 26px 22px;
}

.ui-credentials-page .ui-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ui-credentials-page .ui-hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 14px;
  border: 1px solid rgba(190, 211, 241, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #23446f;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(40, 93, 163, 0.06);
}

.ui-credentials-page .ui-proofbar,
.ui-equipment-page .ui-proofbar {
  min-height: 72px;
  padding: 0 28px;
}

.ui-credentials-page .ui-proofbar > div,
.ui-equipment-page .ui-proofbar > div {
  height: 46px;
}

.ui-credentials-page .ui-proofbar .ui-icon,
.ui-equipment-page .ui-proofbar .ui-icon {
  width: 46px;
  height: 46px;
}

.ui-credentials-page .ui-proofbar .ui-icon svg,
.ui-equipment-page .ui-proofbar .ui-icon svg {
  width: 26px;
  height: 26px;
}

.ui-credentials-page .ui-proofbar strong,
.ui-equipment-page .ui-proofbar strong {
  font-size: 16px;
}

.ui-credentials-page .ui-proofbar p span,
.ui-equipment-page .ui-proofbar p span {
  margin-top: 3px;
  font-size: 12px;
}

.ui-credentials-page .ui-catalog-layout {
  padding: 12px;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
}

.ui-credentials-page .ui-grid {
  gap: 10px;
}

.ui-credentials-page .ui-catalog-side {
  padding-bottom: 14px;
}

.ui-credentials-page .ui-tab {
  height: 48px;
  padding: 0 18px;
  font-size: 16px;
}

.ui-credentials-page .ui-catalog-side p {
  margin: 16px 18px;
  font-size: 13px;
  line-height: 1.5;
}

.ui-credentials-page .ui-catalog-side .ui-btn {
  height: 40px;
  margin-left: 18px;
  margin-right: 18px;
}

.ui-credentials-page .ui-data-card {
  min-height: 96px;
  padding: 14px 18px;
  grid-template-columns: 112px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
}

.ui-credentials-page .ui-data-card img {
  width: 104px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
}

.ui-credentials-page .ui-data-card span {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 650;
}

.ui-credentials-page .ui-data-card strong {
  display: -webkit-box;
  min-height: 42px;
  margin-top: 6px;
  overflow: hidden;
  color: #071936;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ui-credentials-page .ui-data-card em {
  align-self: center;
  justify-self: center;
  font-size: 24px;
}

.ui-credentials-page .ui-bottom-strip {
  min-height: 58px;
  margin-top: 8px;
}

.ui-equipment-page .ui-catalog-layout {
  padding: 14px;
}

.ui-equipment-page .ui-tab {
  height: 48px;
  padding: 0 18px;
  font-size: 16px;
}

.ui-equipment-page .ui-catalog-side {
  padding-bottom: 14px;
}

.ui-equipment-page .ui-catalog-side p {
  margin: 16px 20px;
  font-size: 13px;
  line-height: 1.5;
}

.ui-equipment-page .ui-catalog-side .ui-btn {
  height: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.ui-equipment-page .ui-equipment-grid .ui-data-card {
  min-height: 144px;
  padding: 10px 16px;
  gap: 8px;
}

.ui-equipment-page .ui-equipment-grid .ui-data-card img {
  height: 52px;
}

.ui-equipment-page .ui-equipment-grid .ui-data-card strong {
  font-size: 14px;
  line-height: 1.2;
}

.ui-equipment-page .ui-equipment-grid .ui-data-card span {
  font-size: 11px;
}

.ui-contact-page .ui-matrix-card {
  min-height: 158px;
  padding: 22px 28px;
}

.ui-contact-page .ui-matrix-card .ui-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 11px;
}

.ui-contact-page .ui-matrix-card .ui-icon svg {
  width: 23px;
  height: 23px;
}

.ui-contact-page .ui-matrix-card strong {
  font-size: 18px;
}

.ui-contact-page .ui-matrix-card > span:not(.ui-icon) {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.45;
}

@media (min-width: 1181px) {
  .ui-process-page .ui-hero-inner {
    min-height: 336px;
  }

  .ui-process-page .ui-proofbar {
    min-height: 88px;
  }

  .ui-process-page .ui-process-grid {
    padding: 14px 24px 18px;
  }

  .ui-process-page .ui-step-card,
  .ui-process-page .ui-side-note {
    min-height: 148px;
    padding: 18px 18px;
  }

  .ui-contact-page .ui-hero-inner {
    min-height: 374px;
    padding: 24px 64px;
    grid-template-columns: minmax(0, 0.95fr) minmax(560px, 0.82fr);
    gap: 48px;
  }

  .ui-contact-page .ui-hero h1 {
    max-width: 780px;
    font-size: clamp(38px, 2.55vw, 44px);
    line-height: 1.15;
  }

  .ui-contact-page .ui-hero p {
    max-width: 730px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.64;
  }

  .ui-contact-page .ui-actions {
    margin-top: 20px;
  }

  .ui-credentials-page .ui-hero-inner {
    min-height: 296px;
  }

  .ui-credentials-page .ui-mini-card {
    height: 220px;
    min-height: 0;
    padding: 24px 20px;
  }

  .ui-credentials-page .ui-mini-card .ui-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .ui-credentials-page .ui-mini-card .ui-icon svg {
    width: 28px;
    height: 28px;
  }

  .ui-credentials-page .ui-mini-card strong {
    font-size: 19px;
  }

  .ui-credentials-page .ui-mini-card > span:not(.ui-icon) {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.45;
  }

  .ui-credentials-page .ui-proofbar {
    min-height: 68px;
  }

  .ui-credentials-page .ui-catalog-layout {
    padding: 10px;
    gap: 16px;
  }

  .ui-credentials-page .ui-data-card {
    height: 74px;
    min-height: 74px;
    padding: 7px 12px;
    grid-template-columns: 76px minmax(0, 1fr) 18px;
  }

  .ui-credentials-page .ui-grid {
    gap: 8px;
    grid-auto-rows: 74px;
  }

  .ui-credentials-page .ui-data-card img {
    width: 64px;
    height: 40px;
  }

  .ui-credentials-page .ui-bottom-strip {
    height: 66px;
    min-height: 66px;
    padding: 0 30px;
  }

  .ui-contact-page .ui-info-layout {
    gap: 24px;
  }

  .ui-contact-page .ui-copy-card {
    padding: 32px 48px;
  }

  .ui-contact-page .ui-copy-card h2 {
    max-width: 760px;
    margin: 10px 0 14px;
    font-size: clamp(28px, 2.18vw, 36px);
    line-height: 1.16;
  }

  .ui-contact-page .ui-copy-card p {
    max-width: 700px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .ui-contact-page .ui-contact-steps {
    margin-top: 22px;
    gap: 20px;
  }

  .ui-contact-page .ui-contact-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .ui-contact-page .ui-contact-step .ui-icon {
    width: 52px;
    height: 52px;
  }

  .ui-contact-page .ui-contact-step strong {
    font-size: 17px;
  }

  .ui-contact-page .ui-contact-card {
    padding: 24px 36px;
  }

  .ui-contact-page .ui-contact-card h3 {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .ui-contact-page .ui-contact-list div {
    min-height: 46px;
  }

  .ui-contact-page .ui-contact-list span {
    font-size: 14px;
  }

  .ui-contact-page .ui-contact-list strong,
  .ui-contact-page .ui-contact-list a {
    font-size: 17px;
  }

  .ui-equipment-page .ui-hero-inner {
    min-height: 356px;
  }

  .ui-equipment-page .ui-proofbar {
    min-height: 72px;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card {
    min-height: 134px;
    padding: 10px 14px;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card img {
    height: 54px;
  }
}

@media (min-width: 1181px) {
  .ui-credentials-page .ui-hero-inner,
  .ui-credentials-page .ui-proofbar,
  .ui-credentials-page .ui-content,
  .ui-credentials-page .ui-bottom-strip,
  .ui-equipment-page .ui-hero-inner,
  .ui-equipment-page .ui-proofbar,
  .ui-equipment-page .ui-content {
    width: min(1360px, calc(100vw - 314px));
  }

  .ui-credentials-page .ui-section-label::before,
  .ui-equipment-page .ui-section-label::before,
  .ui-contact-page .ui-section-label::before {
    display: none;
  }

  .ui-contact-page .ui-section-label {
    position: relative;
    padding-bottom: 18px;
    color: var(--ui-ink);
    font-size: 16px;
  }

  .ui-contact-page .ui-section-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: linear-gradient(90deg, var(--ui-red) 0 34%, var(--ui-blue) 34% 100%);
  }

  .ui-contact-page .ui-hero-inner {
    height: 376px;
    min-height: 0;
    padding: 26px 68px 28px;
    align-items: start;
  }

  .ui-contact-page .ui-hero-matrix {
    height: 320px;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .ui-contact-page .ui-hero h1 {
    margin-top: 22px;
  }

  .ui-contact-page .ui-matrix-card {
    min-height: 0;
    padding: 18px 28px;
  }

  .ui-contact-page .ui-matrix-card .ui-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .ui-credentials-page .ui-section-label {
    color: var(--ui-ink);
  }

  .ui-credentials-page .ui-color-strip {
    display: inline-grid;
    margin: 0 0 0 16px;
    vertical-align: middle;
  }

  .ui-credentials-page .ui-hero h1,
  .ui-equipment-page .ui-hero h1 {
    max-width: 650px;
  }

  .ui-credentials-page .ui-hero h1 {
    font-size: 44px;
    line-height: 1.14;
  }

  .ui-credentials-page .ui-hero p,
  .ui-equipment-page .ui-hero p {
    max-width: 620px;
  }

  .ui-credentials-page .ui-hero-inner {
    grid-template-columns: 630px minmax(0, 1fr);
    gap: 16px;
  }

  .ui-credentials-page .ui-hero-inner > * {
    transform: translateY(10px);
  }

  .ui-equipment-page .ui-hero-inner {
    grid-template-columns: 630px minmax(0, 1fr);
    gap: 88px;
  }

  .ui-equipment-page .ui-hero-cards {
    height: 246px;
    min-height: 0;
    gap: 0;
    padding: 18px 22px;
    align-self: center;
    border: 1px solid rgba(210, 226, 247, 0.9);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 46px rgba(28, 75, 130, 0.08);
  }

  .ui-equipment-page .ui-mini-card {
    min-height: 0;
    padding: 22px 24px;
    border-radius: 0;
    border-left: 1px solid var(--ui-line);
    background: transparent;
    box-shadow: none;
  }

  .ui-equipment-page .ui-mini-card:first-child {
    border-left: 0;
  }

  .ui-contact-page .ui-footer-inner,
  .ui-equipment-page .ui-footer-inner {
    min-height: 90px;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
  }

  .ui-equipment-page .ui-footer-inner {
    grid-template-columns: 730px 360px;
    gap: 20px;
  }

  .ui-contact-page .ui-footer-logo img,
  .ui-equipment-page .ui-footer-logo img {
    width: 270px;
    padding: 5px 8px;
  }

  .ui-equipment-page .ui-footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
  }

  .ui-equipment-page .ui-footer-logo p {
    max-width: 420px;
    margin: 0;
    overflow: hidden;
    color: rgba(229, 240, 255, 0.88);
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .ui-contact-page .ui-footer-mid,
  .ui-equipment-page .ui-footer-mid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 44px;
  }

  .ui-equipment-page .ui-footer-mid div:nth-child(2),
  .ui-contact-page .ui-footer-contact,
  .ui-equipment-page .ui-footer-contact {
    display: none;
  }

  .ui-contact-page .ui-footer-mid strong,
  .ui-equipment-page .ui-footer-mid strong,
  .ui-contact-page .ui-footer-contact strong,
  .ui-equipment-page .ui-footer-contact strong {
    margin: 0;
    font-size: 15px;
  }

  .ui-contact-page .ui-footer-mid a,
  .ui-equipment-page .ui-footer-mid a,
  .ui-contact-page .ui-footer-contact a,
  .ui-equipment-page .ui-footer-contact a {
    display: inline-block;
    margin: 0 0 0 16px;
    font-size: 15px;
  }

  .ui-contact-page .ui-footer-bottom,
  .ui-equipment-page .ui-footer-bottom {
    position: absolute;
    right: 87px;
    bottom: 18px;
    display: flex;
    width: auto;
    min-height: 0;
    margin: 0;
    justify-content: flex-end;
    gap: 22px;
    border: 0;
    font-size: 12px;
    white-space: nowrap;
  }

  .ui-credentials-page .ui-footer-inner {
    min-height: 112px;
  }

  .ui-credentials-page .ui-footer-logo img {
    width: 245px;
    padding: 5px 8px;
  }

  .ui-credentials-page .ui-footer-logo p,
  .ui-credentials-page .ui-footer-mid p {
    margin-top: 8px;
  }

  .ui-credentials-page .ui-footer-bottom {
    min-height: 34px;
  }

  .ui-process-page .ui-footer,
  .ui-credentials-page .ui-footer {
    position: relative;
  }

  .ui-process-page .ui-footer-inner,
  .ui-credentials-page .ui-footer-inner {
    grid-template-columns: 380px minmax(0, 1fr) 410px;
  }

  .ui-process-page .ui-footer-contact,
  .ui-credentials-page .ui-footer-contact {
    padding-right: 118px;
  }

  .ui-process-page .ui-footer::after,
  .ui-credentials-page .ui-footer::after {
    content: "";
    position: absolute;
    right: max(88px, calc((100vw - 1498px) / 2));
    top: 28px;
    width: 86px;
    height: 86px;
    border: 8px solid #fff;
    border-radius: 4px;
    background: #fff url("./assets-goal/xlyw-qr.png") center / cover no-repeat;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
}

@media (max-width: 1180px) {
  .blue-home .blue-header-inner,
  .ui-page .site-header,
  .museum-page .site-header,
  .module-page:not(.ui-page) .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ui-page .nav,
  .museum-page .nav,
  .module-page:not(.ui-page) .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    height: 38px;
  }

  .ui-hero-inner,
  .ui-info-layout,
  .ui-catalog-layout,
  .ui-footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .ui-hero-cards,
  .ui-hero-matrix,
  .ui-proofbar,
  .ui-bottom-strip,
  .ui-grid,
  .ui-equipment-grid,
  .ui-process-grid,
  .ui-footer-mid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ui-process-grid {
    gap: 14px;
  }

  .ui-step-card::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .blue-home .blue-brand img,
  .ui-page .brand img,
  .museum-page .brand img,
  .module-page:not(.ui-page) .brand img {
    width: 208px;
    height: auto;
  }

  .ui-page .site-header,
  .museum-page .site-header,
  .module-page:not(.ui-page) .site-header {
    height: auto;
    padding: 12px 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .ui-page .header-tel,
  .museum-page .header-tel,
  .module-page:not(.ui-page) .header-tel {
    justify-self: start;
    min-width: 0;
    height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .ui-page .nav,
  .museum-page .nav,
  .module-page:not(.ui-page) .nav {
    grid-column: auto;
    width: 100%;
    height: 32px;
    gap: 22px;
    padding-bottom: 4px;
  }

  .ui-hero-inner,
  .ui-proofbar,
  .ui-content,
  .ui-bottom-strip,
  .ui-footer-inner,
  .ui-footer-bottom {
    width: min(100% - 28px, 1710px);
  }

  .ui-hero-inner {
    min-height: 0;
    padding: 34px 0 44px;
    gap: 28px;
  }

  .ui-hero h1 {
    max-width: 100%;
    width: 100%;
    font-size: clamp(28px, 7.4vw, 32px);
    line-height: 1.15;
    white-space: normal;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .ui-hero h1 br {
    display: none;
  }

  .ui-hero p {
    font-size: 15px;
    line-height: 1.75;
    text-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .ui-actions {
    width: 100%;
    gap: 12px;
  }

  .ui-btn {
    width: 100%;
    min-width: 0;
  }

  .ui-proofbar,
  .ui-bottom-strip,
  .ui-hero-cards,
  .ui-hero-matrix,
  .ui-grid,
  .ui-equipment-grid,
  .ui-process-grid,
  .ui-footer-mid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ui-proofbar {
    margin-top: 14px;
    padding: 18px;
    gap: 14px;
  }

  .ui-proofbar > div,
  .ui-bottom-strip div {
    border-left: 0;
  }

  .ui-process-grid,
  .ui-catalog-layout {
    padding: 16px;
  }

  .ui-credentials-page .ui-catalog-layout,
  .ui-equipment-page .ui-catalog-layout {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
    gap: 16px;
  }

  .ui-credentials-page .ui-data-card {
    grid-template-columns: 76px minmax(0, 1fr) 20px;
    gap: 12px;
  }

  .ui-credentials-page .ui-catalog-side .ui-btn,
  .ui-equipment-page .ui-catalog-side .ui-btn {
    margin-left: 18px;
    margin-right: 18px;
  }

  .ui-copy-card {
    padding: 32px 24px;
  }

  .ui-contact-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .ui-contact-step + .ui-contact-step {
    padding-left: 0;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid var(--ui-line);
  }

  .ui-contact-list div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 12px 0;
  }

  .ui-footer-inner {
    padding: 28px 0;
  }

  .ui-footer-bottom {
    flex-wrap: wrap;
    padding: 12px 0;
  }
}

@media (max-width: 720px) {
  .ui-contact-page .ui-hero-matrix {
    grid-template-columns: minmax(0, 1fr);
  }

  .ui-contact-page .ui-matrix-card {
    border-right: 0;
    border-bottom: 1px solid var(--ui-line);
  }

  .ui-contact-page .ui-matrix-card:last-child {
    border-bottom: 0;
  }
}

/* Reference-page convergence pass: lighter contact hero and sidebar catalog navigation. */
@media (min-width: 1181px) {
  .ui-contact-page .ui-hero {
    padding: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 45%, rgba(240, 247, 255, 0.82) 68%, rgba(227, 240, 255, 0.78) 100%),
      radial-gradient(ellipse 900px 360px at 95% 42%, rgba(101, 163, 255, 0.16), transparent 64%);
  }

  .ui-contact-page .ui-hero-inner {
    width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
    height: 392px;
    min-height: 0;
    padding: 0;
    grid-template-columns: minmax(0, 0.95fr) minmax(560px, 0.82fr);
    align-items: center;
    gap: 72px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ui-contact-page .ui-hero h1 {
    margin-top: 22px;
    max-width: 760px;
    font-size: clamp(40px, 2.75vw, 52px);
    line-height: 1.14;
  }

  .ui-contact-page .ui-hero p {
    max-width: 760px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .ui-contact-page .ui-actions {
    margin-top: 24px;
  }

  .ui-contact-page .ui-hero-matrix {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .ui-contact-page .ui-matrix-card {
    min-height: 132px;
    padding: 24px 30px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-content: center;
    justify-items: start;
    border: 1px solid rgba(199, 218, 243, 0.86);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 38px rgba(28, 75, 130, 0.08);
    text-align: left;
  }

  .ui-contact-page .ui-matrix-card:nth-child(2n),
  .ui-contact-page .ui-matrix-card:nth-last-child(-n + 2) {
    border: 1px solid rgba(199, 218, 243, 0.86);
  }

  .ui-contact-page .ui-matrix-card.is-dark {
    color: var(--ui-ink);
    background: linear-gradient(135deg, rgba(232, 242, 255, 0.98), rgba(214, 230, 255, 0.86));
    box-shadow: 0 18px 42px rgba(41, 91, 163, 0.13);
  }

  .ui-contact-page .ui-matrix-card .ui-icon {
    grid-row: 1 / 3;
    width: 46px;
    height: 46px;
    margin: 0;
    align-self: center;
    background: transparent;
  }

  .ui-contact-page .ui-matrix-card .ui-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 2.1;
  }

  .ui-contact-page .ui-matrix-card strong {
    align-self: end;
    font-size: 19px;
  }

  .ui-contact-page .ui-matrix-card > span:not(.ui-icon) {
    margin-top: 8px;
    color: var(--ui-muted);
    font-size: 14px;
    line-height: 1.48;
  }

  .ui-contact-page .ui-matrix-card.is-dark > span:not(.ui-icon) {
    color: var(--ui-muted);
  }
}

.ui-equipment-page .ui-catalog-side,
.ui-credentials-page .ui-catalog-side {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(205, 223, 247, 0.88);
  border-radius: 10px;
  background: rgba(248, 251, 255, 0.96);
}

.ui-equipment-page .ui-tab,
.ui-credentials-page .ui-tab,
.ui-equipment-page .ui-tab.is-red,
.ui-equipment-page .ui-tab.is-yellow,
.ui-credentials-page .ui-tab.is-red {
  height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(205, 223, 247, 0.82);
  color: #071f52;
  background: #fff;
}

.ui-equipment-page .ui-tab.is-red,
.ui-credentials-page .ui-tab.is-red {
  color: #fff;
  background: linear-gradient(135deg, #133f94, #08286a);
}

.ui-equipment-page .ui-tab.is-yellow {
  color: #071f52;
  background: #fff;
}

.ui-equipment-page .ui-tab::after,
.ui-credentials-page .ui-tab::after {
  content: "›";
  margin-left: auto;
  color: #2b64d8;
  font-size: 22px;
  line-height: 1;
}

.ui-equipment-page .ui-tab.is-red::after,
.ui-credentials-page .ui-tab.is-red::after {
  color: #fff;
}

.ui-equipment-page .ui-catalog-side p,
.ui-credentials-page .ui-catalog-side p {
  margin: 18px 22px 0;
}

.ui-equipment-page .ui-catalog-side .ui-btn,
.ui-credentials-page .ui-catalog-side .ui-btn {
  margin: 18px 22px 22px;
  background: #fff;
}

/* Equipment page reference alignment: calmer type, image-led hero, lighter equipment catalog. */
@media (min-width: 1181px) {
  .ui-equipment-page .site-header {
    height: 92px;
    padding-inline: 72px;
    grid-template-columns: 340px minmax(0, 1fr) 238px;
  }

  .ui-equipment-page .brand img {
    width: 296px;
  }

  .ui-equipment-page .nav {
    gap: 48px;
    font-size: 16px;
    font-weight: 560;
  }

  .ui-equipment-page .nav a[aria-current="page"] {
    font-weight: 700;
  }

  .ui-equipment-page .nav a[aria-current="page"]::before {
    display: none;
  }

  .ui-equipment-page .nav a[aria-current="page"]::after {
    left: 50%;
    width: 52px;
    height: 3px;
    transform: translateX(-50%);
    background: #1d63eb;
  }

  .ui-equipment-page .header-tel {
    min-width: 238px;
    height: 50px;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 780;
    letter-spacing: 0;
  }

  .ui-equipment-page .ui-hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0 36%, rgba(255, 255, 255, 0.78) 52%, rgba(221, 235, 255, 0.28) 100%),
      url("./assets-goal/equipment-hero-bg-ai.png") center center / cover no-repeat,
      linear-gradient(90deg, #fff, #edf6ff);
  }

  .ui-equipment-page .ui-hero::before {
    background:
      radial-gradient(ellipse 820px 250px at 42% 92%, rgba(63, 128, 230, 0.08), transparent 68%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(238, 247, 255, 0.12));
  }

  .ui-equipment-page .ui-hero-inner,
  .ui-equipment-page .ui-proofbar,
  .ui-equipment-page .ui-content {
    width: min(1704px, calc(100vw - clamp(56px, 16.4vw, 336px)));
  }

  .ui-equipment-page .ui-hero-inner {
    min-height: 384px;
    grid-template-columns: 650px minmax(0, 830px);
    gap: 54px;
    align-items: center;
    justify-content: space-between;
  }

  .ui-equipment-page .ui-color-strip {
    display: none;
  }

  .ui-equipment-page .ui-section-label {
    color: #09295d;
    font-size: 14px;
    font-weight: 650;
  }

  .ui-equipment-page .ui-section-label::after {
    content: ">";
    margin-left: 8px;
    color: rgba(9, 41, 93, 0.54);
    font-size: 14px;
    line-height: 1;
  }

  .ui-equipment-page .ui-hero h1 {
    max-width: 650px;
    margin-top: 16px;
    font-family:
      "Xiaolin Sans",
      "Noto Sans SC",
      "PingFang SC",
      "Microsoft YaHei",
      "Noto Sans CJK SC",
      Arial,
      sans-serif;
    font-size: 38px;
    line-height: 1.24;
    font-weight: 640;
    letter-spacing: 0;
  }

  .ui-equipment-page .ui-hero p {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(10, 34, 76, 0.68);
    font-size: 14px;
    line-height: 1.68;
    font-weight: 400;
  }

  .ui-equipment-page .ui-actions {
    margin-top: 24px;
    gap: 16px;
  }

  .ui-equipment-page .ui-btn {
    min-width: 158px;
    height: 44px;
    padding-inline: 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 650;
  }

  .ui-equipment-page .ui-hero .ui-btn::after {
    content: "→";
    margin-left: 18px;
    font-size: 15px;
    line-height: 1;
  }

  .ui-equipment-page .ui-hero-cards {
    height: 236px;
    gap: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ui-equipment-page .ui-mini-card {
    min-height: 236px;
    padding: 34px 22px 28px;
    border: 1px solid rgba(208, 225, 249, 0.88);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 18px 42px rgba(42, 91, 150, 0.08);
    backdrop-filter: blur(3px);
  }

  .ui-equipment-page .ui-mini-card:first-child {
    border-left: 1px solid rgba(208, 225, 249, 0.88);
  }

  .ui-equipment-page .ui-mini-card .ui-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

  .ui-equipment-page .ui-mini-card .ui-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.25;
  }

  .ui-equipment-page .ui-mini-card strong {
    color: #061f4d;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
  }

  .ui-equipment-page .ui-mini-card > span:not(.ui-icon) {
    margin-top: 15px;
    color: rgba(10, 34, 76, 0.7);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 400;
  }

  .ui-equipment-page .ui-proofbar {
    min-height: 96px;
    margin-top: 0;
  }

  .ui-equipment-page .ui-proofbar strong {
    font-size: 16px;
    font-weight: 700;
  }

  .ui-equipment-page .ui-proofbar p span {
    font-size: 13px;
    font-weight: 400;
  }

  .ui-equipment-page .ui-catalog-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .ui-equipment-page .ui-catalog-side {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: visible;
    border: 1px solid rgba(205, 223, 247, 0.92);
    border-radius: 8px;
    background: #fff;
  }

  .ui-equipment-page .ui-tab,
  .ui-equipment-page .ui-catalog-side .ui-btn {
    width: auto;
    height: 58px;
    margin: 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid rgba(205, 223, 247, 0.88);
    border-radius: 0;
    color: #173060;
    background: #fff;
    box-shadow: none;
    font-size: 15px;
    line-height: 1;
    font-weight: 620;
  }

  .ui-equipment-page .ui-tab.is-red {
    border-radius: 7px 7px 0 0;
    color: #fff;
    background: linear-gradient(180deg, #1d4293, #102f78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .ui-equipment-page .ui-tab.is-yellow {
    color: #173060;
    background: #fff;
  }

  .ui-equipment-page .ui-tab::before,
  .ui-equipment-page .ui-catalog-side .ui-btn::before {
    content: "";
    width: 22px;
    height: 22px;
    background: currentColor;
    opacity: 0.92;
    -webkit-mask: var(--equipment-tab-icon) center / contain no-repeat;
    mask: var(--equipment-tab-icon) center / contain no-repeat;
  }

  .ui-equipment-page .ui-tab.is-red {
    --equipment-tab-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 3h12v6h2a2 2 0 0 1 2 2v6h-4v4H6v-4H2v-6a2 2 0 0 1 2-2h2V3Zm2 2v4h8V5H8Zm0 11v3h8v-3H8Zm-3-4v2h2v-2H5Z'/%3E%3C/svg%3E");
  }

  .ui-equipment-page .ui-tab.is-yellow {
    --equipment-tab-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 3 9 5-9 5-9-5 9-5Zm-7.5 9.2L12 16l7.5-3.8L21 14l-9 5-9-5 1.5-1.8Zm0 4L12 20l7.5-3.8L21 18l-9 5-9-5 1.5-1.8Z'/%3E%3C/svg%3E");
  }

  .ui-equipment-page .ui-tab:not(.is-red):not(.is-yellow) {
    --equipment-tab-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10.5 4a6.5 6.5 0 0 1 5.12 10.5l4.44 4.44-1.42 1.42-4.44-4.44A6.5 6.5 0 1 1 10.5 4Zm0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Zm-1.6 3.2 1.2 1.2 2.4-2.4 1.2 1.2-3.6 3.6-2.4-2.4 1.2-1.2Z'/%3E%3C/svg%3E");
  }

  .ui-equipment-page .ui-catalog-side .ui-btn {
    --equipment-tab-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 2h12v20H6V2Zm2 2v16h8V4H8Zm2 3h4v2h-4V7Zm0 4h4v2h-4v-2Zm0 4h4v2h-4v-2Z'/%3E%3C/svg%3E");
  }

  .ui-equipment-page .ui-tab::after,
  .ui-equipment-page .ui-catalog-side .ui-btn::after {
    content: ">";
    justify-self: end;
    color: currentColor;
    opacity: 0.72;
    font-size: 16px;
    line-height: 1;
    background: none;
  }

  .ui-equipment-page .ui-catalog-side p {
    min-height: 86px;
    margin: 12px 0 0;
    padding: 18px 18px 18px 64px;
    position: relative;
    display: block;
    border: 1px solid rgba(205, 223, 247, 0.92);
    border-radius: 8px;
    color: #102756;
    background: linear-gradient(180deg, #fff, #f7fbff);
    font-size: 0;
    line-height: 1;
    font-weight: 400;
  }

  .ui-equipment-page .ui-catalog-side p::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 24px;
    width: 28px;
    height: 28px;
    background: #1d63eb;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3a8 8 0 0 0-8 8v4a3 3 0 0 0 3 3h2v-6H6v-1a6 6 0 0 1 12 0v1h-3v6h2.2a4.2 4.2 0 0 1-4.2 3H11v-2h2a2.2 2.2 0 0 0 2.2-1H17a3 3 0 0 0 3-3v-4a8 8 0 0 0-8-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3a8 8 0 0 0-8 8v4a3 3 0 0 0 3 3h2v-6H6v-1a6 6 0 0 1 12 0v1h-3v6h2.2a4.2 4.2 0 0 1-4.2 3H11v-2h2a2.2 2.2 0 0 0 2.2-1H17a3 3 0 0 0 3-3v-4a8 8 0 0 0-8-8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .ui-equipment-page .ui-catalog-side p::after {
    content: ">";
    position: absolute;
    right: 20px;
    top: 46px;
    color: #1d63eb;
    font-size: 16px;
    line-height: 1;
  }

  .ui-equipment-page .ui-catalog-side p strong {
    display: block;
    color: #102756;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 720;
  }

  .ui-equipment-page .ui-catalog-side p span {
    display: block;
    margin-top: 7px;
    color: rgba(16, 39, 86, 0.62);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
  }

  .ui-equipment-page .ui-equipment-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card {
    min-height: 142px;
    padding: 16px 18px;
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    align-content: stretch;
    gap: 10px;
    position: relative;
    border-radius: 7px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: 0 10px 28px rgba(28, 75, 130, 0.035);
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card:nth-child(-n+4) {
    grid-column: span 3;
    min-height: 154px;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card img {
    width: 100%;
    height: 70px;
    align-self: start;
    object-fit: contain;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card:nth-child(-n+4) img {
    height: 86px;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card p {
    margin: 0;
    align-self: end;
    min-width: 0;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card strong {
    color: #071f52;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 620;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card em {
    right: 16px;
    bottom: 14px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(117, 146, 190, 0.58);
    border-radius: 50%;
    color: #40679e;
    background: #fff;
    font-size: 0;
    box-shadow: 0 4px 10px rgba(28, 75, 130, 0.08);
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card em::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateX(-1px) rotate(45deg);
  }
}

@media (min-width: 1181px) {
  .ui-contact-page .ui-footer,
  .ui-equipment-page .ui-footer {
    position: relative;
    margin-top: 0;
  }

  .ui-contact-page .ui-footer-inner,
  .ui-equipment-page .ui-footer-inner {
    min-height: 150px;
    grid-template-columns: 380px minmax(0, 1fr) 370px;
    gap: 54px;
  }

  .ui-contact-page .ui-footer-logo,
  .ui-equipment-page .ui-footer-logo {
    display: block;
  }

  .ui-contact-page .ui-footer-logo img,
  .ui-equipment-page .ui-footer-logo img {
    width: 270px;
    padding: 7px 10px;
  }

  .ui-contact-page .ui-footer-logo p,
  .ui-equipment-page .ui-footer-logo p {
    max-width: none;
    margin: 14px 0 0;
    overflow: visible;
    color: rgba(229, 240, 255, 0.84);
    font-size: 14px;
    line-height: 1.7;
    white-space: normal;
  }

  .ui-contact-page .ui-footer-mid,
  .ui-equipment-page .ui-footer-mid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
  }

  .ui-contact-page .ui-footer-mid div:nth-child(2),
  .ui-equipment-page .ui-footer-mid div:nth-child(2),
  .ui-contact-page .ui-footer-contact,
  .ui-equipment-page .ui-footer-contact {
    display: block;
  }

  .ui-contact-page .ui-footer-mid strong,
  .ui-equipment-page .ui-footer-mid strong,
  .ui-contact-page .ui-footer-contact strong,
  .ui-equipment-page .ui-footer-contact strong {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .ui-contact-page .ui-footer-mid a,
  .ui-equipment-page .ui-footer-mid a,
  .ui-contact-page .ui-footer-contact a,
  .ui-equipment-page .ui-footer-contact a {
    display: block;
    margin: 8px 0 0;
    font-size: 14px;
  }

  .ui-contact-page .ui-footer-contact,
  .ui-equipment-page .ui-footer-contact {
    padding-right: 118px;
  }

  .ui-contact-page .ui-footer::after,
  .ui-equipment-page .ui-footer::after {
    content: "";
    position: absolute;
    right: max(88px, calc((100vw - 1498px) / 2));
    top: 28px;
    width: 86px;
    height: 86px;
    border: 8px solid #fff;
    border-radius: 4px;
    background: #fff url("./assets-goal/xlyw-qr.png") center / cover no-repeat;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .ui-contact-page .ui-footer-bottom,
  .ui-equipment-page .ui-footer-bottom {
    position: static;
    width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
    min-height: 38px;
    margin: 0 auto;
    justify-content: center;
    gap: 28px;
    border-top: 1px solid rgba(229, 240, 255, 0.14);
    font-size: 13px;
  }
}

/* Homepage polish pass: lighter exhibition UI */
.blue-home {
  --goal-blue: #0b61f2;
  --goal-blue-dark: #082f77;
  --goal-blue-deep: #061f55;
  --goal-red: #d93026;
  --goal-text: #071d4d;
  --goal-muted: #58708f;
  --goal-line: #dce9f8;
  --goal-card-shadow: 0 18px 46px rgba(37, 92, 158, 0.13);
  background:
    radial-gradient(circle at 82% 7%, rgba(90, 166, 255, 0.14), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.98), transparent 24%),
    linear-gradient(180deg, #f4faff 0%, #fbfdff 56%, #ffffff 100%);
}

.blue-home::before {
  height: 560px;
  opacity: 0.58;
  background:
    radial-gradient(ellipse 560px 310px at 9% 42%, rgba(88, 164, 255, 0.13), transparent 72%),
    radial-gradient(ellipse 620px 280px at 90% 24%, rgba(165, 211, 255, 0.16), transparent 68%),
    repeating-linear-gradient(151deg, rgba(11, 95, 226, 0.024) 0 1px, transparent 1px 50px),
    linear-gradient(135deg, rgba(241, 248, 255, 0.82), rgba(249, 252, 255, 0.78));
}

.blue-header {
  height: 72px;
  border-bottom-color: rgba(20, 62, 126, 0.1);
  box-shadow: 0 10px 30px rgba(24, 67, 128, 0.07);
}

.blue-header-inner {
  padding-inline: clamp(32px, 3.2vw, 58px);
  grid-template-columns: minmax(300px, 350px) minmax(0, 1fr) 184px;
}

.blue-nav {
  gap: clamp(22px, 2.45vw, 44px);
  font-size: 14px;
  color: rgba(7, 29, 77, 0.82);
}

.blue-nav a::before,
.blue-nav a::after {
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
}

.blue-nav a::after {
  width: 42px;
}

.blue-nav a::before {
  width: 14px;
}

.blue-phone {
  min-width: 170px;
  height: 42px;
  border: 1px solid rgba(55, 117, 220, 0.2);
  border-radius: 13px;
  color: var(--goal-blue);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(18, 86, 190, 0.11);
}

.blue-phone:hover {
  border-color: rgba(55, 117, 220, 0.38);
  background: #fff;
  transform: translateY(-1px);
}

.blue-main {
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0.98) 0 52%, #f8fcff 52% 82%, #fff 82% 100%);
}

.blue-hero {
  min-height: 502px;
  background:
    radial-gradient(ellipse 820px 360px at 62% 26%, rgba(167, 213, 255, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(249, 253, 255, 0.98) 0%, rgba(231, 244, 255, 0.96) 100%),
    #f5fbff;
}

.blue-hero::before {
  background:
    linear-gradient(90deg, rgba(250, 253, 255, 0.36) 0%, rgba(255, 255, 255, 0.16) 42%, rgba(226, 241, 255, 0.12) 100%),
    url("./assets-goal/hero-bg-soft.png") center top / 100% 100% no-repeat;
  opacity: 0.88;
  filter: saturate(1.04) contrast(1.03);
}

.blue-hero::after {
  background:
    radial-gradient(ellipse 600px 190px at 60% 100%, rgba(63, 153, 255, 0.15), transparent 72%),
    linear-gradient(115deg, rgba(207, 232, 255, 0.22) 0 13%, rgba(255, 255, 255, 0.1) 13.5% 35%, transparent 35.4%),
    linear-gradient(74deg, transparent 0 76%, rgba(199, 227, 255, 0.22) 76.6% 90%, transparent 90.5%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 38%, rgba(255, 255, 255, 0.05) 58%, rgba(219, 238, 255, 0.16) 100%),
    repeating-linear-gradient(151deg, rgba(10, 91, 214, 0.028) 0 1px, transparent 1px 50px);
  opacity: 0.86;
}

.blue-hero-inner {
  min-height: 502px;
  padding-top: 23px;
}

.blue-hero-copy {
  width: min(720px, 52vw);
}

.blue-kicker {
  margin-bottom: 9px;
  gap: 20px;
}

.blue-kicker span {
  height: 22px;
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.blue-hero h1 {
  width: min(710px, 100%);
  font-size: clamp(50px, 3.65vw, 64px);
  line-height: 1.04;
  text-wrap: balance;
}

.blue-hero mark {
  color: #cf2f25;
}

.blue-lead {
  margin-top: 13px;
  font-size: 15.5px;
}

.blue-proof-row {
  width: min(720px, 100%);
  margin-top: 18px;
  gap: 12px;
}

.blue-proof-row div {
  min-height: 44px;
  grid-template-columns: 40px minmax(0, 1fr);
}

.blue-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 18px rgba(35, 97, 180, 0.08);
}

.blue-actions {
  margin-top: 18px;
  gap: 18px;
}

.blue-btn {
  height: 42px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(23, 70, 134, 0.06);
}

.blue-btn-primary {
  background: linear-gradient(180deg, #ec3b31, #d82920);
  box-shadow: 0 12px 26px rgba(216, 47, 38, 0.22);
}

.blue-hero-tags {
  left: 670px;
  top: 0;
  width: calc(52vw - 10px);
  min-width: 780px;
  height: 390px;
  filter: saturate(1.04) contrast(1.02);
}

.blue-about-card,
.blue-stat-card,
.blue-service-card,
.blue-choice-card,
.blue-equipment-card,
.blue-cert,
.blue-clients,
.blue-footer-quote {
  border-color: rgba(130, 176, 229, 0.26);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--goal-card-shadow);
}

.blue-about-card {
  height: 176px;
  border-radius: 14px;
}

.blue-factory-photo {
  filter: saturate(1.04) contrast(1.02);
}

.blue-factory-badge {
  left: 18px;
  top: auto;
  bottom: 14px;
  width: 96px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2f86ff, #135bcf);
}

.blue-about-copy {
  padding: 22px 24px 16px;
}

.blue-about-copy h2 {
  margin-top: 7px;
  font-size: 24px;
}

.blue-about-copy p {
  font-size: 11.5px;
}

.blue-tags span {
  height: 21px;
  border-color: rgba(111, 160, 222, 0.28);
  background: rgba(247, 251, 255, 0.84);
}

.blue-stat-card {
  height: 142px;
  padding: 24px 22px;
}

.blue-stat-card div {
  border-left-color: #d9e5f2;
}

.blue-stat-card dt svg {
  width: 29px;
  height: 29px;
}

.blue-stat-card dd strong {
  font-size: 34px;
}

.blue-services {
  margin-top: 16px;
}

.blue-card-grid {
  gap: 14px;
}

.blue-service-card {
  height: 106px;
  padding: 18px 16px 13px;
  isolation: isolate;
}

.blue-service-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  z-index: 3;
  width: 48px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--goal-blue);
}

.blue-service-card:nth-child(1)::before,
.blue-service-card:nth-child(4)::before {
  background: var(--goal-red);
}

.blue-service-card:nth-child(2)::before {
  background: #efc33a;
}

.blue-service-card:nth-child(3)::before,
.blue-service-card:nth-child(5)::before {
  background: var(--goal-blue);
}

.blue-service-card:nth-child(6)::before {
  background: #101827;
}

.blue-service-card span {
  font-size: 15px;
}

.blue-service-card p {
  width: 9.8em;
  margin-top: 8px;
  font-size: 11px;
}

.blue-service-card img {
  right: 12px;
  width: 42%;
  height: 74%;
  filter: drop-shadow(0 10px 14px rgba(20, 61, 118, 0.11));
}

.blue-service-card:nth-child(2) img {
  right: -2px;
  width: 50%;
  height: 86%;
}

.blue-service-card:nth-child(3) img {
  right: 12px;
  width: 38%;
  height: 72%;
}

.blue-service-card:nth-child(4) img {
  right: 10px;
  width: 39%;
  height: 74%;
}

.blue-service-card:nth-child(5) img {
  right: 10px;
  width: 44%;
  height: 72%;
}

.blue-service-card:nth-child(6) img {
  right: 10px;
  width: 43%;
  height: 72%;
}

.blue-systems {
  margin-top: 16px;
}

.blue-choice-card {
  height: 172px;
  grid-template-columns: 132px minmax(0, 1fr);
  grid-template-rows: 78px 94px;
}

.blue-choice-title {
  width: 22px;
  background: transparent;
}

.blue-choice-title::before,
.blue-choice-title::after {
  display: none;
}

.blue-choice-title::after {
  left: 14px;
}

.blue-choice-list {
  padding-left: 22px;
}

.blue-choice-list div {
  padding: 14px 16px 14px 78px;
}

.blue-choice-list svg {
  left: 28px;
  top: 15px;
  width: 44px;
  height: 44px;
}

.blue-choice-list b {
  font-size: 16px;
}

.blue-flow {
  border-top-color: #dce8f6;
}

.blue-flow ol {
  padding-inline: 52px 46px;
}

.blue-flow li span {
  background: linear-gradient(180deg, #116cff, #0754d5);
}

.blue-flow li svg {
  color: #0b61f2;
}

.blue-trust {
  margin-top: 18px;
}

.blue-footer {
  background:
    radial-gradient(circle at 88% 8%, rgba(45, 132, 255, 0.24), transparent 30%),
    radial-gradient(circle at 6% 22%, rgba(40, 121, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #08357b, #052963 58%, #041d4e);
}

.blue-footer-quote {
  border-radius: 12px;
}

.blue-to-top {
  width: 26px;
  height: 26px;
  color: #0a56d6;
}

@media (max-width: 1180px) {
  .blue-hero,
  .blue-hero-inner {
    min-height: 720px;
  }

  .blue-hero-copy {
    width: min(680px, 100%);
  }

  .blue-hero h1 {
    font-size: clamp(42px, 7vw, 58px);
  }

  .blue-about-card {
    bottom: 148px;
  }
}

@media (max-width: 720px) {
  .blue-header-inner {
    padding-inline: 18px;
  }

  .blue-phone {
    min-width: 0;
    width: 42px;
    padding: 0;
  }

  .blue-phone span {
    display: none;
  }

  .blue-hero h1 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .blue-proof-row {
    gap: 8px;
  }

  .blue-service-card {
    min-height: 116px;
  }

  .blue-hero,
  .blue-hero-inner {
    min-height: 0;
  }

  .blue-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .blue-hero-copy {
    width: 100%;
  }

  .blue-hero-tags {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    height: 188px;
    margin-top: 6px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .blue-about-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 3;
    height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .blue-factory-frame {
    display: none;
  }

  .blue-about-copy {
    padding: 22px 20px 18px;
  }

  .blue-stat-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 4;
    height: auto;
    min-height: 0;
    padding: 16px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .blue-stat-card div {
    min-height: 96px;
    border-left: 1px solid #d9e5f2;
    border-top: 1px solid #d9e5f2;
  }

  .blue-stat-card div:nth-child(1),
  .blue-stat-card div:nth-child(2) {
    border-top: 0;
  }

  .blue-stat-card div:nth-child(odd) {
    border-left: 0;
  }

  .blue-stat-card dd strong {
    font-size: 30px;
  }

  .blue-choice-card {
    height: auto;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .blue-choice-title {
    display: none;
  }

  .blue-choice-list,
  .blue-flow {
    grid-column: auto;
    grid-row: auto;
  }

  .blue-choice-list {
    padding-left: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .blue-choice-list div {
    min-height: 76px;
    padding: 16px 16px 16px 72px;
    border-left: 0;
    border-top: 1px solid #d9e7f7;
  }

  .blue-choice-list div:first-child {
    border-top: 0;
  }

  .blue-choice-list svg {
    left: 22px;
    top: 16px;
  }

  .blue-flow ol {
    padding: 10px 18px 18px;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .blue-flow li {
    min-height: 58px;
  }

  .blue-flow li:not(:last-child)::after {
    display: none;
  }
}

/* Global standard footer: shared by every public page. */
.site-footer-standard {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  color: rgba(232, 241, 255, 0.9);
  background:
    radial-gradient(ellipse 760px 240px at 13% 18%, rgba(38, 105, 190, 0.18), transparent 68%),
    radial-gradient(ellipse 620px 230px at 86% 0, rgba(40, 112, 203, 0.16), transparent 72%),
    linear-gradient(180deg, #061c3a 0%, #061f43 54%, #061a37 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer-standard::before,
.site-footer-standard::after {
  content: none !important;
}

.site-footer-standard .ui-footer-inner,
.site-footer-standard .ui-footer-bottom {
  width: min(1704px, calc(100vw - clamp(56px, 16.4vw, 336px))) !important;
  margin: 0 auto !important;
}

.site-footer-standard .ui-footer-inner {
  min-height: 154px !important;
  padding: 26px 0 22px !important;
  display: grid !important;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.72fr) minmax(500px, 1.12fr) !important;
  align-items: start !important;
  gap: clamp(48px, 5.4vw, 104px) !important;
}

.site-footer-standard .ui-footer-logo,
.site-footer-standard .ui-footer-contact,
.site-footer-standard .ui-footer-mid,
.site-footer-standard .ui-footer-follow {
  min-width: 0;
  display: block !important;
  color: rgba(232, 241, 255, 0.88);
}

.site-footer-standard .ui-footer-brandmark {
  width: min(300px, 100%);
  display: block;
  color: #fff;
}

.site-footer-standard .ui-footer-brandmark img {
  width: 300px !important;
  max-width: 100%;
  height: auto !important;
  max-height: 54px;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
}

.site-footer-standard .ui-footer-brandmark span {
  display: none !important;
}

.site-footer-standard .ui-footer-brandmark strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.18;
  font-weight: 760;
  letter-spacing: 0;
}

.site-footer-standard .ui-footer-brandmark em {
  color: rgba(223, 235, 255, 0.78);
  font-size: 11px;
  line-height: 1.1;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-footer-standard .ui-footer-logo p {
  max-width: none !important;
  margin: 20px 0 0 !important;
  overflow: visible !important;
  color: rgba(223, 235, 255, 0.75) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 450;
  white-space: normal !important;
}

.site-footer-standard .ui-footer-contact {
  padding: 0 !important;
  font-style: normal;
}

.site-footer-standard .ui-footer-mid {
  gap: 0 !important;
}

.site-footer-standard .ui-footer-contact strong,
.site-footer-standard .ui-footer-mid strong,
.site-footer-standard .ui-footer-follow strong {
  display: block;
  margin: 0 0 16px !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px !important;
  line-height: 1.2;
  font-weight: 760;
}

.site-footer-standard .ui-footer-contact a,
.site-footer-standard .ui-footer-mid a {
  margin: 10px 0 0 !important;
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: rgba(226, 238, 255, 0.78) !important;
  font-size: 16px !important;
  line-height: 1.2;
  font-weight: 470;
  text-decoration: none;
}

.site-footer-standard .ui-footer-contact a:hover,
.site-footer-standard .ui-footer-mid a:hover {
  color: #fff !important;
}

.site-footer-standard .ui-footer-contact a::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  opacity: 0.86;
}

.site-footer-standard .ui-footer-contact a[href^="tel"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 3.5 9.4 6.3 8 9.1c1.2 2.4 3 4.2 5.3 5.4l2.8-1.4 2.8 2.8c.4.4.5.9.2 1.4-.9 1.9-2.8 3-4.9 2.7C9 19.2 4.8 15 4 9.8c-.3-2.1.8-4 2.7-4.9.5-.2 1-.1 1.4.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 3.5 9.4 6.3 8 9.1c1.2 2.4 3 4.2 5.3 5.4l2.8-1.4 2.8 2.8c.4.4.5.9.2 1.4-.9 1.9-2.8 3-4.9 2.7C9 19.2 4.8 15 4 9.8c-.3-2.1.8-4 2.7-4.9.5-.2 1-.1 1.4.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer-standard .ui-footer-contact a[href^="mailto"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18v14H3V5Zm2 3.2V17h14V8.2l-7 5-7-5Zm.8-1.2L12 11.4 18.2 7H5.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18v14H3V5Zm2 3.2V17h14V8.2l-7 5-7-5Zm.8-1.2L12 11.4 18.2 7H5.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-footer-standard .ui-footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 58px;
  row-gap: 10px;
}

.site-footer-standard .ui-footer-link-grid a {
  margin: 0 !important;
  display: block !important;
}

.site-footer-standard .ui-footer-follow {
  display: grid !important;
  grid-template-columns: minmax(0, 220px) auto;
  align-items: start;
  justify-content: end;
  gap: clamp(24px, 2.4vw, 38px);
  padding-left: 0;
}

.site-footer-standard .ui-footer-follow p {
  max-width: 260px;
  margin: 0 !important;
  color: rgba(226, 238, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 430;
}

.site-footer-standard .ui-footer-qr-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer-standard .ui-footer-qr-list figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.site-footer-standard .ui-footer-follow img {
  width: 104px;
  height: 104px;
  padding: 7px;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.site-footer-standard .ui-footer-qr-list figcaption {
  color: rgba(226, 238, 255, 0.78);
  font-size: 12px;
  line-height: 1;
  font-weight: 520;
}

.site-footer-standard .ui-footer-bottom {
  min-height: 46px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 34px;
  border-top: 1px solid rgba(223, 235, 255, 0.12) !important;
  color: rgba(226, 238, 255, 0.62);
  font-size: 13px !important;
  line-height: 1;
  font-weight: 430;
}

.site-footer-standard .ui-footer-legal {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-footer-standard .ui-footer-legal span + span {
  position: relative;
}

.site-footer-standard .ui-footer-legal span + span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(226, 238, 255, 0.22);
  transform: translateY(-50%);
}

@media (max-width: 1180px) {
  .site-footer-standard .ui-footer-inner,
  .site-footer-standard .ui-footer-bottom {
    width: min(100% - 40px, 760px) !important;
  }

  .site-footer-standard .ui-footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 44px !important;
    padding: 30px 0 !important;
  }

  .site-footer-standard .ui-footer-follow {
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 18px;
  }

  .site-footer-standard .ui-footer-follow img {
    width: 102px;
    height: 102px;
  }

  .site-footer-standard .ui-footer-qr-list {
    justify-content: flex-start;
  }

  .site-footer-standard .ui-footer-bottom {
    min-height: 58px !important;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 12px 0 !important;
  }

  .site-footer-standard .ui-footer-legal {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .site-footer-standard .ui-footer-inner {
    grid-template-columns: 1fr !important;
  }

  .site-footer-standard .ui-footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .site-footer-standard .ui-footer-follow {
    grid-template-columns: 1fr;
  }

  .site-footer-standard .ui-footer-qr-list {
    flex-wrap: wrap;
  }
}

/* Inner-page typography standard: match the refined equipment page type system. */
@media (min-width: 1181px) {
  .ui-credentials-page .site-header,
  .ui-process-page .site-header,
  .ui-contact-page .site-header {
    height: 92px;
    padding-inline: 72px;
    grid-template-columns: 340px minmax(0, 1fr) 238px;
  }

  .ui-credentials-page .brand img,
  .ui-process-page .brand img,
  .ui-contact-page .brand img {
    width: 296px;
  }

  .ui-credentials-page .nav,
  .ui-process-page .nav,
  .ui-contact-page .nav {
    gap: 48px;
    font-family:
      "Xiaolin Sans",
      "Noto Sans SC",
      "PingFang SC",
      "Microsoft YaHei",
      "Noto Sans CJK SC",
      Arial,
      sans-serif;
    font-size: 16px;
    font-weight: 560;
  }

  .ui-credentials-page .nav a[aria-current="page"],
  .ui-process-page .nav a[aria-current="page"],
  .ui-contact-page .nav a[aria-current="page"] {
    font-weight: 700;
  }

  .ui-credentials-page .nav a[aria-current="page"]::before,
  .ui-process-page .nav a[aria-current="page"]::before,
  .ui-contact-page .nav a[aria-current="page"]::before {
    display: none;
  }

  .ui-credentials-page .nav a[aria-current="page"]::after,
  .ui-process-page .nav a[aria-current="page"]::after,
  .ui-contact-page .nav a[aria-current="page"]::after {
    left: 50%;
    width: 52px;
    height: 3px;
    transform: translateX(-50%);
    background: #1d63eb;
  }

  .ui-credentials-page .header-tel,
  .ui-process-page .header-tel,
  .ui-contact-page .header-tel {
    min-width: 238px;
    height: 50px;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 780;
    letter-spacing: 0;
  }

  .ui-equipment-page .ui-hero-inner,
  .ui-credentials-page .ui-hero-inner,
  .ui-process-page .ui-hero-inner,
  .ui-contact-page .ui-hero-inner {
    width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
    height: auto;
    min-height: 360px;
    padding: 48px 0 40px;
    grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
    align-items: start;
    gap: 60px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    box-sizing: border-box;
  }

  .ui-equipment-page .ui-hero-copy,
  .ui-credentials-page .ui-hero-copy,
  .ui-process-page .ui-hero-copy,
  .ui-contact-page .ui-hero-copy,
  .ui-credentials-page .ui-hero-inner > * {
    align-self: start;
    transform: none;
  }

  .ui-contact-page .ui-hero {
    padding: 0;
  }

  .ui-equipment-page .ui-color-strip,
  .ui-credentials-page .ui-color-strip {
    display: none;
  }

  .ui-equipment-page .ui-section-label,
  .ui-credentials-page .ui-section-label,
  .ui-process-page .ui-section-label,
  .ui-contact-page .ui-section-label {
    display: inline-flex;
    align-items: center;
    color: #09295d;
    font-size: 14px;
    line-height: 1;
    font-weight: 650;
    padding: 0;
  }

  .ui-equipment-page .ui-section-label::before,
  .ui-credentials-page .ui-section-label::before,
  .ui-process-page .ui-section-label::before,
  .ui-contact-page .ui-section-label::before {
    display: none;
  }

  .ui-equipment-page .ui-section-label::after,
  .ui-credentials-page .ui-section-label::after,
  .ui-process-page .ui-section-label::after,
  .ui-contact-page .ui-section-label::after {
    content: ">";
    position: static;
    width: auto;
    height: auto;
    margin-left: 8px;
    color: rgba(9, 41, 93, 0.54);
    background: none;
    font-size: 14px;
    line-height: 1;
  }

  .ui-equipment-page .ui-hero h1,
  .ui-credentials-page .ui-hero h1,
  .ui-process-page .ui-hero h1,
  .ui-contact-page .ui-hero h1 {
    max-width: 650px;
    margin-top: 26px;
    font-family:
      "Xiaolin Sans",
      "Noto Sans SC",
      "PingFang SC",
      "Microsoft YaHei",
      "Noto Sans CJK SC",
      Arial,
      sans-serif;
    font-size: 38px;
    line-height: 1.24;
    font-weight: 640;
    letter-spacing: 0;
  }

  .ui-equipment-page .ui-hero p,
  .ui-credentials-page .ui-hero p,
  .ui-process-page .ui-hero p,
  .ui-contact-page .ui-hero p {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(10, 34, 76, 0.68);
    font-size: 14px;
    line-height: 1.68;
    font-weight: 400;
  }

  .ui-equipment-page .ui-actions,
  .ui-process-page .ui-actions,
  .ui-contact-page .ui-actions {
    margin-top: 28px;
    gap: 16px;
  }

  .ui-equipment-page .ui-btn,
  .ui-credentials-page .ui-btn,
  .ui-process-page .ui-btn,
  .ui-contact-page .ui-btn {
    font-size: 15px;
    font-weight: 650;
  }

  .ui-credentials-page .ui-mini-card strong,
  .ui-process-page .ui-mini-card strong,
  .ui-contact-page .ui-matrix-card strong {
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
  }

  .ui-credentials-page .ui-mini-card > span:not(.ui-icon),
  .ui-process-page .ui-mini-card > span:not(.ui-icon),
  .ui-contact-page .ui-matrix-card > span:not(.ui-icon) {
    color: rgba(10, 34, 76, 0.7);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 400;
  }

  .ui-contact-page .ui-matrix-card strong {
    font-size: 20px;
  }

  .ui-credentials-page .ui-proofbar strong,
  .ui-process-page .ui-proofbar strong {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
  }

  .ui-credentials-page .ui-proofbar p span,
  .ui-process-page .ui-proofbar p span {
    font-size: 13px;
    font-weight: 400;
  }

  .ui-credentials-page .ui-panel-title h2,
  .ui-process-page .ui-panel-title h2,
  .ui-contact-page .ui-copy-card h2 {
    color: #071f52;
    font-family:
      "Xiaolin Sans",
      "Noto Sans SC",
      "PingFang SC",
      "Microsoft YaHei",
      "Noto Sans CJK SC",
      Arial,
      sans-serif;
    font-size: 28px;
    line-height: 1.24;
    font-weight: 700;
  }

  .ui-contact-page .ui-copy-card p {
    color: rgba(10, 34, 76, 0.68);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
  }

  .ui-contact-page .ui-contact-step strong,
  .ui-contact-page .ui-contact-card h3,
  .ui-process-page .ui-step-card h3,
  .ui-process-page .ui-side-note strong {
    color: #071f52;
    font-size: 18px;
    line-height: 1.24;
    font-weight: 700;
  }

  .ui-contact-page .ui-contact-step span,
  .ui-process-page .ui-step-card p,
  .ui-process-page .ui-side-note p {
    color: rgba(10, 34, 76, 0.68);
    font-size: 13px;
    line-height: 1.58;
    font-weight: 400;
  }

  .ui-contact-page .ui-contact-list span {
    font-size: 14px;
    font-weight: 500;
  }

  .ui-contact-page .ui-contact-list strong,
  .ui-contact-page .ui-contact-list a {
    color: #071f52;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 680;
  }

  .ui-credentials-page .ui-tab,
  .ui-credentials-page .ui-catalog-side .ui-btn {
    font-size: 15px;
    font-weight: 620;
  }

  .ui-credentials-page .ui-data-card span {
    font-size: 12px;
    font-weight: 400;
  }

  .ui-credentials-page .ui-data-card strong {
    color: #071f52;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 620;
  }

  .ui-credentials-page .ui-bottom-strip strong {
    font-size: 16px;
    font-weight: 700;
  }

  .ui-credentials-page .ui-bottom-strip span {
    font-size: 13px;
    font-weight: 400;
  }
}

/* Unified public header: same navigation on home, museum and detail pages. */
.blue-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: 88px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(20, 62, 126, 0.08);
  box-shadow: 0 8px 26px rgba(24, 67, 128, 0.055);
}

.blue-header-inner {
  width: 100%;
  height: 100%;
  padding: 0 72px 0 88px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.blue-home .blue-header-inner {
  grid-template-columns: 360px minmax(0, 1fr);
}

.blue-brand {
  width: 360px;
  height: 50px;
  gap: 0;
}

.blue-brand img {
  width: 315px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.blue-home .blue-brand img {
  width: 315px;
  height: 50px;
}

.blue-brand span {
  display: none;
}

.blue-header-actions,
.blue-phone,
.header-tel {
  display: none !important;
}

.blue-nav {
  justify-self: center;
  width: 100%;
  justify-content: center;
  gap: clamp(42px, 3.25vw, 66px);
  font-family: "Xiaolin Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: rgba(30, 42, 72, 0.92);
}

.blue-nav a {
  min-height: 88px;
}

.blue-nav a[aria-current="page"] {
  color: rgba(30, 42, 72, 0.92);
  font-weight: 700;
}

.blue-nav a::before,
.blue-nav a::after {
  display: none;
}

@media (min-width: 1181px) {
  .blue-nav a::after {
    display: block;
    left: 50%;
    bottom: 18px;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: #246bff;
    transform: translateX(-50%);
    opacity: 0;
  }

  .blue-nav a.is-active,
  .blue-nav a[aria-current="page"] {
    color: #125fe8;
  }

  .blue-nav a.is-active::after,
  .blue-nav a[aria-current="page"]::after {
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .blue-header {
    height: auto;
  }

  .blue-header-inner {
    min-height: 76px;
    padding: 12px 18px 10px;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .blue-home .blue-header-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .blue-brand {
    justify-self: center;
  }

  .blue-nav {
    justify-self: stretch;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding: 0 2px 6px;
    font-size: 14px;
  }

  .blue-nav a {
    min-height: 34px;
    flex: 0 0 auto;
  }

  .blue-nav a::before,
  .blue-nav a::after {
    bottom: 0;
  }
}

/* Homepage reference layout: wide first screen with generated hang-tag hero image. */
@media (min-width: 1181px) {
  .blue-home {
    background:
      radial-gradient(ellipse 900px 380px at 70% 10%, rgba(177, 215, 255, 0.2), transparent 72%),
      linear-gradient(180deg, #f8fcff 0 720px, #f6faff 720px 100%);
  }

  .blue-home .blue-main {
    background:
      linear-gradient(180deg, rgba(246, 251, 255, 0.96) 0 720px, #f8fbff 720px 100%);
  }

  .blue-home .blue-hero {
    min-height: 650px;
    overflow: visible;
    border-bottom: 0;
    background:
      radial-gradient(ellipse 840px 380px at 68% 16%, rgba(178, 214, 255, 0.2), transparent 72%),
      linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
  }

  .blue-home .blue-hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 34%, rgba(255, 255, 255, 0.32) 52%, rgba(230, 242, 255, 0.16) 100%),
      repeating-linear-gradient(151deg, rgba(10, 91, 214, 0.025) 0 1px, transparent 1px 50px);
    opacity: 1;
    filter: none;
  }

  .blue-home .blue-hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0 72%, rgba(255, 255, 255, 0.82) 100%);
    opacity: 1;
  }

  .blue-home .blue-hero-inner,
  .blue-home .blue-section {
    width: min(1904px, calc(100vw - 144px));
  }

  .blue-home .blue-hero-inner {
    min-height: 650px;
    padding-top: 48px;
  }

  .blue-home .blue-hero-copy {
    width: 760px;
    margin-left: 48px;
  }

  .blue-home .blue-kicker {
    margin-bottom: 18px;
    gap: 28px;
  }

  .blue-home .blue-kicker span {
    min-height: 28px;
    padding-inline: 17px;
    border-color: rgba(51, 110, 220, 0.34);
    border-radius: 999px;
    background: rgba(238, 246, 255, 0.88);
    color: #1d63d8;
    font-size: 15px;
    font-weight: 780;
  }

  .blue-home .blue-kicker em {
    color: #071f52;
    font-size: 15px;
    font-weight: 760;
  }

  .blue-home .blue-hero h1 {
    width: 820px;
    font-size: clamp(52px, 3.32vw, 63px);
    line-height: 1.08;
    font-weight: 850;
    color: #071936;
  }

  .blue-home .blue-hero mark {
    margin-right: 0;
    color: #2f82ff;
    background: linear-gradient(180deg, #53a6ff 0%, #1f65ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .blue-home .blue-lead {
    margin-top: 18px;
    color: #071936;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 780;
  }

  .blue-home .blue-proof-row {
    width: 760px;
    margin-top: 26px;
    gap: 26px;
  }

  .blue-home .blue-proof-row div {
    min-height: 52px;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 11px;
  }

  .blue-home .blue-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(70, 126, 225, 0.18);
    box-shadow: 0 10px 22px rgba(35, 97, 180, 0.08);
  }

  .blue-home .blue-proof-row strong {
    color: #071936;
    font-size: 15px;
    font-weight: 800;
  }

  .blue-home .blue-proof-row small {
    color: rgba(6, 26, 68, 0.58);
    font-size: 11px;
    font-weight: 650;
  }

  .blue-home .blue-hero-tags {
    left: clamp(760px, 44vw, 890px);
    right: -72px;
    top: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 420px;
    object-fit: cover;
    object-position: center right;
    opacity: 1;
    filter: saturate(1.03) contrast(1.02);
  }

  .blue-home .blue-about-card,
  .blue-home .blue-stat-card {
    bottom: 20px;
    height: 210px;
    border-color: rgba(130, 176, 229, 0.32);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 52px rgba(32, 82, 145, 0.1);
  }

  .blue-home .blue-about-card {
    width: 812px;
    grid-template-columns: 370px minmax(0, 1fr);
  }

  .blue-home .blue-stat-card {
    width: calc(100% - 840px);
    padding: 30px 34px;
  }

  .blue-home .blue-factory-badge {
    left: 52px;
    bottom: 8px;
    width: 112px;
    height: 70px;
    border-radius: 10px;
  }

  .blue-home .blue-factory-badge strong {
    font-size: 27px;
  }

  .blue-home .blue-about-copy {
    padding: 29px 34px 24px;
  }

  .blue-home .blue-about-copy h2 {
    margin: 0 0 13px;
    font-size: 31px;
    line-height: 1.18;
    font-weight: 800;
  }

  .blue-home .blue-about-copy p {
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 1.58;
    font-weight: 650;
  }

  .blue-home .blue-tags {
    gap: 10px;
    margin-top: 12px;
  }

  .blue-home .blue-tags span {
    height: 24px;
    padding-inline: 13px;
    border-radius: 999px;
    font-size: 11px;
  }

  .blue-home .blue-stat-card dt {
    gap: 8px;
    color: rgba(32, 48, 77, 0.62);
    font-size: 12px;
    font-weight: 620;
  }

  .blue-home .blue-stat-card dt svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
  }

  .blue-home .blue-stat-card dd {
    margin-top: 10px;
  }

  .blue-home .blue-stat-card dd strong {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .blue-home .blue-stat-card dd span {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 720;
  }

  .blue-home .blue-stat-card div:last-child dd strong {
    font-size: 29px;
    line-height: 1.08;
    font-weight: 760;
  }

  .blue-home .blue-services {
    margin-top: 18px;
  }

  .blue-home .blue-card-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .blue-home .blue-service-card {
    height: 126px;
    padding: 24px 22px 16px;
    border-radius: 12px;
  }

  .blue-home .blue-service-card::before {
    display: none;
  }

  .blue-home .blue-service-card span {
    font-size: 17px;
    font-weight: 800;
  }

  .blue-home .blue-service-card p {
    width: 9.5em;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.52;
  }

  .blue-home .blue-service-card img {
    right: 15px;
    width: 42%;
    height: 78%;
    filter: drop-shadow(0 14px 18px rgba(20, 61, 118, 0.12));
  }

  .blue-home .blue-service-card:nth-child(1) img {
    width: 39%;
  }

  .blue-home .blue-service-card:nth-child(2) img {
    right: 6px;
    width: 50%;
  }

  .blue-home .blue-systems {
    margin-top: 20px;
    margin-bottom: 42px;
  }

  .blue-home .blue-choice-card {
    height: 178px;
    grid-template-columns: 1fr;
    grid-template-rows: 82px 96px;
    border-radius: 12px;
  }

  .blue-home .blue-choice-title {
    display: none;
  }

  .blue-home .blue-choice-list {
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .blue-home .blue-choice-list div {
    padding: 15px 18px 13px 118px;
  }

  .blue-home .blue-choice-list svg {
    left: 80px;
    top: 19px;
    width: 42px;
    height: 42px;
  }

  .blue-home .blue-choice-list b {
    font-size: 17px;
    font-weight: 800;
  }

  .blue-home .blue-choice-list span {
    font-size: 11px;
    font-weight: 650;
  }

  .blue-home .blue-flow {
    grid-column: 1;
    grid-row: 2;
  }

  .blue-home .blue-flow ol {
    padding: 0 72px 0 88px;
  }

  .blue-home .blue-flow li {
    min-height: 92px;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 13px;
  }

  .blue-home .blue-flow li:not(:last-child)::after {
    right: 34px;
    top: 35px;
    font-size: 22px;
  }

  .blue-home .blue-flow li span {
    top: 27px;
    left: -40px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .blue-home .blue-flow li svg {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .blue-home .blue-flow li b {
    font-size: 17px;
    font-weight: 800;
  }

  .blue-home .blue-flow li small {
    font-size: 11px;
    font-weight: 650;
  }
}

/* Final mobile polish layer. Desktop reference layout stays untouched. */
@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  img,
  svg,
  video,
  canvas {
    max-width: 100%;
  }

  .blue-header {
    position: sticky;
    top: 0;
    z-index: 90;
    height: auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
  }

  .blue-header-inner,
  .blue-home .blue-header-inner {
    width: 100%;
    min-height: 0;
    padding: 10px 14px 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .blue-brand {
    width: auto;
    height: 42px;
    justify-self: start;
  }

  .blue-brand img,
  .blue-home .blue-brand img {
    width: 258px;
    height: 42px;
    object-fit: contain;
    object-position: left center;
  }

  .blue-nav {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 5px;
    font-size: 14px;
    line-height: 1;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .blue-nav::-webkit-scrollbar {
    display: none;
  }

  .blue-nav a {
    min-height: 36px;
    flex: 0 0 auto;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    white-space: nowrap;
  }

  .blue-nav a.is-active,
  .blue-nav a[aria-current="page"] {
    color: #1d63eb;
    background: rgba(29, 99, 235, 0.08);
  }

  .blue-nav a::before,
  .blue-nav a::after {
    display: none;
  }

  .blue-main,
  .ui-main {
    overflow: hidden;
  }

  .blue-home {
    background:
      radial-gradient(ellipse 520px 250px at 90% 8%, rgba(177, 215, 255, 0.25), transparent 72%),
      linear-gradient(180deg, #f8fcff 0%, #f5f9ff 100%);
  }

  .blue-home .blue-hero {
    min-height: 0;
    padding: 24px 14px 10px;
    overflow: hidden;
    border-bottom: 0;
  }

  .blue-home .blue-hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .blue-home .blue-hero-copy,
  .ui-hero-copy,
  .ui-contact-page .ui-hero-copy,
  .ui-equipment-page .ui-hero-copy,
  .ui-credentials-page .ui-hero-copy,
  .ui-process-page .ui-hero-copy,
  .blue-home .blue-hero-tags,
  .blue-home .blue-about-card,
  .blue-home .blue-stat-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: auto;
  }

  .blue-kicker {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }

  .blue-home .blue-hero h1 {
    margin-top: 16px;
    max-width: 100%;
    font-size: clamp(34px, 10.6vw, 46px);
    line-height: 1.12;
    font-weight: 760;
    letter-spacing: 0;
  }

  .blue-home .blue-hero h1 span {
    display: block;
  }

  .blue-home .blue-hero mark {
    padding-inline: 3px;
    white-space: nowrap;
  }

  .blue-lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
  }

  .blue-proof-row {
    width: calc(100vw - 28px);
    margin-top: 18px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .blue-proof-row::-webkit-scrollbar {
    display: none;
  }

  .blue-proof-row > div {
    flex: 0 0 128px;
    min-height: 72px;
    padding: 12px 10px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
    border: 1px solid rgba(197, 216, 243, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
  }

  .blue-proof-row .blue-icon {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
  }

  .blue-proof-row strong {
    font-size: 13px;
  }

  .blue-proof-row small {
    font-size: 11px;
  }

  .blue-home .blue-hero-tags {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(33, 77, 134, 0.12);
  }

  .blue-home .blue-about-card {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 14px;
  }

  .blue-factory-frame {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .blue-factory-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blue-factory-badge {
    left: 14px;
    bottom: 12px;
    min-width: 92px;
    min-height: 48px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .blue-factory-badge strong {
    font-size: 20px;
  }

  .blue-about-copy {
    padding: 18px 16px 20px;
  }

  .blue-about-copy h2 {
    font-size: 24px;
    line-height: 1.22;
  }

  .blue-about-copy p {
    font-size: 13px;
    line-height: 1.65;
  }

  .blue-tags {
    gap: 8px;
  }

  .blue-home .blue-tags span {
    height: 26px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .blue-home .blue-stat-card {
    min-height: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 14px;
  }

  .blue-home .blue-stat-card div {
    min-height: 94px;
    padding: 12px 8px;
    border-left: 0;
    border-top: 1px solid rgba(197, 216, 243, 0.74);
  }

  .blue-home .blue-stat-card div:nth-child(-n + 2) {
    border-top: 0;
  }

  .blue-home .blue-stat-card dt {
    justify-content: center;
    font-size: 12px;
  }

  .blue-home .blue-stat-card dt svg {
    width: 26px;
    height: 26px;
  }

  .blue-home .blue-stat-card dd strong {
    font-size: 31px;
    line-height: 1.08;
  }

  .blue-home .blue-stat-card div:last-child dd strong {
    font-size: 24px;
  }

  .blue-home .blue-services,
  .blue-home .blue-systems {
    width: calc(100vw - 28px);
    margin: 14px auto 0;
  }

  .blue-home .blue-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .blue-home .blue-service-card {
    min-height: 116px;
    height: auto;
    padding: 16px 12px;
    border-radius: 12px;
  }

  .blue-home .blue-service-card span {
    font-size: 16px;
    line-height: 1.2;
  }

  .blue-home .blue-service-card p {
    width: 7em;
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.45;
  }

  .blue-home .blue-service-card img {
    right: 8px;
    bottom: 8px;
    width: 48%;
    height: 68%;
    object-fit: contain;
  }

  .blue-home .blue-choice-card {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    border-radius: 14px;
    overflow: hidden;
  }

  .blue-home .blue-choice-title {
    display: none;
  }

  .blue-home .blue-choice-list {
    grid-column: auto;
    grid-row: auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blue-home .blue-choice-list div {
    min-height: 92px;
    padding: 16px 12px 12px 56px;
  }

  .blue-home .blue-choice-list div:last-child {
    grid-column: 1 / -1;
  }

  .blue-home .blue-choice-list svg {
    left: 14px;
    top: 20px;
    width: 34px;
    height: 34px;
  }

  .blue-home .blue-choice-list b {
    font-size: 15px;
  }

  .blue-home .blue-choice-list span {
    font-size: 11px;
  }

  .blue-home .blue-flow {
    grid-column: auto;
    grid-row: auto;
    padding: 0 14px 14px;
  }

  .blue-flow-head {
    display: none;
  }

  .blue-home .blue-flow ol {
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .blue-home .blue-flow li {
    min-height: 66px;
    padding: 10px 8px 10px 52px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
    align-items: center;
    border: 1px solid rgba(197, 216, 243, 0.74);
    border-radius: 10px;
    background: #fff;
  }

  .blue-home .blue-flow li:not(:last-child)::after {
    display: none;
  }

  .blue-home .blue-flow li span {
    top: 16px;
    left: 12px;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .blue-home .blue-flow li svg {
    width: 34px;
    height: 34px;
  }

  .blue-home .blue-flow li b {
    font-size: 15px;
  }

  .blue-home .blue-flow li small {
    font-size: 11px;
  }

  .blue-equipment-card {
    width: calc(100vw - 28px);
    min-height: 0;
    margin: 14px auto 26px;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    border-radius: 14px;
  }

  .blue-equipment-card img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
  }

  .ui-page .ui-main {
    background: linear-gradient(180deg, #f8fbff 0%, #fff 62%, #f5f9ff 100%);
  }

  .ui-page .ui-hero {
    padding: 0;
  }

  .ui-equipment-page .ui-hero-inner,
  .ui-credentials-page .ui-hero-inner,
  .ui-process-page .ui-hero-inner,
  .ui-contact-page .ui-hero-inner,
  .ui-hero-inner {
    width: calc(100vw - 28px);
    min-height: 0;
    padding: 28px 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .ui-contact-page .ui-hero-inner {
    padding: 24px 0 28px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ui-section-label {
    font-size: 13px;
  }

  .ui-color-strip {
    display: none;
  }

  .ui-equipment-page .ui-hero h1,
  .ui-credentials-page .ui-hero h1,
  .ui-process-page .ui-hero h1,
  .ui-contact-page .ui-hero h1,
  .ui-hero h1 {
    width: 100% !important;
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(25px, 7.1vw, 27px);
    line-height: 1.22;
    font-weight: 640;
    white-space: normal !important;
    text-wrap: auto;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .ui-hero h1 br {
    display: initial !important;
  }

  .ui-equipment-page .ui-hero p,
  .ui-credentials-page .ui-hero p,
  .ui-process-page .ui-hero p,
  .ui-contact-page .ui-hero p,
  .ui-hero p {
    width: 100% !important;
    max-width: 100%;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.68;
    font-weight: 400;
    white-space: normal !important;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .ui-actions {
    width: 100%;
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .ui-btn {
    width: 100%;
    min-width: 0;
    height: 44px;
    font-size: 14px;
  }

  .ui-hero-cards,
  .ui-hero-matrix {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .ui-mini-card,
  .ui-matrix-card {
    min-height: 126px;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .ui-mini-card .ui-icon,
  .ui-matrix-card .ui-icon,
  .ui-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .ui-icon svg {
    width: 26px;
    height: 26px;
  }

  .ui-mini-card strong,
  .ui-matrix-card strong {
    font-size: 18px;
    line-height: 1.22;
  }

  .ui-mini-card > span:not(.ui-icon),
  .ui-matrix-card > span:not(.ui-icon) {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.52;
  }

  .ui-proofbar,
  .ui-content,
  .ui-bottom-strip,
  .ui-footer-inner,
  .ui-footer-bottom {
    width: calc(100vw - 28px);
  }

  .ui-proofbar {
    min-height: 0;
    margin-top: 12px;
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    border-radius: 12px;
  }

  .ui-proofbar > div {
    height: auto;
    min-height: 62px;
    padding: 10px 8px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(197, 216, 243, 0.72);
  }

  .ui-proofbar > div:first-child {
    border-top: 0;
  }

  .ui-proofbar .ui-icon {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .ui-proofbar strong {
    font-size: 15px;
  }

  .ui-proofbar p span {
    font-size: 12px;
  }

  .ui-content {
    margin-top: 14px;
  }

  .ui-catalog-layout,
  .ui-equipment-page .ui-catalog-layout,
  .ui-credentials-page .ui-catalog-layout {
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    border-radius: 14px;
  }

  .ui-catalog-side {
    padding-bottom: 10px;
    border-radius: 12px;
  }

  .ui-tab {
    height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }

  .ui-catalog-side p {
    margin: 14px 16px;
    font-size: 13px;
  }

  .ui-grid,
  .ui-equipment-grid,
  .ui-process-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

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

  .ui-equipment-page .ui-equipment-grid .ui-data-card {
    min-height: 122px;
    padding: 10px;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card img {
    height: 48px;
  }

  .ui-equipment-page .ui-equipment-grid .ui-data-card strong {
    font-size: 13px;
  }

  .ui-credentials-page .ui-data-card {
    min-height: 70px;
    grid-template-columns: 70px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .ui-process-grid {
    padding: 12px;
  }

  .ui-step-card,
  .ui-side-note {
    min-height: 0;
    padding: 16px;
  }

  .ui-step-card::after {
    display: none;
  }

  .ui-info-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .ui-copy-card,
  .ui-contact-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .ui-copy-card h2 {
    font-size: 26px;
  }

  .ui-copy-card p {
    font-size: 14px;
  }

  .ui-contact-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .ui-contact-step {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
  }

  .ui-contact-step + .ui-contact-step {
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid var(--ui-line);
  }

  .ui-contact-step .ui-icon {
    width: 44px;
    height: 44px;
  }

  .ui-contact-list div {
    min-height: 0;
    padding: 12px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .ui-contact-list span {
    font-size: 13px;
  }

  .ui-contact-list strong,
  .ui-contact-list a {
    font-size: 16px;
  }

  .site-footer-standard {
    margin-top: 24px;
  }

  .site-footer-standard .ui-footer-inner {
    width: calc(100vw - 32px);
    padding: 30px 0 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
  }

  .site-footer-standard .ui-footer-brandmark img {
    width: 58px;
    height: 58px;
  }

  .site-footer-standard .ui-footer-brandmark strong {
    font-size: 18px;
  }

  .site-footer-standard .ui-footer-brandmark em,
  .site-footer-standard .ui-footer-logo p,
  .site-footer-standard .ui-footer-contact a,
  .site-footer-standard .ui-footer-follow p {
    font-size: 13px;
    line-height: 1.55;
  }

  .site-footer-standard .ui-footer-qr-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 128px));
    gap: 12px;
  }

  .site-footer-standard .ui-footer-qr-list figure {
    min-width: 0;
    padding: 10px;
    border-radius: 10px;
  }

  .site-footer-standard .ui-footer-follow img {
    width: 108px;
    height: 108px;
  }

  .site-footer-standard .ui-footer-bottom {
    width: calc(100vw - 32px);
    padding: 16px 0 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    font-size: 12px;
  }

  .site-footer-standard .ui-footer-legal {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .blue-brand img,
  .blue-home .blue-brand img {
    width: 230px;
  }

  .blue-home .blue-hero h1 {
    font-size: 36px;
  }

  .blue-home .blue-card-grid,
  .blue-home .blue-choice-list,
  .blue-home .blue-stat-card,
  .ui-equipment-page .ui-equipment-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blue-home .blue-stat-card div:nth-child(2) {
    border-top: 1px solid rgba(197, 216, 243, 0.74);
  }

  .blue-home .blue-choice-list div:last-child {
    grid-column: auto;
  }

  .blue-home .blue-service-card {
    min-height: 112px;
  }

  .blue-home .blue-service-card img {
    width: 43%;
  }

  .blue-home .blue-stat-card div:last-child dd strong {
    font-size: 22px;
  }

  .ui-equipment-page .ui-hero h1,
  .ui-credentials-page .ui-hero h1,
  .ui-process-page .ui-hero h1,
  .ui-contact-page .ui-hero h1,
  .ui-hero h1 {
    font-size: 26px;
  }

  .site-footer-standard .ui-footer-qr-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Inner page shared cards */
.ui-equipment-page .ui-hero-cards,
.ui-credentials-page .ui-hero-cards,
.ui-process-page .ui-hero-cards {
  width: min(720px, 100%);
  height: auto;
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ui-equipment-page .ui-mini-card,
.ui-credentials-page .ui-mini-card,
.ui-process-page .ui-mini-card,
.ui-equipment-page .ui-mini-card:first-child {
  height: 268px;
  min-height: 268px;
  padding: 34px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202, 220, 248, 0.88);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
  box-shadow: 0 20px 48px rgba(28, 75, 130, 0.09);
  backdrop-filter: blur(7px);
  text-align: center;
}

.ui-equipment-page .ui-mini-card .ui-icon,
.ui-credentials-page .ui-mini-card .ui-icon,
.ui-process-page .ui-mini-card .ui-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 24px;
  border-radius: 50%;
  color: #3466df !important;
  background: #eef4ff;
}

.ui-equipment-page .ui-mini-card .ui-icon svg,
.ui-credentials-page .ui-mini-card .ui-icon svg,
.ui-process-page .ui-mini-card .ui-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.25;
}

.ui-equipment-page .ui-mini-card strong,
.ui-credentials-page .ui-mini-card strong,
.ui-process-page .ui-mini-card strong {
  color: #071a3d;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 750;
}

.ui-equipment-page .ui-mini-card > span:not(.ui-icon),
.ui-credentials-page .ui-mini-card > span:not(.ui-icon),
.ui-process-page .ui-mini-card > span:not(.ui-icon) {
  margin-top: 16px;
  color: rgba(10, 34, 76, 0.68);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 400;
}

.ui-equipment-page .ui-proofbar,
.ui-credentials-page .ui-proofbar,
.ui-process-page .ui-proofbar {
  width: min(1498px, calc(100vw - clamp(48px, 10.3vw, 172px)));
  min-height: 92px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  border: 1px solid rgba(210, 226, 247, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(26, 74, 140, 0.08);
}

.ui-equipment-page .ui-proofbar > div,
.ui-credentials-page .ui-proofbar > div,
.ui-process-page .ui-proofbar > div {
  min-width: 0;
  height: 56px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-left: 1px solid rgba(197, 216, 243, 0.78);
}

.ui-equipment-page .ui-proofbar > div:first-child,
.ui-credentials-page .ui-proofbar > div:first-child,
.ui-process-page .ui-proofbar > div:first-child {
  border-left: 0;
}

.ui-equipment-page .ui-proofbar .ui-icon,
.ui-credentials-page .ui-proofbar .ui-icon,
.ui-process-page .ui-proofbar .ui-icon {
  width: 52px;
  height: 52px;
  margin: 0;
  transform: none;
  border-radius: 50%;
  color: #3466df !important;
  background: #eef4ff;
}

.ui-equipment-page .ui-proofbar .ui-icon svg,
.ui-credentials-page .ui-proofbar .ui-icon svg,
.ui-process-page .ui-proofbar .ui-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 2.25;
}

.ui-equipment-page .ui-proofbar p,
.ui-credentials-page .ui-proofbar p,
.ui-process-page .ui-proofbar p {
  margin: 0;
  transform: none;
}

.ui-equipment-page .ui-proofbar strong,
.ui-credentials-page .ui-proofbar strong,
.ui-process-page .ui-proofbar strong {
  color: #071a3d;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 750;
}

.ui-equipment-page .ui-proofbar p span,
.ui-credentials-page .ui-proofbar p span,
.ui-process-page .ui-proofbar p span {
  margin-top: 7px;
  color: rgba(10, 34, 76, 0.66);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
}

@media (max-width: 1180px) {
  .ui-equipment-page .ui-hero-cards,
  .ui-credentials-page .ui-hero-cards,
  .ui-process-page .ui-hero-cards {
    width: 100%;
    gap: 16px;
  }

  .ui-equipment-page .ui-proofbar,
  .ui-credentials-page .ui-proofbar,
  .ui-process-page .ui-proofbar {
    padding: 12px 18px;
  }

  .ui-equipment-page .ui-proofbar > div,
  .ui-credentials-page .ui-proofbar > div,
  .ui-process-page .ui-proofbar > div {
    padding: 0 16px;
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .ui-equipment-page .ui-hero-cards,
  .ui-credentials-page .ui-hero-cards,
  .ui-process-page .ui-hero-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .ui-equipment-page .ui-mini-card,
  .ui-credentials-page .ui-mini-card,
  .ui-process-page .ui-mini-card,
  .ui-equipment-page .ui-mini-card:first-child {
    height: auto;
    min-height: 138px;
    padding: 24px 20px;
  }

  .ui-equipment-page .ui-proofbar,
  .ui-credentials-page .ui-proofbar,
  .ui-process-page .ui-proofbar {
    width: calc(100vw - 28px);
    min-height: 0;
    margin-top: 12px;
    padding: 10px;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    border-radius: 14px;
  }

  .ui-equipment-page .ui-proofbar > div,
  .ui-credentials-page .ui-proofbar > div,
  .ui-process-page .ui-proofbar > div {
    height: auto;
    min-height: 64px;
    padding: 10px 8px;
    grid-template-columns: 46px minmax(0, 1fr);
    border-left: 0;
    border-top: 1px solid rgba(197, 216, 243, 0.72);
  }

  .ui-equipment-page .ui-proofbar > div:first-child,
  .ui-credentials-page .ui-proofbar > div:first-child,
  .ui-process-page .ui-proofbar > div:first-child {
    border-top: 0;
  }

  .ui-equipment-page .ui-proofbar .ui-icon,
  .ui-credentials-page .ui-proofbar .ui-icon,
  .ui-process-page .ui-proofbar .ui-icon {
    width: 42px;
    height: 42px;
  }

  .ui-equipment-page .ui-proofbar .ui-icon svg,
  .ui-credentials-page .ui-proofbar .ui-icon svg,
  .ui-process-page .ui-proofbar .ui-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .ui-equipment-page .ui-mini-card strong,
  .ui-credentials-page .ui-mini-card strong,
  .ui-process-page .ui-mini-card strong {
    font-size: 20px;
  }

  .ui-equipment-page .ui-mini-card > span:not(.ui-icon),
  .ui-credentials-page .ui-mini-card > span:not(.ui-icon),
  .ui-process-page .ui-mini-card > span:not(.ui-icon) {
    font-size: 13px;
  }
}

/* Homepage choice bar: align with the inner-page proofbar rhythm. */
.blue-home .blue-choice-card {
  height: 194px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 96px 98px;
  overflow: hidden;
  border: 1px solid rgba(210, 226, 247, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 40px rgba(26, 74, 140, 0.09);
}

.blue-home .blue-choice-title {
  display: none !important;
}

.blue-home .blue-choice-list {
  grid-column: 1;
  grid-row: 1;
  min-height: 96px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(210, 226, 247, 0.82);
  background: transparent;
}

.blue-home .blue-choice-list > div {
  min-width: 0;
  min-height: 64px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  column-gap: 16px;
  row-gap: 3px;
  border-left: 1px solid rgba(197, 216, 243, 0.72);
}

.blue-home .blue-choice-list > div:first-child {
  border-left: 0;
}

.blue-home .blue-choice-list > div::before {
  content: "";
  display: block;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #edf4ff;
}

.blue-home .blue-choice-list svg {
  position: relative;
  left: auto;
  top: auto;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / 3;
  place-self: center;
  width: 31px;
  height: 31px;
  color: #3b65dc;
  transform: none;
}

.blue-home .blue-choice-list b {
  grid-column: 2;
  grid-row: 1;
  color: #071936;
  font-size: 17px;
  line-height: 1.16;
  font-weight: 850;
}

.blue-home .blue-choice-list span {
  grid-column: 2;
  grid-row: 2;
  margin-top: 2px;
  color: #68748a;
  font-size: 12px;
  line-height: 1.24;
  font-weight: 650;
}

.blue-home .blue-flow {
  grid-column: 1;
  grid-row: 2;
  border-top: 0;
  background: transparent;
}

.blue-home .blue-flow ol {
  padding: 0 30px;
  gap: 22px;
}

.blue-home .blue-flow li {
  min-height: 74px;
  padding: 13px 8px 12px 88px;
  display: block;
}

.blue-home .blue-flow li:not(:last-child)::after {
  display: none;
}

.blue-home .blue-flow li span {
  left: 10px;
  top: 24px;
  width: 30px;
  height: 30px;
}

.blue-home .blue-flow li svg {
  position: absolute;
  left: 50px;
  top: 22px;
  width: 34px;
  height: 34px;
  margin: 0;
}

.blue-home .blue-flow li b {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 850;
}

.blue-home .blue-flow li small {
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.2;
}

.ui-contact-card,
.ui-contact-card * {
  font-style: normal;
}

.ui-contact-list strong,
.ui-contact-list a {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 780;
  letter-spacing: 0;
}

.ui-contact-list span {
  font-weight: 650;
}

@media (max-width: 1180px) {
  .blue-home .blue-choice-card {
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto;
  }

  .blue-home .blue-choice-list {
    min-height: 0;
    padding: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blue-home .blue-choice-list > div {
    min-height: 72px;
    padding: 10px 12px;
    border-left: 0;
    border-top: 1px solid rgba(197, 216, 243, 0.72);
  }

  .blue-home .blue-choice-list > div:nth-child(-n + 2) {
    border-top: 0;
  }

  .blue-home .blue-choice-list > div:nth-child(2n) {
    border-left: 1px solid rgba(197, 216, 243, 0.72);
  }

  .blue-home .blue-choice-list > div:last-child {
    grid-column: 1 / -1;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .blue-home .blue-choice-card {
    border-radius: 16px;
  }

  .blue-home .blue-choice-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .blue-home .blue-choice-list > div,
  .blue-home .blue-choice-list > div:nth-child(2n),
  .blue-home .blue-choice-list > div:last-child {
    grid-column: auto;
    border-left: 0;
  }

  .blue-home .blue-choice-list > div:nth-child(2) {
    border-top: 1px solid rgba(197, 216, 243, 0.72);
  }

  .blue-home .blue-choice-list > div::before {
    width: 46px;
    height: 46px;
  }

  .blue-home .blue-choice-list svg {
    width: 26px;
    height: 26px;
  }

  .blue-home .blue-choice-list > div {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
  }

  .blue-home .blue-flow {
    padding: 10px;
  }

  .blue-home .blue-flow ol {
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .blue-home .blue-flow li {
    min-height: 64px;
    padding: 11px 12px 11px 92px;
    display: block;
    border: 1px solid rgba(197, 216, 243, 0.72);
    border-radius: 12px;
  }

  .blue-home .blue-flow li span {
    left: 14px;
    top: 18px;
  }

  .blue-home .blue-flow li svg {
    position: absolute;
    left: 50px;
    top: 17px;
    width: 31px;
    height: 31px;
    margin: 0;
  }

  .blue-home .blue-flow li b,
  .blue-home .blue-flow li small {
    white-space: normal;
  }
}

/* Final credentials list sizing: keep the original compact 4-column rhythm. */
.ui-credentials-page .ui-catalog-layout {
  grid-template-columns: minmax(0, 1fr);
}

.ui-credentials-page .ui-catalog-side {
  display: none;
}

.ui-credentials-page .ui-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(92px, auto);
  gap: 12px;
}

.ui-credentials-page .ui-data-card {
  min-height: 92px;
  padding: 12px 16px;
  grid-template-columns: 76px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  border-radius: 10px;
}

.ui-credentials-page .ui-data-card img {
  width: 70px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}

.ui-credentials-page .ui-data-card p {
  min-width: 0;
}

.ui-credentials-page .ui-data-card span {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 650;
}

.ui-credentials-page .ui-data-card strong {
  display: -webkit-box;
  min-height: 38px;
  margin-top: 4px;
  overflow: hidden;
  color: #071936;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ui-credentials-page .ui-data-card em {
  align-self: center;
  justify-self: center;
  font-size: 22px;
}

@media (max-width: 1180px) {
  .ui-credentials-page .ui-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ui-credentials-page .ui-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: minmax(92px, auto);
  }

  .ui-credentials-page .ui-data-card {
    min-height: 92px;
    padding: 14px;
    grid-template-columns: 96px minmax(0, 1fr) 20px;
    gap: 12px;
  }

  .ui-credentials-page .ui-data-card img {
    width: 88px;
    height: 58px;
  }

  .ui-credentials-page .ui-data-card strong {
    min-height: 38px;
    font-size: 16px;
  }
}
