@font-face {
  font-family: 'OPPOSans';
  src: url('/assets/fonts/OPPO Sans 4.0.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #122235;
  --ink-soft: #253a50;
  --blue: #1769e0;
  --blue-dark: #0d4ea9;
  --cyan: #00a7b5;
  --lime: #b8e34b;
  --paper: #f4f7fb;
  --white: #fff;
  --muted: #69798b;
  --line: #dfe6ee;
  --line-dark: rgba(255, 255, 255, .18);
  --radius: 8px;
  --max: 1280px;
  --pad: max(24px, calc((100vw - var(--max)) / 2));
  --display: "OPPOSans", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --body: "OPPOSans", "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -60px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--lime);
}

.skip-link:focus {
  top: 12px;
}

.section-shell {
  width: 100%;
  max-width: calc(var(--max) + 48px);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 167, 181, .1);
}

.section-label.light {
  color: #d9edf5;
}

.section-label.light::before {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 227, 75, .12);
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: max(16px, calc((100vw - 1380px) / 2));
  right: max(16px, calc((100vw - 1380px) / 2));
  height: 66px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(218, 228, 237, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 35px rgba(27, 51, 78, .08);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}

.site-header.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 32px rgba(27, 51, 78, .12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  color: var(--ink);
  font-size: 17px;
}

.brand small {
  margin-top: 3px;
  color: #7a8896;
  font-size: 10px;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 20px;
  color: #5d6d7e;
  font-size: 14px;
  transition: color .2s;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: .2s;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  left: 32%;
  width: 36%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.header-cta span {
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: 0;
  padding: 105px 24px 30px;
  background: rgba(244, 247, 251, .98);
  backdrop-filter: blur(20px);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 700;
}

.mobile-menu a span {
  color: #9aabba;
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 12px 26px rgba(23, 105, 224, .22);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: #aebdcb;
  background: #f9fbfd;
  box-shadow: none;
}

.ghost-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.ghost-link {
  color: #dbe8f1;
}

.ghost-link span,
.text-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.text-link {
  color: var(--blue);
}

.text-link span {
  background: #e6eefc;
}

.round-link {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #b8c7d4;
  border-radius: 50%;
  font-size: 22px;
  transition: .2s;
}

.round-link:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: rotate(-35deg);
}

.round-link.light {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

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

.section-head h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head>p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.section-head.light {
  color: #fff;
}

/* Home */
.home-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 30px;
  padding: 125px var(--pad) 105px;
  background: #10263a;
  color: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 36%, rgba(0, 167, 181, .22), transparent 28%), radial-gradient(circle at 16% 90%, rgba(23, 105, 224, .2), transparent 30%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.home-hero-copy,
.home-hero-visual,
.hero-proof {
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  max-width: 650px;
}

.home-hero h1 {
  margin: 22px 0 26px;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.home-hero-copy>p {
  max-width: 570px;
  color: #b8cad7;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.home-hero-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.home-hero-visual::before {
  content: "";
  position: absolute;
  width: min(38vw, 570px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, .025);
}

.home-hero-visual img {
  position: relative;
  z-index: 1;
  width: min(56vw, 790px);
  max-width: none;
  filter: drop-shadow(0 36px 40px rgba(0, 0, 0, .3));
  animation: floatMachine 5s ease-in-out infinite;
}

.visual-chip {
  position: absolute;
  z-index: 2;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 7px;
  background: rgba(12, 35, 54, .7);
  backdrop-filter: blur(12px);
}

.visual-chip b,
.visual-chip span {
  display: block;
}

.visual-chip b {
  font-size: 13px;
}

.visual-chip span {
  color: #9fb4c4;
  font-size: 11px;
}

.chip-a {
  top: 20%;
  left: 4%;
}

.chip-b {
  right: 0;
  bottom: 20%;
}

.hero-proof {
  position: absolute;
  right: var(--pad);
  bottom: 25px;
  left: var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border: 0;
}

.hero-proof strong {
  color: var(--lime);
  font-size: 12px;
}

.hero-proof span {
  color: #c5d4df;
  font-size: 13px;
}

.home-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10vw;
  padding-top: 110px;
  padding-bottom: 110px;
}

.intro-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 4.1vw, 60px);
  line-height: 1.24;
  letter-spacing: 0;
}

.intro-copy {
  align-self: end;
}

.intro-copy p {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy .text-link {
  margin-top: 20px;
}

.home-products {
  padding-top: 90px;
  padding-bottom: 115px;
}

.home-product-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.home-product-tile {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s, box-shadow .25s;
}

.home-product-tile:first-child {
  grid-column: span 8;
}

.home-product-tile:nth-child(5) {
  grid-column: span 8;
}

.home-product-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(25, 49, 78, .1);
}

.home-product-tile>a {
  display: grid;
  height: 100%;
}

.home-product-tile:first-child>a,
.home-product-tile:nth-child(5)>a {
  grid-template-columns: 1.15fr .85fr;
}

.tile-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #eaf2f7;
}

.tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 15%, rgba(0, 167, 181, .14), transparent 30%);
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.home-product-tile:hover .tile-media img {
  transform: scale(1.04);
}

.tile-media span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 5px 9px;
  border-radius: 5px;
  background: rgba(18, 34, 53, .82);
  color: #fff;
  font-size: 10px;
}

.tile-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.tile-copy small {
  color: var(--cyan);
}

.tile-copy h3 {
  margin: 9px 0;
  font-size: 22px;
  line-height: 1.35;
}

.tile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tile-copy b {
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-size: 13px;
}

.home-solutions,
.solution-method,
.about-values {
  padding: 110px 0;
  background: #152b3f;
  color: #fff;
}

.solution-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}

.solution-panel {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 22px;
  min-height: 190px;
  align-items: center;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background .2s;
}

.solution-panel:nth-child(even) {
  border-right: 0;
}

.solution-panel:hover {
  background: rgba(255, 255, 255, .06);
}

.solution-panel>span {
  color: var(--lime);
  font-size: 12px;
}

.solution-panel h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.solution-panel p {
  margin: 0;
  color: #aebfcb;
  font-size: 14px;
}

.solution-panel b {
  font-size: 20px;
}

.home-process {
  padding-top: 110px;
  padding-bottom: 110px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-track>div {
  position: relative;
  min-height: 235px;
  padding: 28px 28px 20px 0;
  border-right: 1px solid var(--line);
}

.process-track>div:not(:first-child) {
  padding-left: 28px;
}

.process-track>div:last-child {
  border: 0;
}

.process-track i {
  color: var(--blue);
  font-style: normal;
  font-size: 12px;
}

.process-track h3 {
  margin: 56px 0 8px;
  font-size: 21px;
}

.process-track p {
  color: var(--muted);
  font-size: 14px;
}

.home-news {
  padding-top: 95px;
  padding-bottom: 120px;
}

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

.home-news-grid article {
  min-width: 0;
}

.news-media {
  overflow: hidden;
  aspect-ratio: 1.55;
  border-radius: var(--radius);
  background: #e8eef3;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}

.home-news-grid article:hover img {
  transform: scale(1.04);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  color: #8592a0;
  font-size: 12px;
}

.news-meta span {
  color: var(--cyan);
}

.home-news-grid h3 {
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.45;
}

.home-news-grid p {
  color: var(--muted);
  font-size: 14px;
}

/* Shared inner hero */
.inner-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 8vw;
  padding: 150px var(--pad) 76px;
  background: #eaf0f5;
}

.inner-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(48px, 5.6vw, 78px);
  line-height: 1.15;
  letter-spacing: 0;
}

.inner-hero>div>p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.inner-hero>aside {
  align-self: end;
}

.catalog-hero aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #cedae4;
  border-radius: var(--radius);
  background: #cedae4;
}

.catalog-hero aside div {
  min-height: 130px;
  padding: 22px;
  background: rgba(255, 255, 255, .76);
}

.catalog-hero aside strong,
.catalog-hero aside span {
  display: block;
}

.catalog-hero aside strong {
  color: var(--blue);
  font-size: 20px;
}

.catalog-hero aside span {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

/* Product catalog */
.catalog-layout {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 120px;
}

.catalog-sidebar {
  position: sticky;
  top: 96px;
}

.catalog-sidebar h2 {
  margin: 12px 0;
  font-size: 28px;
}

.catalog-sidebar p {
  color: var(--muted);
  font-size: 14px;
}

.catalog-sidebar nav {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.catalog-sidebar nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: #657689;
  font-size: 14px;
}

.catalog-sidebar nav a.active {
  color: var(--blue);
  font-weight: 700;
}

.catalog-sidebar nav sup {
  color: #9cabb8;
}

.catalog-help {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.catalog-help small {
  color: #9eb2c2;
}

.catalog-help strong {
  margin-top: 5px;
}

.catalog-help>span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--lime);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.catalog-toolbar p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.catalog-toolbar span {
  color: var(--muted);
  font-size: 13px;
}

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

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

.catalog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s, box-shadow .25s;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(24, 47, 74, .1);
}

