@font-face {
  font-family: "Xinyue Source Han";
  src: url("/assets/fonts/SourceHanSansCN-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Xinyue Source Han";
  src: url("/assets/fonts/SourceHanSansCN-Medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Xinyue Source Han";
  src: url("/assets/fonts/SourceHanSansCN-Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Xinyue Source Sans";
  src: url("/assets/fonts/SourceSans3-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Xinyue Source Sans";
  src: url("/assets/fonts/SourceSans3-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b1724;
  --muted: #4f6479;
  --soft: #f2f7fb;
  --paper: #f8fbfd;
  --line: #dce8f1;
  --blue: #0076c8;
  --blue-dark: #063f68;
  --cyan: #e7f6ff;
  --shadow: 0 18px 42px rgba(12, 36, 62, .08);
  --radius: 8px;
  --font-cn: "Xinyue Source Han", "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-latin: "Xinyue Source Sans", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-cn);
  color: var(--ink);
  background: #fbfdff;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(480px, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(24px, 3vw, 56px);
  border-bottom: 1px solid rgba(15, 38, 64, .09);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 236px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3vw, 52px);
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 12px 0;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.text-action {
  border: 0;
  background: transparent;
  color: #20364c;
  font-weight: 700;
  cursor: pointer;
}

.quote-button,
.primary,
.secondary,
.add-quote,
.filter-button,
.category-menu-item summary {
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.quote-button {
  border: 0;
  padding: 11px 16px;
  color: #fff;
  background: var(--blue);
  font-size: 16px;
}

.quote-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: clamp(300px, 27vw, 430px);
  overflow: hidden;
  background: #07131f;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: .88;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 15, 28, .94), rgba(4, 15, 28, .66) 42%, rgba(4, 15, 28, .22) 72%, rgba(4, 15, 28, .48)),
    linear-gradient(180deg, rgba(4, 15, 28, .1), rgba(4, 15, 28, .45));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(300px, 27vw, 430px);
  max-width: 780px;
  margin-left: max(28px, calc((100vw - 1440px) / 2));
  margin-right: auto;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.hero .section-kicker {
  color: #7fd6ff;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.32;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-content p:not(.section-kicker) {
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.primary:active,
.secondary:active,
.quote-button:active,
.add-quote:active {
  transform: translateY(1px);
}

.primary {
  border: 1px solid var(--blue);
  color: #fff;
  background: var(--blue);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.secondary.dark {
  border-color: var(--line);
  color: var(--blue-dark);
  background: #fff;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -32px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-panel div {
  min-height: 92px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

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

.trust-panel strong {
  display: block;
  color: var(--blue-dark);
  font-size: 30px;
  line-height: 1;
}

.trust-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head p {
  max-width: 760px;
  margin-bottom: 0;
}

.more-link {
  color: var(--blue-dark);
  font-weight: 800;
}

.product-zone {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
  padding: 74px 0 44px;
}

.side-product-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.side-product-nav strong,
.side-product-nav a,
.side-product-nav summary {
  display: block;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 800;
}

.side-product-nav strong {
  border-radius: 7px 7px 0 0;
  color: #fff;
  background: var(--blue);
}

.side-product-nav a:hover,
.side-product-nav summary:hover,
.category-menu-item[open] > summary,
.category-menu-item.active > summary {
  background: var(--cyan);
}

.category-menu-item {
  position: relative;
}

.category-menu-item summary {
  list-style: none;
}

.category-menu-item summary::-webkit-details-marker {
  display: none;
}

.category-menu-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
}

.category-menu-item[open] > summary::after {
  content: "-";
}

.category-submenu {
  display: grid;
  gap: 6px;
  padding: 10px;
  background: #fff;
}

.side-product-nav .category-submenu {
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  z-index: 10;
  width: 280px;
  max-height: min(480px, calc(100vh - 140px));
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.side-product-nav .category-submenu a,
.product-filter .category-submenu a {
  padding: 10px 12px;
  border: 0;
  border-radius: 5px;
  color: #21425f;
  font-size: 14px;
  font-weight: 700;
}

.side-product-nav .category-menu-item:not([open]) .category-submenu {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .side-product-nav .category-menu-item:hover .category-submenu,
  .side-product-nav .category-menu-item:focus-within .category-submenu {
    display: grid;
  }
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 390px);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 12px;
}

.product-rail::-webkit-scrollbar,
.product-list::-webkit-scrollbar {
  height: 10px;
}

.product-rail::-webkit-scrollbar-thumb,
.product-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c8d8e6;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #dce8f1;
  border-radius: var(--radius);
  background: #fff;
}

.product-card:hover {
  border-color: #b8d7ee;
  box-shadow: 0 10px 24px rgba(0, 118, 200, .08);
}

.product-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.product-body h3 a:hover {
  color: var(--blue);
}

.product-body p {
  flex: 1;
  margin-bottom: 16px;
  color: #40576d;
  font-size: 14px;
  line-height: 1.72;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--blue-dark);
  background: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.add-quote {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.add-quote.added {
  color: #fff;
  background: var(--blue);
}

.category-band,
.about-band,
.page-hero {
  margin-top: 50px;
  padding: 72px 0;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.category-grid article,
.split-card,
.steps div,
.detail-sections article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-grid article {
  padding: 28px;
  box-shadow: none;
}

.category-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 40px;
  align-items: center;
  padding: 82px 0 34px;
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.clean-list li {
  padding-left: 22px;
  position: relative;
  color: #24384d;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.split-card {
  padding: 34px;
  background: #f7fbff;
}

.split-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 24px;
}

.process {
  padding: 54px 0 70px;
}

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

.steps div {
  padding: 26px;
  box-shadow: none;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.about-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-more-link {
  margin-top: 18px;
}

.about-page {
  background: #fff;
}

.about-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.about-hero {
  position: relative;
  min-height: clamp(460px, 42vw, 620px);
  overflow: hidden;
  background: #081522;
}

.about-hero-compact,
.about-hero-compact .about-hero-content {
  min-height: clamp(390px, 34vw, 520px);
}

.about-hero-image,
.about-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-image {
  object-fit: cover;
  object-position: center;
  opacity: .9;
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 16, 29, .94), rgba(5, 16, 29, .72) 42%, rgba(5, 16, 29, .2) 78%),
    linear-gradient(180deg, rgba(5, 16, 29, .08), rgba(5, 16, 29, .56));
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(460px, 42vw, 620px);
  max-width: 820px;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.about-hero-content .section-kicker {
  color: #7fd6ff;
}

.about-hero-content .about-label {
  color: #7fd6ff;
}

.about-hero-content p:not(.section-kicker) {
  max-width: 720px;
  color: #e5f3fb;
  font-size: 19px;
  line-height: 1.8;
}

.about-hero-actions,
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 56px;
  padding: 76px 0 64px;
}

.about-narrative {
  display: grid;
  grid-template-columns: minmax(420px, .96fr) minmax(0, 1.04fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: center;
  padding: clamp(64px, 7vw, 104px) 0;
}

.about-narrative-reverse .about-narrative-image {
  order: 2;
}

.about-narrative-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbfd, #eef6fb);
}

.about-narrative-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.about-narrative-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-narrative-copy {
  max-width: 720px;
}

.about-narrative-copy h2,
.about-direction h2 {
  max-width: 700px;
  color: var(--ink);
  text-wrap: balance;
}

.about-narrative-copy p:not(.about-label),
.about-direction p {
  max-width: 68ch;
  color: #2f465d;
  font-size: 18px;
  line-height: 1.95;
  text-wrap: pretty;
}

.about-direction {
  padding: clamp(58px, 6vw, 86px) 0;
}

.about-direction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-direction-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #c7ddeb;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 800;
}

.about-intro-copy p,
.about-story-copy p,
.about-products p,
.about-cta p {
  color: #344b62;
  font-size: 17px;
  line-height: 1.85;
}

.about-capability-band {
  padding: 72px 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

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

.about-capability-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 30px rgba(12, 36, 62, .05);
}

.about-capability-grid span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.about-capability-grid h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.about-capability-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.about-visual-story {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
  padding: 82px 0;
}

.about-story-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-products {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
  padding: 12px 0 78px;
}

.about-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-product-list span {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-dark);
  background: linear-gradient(180deg, #fff, #f6fbff);
  font-weight: 800;
}

.about-cta {
  padding: 70px 0;
  background: #eaf6fc;
}

.about-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.about-cta h2 {
  max-width: 760px;
}

.about-cta p {
  max-width: 820px;
}

footer {
  color: #d8e9f6;
  background: #073f68;
}

.footer-main {
  display: grid;
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
  grid-template-columns: 1.4fr 1fr .8fr 1fr;
  gap: 48px;
  padding: 54px 0;
}

.footer-main img {
  width: 230px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 4px;
}

.footer-main strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
}

.footer-main p,
.footer-main a {
  display: block;
  margin: 0 0 10px;
  color: #d8e9f6;
}

.footer-bottom {
  display: flex;
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #b9d5e8;
  font-size: 14px;
}

.page-hero.compact {
  margin-top: 0;
  padding: 58px 0;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
}

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

.product-center {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  padding: 54px 0 72px;
}

.product-filter {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-filter strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 18px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  background: #fff;
  text-align: left;
  padding: 0 14px;
}

.filter-button.active,
.filter-button:hover,
.product-filter .category-menu-item.active > summary,
.product-filter .category-menu-item[open] > summary {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.product-filter .category-menu-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.product-filter .category-menu-item summary {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--blue-dark);
  background: #fff;
}

.product-filter .category-menu-item.active > summary,
.product-filter .category-menu-item[open] > summary {
  color: #fff;
  background: var(--blue);
}

.product-filter .category-submenu {
  border-top: 1px solid var(--line);
  background: #f9fcff;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.search-row input {
  width: min(560px, 100%);
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.search-row span {
  color: var(--muted);
  font-weight: 700;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.contact-hero {
  border-bottom: 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 36px;
  align-items: center;
}

.contact-promise,
.contact-info-panel,
.contact-form,
.contact-proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-promise {
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-promise strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 24px;
}

.contact-promise span {
  color: var(--muted);
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
  padding: 58px 0 70px;
}

.contact-info-panel,
.contact-form {
  padding: 30px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-methods div {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-methods div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.contact-methods a,
.contact-methods strong {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 800;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cddfec;
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .primary {
  margin-top: 18px;
}

.form-status {
  min-height: 28px;
  margin: 12px 0 0;
  color: var(--blue);
  font-weight: 800;
}

.contact-proof-band {
  padding: 68px 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.contact-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.contact-proof-grid article {
  padding: 26px;
}

.contact-proof-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
  padding: 56px 0 28px;
}

.detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-summary h1 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.price-box {
  display: inline-grid;
  gap: 4px;
  margin: 18px 0 6px;
  padding: 16px 20px;
  border: 1px solid #b8d7ee;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #eef8ff);
}

.price-box span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.price-box strong {
  color: var(--blue);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-actions .add-quote {
  width: auto;
  min-width: 180px;
  padding-inline: 22px;
}

.quantity-field {
  display: flex;
  width: min(220px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-dark);
  background: #fff;
}

.quantity-field input {
  width: 90px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px;
}

.detail-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 72px;
  min-width: 0;
}

.detail-sections article {
  padding: 28px;
  min-width: 0;
}

.detail-sections .wide {
  grid-column: 1 / -1;
  min-width: 0;
}

.procurement-note h2 {
  margin-bottom: 18px;
}

.procurement-note {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.detail-sections ul {
  margin: 0;
  padding-left: 22px;
  color: #263c52;
  line-height: 1.8;
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
}

.spec-section .table-wrap {
  padding: 0 24px 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: #24384d;
  vertical-align: top;
}

.config-zone {
  padding-bottom: 28px;
}

.config-panel,
.glossary-panel,
.spec-section,
.optical-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.config-panel {
  padding: 26px;
  background: linear-gradient(180deg, #fff, #f6fbff);
}

.config-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.config-head h2 {
  margin-bottom: 0;
}

.glossary-panel summary,
.spec-section summary {
  min-height: 58px;
  padding: 18px 24px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.glossary-panel summary::-webkit-details-marker,
.spec-section summary::-webkit-details-marker {
  display: none;
}

.glossary-panel summary::after,
.spec-section summary::after {
  content: "+";
  float: right;
  color: var(--blue);
}

.glossary-panel[open] summary::after,
.spec-section[open] summary::after {
  content: "-";
}

.config-content {
  display: grid;
  gap: 20px;
}

.order-model,
.selected-config {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.order-model span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.order-model strong,
.selected-config {
  color: var(--blue-dark);
  font-weight: 900;
}

.option-group {
  display: grid;
  gap: 10px;
}

.option-group strong {
  color: #20364c;
  font-size: 15px;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #b9d7ec;
  border-radius: 4px;
  color: var(--blue-dark);
  background: #fff;
  cursor: pointer;
}

.option-button:hover,
.option-button:focus,
.option-button.active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.custom-requirements {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.custom-requirements textarea {
  min-height: 86px;
}

.option-help {
  min-height: 42px;
  padding: 12px 14px;
  border: 1px solid #b9d7ec;
  border-radius: 6px;
  color: #21425f;
  background: #eef8ff;
  font-size: 14px;
  line-height: 1.6;
}

.option-help.active {
  border-color: var(--blue);
  background: #e7f6ff;
}

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

.optical-summary {
  padding: 28px;
}

.compact-head {
  margin-bottom: 20px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.metric-card h3 {
  display: block;
  min-height: 44px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--blue-dark);
  background: var(--soft);
  font-size: 17px;
}

.metric-table {
  margin-bottom: 12px;
  font-size: 14px;
}

.metric-table th,
.metric-table td {
  padding: 9px 10px;
  border: 1px solid var(--line);
  text-align: left;
}

.metric-table th {
  color: var(--blue-dark);
  background: #f4f9fd;
}

.metric-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  padding: 0 24px 24px;
}

.glossary-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdff;
}

.glossary-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.glossary-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-dark);
  font-size: 16px;
}

.glossary-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.65;
}

dialog {
  width: min(620px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

dialog::backdrop {
  background: rgba(8, 19, 32, .45);
}

dialog form {
  padding: 26px;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dialog-head button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.quote-items {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.quote-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quote-item p {
  margin-bottom: 0;
  font-size: 13px;
}

.quote-item button {
  border: 0;
  color: #b42318;
  background: transparent;
  cursor: pointer;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

textarea {
  min-height: 116px;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.full {
  width: 100%;
  margin-top: 14px;
}

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

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
    font-size: 17px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .product-zone,
  .product-center {
    grid-template-columns: 1fr;
  }

  .side-product-nav,
  .product-filter {
    position: static;
    display: grid;
    overflow: visible;
  }

  .side-product-nav strong,
  .side-product-nav a,
  .side-product-nav summary,
  .filter-button {
    min-width: 0;
    border-right: 0;
  }

  .side-product-nav .category-submenu {
    position: static;
    width: auto;
    max-height: none;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .filter-button {
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 12px 16px;
    overflow: visible;
  }

  .site-header > * {
    min-width: 0;
  }

  .brand img {
    width: 210px;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .hero-content {
    min-height: 430px;
  }

  .hero-content {
    width: calc(100% - 32px);
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
    overflow: hidden;
  }

  .trust-panel,
  .steps,
  .contact-hero-grid,
  .contact-layout,
  .contact-proof-grid,
  .footer-main,
  .about-grid,
  .about-narrative,
  .about-intro,
  .about-capability-grid,
  .about-visual-story,
  .about-products,
  .about-cta-inner,
  .split-section,
  .detail-layout,
  .detail-sections {
    grid-template-columns: 1fr;
  }

  .config-head {
    flex-direction: column;
  }

  .trust-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-rail {
    grid-auto-columns: minmax(270px, 84vw);
  }

  .footer-main,
  .footer-bottom {
    width: min(100% - 32px, 720px);
  }

  .about-hero,
  .about-hero-content {
    min-height: 520px;
  }

  .about-hero-compact,
  .about-hero-compact .about-hero-content {
    min-height: 460px;
  }

  .about-hero-content {
    width: calc(100% - 32px);
    max-width: none;
    margin-inline: 16px;
    padding-right: 16px;
  }

  .about-narrative {
    gap: 26px;
  }

  .about-narrative-reverse .about-narrative-image {
    order: 0;
  }

  .about-narrative-copy {
    max-width: none;
  }

  .about-intro,
  .about-capability-band,
  .about-visual-story,
  .about-products,
  .about-cta {
    padding-block: 48px;
  }

  .about-capability-grid article {
    min-height: 0;
  }

  .about-cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.12;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.section-kicker) {
    font-size: 16px;
  }

  .hero-content h1 {
    max-width: min(340px, calc(100vw - 48px));
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.section-kicker) {
    max-width: min(340px, calc(100vw - 48px));
    word-break: break-all;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
    overflow: visible;
    font-size: 16px;
  }

  .nav a {
    padding: 8px 0;
  }

  .about-hero-content h1 {
    max-width: min(300px, calc(100vw - 80px));
    font-size: 28px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .about-hero-content p:not(.section-kicker) {
    max-width: min(320px, calc(100vw - 80px));
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero,
  .hero-content {
    min-height: 390px;
  }

  .quote-button {
    order: -1;
  }

  .about-hero,
  .about-hero-content {
    min-height: 470px;
  }

  .about-hero-content p:not(.section-kicker),
  .about-intro-copy p,
  .about-story-copy p,
  .about-products p,
  .about-cta p {
    font-size: 16px;
  }

  .about-product-list {
    grid-template-columns: 1fr;
  }

  .about-narrative-copy p:not(.about-label),
  .about-direction p {
    font-size: 16px;
    line-height: 1.85;
  }

  .about-direction-list span {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 14px;
  }

  .about-hero-actions .primary,
  .about-hero-actions .secondary,
  .about-cta-actions .primary,
  .about-cta-actions .secondary {
    width: min(320px, calc(100vw - 80px));
  }

  .product-list {
    grid-template-columns: 1fr;
  }
}

/* Detail page refresh: purchasing-first layout */
.detail-layout {
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(32px, 4vw, 64px);
  padding: 48px 0 24px;
}

.detail-media {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 24px;
  border-color: #d9e8f3;
  background: linear-gradient(180deg, #fff, #f6fbff);
}

.detail-media img {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.detail-summary {
  padding-top: 14px;
}

.detail-summary h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
}

.detail-summary > p:not(.section-kicker) {
  max-width: 620px;
  color: #344b62;
  font-size: 17px;
  line-height: 1.8;
}

.detail-tags {
  margin: 16px 0 20px;
}

.purchase-box {
  display: grid;
  max-width: 560px;
  gap: 16px;
  padding: 22px;
  border: 1px solid #d9e8f3;
  border-radius: 8px;
  background: #fff;
}

.price-box {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.price-box strong {
  color: #006db7;
  font-size: clamp(36px, 4vw, 50px);
}

.detail-facts {
  margin: 0;
}

.quantity-field {
  margin: 0;
}

.config-zone {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 18px;
  padding: 0 0 34px;
}

.common-config-card,
.config-panel {
  border: 1px solid #d9e8f3;
  border-radius: 8px;
  background: #fff;
}

.common-config-card {
  padding: 24px;
}

.common-config-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.common-config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.common-config-grid div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbfe;
}

.common-config-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.common-config-grid strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--blue-dark);
  font-size: 15px;
}

.config-panel {
  padding: 0;
  background: #fff;
}

.config-panel > summary {
  min-height: 74px;
  padding: 22px 26px;
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.config-panel > summary::-webkit-details-marker {
  display: none;
}

.config-panel > summary::after {
  content: "+";
  float: right;
  color: var(--blue);
}

.config-panel[open] > summary::after {
  content: "-";
}

.config-panel .config-head,
.config-panel .config-content {
  padding-inline: 26px;
}

.config-panel .config-content {
  padding-bottom: 26px;
}

.detail-sections {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.detail-sections article {
  padding: 26px;
}

.parameter-card {
  overflow: hidden;
  border-color: #d9e8f3;
}

.parameter-card summary {
  min-height: 64px;
  border-bottom: 1px solid transparent;
  background: #f7fbff;
}

.parameter-card[open] summary {
  border-bottom-color: var(--line);
}

.parameter-table {
  min-width: 760px;
  font-size: 14px;
}

.parameter-table th {
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #d9e8f3;
  color: var(--blue-dark);
  background: #f1f7fc;
  text-align: left;
}

.parameter-table td {
  border-inline: 0;
  border-top: 0;
  border-bottom: 1px solid #e5eef6;
  line-height: 1.65;
}

.parameter-table td:first-child {
  min-width: 220px;
}

.parameter-table td:first-child strong {
  display: block;
  color: #11263a;
}

.parameter-table td:first-child small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.optical-summary {
  display: none;
}

@media (max-width: 1180px) {
  .config-zone {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .detail-media {
    min-height: 0;
    padding: 14px;
  }

  .purchase-box {
    max-width: none;
  }

  .parameter-table {
    min-width: 680px;
  }
}

/* Detail page v2: image + concise copy + local font system */
.section-kicker,
.price-box strong,
.product-meta,
.order-model strong,
.common-config-grid strong,
.parameter-table td:nth-child(n+2),
.option-button {
  font-family: var(--font-latin), var(--font-cn);
}

.refined-detail {
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5vw, 78px);
  padding-top: 50px;
  padding-bottom: 34px;
}

.compact-media {
  min-height: 360px;
  padding: 22px;
  border: 1px solid #dce8f1;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f5f9fc);
  box-shadow: none;
}

.compact-media img {
  max-height: 380px;
}

.detail-summary .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #cde1ef;
  border-radius: 999px;
  background: #f3f9fd;
  font-size: 14px;
}

.detail-summary h1 {
  max-width: 820px;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.14;
  text-wrap: balance;
}

.application-summary {
  margin: 10px 0 0;
  color: #2f465d;
  font-size: 16px;
  line-height: 1.78;
}

.detail-summary > p:not(.section-kicker) {
  max-width: 720px;
}

.compact-config-zone {
  display: block;
  padding-bottom: 36px;
}

.config-stack {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid #dce8f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.config-stack .common-config-card,
.config-stack .config-panel {
  border: 0;
  border-radius: 0;
}

.config-stack .common-config-card {
  padding: 0;
}

.config-stack-head {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
}

.config-stack-head h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.config-stack-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.config-stack .config-panel {
  border-top: 1px solid #e3edf5;
}

.config-stack .config-panel > summary {
  min-height: 50px;
  padding: 16px 0 0;
  font-size: 18px;
}

.config-stack .config-panel .config-head,
.config-stack .config-panel .config-content {
  padding-inline: 0;
}

.config-stack .config-panel .config-content {
  padding-bottom: 0;
}

.refined-sections {
  gap: 18px;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid #dce8f1;
  border-radius: 8px;
  background: #fff;
}

.feature-visual {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 20px;
  border: 1px solid #e3edf5;
  border-radius: 6px;
  background: #f8fbfd;
}

.feature-visual img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.feature-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.5vw, 34px);
}

.feature-copy .application-line {
  margin: 0 0 16px;
  color: #365069;
  font-size: 15px;
  line-height: 1.8;
}

.feature-copy ul {
  margin: 0;
  padding-left: 20px;
  color: #273f55;
  line-height: 1.9;
}

.refined-sections article h2,
.parameter-card summary,
.glossary-panel summary {
  font-size: 21px;
}

.parameter-card {
  border: 1px solid #dce8f1;
  border-radius: 8px;
  box-shadow: none;
}

.parameter-card summary {
  min-height: 58px;
  padding: 16px 22px;
  background: #f8fbfd;
}

.spec-section .table-wrap {
  padding: 0 22px 22px;
}

.parameter-table th,
.parameter-table td {
  padding-block: 10px;
}

.purchase-box {
  max-width: 620px;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid #dce8f1;
  border-radius: 0;
  background: transparent;
}

.price-box {
  display: inline-grid;
  gap: 3px;
}

.price-box span {
  color: #53697d;
}

.price-box strong {
  color: var(--blue-dark);
  font-size: clamp(34px, 3.4vw, 46px);
}

.detail-facts span {
  border-color: #dce8f1;
  background: #f7fbff;
}

.quantity-field {
  width: min(240px, 100%);
  border-color: #dce8f1;
}

@media (max-width: 900px) {
  .refined-detail,
  .feature-story {
    grid-template-columns: 1fr;
  }

  .refined-detail {
    padding-top: 28px;
  }

  .compact-media {
    min-height: 0;
  }

  .config-stack-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-visual {
    min-height: 180px;
  }
}