.catalog-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.42;
  overflow: hidden;
  background: #e8f0f5;
}

.catalog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 34, 53, .22));
  opacity: 0;
  transition: opacity .25s;
}

.catalog-card:hover .catalog-media::after {
  opacity: 1;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.045);
}

.catalog-model {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 9px;
  border-radius: 5px;
  background: rgba(18, 34, 53, .82);
  color: #fff;
  font-size: 10px;
}

.catalog-open {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: translateY(5px);
  transition: .2s;
}

.catalog-card:hover .catalog-open {
  opacity: 1;
  transform: none;
}

.catalog-copy {
  padding: 22px;
}

.catalog-copy>span {
  color: var(--cyan);
  font-size: 12px;
}

.catalog-copy h2 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.4;
}

.catalog-copy p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-copy>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.catalog-copy small {
  color: #8a98a6;
}

.catalog-copy>div a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

/* Commerce product detail */
.breadcrumb {
  display: flex;
  gap: 10px;
  padding-top: 112px;
  padding-bottom: 22px;
  color: #8996a3;
  font-size: 12px;
}

.breadcrumb b {
  color: #4e6071;
  font-weight: 500;
}

.commerce-product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 90px;
}

.product-main-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e9f0f5;
}

.product-main-media img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border-radius: 5px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.media-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 34, 53, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  font-size: 20px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-thumbs button {
  width: 78px;
  height: 64px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.product-thumbs button.active {
  border-color: var(--blue);
}

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

.product-purchase {
  position: sticky;
  top: 100px;
}

.product-category {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}

.product-purchase h1 {
  margin: 11px 0 8px;
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.22;
  letter-spacing: 0;
}

.product-model-line {
  margin: 0;
  color: #82909e;
  font-size: 13px;
}

.product-model-line strong {
  margin-left: 10px;
  color: var(--ink);
}

.product-summary {
  margin: 24px 0;
  color: var(--muted);
  font-size: 17px;
}

.purchase-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.purchase-benefits>div {
  min-height: 120px;
  padding: 15px;
  border-right: 1px solid var(--line);
}

.purchase-benefits>div:last-child {
  border: 0;
}

.purchase-benefits i {
  color: var(--blue);
  font-style: normal;
  font-size: 11px;
}

.purchase-benefits b,
.purchase-benefits small {
  display: block;
}

.purchase-benefits b {
  margin-top: 21px;
  font-size: 14px;
}

.purchase-benefits small {
  color: #8996a3;
  font-size: 10px;
}

.purchase-status {
  margin-top: 18px;
  padding: 19px 20px;
  border-radius: var(--radius);
  background: #eaf1fb;
}

.purchase-status span,
.purchase-status strong,
.purchase-status small {
  display: block;
}

.purchase-status span {
  color: #798898;
  font-size: 12px;
}

.purchase-status strong {
  margin: 3px 0;
  color: var(--blue);
  font-size: 23px;
}

.purchase-status small {
  color: #798898;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 10px;
  margin-top: 18px;
}

.purchase-note {
  color: #8b98a5;
  font-size: 11px;
}

.product-information {
  padding-top: 20px;
  padding-bottom: 110px;
}

.product-tabs-nav {
  position: sticky;
  z-index: 20;
  top: 84px;
  display: flex;
  gap: 34px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.product-tabs-nav a {
  position: relative;
  color: #728293;
  font-size: 14px;
}

.product-tabs-nav a.active {
  color: var(--ink);
  font-weight: 700;
}

.product-tabs-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -17px;
  left: 0;
  height: 2px;
  background: var(--blue);
}

.product-info-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 80px;
  align-items: start;
  padding: 76px 0;
}

.product-description h2,
.spec-panel h2 {
  margin: 12px 0 28px;
  font-size: 34px;
}

.prose {
  color: #465b6d;
  font-size: 17px;
  line-height: 1.95;
}

.prose h2,
.prose h3 {
  color: var(--ink);
  line-height: 1.35;
}

.prose img {
  max-width: 100%;
  border-radius: var(--radius);
}

.prose blockquote {
  margin: 32px 0;
  padding: 24px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #eaf1f5;
  color: var(--ink);
  font-size: 22px;
}

.spec-panel {
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.spec-panel .section-label {
  color: #d9edf5;
}

.spec-panel dl {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 16px;
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid var(--line-dark);
}

.spec-panel dt {
  color: #91a7b8;
}

.spec-panel dd {
  margin: 0;
  text-align: right;
}

.spec-panel>small {
  display: block;
  margin-top: 20px;
  color: #849cad;
}

.delivery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.delivery-strip>div {
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.delivery-strip>div:last-child {
  border: 0;
}

.delivery-strip i {
  color: var(--blue);
  font-style: normal;
  font-size: 11px;
}

.delivery-strip h3 {
  margin: 38px 0 7px;
  font-size: 18px;
}

.delivery-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Product inquiry form */
.product-inquiry {
  padding-top: 20px;
  padding-bottom: 40px;
}

.inquiry-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  padding: 48px 56px;
}

.inquiry-header {
  margin-bottom: 36px;
}

.inquiry-header h2 {
  margin: 12px 0 8px;
  font-size: 26px;
  font-weight: 600;
}

.inquiry-header p {
  color: #6b7280;
  font-size: 15px;
}

.inquiry-form .form-message {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}

.inquiry-form .form-message.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.inquiry-form .form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.inquiry-grid label,
.inquiry-full label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inquiry-grid label span,
.inquiry-full label span {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.inquiry-grid input,
.inquiry-full textarea {
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.inquiry-grid input:focus,
.inquiry-full textarea:focus {
  border-color: #3f5cf4;
  box-shadow: 0 0 0 3px rgba(63, 92, 244, .1);
}

.inquiry-captcha .captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.inquiry-captcha .captcha-row input {
  flex: 1;
}

.inquiry-captcha .captcha-row img {
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #d1d5db;
}

.inquiry-full {
  margin-bottom: 24px;
}

.inquiry-full textarea {
  width: 100%;
  resize: vertical;
}

.inquiry-submit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.inquiry-submit small {
  color: #9ca3af;
  font-size: 13px;
}

@media (max-width: 820px) {
  .inquiry-card {
    padding: 32px 24px;
  }

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

.related-products {
  padding-top: 30px;
  padding-bottom: 120px;
}

/* Solutions */
.sol-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: #152b3f;
  overflow: hidden;
}

.sol-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  filter: saturate(.75) brightness(.65);
}

.sol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 25, 35, .3) 0%, rgba(15, 25, 35, .15) 100%);
}

.sol-hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: .04em;
}

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

.sol-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: box-shadow .25s, transform .25s;
}

.sol-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.sol-card-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.sol-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-card-body {
  margin-top: 14px;
}

.sol-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.sol-card-body p {
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-cases {
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.solution-case {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 42px;
}

.solution-case:nth-child(even) .case-media {
  order: 2;
}

.case-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45;
  border-radius: var(--radius);
  background: #173148;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.solution-case:hover .case-media img {
  transform: scale(1.04);
}

.case-media span {
  position: absolute;
  right: 15px;
  bottom: 14px;
  color: #fff;
  font-size: 12px;
}

.case-copy small {
  color: var(--cyan);
}

.case-copy h2 {
  margin: 10px 0;
  font-size: 30px;
  line-height: 1.35;
}

.case-copy p {
  color: var(--muted);
}

.case-copy .text-link {
  margin-top: 14px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.method-grid>div {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.method-grid>div:first-child {
  padding-left: 0;
}

.method-grid>div:last-child {
  border: 0;
}

.method-grid i {
  color: var(--lime);
  font-style: normal;
  font-size: 12px;
}

.method-grid h3 {
  margin: 60px 0 8px;
  font-size: 21px;
}

.method-grid p {
  color: #aebfcb;
  font-size: 14px;
}

.sol-detail-wrap {
  background: #fff;
}

.sol-detail {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 80px;
  padding-bottom: 60px;
}

.sol-detail-title {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.sol-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e5e5;
  color: #888;
  font-size: 14px;
}

.sol-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sol-detail-meta span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.sol-detail-meta span:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

.sol-detail-meta span:last-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.sol-detail-body {
  padding-top: 36px;
  padding-bottom: 50px;
  color: #444;
  font-size: 16px;
  line-height: 2;
}

.sol-detail-body p {
  margin-bottom: 18px;
}

.sol-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px 0 0;
}

.sol-detail-prev,
.sol-detail-next {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 8px;
  background: #F2F3F5;
  transition: background .2s;
}

.sol-detail-next {
  text-align: right;
}

.sol-detail-prev:hover strong,
.sol-detail-next:hover strong {
  color: #3858F6;
}

.sol-detail-prev.disabled,
.sol-detail-next.disabled {
  background: transparent;
  cursor: default;
}

.sol-detail-prev small,
.sol-detail-next small {
  color: #999;
  font-size: 12px;
}

.sol-detail-prev strong,
.sol-detail-next strong {
  margin-top: 4px;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.sol-related {
  padding-top: 70px;
  padding-bottom: 90px;
}

.sol-related-heading {
  text-align: center;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.sol-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sol-related-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: box-shadow .25s, transform .25s;
}

.sol-related-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.sol-related-img {
  position: relative;
  aspect-ratio: 1.5;
  overflow: hidden;
  background: #f0efeb;
}

.sol-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-related-img span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 11px;
}

.sol-related-body {
  padding: 16px 18px 20px;
}

.sol-related-body small {
  color: #999;
  font-size: 12px;
}

.sol-related-body h3 {
  margin: 6px 0 10px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.sol-related-body b {
  color: #2c6fe8;
  font-size: 13px;
  font-weight: 500;
}

/* News */
/* News */
.news-hero { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; background: #152b3f; overflow: hidden; }
.news-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; filter: saturate(.75) brightness(.6); }
.news-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,25,35,.3) 0%, rgba(15,25,35,.15) 100%); }
.news-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.news-hero-content h1 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 600; letter-spacing: .04em; }
.news-hero-content p { margin-top: 12px; font-size: 16px; color: #c8d6e0; }
.news-wrap { padding-top: 50px; padding-bottom: 90px; }
.news-tabs { display: flex; gap: 30px; padding-bottom: 18px; border-bottom: 1px solid #e5e5e5; margin-bottom: 36px; }
.news-tabs a { position: relative; color: #666; font-size: 15px; padding-bottom: 16px; transition: color .2s; }
.news-tabs a.active { color: #1a1a1a; font-weight: 600; }
.news-tabs a.active::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #1a1a1a; border-radius: 1px; }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.news-card { border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: box-shadow .25s, transform .25s; }
.news-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.news-card-img { aspect-ratio: 1.4; overflow: hidden; background: #f0efeb; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 16px 18px 20px; }
.news-card-body time { color: #999; font-size: 12px; }
.news-card-body h3 { margin: 8px 0 12px; color: #1a1a1a; font-size: 15px; font-weight: 600; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-body b { color: #2c6fe8; font-size: 13px; font-weight: 500; }

.news-detail-head {
  max-width: 990px;
  padding-top: 155px;
  padding-bottom: 60px;
  text-align: center;
}

.news-detail-head .back-link {
  text-align: left;
}

.news-detail-head .section-label {
  justify-content: center;
}

.news-detail-head h1 {
  margin: 18px 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.2;
  letter-spacing: 0;
}

.news-detail-head>p {
  color: var(--muted);
  font-size: 18px;
}

.news-detail-head>div {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #8493a0;
  font-size: 12px;
}

.news-detail-cover {
  max-width: 1160px;
}

.news-detail-cover img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  border-radius: var(--radius);
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  justify-content: center;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 120px;
}

.news-detail-layout aside {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
}

.news-detail-layout aside span {
  margin-bottom: 10px;
  font-weight: 700;
}

.news-detail-layout aside a {
  padding: 7px 0;
  color: #748493;
  font-size: 13px;
}

/* About and service */
.about-hero-banner { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; background: #152b3f; overflow: hidden; }
.about-hero-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; filter: saturate(.75) brightness(.6); }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,25,35,.3) 0%, rgba(15,25,35,.15) 100%); }
.about-hero-banner h1 { position: relative; z-index: 2; color: #fff; font-size: clamp(36px, 4.5vw, 56px); font-weight: 600; letter-spacing: .04em; }
.about-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding-top: 60px; padding-bottom: 100px; align-items: start; }
.about-sidebar { position: sticky; top: 90px; padding: 28px 24px; background: #fff; border-radius: 10px; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.about-sidebar h3 { font-size: 20px; font-weight: 600; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #1a1a1a; }
.about-sidebar nav { display: flex; flex-direction: column; }
.about-sidebar nav a { padding: 14px 0; border-bottom: 1px solid #f0f0f0; color: #555; font-size: 15px; transition: color .2s; }
.about-sidebar nav a:last-child { border-bottom: 0; }
.about-sidebar nav a:hover { color: #1a1a1a; }
.about-sidebar nav a.active { color: #2c6fe8; font-weight: 600; }
.about-content { min-height: 400px; padding: 36px 40px; background: #fff; border-radius: 10px; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.about-content h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 600; color: #1a1a1a; margin-bottom: 28px; }
.about-empty { color: #999; font-size: 15px; }
.about-hero {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid #d6ddcf;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
}

.about-hero-mark span {
  color: var(--blue);
  font-size: 13px;
}

.about-hero-mark strong {
  font-size: 25px;
}

.about-story {
  padding-top: 105px;
  padding-bottom: 115px;
}

.about-story .section-head {
  max-width: 800px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  overflow: hidden;
  min-height: 480px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #152b3f;
}

.about-visual img {
  width: 115%;
  max-width: none;
}

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

.value-cards>div {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}

.value-cards i {
  color: var(--lime);
  font-style: normal;
}

.value-cards h3 {
  margin: 75px 0 8px;
  font-size: 23px;
}

.value-cards p {
  color: #aebfcb;
}

.service-hero {
  background: #e8f1f5;
}

.service-hero aside {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.service-hero aside span {
  color: #a9bdcb;
}

.service-overview {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
  padding-top: 105px;
  padding-bottom: 120px;
}

.service-copy {
  position: sticky;
  top: 105px;
}

.service-copy h2 {
  margin: 15px 0;
  font-size: 36px;
  line-height: 1.35;
}

.service-copy .button {
  margin-top: 20px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list>div {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-list span {
  color: var(--blue);
  font-size: 11px;
}

.service-list h3 {
  margin: 55px 0 0;
  font-size: 20px;
}

.service-list b {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: var(--cyan);
}

.service-promise {
  padding: 32px 0;
  background: #dfe8ed;
}

.service-promise .section-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-promise div div {
  padding: 10px 30px;
  border-right: 1px solid #c5d2da;
}

.service-promise div div:first-child {
  padding-left: 0;
}

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

.service-promise strong,
.service-promise span {
  display: block;
}

.service-promise span {
  color: var(--muted);
  font-size: 13px;
}

/* Downloads, contact, 404 */
.download-hero {
  background: #eaf1f5;
}

.download-hero aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
}

.download-hero aside span {
  color: var(--muted);
}

.download-hero aside a {
  color: var(--blue);
  font-weight: 700;
}

.downloads-page {
  padding-top: 70px;
  padding-bottom: 120px;
}

.download-heading,
.download-items a {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 30px;
}

.download-heading {
  padding: 0 24px 13px;
  color: #8795a2;
  font-size: 12px;
}

.download-heading span:last-child {
  text-align: right;
}

.download-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.download-items a {
  padding: 23px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: .2s;
}

.download-items a:hover {
  border-color: #a8bdd0;
  transform: translateX(5px);
}

.download-items>a>span {
  color: var(--blue);
  font-weight: 700;
}

.download-items h2 {
  margin: 0;
  font-size: 20px;
}

.download-items p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.download-items b {
  text-align: right;
  font-size: 20px;
}

.download-empty {
  padding: 75px 30px;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.download-empty>span {
  color: var(--blue);
  font-weight: 700;
}

.download-empty h2 {
  margin: 14px 0 5px;
  font-size: 35px;
}

.download-empty p {
  color: var(--muted);
}

.download-empty .button {
  margin-top: 20px;
}

.contact-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.contact-side {
  display: flex;
  min-height: 780px;
  flex-direction: column;
  justify-content: space-between;
  padding: 150px max(55px, calc((100vw - 1280px)/2)) 75px var(--pad);
  background: #152b3f;
  color: #fff;
}

.contact-side h1 {
  margin: 20px 0;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-side>div>p {
  max-width: 610px;
  color: #adbfca;
}

.contact-side dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 55px 0 0;
}

.contact-side dl div:last-child {
  grid-column: 1/-1;
}

.contact-side dt {
  color: #89a1b0;
  font-size: 12px;
}

.contact-side dd {
  margin: 4px 0 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 145px var(--pad) 70px max(55px, calc((100vw - 1280px)/2));
  background: #fff;
  color: var(--ink);
}

.form-head h2 {
  max-width: 580px;
  margin: 12px 0 3px;
  font-size: 34px;
  line-height: 1.35;
}

.form-head p {
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  outline: none;
  background: #f9fbfd;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, .1);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-submit small {
  color: #8996a3;
}

.form-message {
  padding: 12px 14px;
  border-radius: 6px;
}

.form-message.success {
  background: #edf7dd;
  color: #43620a;
}

.form-message.error {
  background: #fff0f0;
  color: #a32b2b;
}

.not-found {
  min-height: 80svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 130px var(--pad) 80px;
}

.not-found-code {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6e1ea;
  font-size: clamp(110px, 18vw, 260px);
  font-weight: 700;
  line-height: 1;
}

.not-found-code i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--lime);
}

.not-found h1 {
  margin: 15px 0;
  font-size: 46px;
}

.not-found p {
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

/* Footer */
.site-footer {
  padding: 90px var(--pad) 24px;
  background: #102235;
  color: #fff;
}

.footer-action {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-action h2 {
  margin: 18px 0 0;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr .65fr 1fr;
  gap: 8vw;
  padding: 55px 0;
}

.brand-light strong {
  color: #fff;
}

.brand-light small {
  color: #9cb0be;
}

.footer-brand>p {
  max-width: 450px;
  color: #9db0bd;
}

.footer-main h3 {
  margin: 0 0 16px;
  color: #8097a7;
  font-size: 12px;
}

.footer-main nav,
.footer-main>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-main a,
.footer-main p {
  margin: 0;
  color: #c3d0d8;
}

.footer-bottom {
  display: flex;
  gap: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #788f9f;
  font-size: 11px;
}

.footer-bottom a {
  margin-left: auto;
}

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 22px;
  display: flex;
  width: 62px;
  height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 34, 53, .22);
  font-size: 11px;
  font-weight: 700;
}

.floating-contact b {
  line-height: 1;
}

@keyframes floatMachine {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

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

  .desktop-nav a {
    padding: 0 12px;
  }

  .home-hero {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-visual img {
    width: 700px;
  }

  .visual-chip {
    display: none;
  }

  .home-product-tile,
  .home-product-tile:first-child,
  .home-product-tile:nth-child(5) {
    grid-column: span 6;
  }

  .home-product-tile:first-child>a,
  .home-product-tile:nth-child(5)>a {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 210px 1fr;
    gap: 30px;
  }

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

  .commerce-product {
    gap: 36px;
  }

  .product-info-layout {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --pad: 24px;
  }

  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr auto;
  }

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

  .menu-toggle {
    display: block;
  }

  .home-hero {
    min-height: 940px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding-top: 125px;
  }

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

  .home-hero-visual {
    min-height: 420px;
  }

  .home-hero-visual img {
    width: 760px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:nth-child(2) {
    border-right: 0;
  }

  .home-intro,
  .inner-hero,
  .solution-index,
  .service-overview {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 620px;
  }

  .inner-hero {
    min-height: 600px;
    gap: 35px;
    padding-top: 135px;
  }

  .inner-hero aside {
    width: 100%;
  }

  .catalog-hero aside {
    max-width: 650px;
  }

  .solution-showcase,
  .value-cards {
    grid-template-columns: 1fr;
  }

  .solution-panel {
    border-right: 0;
  }

  .process-track,
  .method-grid,
  .delivery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .process-track>div:nth-child(2),
  .method-grid>div:nth-child(2),
  .delivery-strip>div:nth-child(2) {
    border-right: 0;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .catalog-sidebar>div:first-child {
    display: none;
  }

  .catalog-sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    margin-top: 0;
    border: 0;
    gap: 8px;
    scrollbar-width: none;
  }

  .catalog-sidebar nav a {
    min-width: max-content;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
  }

  .catalog-sidebar nav a.active {
    background: var(--ink);
    color: #fff;
  }

  .catalog-help {
    display: none;
  }

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

  .product-purchase {
    position: static;
  }

  .product-main-media,
  .product-main-media img {
    min-height: 480px;
  }

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

  .product-tabs-nav {
    top: 86px;
  }

  .solution-index {
    gap: 50px;
  }

  .solution-intro,
  .service-copy {
    position: static;
  }

  .solution-cases {
    gap: 48px;
  }

  .solution-case {
    gap: 28px;
  }

  .solution-detail-body {
    grid-template-columns: 1fr;
  }

  .solution-flow {
    position: static;
  }

  .sol-detail {
    padding-top: 60px;
  }

  .sol-related-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-layout aside {
    display: none;
  }

  .about-layout { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; padding-bottom: 80px; }
  .about-sidebar { position: static; }
  .about-sidebar nav { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .about-sidebar nav a { border-bottom: 0; padding: 8px 16px; border: 1px solid #e5e5e5; border-radius: 6px; font-size: 13px; }
  .about-sidebar nav a.active { background: #2c6fe8; color: #fff; border-color: #2c6fe8; }
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 400px;
  }

  .service-overview {
    gap: 45px;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-side {
    min-height: 700px;
    padding-top: 130px;
  }

  .contact-form {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 20px;
  }

  .section-shell {
    padding-inline: 20px;
  }

  .site-header {
    height: 60px;
    padding: 0 13px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

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

  .section-head {
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .round-link {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .home-hero {
    min-height: 820px;
    padding: 112px 20px 130px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .home-hero-copy>p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .home-hero-visual {
    min-height: 300px;
    margin: 0 -60px;
  }

  .home-hero-visual img {
    width: 620px;
  }

  .hero-proof {
    bottom: 18px;
    right: 20px;
    left: 20px;
  }

  .hero-proof div {
    padding: 12px 8px 0;
    gap: 8px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .home-intro,
  .home-products,
  .home-process,
  .home-news,
  .about-story {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .intro-heading h2 {
    font-size: 35px;
  }

  .intro-copy p {
    font-size: 16px;
  }

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

  .home-product-tile,
  .home-product-tile:first-child,
  .home-product-tile:nth-child(5) {
    grid-column: auto;
  }

  .tile-media {
    min-height: 230px;
  }

  .home-solutions,
  .solution-method,
  .about-values {
    padding: 75px 0;
  }

  .solution-panel {
    grid-template-columns: 30px 1fr 18px;
    min-height: 160px;
    padding: 22px 0;
  }

  .process-track,
  .method-grid,
  .delivery-strip {
    grid-template-columns: 1fr;
  }

  .process-track>div,
  .process-track>div:not(:first-child),
  .method-grid>div,
  .method-grid>div:first-child,
  .delivery-strip>div {
    min-height: 155px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid>div,
  .method-grid>div:first-child {
    border-color: var(--line-dark);
    padding-inline: 0;
  }

  .process-track h3,
  .method-grid h3,
  .delivery-strip h3 {
    margin-top: 26px;
  }

  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 540px;
    padding: 120px 20px 55px;
  }

  .inner-hero h1 {
    font-size: 43px;
  }

  .inner-hero>div>p {
    font-size: 15px;
  }

  .catalog-hero aside {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-hero aside div:last-child {
    grid-column: 1/-1;
  }

  .catalog-hero aside div {
    min-height: 90px;
    padding: 15px;
  }

  .catalog-hero aside span {
    margin-top: 10px;
  }

  .catalog-layout {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .catalog-toolbar span {
    display: none;
  }

  .catalog-grid,
  .catalog-grid.compact {
    grid-template-columns: 1fr;
  }

  .catalog-media {
    aspect-ratio: 1.35;
  }

  .catalog-copy p {
    min-height: 0;
  }

  .breadcrumb {
    padding-top: 96px;
    overflow: hidden;
    white-space: nowrap;
  }

  .commerce-product {
    gap: 28px;
    padding-bottom: 60px;
  }

  .product-main-media,
  .product-main-media img {
    min-height: 360px;
  }

  .product-purchase h1 {
    font-size: 37px;
  }

  .purchase-benefits {
    grid-template-columns: 1fr;
  }

  .purchase-benefits>div {
    min-height: 75px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .purchase-benefits b {
    margin-top: 0;
  }

  .purchase-actions {
    grid-template-columns: 1fr;
  }

  .product-tabs-nav {
    top: 78px;
    gap: 20px;
    overflow-x: auto;
  }

  .product-info-layout {
    padding: 55px 0;
  }

  .spec-panel {
    padding: 22px;
  }

  .related-products {
    padding-bottom: 80px;
  }

  .solution-index {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .solution-intro h2 {
    font-size: 30px;
  }

  .solution-case,
  .solution-case:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .solution-case:nth-child(even) .case-media {
    order: 0;
  }

  .case-copy h2 {
    font-size: 26px;
  }

  .solution-detail-hero {
    min-height: 590px;
    padding-top: 125px;
  }

  .solution-detail-hero h1 {
    font-size: 43px;
  }

  .solution-detail-body {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .article-conversion {
    padding: 24px;
  }

  .sol-detail {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .sol-detail-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sol-related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .news-detail-head {
    padding-top: 120px;
  }

  .news-detail-head h1 {
    font-size: 40px;
  }

  .news-detail-layout {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .about-layout { padding-top: 30px; padding-bottom: 60px; }
  .about-story-grid {
    gap: 38px;
  }

  .about-visual {
    min-height: 300px;
  }

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

  .value-cards>div {
    min-height: 190px;
  }

  .value-cards h3 {
    margin-top: 38px;
  }

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

  .service-promise .section-shell {
    grid-template-columns: 1fr;
  }

  .service-promise div div,
  .service-promise div div:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid #c5d2da;
  }

  .downloads-page {
    padding-top: 45px;
    padding-bottom: 80px;
  }

  .download-heading {
    display: none;
  }

  .download-items a {
    grid-template-columns: 50px 1fr 20px;
    gap: 12px;
    padding: 18px 14px;
  }

  .download-items p {
    display: none;
  }

  .contact-side {
    min-height: 640px;
    padding: 120px 20px 60px;
  }

  .contact-side h1 {
    font-size: 42px;
  }

  .contact-side dl {
    grid-template-columns: 1fr;
  }

  .contact-side dl div:last-child {
    grid-column: auto;
  }

  .contact-form {
    padding: 70px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .not-found {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 110px;
  }

  .not-found-code {
    font-size: 120px;
  }

  .not-found-code i {
    width: 42px;
    height: 42px;
  }

  .not-found h1 {
    font-size: 36px;
  }

  .site-footer {
    padding: 70px 20px 22px;
  }

  .footer-action {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 45px;
  }

  .footer-action h2 {
    font-size: 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .footer-bottom a {
    margin-left: 0;
  }

  .floating-contact {
    right: 14px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .sol-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

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

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

  .home-hero-visual img {
    animation: none;
  }
}

/* 首页参考站布局：大图首屏 + 图片主导的分区节奏 */
body.site-page-home {
  background: #f7f8fa;
}

body.site-page-home .site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(16, 22, 27, .55);
  color: #fff;
  box-shadow: none;
}

body.site-page-home .site-header .brand strong,
body.site-page-home .site-header .brand small,
body.site-page-home .desktop-nav a {
  color: #fff;
}

body.site-page-home .desktop-nav a::after {
  background: #fff;
}

body.site-page-home .header-cta {
  background: #fff;
  color: #152131;
}

.ref-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 36px;
}

.ref-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #152b3f;
  color: #fff;
}

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

.ref-hero-slide>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  filter: saturate(.78) contrast(1.08);
  transform: scale(1.03);
}

.ref-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 19, 28, .74) 0%, rgba(10, 19, 28, .26) 57%, rgba(10, 19, 28, .1) 100%);
}

.ref-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 55px auto 0;
  padding: 0 36px;
}

.ref-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: #d7e9ef;
  font-size: 14px;
  letter-spacing: .08em;
}

.ref-hero-content h1 {
  max-width: 730px;
  margin: 0 0 20px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.12;
  letter-spacing: 0;
}

.ref-hero-content p {
  max-width: 550px;
  margin: 0;
  color: #d3e0e7;
  font-size: 18px;
}

.ref-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.ref-actions .button {
  min-width: 140px;
}

.button-dark {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(17, 30, 43, .8);
  color: #fff;
}

.button-dark:hover {
  background: #0d1c2b;
}

.ref-hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.ref-hero-dots i {
  width: 58px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .45);
}

.ref-hero-dots i.active {
  background: #fff;
}

.ref-section {
  padding: 96px 0;
  background: #fff;
}

.ref-products {
  padding-top: 90px;
}

.ref-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 42px;
}

.ref-title-row h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.24;
  letter-spacing: 0;
}

.ref-label {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.ref-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: var(--cyan);
}

.ref-label.light {
  color: #d5e8ef;
}

.ref-label.light::before {
  background: var(--lime);
}

.ref-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.ref-more span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #b8c9d4;
  border-radius: 50%;
  transition: .2s;
}

.ref-more:hover span {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(-30deg);
}

.ref-title-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.ref-product-card {
  overflow: hidden;
  border-radius: 14px;
  background: #f2f4f6;
}

.ref-product-card a {
  display: block;
}

.ref-product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #e4edf2;
}

.ref-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}

.ref-product-card:hover .ref-product-image img {
  transform: scale(1.045);
}

.ref-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 31, 43, .53));
}

.ref-product-image span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(12, 30, 45, .75);
  color: #fff;
  font-size: 10px;
}

.ref-product-copy {
  padding: 21px 22px 24px;
}

.ref-product-copy small {
  color: var(--cyan);
  font-size: 12px;
}

.ref-product-copy h3 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.35;
}

.ref-product-copy p {
  min-height: 46px;
  margin: 0;
  color: #6d7c89;
  font-size: 14px;
}

.ref-product-copy b {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
}

.ref-categories {
  background: #f3f5f6;
}

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

.ref-category-grid a {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 14px;
  background: #dce8ec;
  color: #fff;
}

.ref-category-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 31, 44, .78));
}

.ref-category-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .5s;
}

.ref-category-grid a:hover img {
  transform: scale(1.05);
}

.ref-category-grid a>div {
  position: absolute;
  z-index: 2;
  inset: auto 24px 24px;
}

.ref-category-grid a>div>span {
  color: var(--lime);
  font-size: 12px;
}

.ref-category-grid h3 {
  margin: 8px 0 4px;
  font-size: 25px;
}

.ref-category-grid p {
  margin: 0;
  color: #d0dce2;
  font-size: 13px;
}

.ref-solutions {
  background: #fff;
}

.ref-solution-grid {
  display: flex;
  gap: 10px;
  height: 340px;
}

.ref-solution-card {
  position: relative;
  flex: 0.85;
  height: 340px;
  overflow: hidden;
  border-radius: 14px;
  background: #253c4c;
  color: #fff;
  transition: flex .25s ease;
}

.ref-solution-card.expanded {
  flex: 2.2;
}

.ref-solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.ref-solution-card.expanded img {
  opacity: .85;
}

.ref-solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9, 26, 39, .86));
}

.ref-solution-card>div {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 21px;
  left: 22px;
}

.ref-solution-card h3 {
  margin: 8px 0;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: white-space .3s;
}

.ref-solution-card.expanded h3 {
  white-space: normal;
}

.ref-solution-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  color: #c6d5dd;
  font-size: 13px;
  line-height: 1.6;
  max-height: 3.2em;
}

.ref-wide-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: #172c3d;
}

.ref-wide-banner>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .52;
}

.ref-wide-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 33, 49, .82), rgba(15, 33, 49, .3));
}

.ref-wide-banner>div {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 36px;
}

.ref-wide-banner h2 {
  margin: 16px 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.18;
}

.ref-wide-banner p {
  max-width: 490px;
  color: #c5d5dd;
}

.ref-wide-banner .button {
  margin-top: 20px;
}

.ref-story {
  background: #f3f5f6;
}

.ref-story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 360px;
  padding: 36px 0;
}

.ref-story-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.ref-story-row.reverse .ref-story-copy {
  order: 2;
}

.ref-story-copy h2 {
  margin: 14px 0;
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.22;
}

.ref-story-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
}

.ref-story-copy .ref-more {
  margin-top: 20px;
}

.ref-story-image {
  min-height: 280px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 14px;
  background: #e8ecf0;
}

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

.ref-stats {
  padding: 100px 0;
  background: #152b3f;
  color: #fff;
}

.ref-stats .ref-title-row {
  align-items: flex-start;
}

.ref-stats .ref-title-row h2 {
  font-size: clamp(36px, 4.5vw, 58px);
}

.ref-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.ref-stat-grid div {
  padding: 27px 22px 0;
  border-right: 1px solid var(--line-dark);
}

.ref-stat-grid div:first-child {
  padding-left: 0;
}

.ref-stat-grid div:last-child {
  border: 0;
}

.ref-stat-grid strong,
.ref-stat-grid span {
  display: block;
}

.ref-stat-grid strong {
  color: var(--lime);
  font-size: 55px;
  line-height: 1.1;
}

.ref-stat-grid span {
  margin-top: 9px;
  color: #aec0cb;
  font-size: 13px;
}

.ref-news {
  background: #f4f6f7;
}

.ref-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ref-news-grid article {
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.ref-news-grid article>a>div {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ref-news-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}

.ref-news-grid article:hover img {
  transform: scale(1.05);
}

.ref-news-grid article>a>div span {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  border-radius: 4px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
}

.ref-news-grid time,
.ref-news-grid h3,
.ref-news-grid p,
.ref-news-grid b {
  display: block;
  margin-right: 20px;
  margin-left: 20px;
}

.ref-news-grid time {
  margin-top: 17px;
  color: #8a98a3;
  font-size: 12px;
}

.ref-news-grid h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.45;
}

.ref-news-grid p {
  min-height: 43px;
  color: var(--muted);
  font-size: 13px;
}

.ref-news-grid b {
  padding: 11px 0 22px;
  color: var(--blue);
  font-size: 12px;
}

.ref-cta {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: #152b3f;
}

.ref-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}

.ref-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 35, 51, .5);
}

.ref-cta>div {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 36px;
  text-align: center;
}

.ref-cta h2 {
  margin: 0 0 24px;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.22;
}

.ref-support {
  padding: 30px 0;
  background: #edf1f3;
}

.ref-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d4dee4;
}

.ref-support-grid div {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 25px;
  background: #fff;
}

.ref-support-grid strong {
  font-size: 17px;
}

.ref-support-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

body.site-page-home .floating-contact {
  right: 14px;
  bottom: 22%;
  width: 52px;
  height: auto;
  padding: 10px 6px;
  border-radius: 7px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 7px 25px rgba(20, 42, 64, .15);
}

.floating-contact b {
  color: var(--blue);
}

@media(max-width:900px) {
  .ref-container {
    padding-inline: 24px
  }

  .ref-hero,
  .ref-hero-slide {
    min-height: 680px
  }

  .ref-hero-content {
    padding-inline: 24px
  }

  .ref-hero-content h1 {
    font-size: 55px
  }

  .ref-product-row,
  .ref-category-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ref-product-card:last-child,
  .ref-category-grid a:last-child {
    grid-column: 1/-1
  }

  .ref-solution-grid {
    flex-wrap: wrap;
    height: auto;
    align-content: stretch;
  }

  .ref-solution-card,
  .ref-solution-card.expanded {
    flex: 1 1 calc(50% - 5px);
    height: 240px;
  }

  .ref-story-row,
  .ref-story-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 48px 0
  }

  .ref-story-row.reverse .ref-story-copy {
    order: 0
  }

  .ref-story-image {
    min-height: 220px;
    max-height: 260px;
  }

  .ref-stat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ref-stat-grid div:nth-child(2) {
    border-right: 0
  }

  .ref-stat-grid div {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line-dark)
  }

  .ref-news-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ref-news-grid article:last-child {
    grid-column: 1/-1;
    max-width: 50%
  }

  .ref-support-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .ref-container {
    padding-inline: 20px
  }

  .ref-hero,
  .ref-hero-slide {
    min-height: 620px
  }

  .ref-hero-content {
    padding-inline: 20px;
    margin-top: 42px
  }

  .ref-hero-content h1 {
    font-size: 42px
  }

  .ref-hero-content p {
    font-size: 15px
  }

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

  .ref-actions .button {
    min-width: 132px
  }

  .ref-title-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px
  }

  .ref-title-row h2 {
    font-size: 35px
  }

  .ref-more {
    margin-top: 7px
  }

  .ref-section {
    padding: 70px 0
  }

  .ref-product-row,
  .ref-category-grid,
  .ref-solution-grid,
  .ref-news-grid {
    grid-template-columns: 1fr
  }

  .ref-product-card:last-child,
  .ref-category-grid a:last-child,
  .ref-news-grid article:last-child {
    grid-column: auto;
    max-width: none
  }

  .ref-product-image {
    height: 230px
  }

  .ref-category-grid a {
    min-height: 290px
  }

  .ref-solution-card {
    height: 240px
  }

  .ref-wide-banner {
    min-height: 470px
  }

  .ref-wide-banner>div {
    padding-inline: 20px
  }

  .ref-story-copy h2 {
    font-size: 35px
  }

  .ref-story-image {
    min-height: 200px;
    max-height: 240px;
  }

  .ref-stat-grid {
    grid-template-columns: 1fr 1fr
  }

  .ref-stat-grid strong {
    font-size: 43px
  }

  .ref-stat-grid div {
    padding-inline: 12px
  }

  .ref-stat-grid div:first-child {
    padding-left: 0
  }

  .ref-news-grid article>a>div {
    height: 205px
  }

  .ref-cta {
    min-height: 330px
  }

  .ref-cta>div {
    padding-inline: 20px
  }

  .ref-support-grid {
    grid-template-columns: 1fr 1fr
  }

  .ref-support-grid div {
    padding-inline: 14px
  }

  body.site-page-home .floating-contact {
    right: 12px
  }
}

/* 商城商品页：缩略图栏与主图并列，靠近参考站详情结构 */
.product-gallery {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: start
}

.product-thumbs {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0
}

.product-thumbs button {
  width: 82px;
  height: 72px
}

.product-main-media {
  grid-column: 2;
  grid-row: 1
}

.product-main-media img {
  object-fit: contain;
  padding: 24px;
  background: #fff
}

.product-main-media {
  background: #fff
}

.product-purchase {
  padding-top: 8px
}

.product-purchase h1 {
  font-weight: 600
}

.purchase-status {
  background: #f6f8fb;
  border: 1px solid #e6ebf1
}

.purchase-actions .button {
  border-radius: 999px
}

.purchase-actions .button-secondary {
  border-radius: 999px
}

.product-tabs-nav {
  border-radius: 0;
  border-width: 0 0 1px;
  padding-left: 0;
  padding-right: 0;
  background: transparent
}

.product-tabs-nav a.active::after {
  bottom: -17px
}

.spec-panel {
  border-radius: 5px
}

.delivery-strip {
  border-radius: 5px
}

@media(max-width:820px) {
  .product-gallery {
    display: block
  }

  .product-thumbs {
    flex-direction: row;
    margin-top: 12px;
    overflow-x: auto
  }

  .product-thumbs button {
    flex: 0 0 70px;
    width: 70px;
    height: 60px
  }

  .product-main-media {
    min-height: 430px
  }

  .product-main-media img {
    min-height: 430px
  }
}

/* Reference-site interaction polish */
.ref-hero-content {
  animation: refHeroIn .8s cubic-bezier(.22, .61, .36, 1) both;
}

.ref-hero-dots i {
  transition: width .25s ease, background .25s ease;
}

.ref-hero-dots i.active {
  width: 78px;
}

.ref-product-card:focus-within,
.ref-category-grid a:focus-visible,
.ref-solution-card:focus-visible,
.ref-news-grid article:focus-within {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.site-header a:focus-visible,
.button:focus-visible,
.ref-more:focus-visible,
.floating-contact:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@keyframes refHeroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .site-page-home .site-header {
    padding-inline: 16px;
  }

  .site-page-home .header-cta {
    display: none;
  }

  .ref-hero-dots i.active {
    width: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ref-hero-content {
    animation: none;
  }
}

/* Wonderful reference direction: light home/lifestyle commerce */
body.site-page-home {
  background: #F7F8FA;
  color: #262626;
}

body.site-page-home .site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #ecebe8;
  box-shadow: 0 3px 18px rgba(40, 34, 24, .06);
}

body.site-page-home .site-header .brand strong,
body.site-page-home .site-header .brand small,
body.site-page-home .desktop-nav a {
  color: #2b2b2b;
}

body.site-page-home .desktop-nav a::after {
  background: #2c6fe8;
}

body.site-page-home .header-cta {
  background: #2c6fe8;
  color: #fff;
}

.ref-hero {
  min-height: 570px;
  background: #817c73;
}

.ref-hero-slide>img {
  opacity: 1;
  filter: saturate(.9) contrast(1.02);
}

.ref-hero-overlay {
  background: linear-gradient(90deg, rgba(20, 18, 15, .48), rgba(20, 18, 15, .08) 72%);
}

.ref-hero-content h1 {
  font-weight: 500;
  font-size: clamp(42px, 5vw, 72px);
}

.ref-kicker {
  letter-spacing: .12em;
}

.ref-section {
  padding: 72px 0;
}

.ref-products,
.ref-solutions {
  background: #fff;
}

.ref-categories,
.ref-news {
  background: #F7F8FA;
}

.ref-title-row {
  margin-bottom: 28px;
}

.ref-title-row h2 {
  color: #292929;
  font-weight: 500;
  font-size: clamp(29px, 3.2vw, 44px);
}

.ref-label {
  color: #2c6fe8;
}

.ref-product-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ref-product-card {
  border-radius: 14px;
  background: #F2F3F5;
}

.ref-product-image {
  height: 250px;
  background: #f0efeb;
}

.ref-product-image::after {
  background: linear-gradient(180deg, transparent 45%, rgba(35, 35, 35, .36));
}

.ref-product-copy {
  padding: 18px 18px 20px;
}

.ref-product-copy h3 {
  font-size: 18px;
  font-weight: 500;
}

.ref-product-copy p {
  min-height: 42px;
  color: #8a8985;
}

.ref-category-grid {
  gap: 10px;
}

.ref-category-grid a {
  min-height: 300px;
  border-radius: 14px;
  background: #ddd9d2;
}

.ref-category-grid a::after {
  background: linear-gradient(180deg, transparent 35%, rgba(44, 39, 34, .58));
}

.ref-solution-grid {
  gap: 10px;
}

.ref-solution-card {
  height: 340px;
  border-radius: 14px;
  background: #d8d5cf;
}

.ref-solution-card::after {
  background: linear-gradient(180deg, transparent 25%, rgba(31, 29, 27, .68));
}

.ref-wide-banner {
  min-height: 430px;
  background: #4c4a45;
}

.ref-wide-banner>img {
  opacity: .9;
  filter: saturate(.85);
}

.ref-wide-banner::after {
  background: linear-gradient(90deg, rgba(20, 18, 16, .42), rgba(20, 18, 16, .12));
}

.ref-wide-banner>div {
  text-align: center;
}

.ref-wide-banner h2 {
  font-weight: 500;
}

.ref-wide-banner p {
  margin-inline: auto;
}

.ref-story {
  background: #f3f5f6;
}

.ref-story-row {
  gap: 60px;
  min-height: 320px;
}

.ref-story-image {
  min-height: 260px;
  max-height: 300px;
  border-radius: 14px;
  background: #e8ecf0;
}

.ref-story-copy h2 {
  color: #2a2a2a;
  font-weight: 500;
}

.ref-stats {
  padding: 72px 0;
  background: #fff;
  color: #292929;
}

.ref-stats .ref-title-row h2 {
  color: #292929;
}

.ref-stat-grid {
  border-top-color: #e9e8e5;
}

.ref-stat-grid div {
  border-right-color: #e9e8e5;
}

.ref-stat-grid strong {
  color: #2c6fe8;
  font-weight: 500;
}

.ref-stat-grid span {
  color: #8a8985;
}

.ref-news-grid article {
  border-radius: 14px;
  background: #fff;
}

.ref-cta {
  min-height: 360px;
}

.ref-support {
  background: #f0f0ed;
}

.ref-support-grid {
  background: #e0dfda;
}

.ref-support-grid div {
  background: #fff;
}

@media (max-width: 700px) {

  .ref-hero,
  .ref-hero-slide {
    min-height: 500px;
  }

  .ref-hero-content h1 {
    font-size: 42px;
  }

  .ref-product-image {
    height: 210px;
  }

  .ref-section {
    padding: 58px 0;
  }
}

/* Keep inner pages in the same light editorial commerce language */
body.site-page:not(.site-page-home) {
  background: #F7F8FA;
  color: #292929;
}

body.site-page:not(.site-page-home) .site-header {
  background: rgba(255, 255, 255, .96);
  border-color: #ecebe8;
  box-shadow: 0 3px 18px rgba(40, 34, 24, .06);
}

body.site-page:not(.site-page-home) .site-header .brand strong,
body.site-page:not(.site-page-home) .site-header .brand small,
body.site-page:not(.site-page-home) .desktop-nav a {
  color: #2b2b2b;
}

.inner-hero {
  background: #fff;
}

.inner-hero h1,
.section-head h2,
.solution-intro h2,
.case-copy h2,
.news-detail-head h1,
.product-purchase h1,
.contact-side h1 {
  font-weight: 500;
  color: #292929;
}

.home-solutions,
.solution-method,
.about-values,
.ref-stats {
  background: #fff;
  color: #292929;
}

.section-head.light,
.solution-method .section-head.light {
  color: #292929;
}

.section-label.light {
  color: #2c6fe8;
}

.section-label.light::before {
  background: #2c6fe8;
  box-shadow: 0 0 0 5px rgba(44, 111, 232, .1);
}

.method-grid>div,
.value-cards>div {
  border-color: #e7e5e1;
}

.method-grid p,
.value-cards p,
.solution-panel p {
  color: #77746e;
}

.solution-panel {
  border-color: #e7e5e1;
}

.solution-panel:hover {
  background: #F2F3F5;
}

.solution-panel>span,
.method-grid i,
.value-cards i {
  color: #2c6fe8;
}

.site-footer {
  background: #282622;
}

/* Homepage merchandising tiles use the supplied lifestyle photography while preserving TP product data */
body.site-page-home .ref-product-image img,
body.site-page-home .ref-solution-card>img {
  opacity: 0;
}

body.site-page-home .ref-product-card:nth-child(1) .ref-product-image {
  background: url('/assets/images/ref-2026050910182095.jpg') center/cover;
}

body.site-page-home .ref-product-card:nth-child(2) .ref-product-image {
  background: url('/assets/images/ref-2026050910524817.jpg') center/cover;
}

body.site-page-home .ref-product-card:nth-child(3) .ref-product-image {
  background: url('/assets/images/ref-2026050910571875.jpg') center/cover;
}

body.site-page-home .ref-product-card:nth-child(4) .ref-product-image {
  background: url('/assets/images/ref-2026050910304815.jpg') center/cover;
}

body.site-page-home .ref-product-card:nth-child(5) .ref-product-image {
  background: url('/assets/images/ref-2026050910313617.jpg') center/cover;
}

body.site-page-home .ref-product-card:nth-child(6) .ref-product-image {
  background: url('/assets/images/ref-2026050910365063.jpg') center/cover;
}

body.site-page-home .ref-solution-card:nth-child(1) {
  background: url('/assets/images/ref-2026050818032641.jpg') center/cover;
}

body.site-page-home .ref-solution-card:nth-child(2) {
  background: url('/assets/images/ref-2026050910524817.jpg') center/cover;
}

body.site-page-home .ref-solution-card:nth-child(3) {
  background: url('/assets/images/ref-2026050910571875.jpg') center/cover;
}

body.site-page-home .ref-solution-card:nth-child(4) {
  background: url('/assets/images/ref-2026050910304815.jpg') center/cover;
}

/* Footer rebuilt to mirror the reference site's airy service-and-contact layout */
.site-footer {
  padding: 0 var(--pad) 0;
  background: #fff;
  color: #252525;
  border-top: 1px solid #ececea;
}

.footer-action {
  display: none;
}

.footer-main {
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  padding: 68px 0 34px;
}

.brand-light strong {
  color: #252525;
  font-size: 30px;
  font-weight: 500;
}

.brand-light small {
  color: #8a8d92;
}

.footer-brand>p {
  max-width: 580px;
  margin-top: 28px;
  color: #666a70;
  line-height: 1.9;
}

.footer-main h3 {
  margin-bottom: 16px;
  color: #8a8d92;
}

.footer-main nav,
.footer-main>div:last-child {
  gap: 10px;
}

.footer-main>div:last-child {
  align-items: flex-start;
  justify-self: end;
  min-width: 250px;
}

.footer-main>div:last-child p:first-of-type {
  color: #2d3035;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: .02em;
}

.footer-main>div:last-child p {
  color: #73777d;
}

.footer-main nav {
  grid-column: 1/-1;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 25px;
  border-top: 1px solid #e8e8e6;
}

.footer-main nav h3 {
  display: none;
}

.footer-main nav a {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #d8dadd;
  color: #4d5157;
}

.footer-main nav a:last-child {
  border-right: 0;
}

.footer-bottom {
  margin: 0 calc(var(--pad) * -1);
  padding: 21px var(--pad);
  border-top: 0;
  background: #f2f3f4;
  color: #9299a2;
}

.footer-bottom a {
  color: #60666f;
}

@media (max-width: 700px) {
  .site-footer {
    padding-inline: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .footer-main>div:last-child {
    justify-self: start;
    min-width: 0;
  }

  .footer-main>div:last-child p:first-of-type {
    font-size: 26px;
  }

  .footer-main nav {
    grid-column: auto;
    gap: 13px 0;
  }

  .footer-main nav a {
    margin-right: 13px;
    padding-right: 13px;
  }

  .footer-bottom {
    margin-inline: -20px;
    padding-inline: 20px;
  }
}

.footer-contact .footer-contact-label {
  color: #9299a2;
  font-size: 13px;
}

.footer-contact .footer-contact-meta {
  margin-top: 8px;
  color: #9299a2;
  font-size: 12px;
}

.footer-contact .footer-phone {
  color: #2d3035;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.footer-contact .footer-contact-label+.footer-contact-meta {
  margin-top: 4px;
}

/* Banner carousel */
.ref-hero {
  min-height: 570px;
}

.ref-hero-slide {
  position: absolute;
  inset: 0;
  min-height: 570px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.ref-hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.ref-hero-dots {
  bottom: 26px;
}

.ref-hero-dots i {
  width: 34px;
  height: 3px;
}

.ref-hero-dots i.active {
  width: 54px;
  background: #fff;
}

@media (max-width: 700px) {

  .ref-hero,
  .ref-hero-slide {
    min-height: 500px;
  }
}

/* Reference blue pill actions */
.site-page-home .button,
.site-page-home .header-cta {
  border-radius: 999px;
  background: #3f5cf4;
  border-color: #3f5cf4;
  color: #fff;
  min-height: 42px;
  padding-inline: 20px;
  font-size: 13px;
}

.site-page-home .button:hover,
.site-page-home .header-cta:hover {
  background: #3049d6;
  border-color: #3049d6;
}

.site-page-home .button-light {
  background: #fff;
  border-color: #fff;
  color: #262626;
}

.site-page-home .button-light:hover {
  background: #3f5cf4;
  border-color: #3f5cf4;
  color: #fff;
}

.site-page-home .button-dark {
  background: rgba(34, 34, 34, .78);
  border-color: rgba(255, 255, 255, .4);
}

@media (max-width: 700px) {
  .ref-product-row {
    display: flex;
    overflow-x: auto;
    gap: 9px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ref-product-row::-webkit-scrollbar {
    display: none;
  }

  .ref-product-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
  }

  .ref-product-image {
    height: 220px;
  }

  .ref-product-copy h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ref-category-grid a,
  .ref-solution-card {
    height: 240px;
  }

  .ref-news-grid article>a>div {
    height: 180px;
  }
}

/* Footer geometry: brand left, contact block right, navigation below */
.footer-main {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer-contact {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.footer-main nav {
  grid-column: 1/-1;
  grid-row: 2;
}

@media (max-width: 700px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-main nav {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-contact {
    justify-self: start;
    max-width: none;
  }
}

.ref-support-grid div {
  align-items: center;
  text-align: center;
  min-height: 150px;
}

.ref-support-grid div img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 13px;
}

.ref-support-grid strong {
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .ref-support-grid div {
    min-height: 125px;
    padding: 16px 10px;
  }

  .ref-support-grid div img {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }
}

/* Contact typography tuned to the reference footer scale */
.footer-contact p.footer-contact-label {
  font-size: 13px !important;
  line-height: 1.45;
  color: #9299a2;
}

.footer-contact p.footer-contact-meta {
  font-size: 12px !important;
  line-height: 1.5;
}

.footer-contact p.footer-phone {
  font-size: 18px !important;
  line-height: 1.2;
  font-weight: 500;
  color: #2d3035;
  margin-bottom: 16px;
}

.footer-contact>p:last-child {
  font-size: 13px !important;
  color: #2d3035;
}

@media (max-width: 700px) {
  .footer-contact p.footer-contact-label {
    font-size: 13px !important;
  }

  .footer-contact p.footer-phone {
    font-size: 16px !important;
  }
}

/* Product center: Wonderful-style commerce catalog */
.shop-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}

.shop-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 19, .34);
}

.shop-hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.shop-hero-copy span {
  font-size: 13px;
  letter-spacing: .14em;
}

.shop-hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
}

.shop-catalog {
  padding-top: 58px;
  padding-bottom: 110px;
}

.shop-filters {
  padding: 4px 26px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 35px rgba(39, 35, 29, .06);
}

.shop-filters nav {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-filters nav::-webkit-scrollbar {
  display: none;
}

.shop-filters nav+nav {
  border-top: 1px solid #ecebe8;
}

.shop-filters a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #9297a0;
  font-size: 14px;
  white-space: nowrap;
}

.shop-filters a.active {
  color: #272a30;
  font-weight: 600;
}

.shop-filter-primary a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 0;
  background: #272a30;
}

.shop-filter-secondary a.active {
  color: #272a30;
  font-weight: 600;
}

.shop-filter-secondary a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  background: #2c6fe8;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 44px 0 22px;
}

.shop-toolbar strong {
  font-size: 20px;
  font-weight: 500;
}

.shop-toolbar span {
  color: #9a9da3;
  font-size: 13px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 100px;
}

.shop-card {
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(33, 30, 24, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(33, 30, 24, .12);
}

.shop-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fafafa;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s ease;
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.04);
}

.shop-badge {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 13px;
  padding: 4px 8px;
  border-radius: 3px;
  background: #3f5cf4;
  color: #fff;
  font-size: 10px;
}

.shop-card-copy {
  padding: 18px 18px 20px;
}

.shop-card-copy small {
  color: #9297a0;
  font-size: 11px;
}

.shop-card-copy h2 {
  margin: 8px 0 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.shop-card-copy p {
  display: -webkit-box;
  min-height: 39px;
  margin: 0;
  overflow: hidden;
  color: #9b9da1;
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shop-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #eeeeec;
}

.shop-card-bottom strong {
  color: #ff4b4b;
  font-size: 16px;
  font-weight: 500;
}

.shop-card-bottom a {
  color: #3f5cf4;
  font-size: 12px;
}

.shop-card-bottom a span {
  margin-left: 5px;
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shop-hero {
    min-height: 300px;
  }

  .shop-hero-copy h1 {
    font-size: 46px;
  }

  .shop-catalog {
    padding-top: 28px;
    padding-bottom: 70px;
  }

  .shop-filters {
    padding: 12px 15px 2px;
  }

  .shop-filters nav {
    gap: 20px;
    min-height: 43px;
  }

  .shop-filters a {
    font-size: 13px;
    min-height: 39px;
  }

  .shop-toolbar {
    padding: 30px 0 16px;
  }

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

  .shop-card-copy {
    padding: 13px 12px 14px;
  }

  .shop-card-copy h2 {
    font-size: 15px;
  }

  .shop-card-copy p {
    font-size: 11px;
  }

  .shop-card-bottom {
    margin-top: 12px;
    padding-top: 10px;
  }

  .shop-card-bottom strong {
    font-size: 14px;
  }
}

/* Product center display imagery follows the supplied furniture reference */
.shop-card-media img {
  opacity: 0;
}

.shop-card:nth-child(1) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050910182095.jpg') center/contain no-repeat;
}

.shop-card:nth-child(2) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050910524817.jpg') center/contain no-repeat;
}

.shop-card:nth-child(3) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050910571875.jpg') center/contain no-repeat;
}

.shop-card:nth-child(4) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050910304815.jpg') center/contain no-repeat;
}

.shop-card:nth-child(5) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050910313617.jpg') center/contain no-repeat;
}

.shop-card:nth-child(6) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050910365063.jpg') center/contain no-repeat;
}

.shop-card:nth-child(7) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050818033092.jpg') center/contain no-repeat;
}

.shop-card:nth-child(8) .shop-card-media {
  background: #fafafa url('/assets/images/ref-2026050818033492.jpg') center/contain no-repeat;
}

/* One shared header across every route */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  height: 72px;
  padding-inline: 28px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 3px 16px rgba(36, 34, 30, .08);
}

.site-header .brand strong,
.site-header .brand small,
.desktop-nav a {
  color: #2b2b2b;
}

.desktop-nav a::after {
  background: #3f5cf4;
}

.header-cta {
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 999px;
  background: #3f5cf4;
  color: #fff;
}

.header-cta:hover {
  background: #3049d6;
}

@media (max-width: 900px) {
  .site-header {
    height: 56px;
    padding-inline: 20px;
  }

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }
}

.site-header.scrolled {
  top: 0;
  border-radius: 0;
}

/* Compact shared header */
.site-header,
.site-header.scrolled {
  height: 60px;
  padding-inline: 28px;
}

.site-header .brand img {
  width: 36px;
  height: 36px;
}

.site-header .brand strong {
  font-size: 16px;
}

.site-header .brand small {
  margin-top: 2px;
  font-size: 9px;
}

.desktop-nav a {
  padding-inline: 18px;
  font-size: 14px;
}

.desktop-nav a::after {
  bottom: 7px;
}

.header-cta {
  min-height: 40px;
  padding-inline: 20px;
  font-size: 13px;
}

@media (max-width: 900px) {

  .site-header,
  .site-header.scrolled {
    height: 52px;
    padding-inline: 16px;
  }

  .site-header .brand img {
    width: 34px;
    height: 34px;
  }
}

/* Homepage Swiper hero */
.home-hero-swiper {
  width: 100%;
  height: 570px;
  overflow: hidden;
  background: #111;
}

.home-hero-swiper .swiper {
  width: 100%;
  height: 100%;
}

.home-hero-swiper .swiper-slide {
  overflow: hidden;
}

.home-hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-swiper .swiper-button-prev,
.home-hero-swiper .swiper-button-next {
  color: #fff;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, .45);
  border-radius: 50%;
  opacity: 0;
  transition: all .3s;
}

.home-hero-swiper .swiper-button-prev:hover,
.home-hero-swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, .65);
}

.home-hero-swiper .swiper-button-prev::after,
.home-hero-swiper .swiper-button-next::after {
  font-size: 16px;
}

.home-hero-swiper .swiper-pagination {
  bottom: 24px !important;
}

.home-hero-swiper .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .4);
  opacity: 1;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.home-hero-swiper .swiper-pagination-bullet-active {
  width: 48px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, .4);
}

.site-page-home .floating-contact {
  display: none;
}

@media (max-width: 768px) {
  .home-hero-swiper {
    height: 260px;
  }

  .home-hero-swiper .swiper-button-prev,
  .home-hero-swiper .swiper-button-next {
    display: none;
  }

  .home-hero-swiper .swiper-pagination {
    bottom: 12px !important;
  }

  .home-hero-swiper .swiper-pagination-bullet {
    width: 20px;
  }

  .home-hero-swiper .swiper-pagination-bullet-active {
    width: 32px;
  }
}