/** Shopify CDN: Minification failed

Line 838:1 Expected "}" to go with "{"

**/
/* HexuFan B2B homepage system — scoped to .hx-* */
:root {
  --hx-ink: #17231d;
  --hx-muted: #66736c;
  --hx-green: #61785e;
  --hx-green-dark: #38513d;
  --hx-sage: #dce5d6;
  --hx-sage-soft: #f3f6f0;
  --hx-warm: #f7f3eb;
  --hx-line: rgba(23, 35, 29, 0.14);
  --hx-white: #ffffff;
  --hx-radius: 24px;
  --hx-shadow: 0 20px 60px rgba(23, 35, 29, 0.10);
}

.hx-section { color: var(--hx-ink); }
.hx-shell { width: min(calc(100% - 40px), 1320px); margin-inline: auto; }
.hx-kicker { margin: 0 0 12px; color: var(--hx-green); font-size: 12px; line-height: 1.2; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.hx-title { margin: 0; color: var(--hx-ink); font-size: clamp(34px, 4.1vw, 64px); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.hx-title--section { font-size: clamp(30px, 3.1vw, 48px); line-height: 1.03; }
.hx-copy { margin: 18px 0 0; color: var(--hx-muted); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.7; }
.hx-copy p { margin: 0; }
.hx-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hx-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--hx-green-dark); border-radius: 999px; background: var(--hx-green-dark); color: #fff; font-size: 15px; font-weight: 700; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease; }
.hx-button:hover { transform: translateY(-2px); }
.hx-button--secondary { background: transparent; color: var(--hx-green-dark); }
.hx-button--light { border-color: #fff; background: #fff; color: var(--hx-green-dark); }
.hx-button--ghost-light { border-color: rgba(255,255,255,.6); background: transparent; color: #fff; }
.hx-section-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); align-items: end; gap: 48px; margin-bottom: 44px; }
.hx-section-head .hx-copy { margin: 0; }


/* Fullscreen image-only homepage hero + lightweight carousel. */
.hx-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - var(--header-group-height, 0px));
  height: calc(100svh - var(--header-group-height, 0px));
  min-height: 560px;
  padding: 0;
  background: #dcecf3;
  isolation: isolate;
}

@supports (height: 100dvh) {
  .hx-hero { height: calc(100dvh - var(--header-group-height, 0px)); }
}

.hx-hero__viewport,
.hx-hero__track,
.hx-hero__slide,
.hx-hero__slide-link,
.hx-hero__picture {
  width: 100%;
  height: 100%;
}

.hx-hero__viewport,
.hx-hero__track {
  position: relative;
  overflow: hidden;
}

.hx-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.hx-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hx-hero__slide-link,
.hx-hero__picture {
  display: block;
}

.hx-hero__image,
.hx-hero__picture img,
.hx-hero__picture svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hx-hero-desktop-position, 50% 50%);
}

.hx-hero__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  background: rgba(18,18,18,.22);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(6px);
}

.hx-hero__arrow span { font-size: 34px; line-height: 1; margin-top: -2px; }
.hx-hero__arrow--prev { left: 22px; }
.hx-hero__arrow--next { right: 22px; }
.hx-hero__arrow:hover { background: rgba(18,18,18,.38); }

.hx-hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hx-hero__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
  -webkit-tap-highlight-color: transparent;
}

.hx-hero__dot.is-active {
  width: 24px;
  background: #fff;
}

@media (max-width: 749px) {
  .hx-hero {
    height: calc(100vh - var(--header-group-height, 0px));
    height: calc(100svh - var(--header-group-height, 0px));
    min-height: 420px;
  }

  @supports (height: 100dvh) {
    .hx-hero { height: calc(100dvh - var(--header-group-height, 0px)); }
  }

  .hx-hero__image,
  .hx-hero__picture img,
  .hx-hero__picture svg {
    object-position: var(--hx-hero-mobile-position, 70% 50%);
  }

  .hx-hero__arrow {
    width: 38px;
    height: 38px;
    background: rgba(18,18,18,.18);
  }
  .hx-hero__arrow span { font-size: 29px; }
  .hx-hero__arrow--prev { left: 10px; }
  .hx-hero__arrow--next { right: 10px; }
  .hx-hero__dots { bottom: max(14px, env(safe-area-inset-bottom)); }
}

.hx-trust { padding: 16px 0; background: var(--hx-green-dark); color: #fff; }
.hx-trust__grid { display: grid; grid-template-columns: repeat(var(--hx-cols, 5), minmax(0,1fr)); }
.hx-trust__item { min-height: 68px; display: flex; align-items: center; gap: 12px; padding: 10px 18px; border-right: 1px solid rgba(255,255,255,.16); }
.hx-trust__item:last-child { border-right: 0; }
.hx-trust__icon { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 16px; }
.hx-trust__item strong { display: block; font-size: 14px; line-height: 1.2; }
.hx-trust__item span { display: block; margin-top: 2px; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.3; }

@media (max-width: 990px) {
  .hx-trust__item { border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
  .hx-trust__item:nth-child(2n) { border-right: 0; }
  .hx-trust__item:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; justify-content: center; }
}

@media (max-width: 640px) {
  .hx-trust__item,
  .hx-trust__item:nth-child(2n),
  .hx-trust__item:last-child { grid-column: auto; justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
}

.hx-products { padding: clamp(68px, 8vw, 112px) 0; background: #fff; }
.hx-product-grid { display: grid; grid-template-columns: repeat(var(--hx-product-cols, 4), minmax(0,1fr)); gap: 18px; }
.hx-product-card { min-width: 0; border: 1px solid var(--hx-line); border-radius: 22px; overflow: hidden; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.hx-product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(23,35,29,.09); }
.hx-product-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--hx-sage-soft); }
.hx-product-card__media img, .hx-product-card__media svg { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.hx-product-card:hover .hx-product-card__media img { transform: scale(1.035); }
.hx-product-card__tag { position: absolute; left: 14px; top: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--hx-green-dark); font-size: 11px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.hx-product-card__body { padding: 18px 18px 20px; }
.hx-product-card__title { margin: 0; font-size: 18px; line-height: 1.3; }
.hx-product-card__title a { color: inherit; text-decoration: none; }
.hx-product-card__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 9px; color: var(--hx-muted); font-size: 13px; }
.hx-product-card__arrow { color: var(--hx-green-dark); font-weight: 800; }
.hx-products__footer { display: flex; justify-content: center; margin-top: 36px; }

.hx-capabilities { padding: clamp(68px, 8vw, 112px) 0; background: var(--hx-sage-soft); }
.hx-capabilities__grid { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 84px); align-items: center; }
.hx-capabilities__media { position: relative; min-height: 620px; border-radius: 28px; overflow: hidden; background: var(--hx-sage); }
.hx-capabilities__media img, .hx-capabilities__media svg { width: 100%; height: 100%; min-height: 620px; display: block; object-fit: cover; }
.hx-capabilities__stamp { position: absolute; right: 18px; bottom: 18px; width: 126px; height: 126px; display: grid; place-items: center; padding: 18px; border-radius: 50%; background: var(--hx-green-dark); color: #fff; text-align: center; font-size: 13px; line-height: 1.35; font-weight: 750; transform: rotate(-7deg); }
.hx-capabilities__list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.hx-capability { padding: 22px; border: 1px solid var(--hx-line); border-radius: 20px; background: rgba(255,255,255,.72); }
.hx-capability__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--hx-sage); color: var(--hx-green-dark); font-size: 18px; }
.hx-capability h3 { margin: 16px 0 7px; font-size: 18px; line-height: 1.3; }
.hx-capability p { margin: 0; color: var(--hx-muted); font-size: 14px; line-height: 1.6; }

.hx-markets { padding: clamp(68px, 8vw, 112px) 0; background: #fff; }
.hx-market-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.hx-market-card { position: relative; min-height: 430px; overflow: hidden; border-radius: 24px; background: var(--hx-sage); color: #fff; }
.hx-market-card img, .hx-market-card svg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hx-market-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,27,19,.82) 0%, rgba(15,27,19,.12) 65%); }
.hx-market-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(145deg,#b6c5af,#60765f); }
.hx-market-card__placeholder svg { position: static; width: 70%; height: auto; opacity: .45; }
.hx-market-card__content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 26px; }
.hx-market-card__content span { display: block; margin-bottom: 8px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
.hx-market-card__content h3 { margin: 0; font-size: 25px; line-height: 1.12; }
.hx-market-card__content p { margin: 10px 0 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.55; }

.hx-process { padding: clamp(68px, 8vw, 112px) 0; background: var(--hx-warm); }
.hx-process-grid { counter-reset: hxstep; display: grid; grid-template-columns: repeat(var(--hx-process-cols,4),minmax(0,1fr)); gap: 0; margin-top: 46px; }
.hx-process-card { counter-increment: hxstep; position: relative; padding: 0 28px; border-left: 1px solid var(--hx-line); }
.hx-process-card:first-child { padding-left: 0; border-left: 0; }
.hx-process-card:last-child { padding-right: 0; }
.hx-process-card::before { content: counter(hxstep, decimal-leading-zero); display: block; margin-bottom: 42px; color: var(--hx-green); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.hx-process-card::after { content: ''; position: absolute; left: 28px; right: -1px; top: 28px; height: 1px; background: var(--hx-line); }
.hx-process-card:first-child::after { left: 0; }
.hx-process-card:last-child::after { right: 0; }
.hx-process-card h3 { margin: 0; font-size: 20px; line-height: 1.3; }
.hx-process-card p { margin: 10px 0 0; color: var(--hx-muted); font-size: 14px; line-height: 1.65; }

.hx-inquiry { padding: clamp(68px, 8vw, 112px) 0; background: var(--hx-green-dark); color: #fff; }
.hx-inquiry__grid { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(42px, 7vw, 100px); align-items: start; }
.hx-inquiry .hx-kicker { color: #cbd9c5; }
.hx-inquiry .hx-title, .hx-inquiry .hx-copy { color: #fff; }
.hx-inquiry .hx-copy { color: rgba(255,255,255,.72); }
.hx-inquiry__facts { display: grid; gap: 13px; margin-top: 32px; }
.hx-inquiry__fact { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.5; }
.hx-inquiry__fact::before { content: '✓'; flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; }
.hx-form { padding: clamp(24px, 4vw, 40px); border-radius: 26px; background: #fff; color: var(--hx-ink); box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.hx-form__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.hx-field { display: grid; gap: 7px; }
.hx-field--full { grid-column: 1 / -1; }
.hx-field label { font-size: 12px; font-weight: 750; letter-spacing: .04em; }
.hx-field input, .hx-field select, .hx-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--hx-line); border-radius: 12px; background: #fff; color: var(--hx-ink); font: inherit; }
.hx-field textarea { min-height: 132px; resize: vertical; }
.hx-form__note { margin: 14px 0 0; color: var(--hx-muted); font-size: 12px; line-height: 1.5; }
.hx-form__success { padding: 14px 16px; margin-bottom: 16px; border-radius: 12px; background: var(--hx-sage-soft); color: var(--hx-green-dark); }
.hx-form .errors { margin: 0 0 16px; color: #a12f2f; }
.hx-form .hx-button { margin-top: 18px; width: 100%; }

@media (max-width: 990px) {
  .hx-shell { width: min(calc(100% - 30px), 1320px); }
  .hx-section-head { grid-template-columns: 1fr; gap: 18px; }
  .hx-trust__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hx-capabilities__grid { grid-template-columns: 1fr; }
  .hx-capabilities__media, .hx-capabilities__media img, .hx-capabilities__media svg { min-height: 520px; }
  .hx-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hx-market-grid { grid-template-columns: 1fr; }
  .hx-market-card { min-height: 390px; }
  .hx-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px 0; }
  .hx-process-card:nth-child(3) { padding-left: 0; border-left: 0; }
  .hx-inquiry__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hx-shell { width: min(calc(100% - 24px), 1320px); }
  .hx-trust__grid { grid-template-columns: 1fr; }
  .hx-title { font-size: clamp(38px, 12vw, 54px); }
  .hx-title--section { font-size: 34px; }
  .hx-actions { display: grid; }
  .hx-button { width: 100%; }
  .hx-product-grid { grid-template-columns: 1fr; }
  .hx-capabilities__media, .hx-capabilities__media img, .hx-capabilities__media svg { min-height: 420px; }
  .hx-capabilities__list { grid-template-columns: 1fr; }
  .hx-process-grid { grid-template-columns: 1fr; gap: 32px; }
  .hx-process-card, .hx-process-card:first-child, .hx-process-card:nth-child(3) { padding: 0; border-left: 0; }
  .hx-process-card::after, .hx-process-card:first-child::after { left: 0; }
  .hx-form__grid { grid-template-columns: 1fr; }
  .hx-field--full { grid-column: auto; }
}

/* One-time hero entrance animation. The image is visible by default, so a JS
   or storage failure can never leave the mobile hero blank. */
.hx-hero.hx-hero-intro-run .hx-hero__viewport {
  animation: hx-home-intro-media 820ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes hx-home-intro-media {
  from { opacity: 0; transform: translate3d(0, 26px, 0) scale(1.008); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hx-hero__slide { transition: none; }
  .hx-hero.hx-hero-intro-run .hx-hero__viewport { animation: none; }
}

/* Homepage below-the-fold reveal motion.
   Each section plays only the first time it enters the viewport in the current tab session. */
html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending .hx-reveal-item {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: opacity, transform;
}

html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending .hx-reveal-item.hx-reveal-from-left {
  transform: translate3d(-42px, 0, 0) scale(.99);
}

html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending .hx-reveal-item.hx-reveal-from-right {
  transform: translate3d(42px, 0, 0) scale(.99);
}

html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending.hx-reveal-visible .hx-reveal-item {
  animation: hx-section-reveal-up 680ms cubic-bezier(.22, 1, .36, 1) var(--hx-reveal-delay, 0ms) both;
}

html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending.hx-reveal-visible .hx-reveal-item.hx-reveal-from-left {
  animation-name: hx-section-reveal-left;
  animation-duration: 820ms;
}

html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending.hx-reveal-visible .hx-reveal-item.hx-reveal-from-right {
  animation-name: hx-section-reveal-right;
  animation-duration: 820ms;
}

@keyframes hx-section-reveal-up {
  from { opacity: 0; transform: translate3d(0, 30px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes hx-section-reveal-left {
  from { opacity: 0; transform: translate3d(-42px, 0, 0) scale(.99); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hx-section-reveal-right {
  from { opacity: 0; transform: translate3d(42px, 0, 0) scale(.99); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 640px) {
  html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending .hx-reveal-item {
    transform: translate3d(0, 20px, 0);
  }

  html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending .hx-reveal-item.hx-reveal-from-left {
    transform: translate3d(-20px, 0, 0) scale(.995);
  }

  html.hx-scroll-reveal-enabled .hx-section.hx-reveal-pending .hx-reveal-item.hx-reveal-from-right {
    transform: translate3d(20px, 0, 0) scale(.995);
  }

  @keyframes hx-section-reveal-up {
    from { opacity: 0; transform: translate3d(0, 20px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
  }

  @keyframes hx-section-reveal-left {
    from { opacity: 0; transform: translate3d(-20px, 0, 0) scale(.995); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  }

  @keyframes hx-section-reveal-right {
    from { opacity: 0; transform: translate3d(20px, 0, 0) scale(.995); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx-section .hx-reveal-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Immersive OEM / source-factory image break.
   The homepage enables this by default: after the product grid, the OEM visual
   becomes a true viewport-sized image with the capability content layered over it. */
.hx-capabilities--fullscreen {
  position: relative;
  min-height: calc(100vh - var(--header-group-height, 0px));
  min-height: calc(100svh - var(--header-group-height, 0px));
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--hx-green-dark);
}

@supports (height: 100dvh) {
  .hx-capabilities--fullscreen {
    min-height: calc(100dvh - var(--header-group-height, 0px));
  }
}

.hx-capabilities--fullscreen .hx-capabilities__grid {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1440px);
  min-height: calc(100vh - var(--header-group-height, 0px));
  min-height: calc(100svh - var(--header-group-height, 0px));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
}

@supports (height: 100dvh) {
  .hx-capabilities--fullscreen .hx-capabilities__grid {
    min-height: calc(100dvh - var(--header-group-height, 0px));
  }
}

.hx-capabilities--fullscreen .hx-capabilities__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--hx-sage);
}

.hx-capabilities--fullscreen .hx-capabilities__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 22, 16, .12) 0%, rgba(12, 22, 16, .08) 42%, rgba(12, 22, 16, .42) 100%),
    linear-gradient(0deg, rgba(12, 22, 16, .22), rgba(12, 22, 16, .06) 48%);
}

.hx-capabilities--fullscreen .hx-capabilities__media img,
.hx-capabilities--fullscreen .hx-capabilities__media svg {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: var(--hx-oem-position, 50% 50%);
}

.hx-capabilities--fullscreen .hx-capabilities__stamp {
  z-index: 3;
  right: auto;
  left: clamp(22px, 4vw, 64px);
  bottom: clamp(22px, 4vw, 56px);
  box-shadow: 0 16px 46px rgba(0,0,0,.18);
}

.hx-capabilities--fullscreen .hx-capabilities__content {
  width: min(620px, 48vw);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 28px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 28px 80px rgba(0,0,0,.20);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hx-capabilities--fullscreen .hx-capabilities__list {
  margin-top: 28px;
}

.hx-capabilities--fullscreen .hx-capability {
  background: rgba(255,255,255,.76);
}

@media (max-width: 990px) {
  .hx-capabilities--fullscreen .hx-capabilities__grid {
    width: min(calc(100% - 30px), 1320px);
    justify-content: center;
    padding-block: 48px;
  }

  .hx-capabilities--fullscreen .hx-capabilities__content {
    width: min(720px, 100%);
  }

  .hx-capabilities--fullscreen .hx-capabilities__stamp {
    left: 24px;
    bottom: 24px;
  }
}

@media (max-width: 640px) {
  .hx-capabilities--fullscreen {
    min-height: calc(100svh - var(--header-group-height, 0px));
  }

  .hx-capabilities--fullscreen .hx-capabilities__grid {
    width: min(calc(100% - 24px), 1320px);
    min-height: calc(100svh - var(--header-group-height, 0px));
    align-items: flex-end;
    padding-block: 38px 28px;
  }

  .hx-capabilities--fullscreen .hx-capabilities__media img,
  .hx-capabilities--fullscreen .hx-capabilities__media svg {
    object-position: var(--hx-oem-position-mobile, 50% 50%);
  }

  .hx-capabilities--fullscreen .hx-capabilities__media::after {
    background: linear-gradient(0deg, rgba(12,22,16,.58) 0%, rgba(12,22,16,.10) 62%);
  }

  .hx-capabilities--fullscreen .hx-capabilities__content {
    width: 100%;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
  }

  .hx-capabilities--fullscreen .hx-capabilities__stamp {
    display: none;
  }
}

/* Factory/company overview video — placed after product range as a B2B proof point. */
.hx-factory-video {
  padding: clamp(72px, 8vw, 116px) 0;
  background: #eef3ec;
  overflow: hidden;
}

.hx-factory-video__head {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.hx-factory-video__meta {
  margin: 16px 0 0;
  color: var(--hx-green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hx-factory-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 29, .12);
  border-radius: 28px;
  background: #111;
  box-shadow: 0 28px 80px rgba(23, 35, 29, .15);
}

.hx-factory-video__player,
.hx-factory-video__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #111;
}

.hx-factory-video__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--hx-line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
}

.hx-factory-video__proof span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-right: 1px solid var(--hx-line);
  color: var(--hx-green-dark);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 780;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

.hx-factory-video__proof span:last-child { border-right: 0; }

@media (max-width: 749px) {
  .hx-factory-video { padding: 60px 0; }
  .hx-factory-video__frame { border-radius: 18px; }
  .hx-factory-video__proof { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 15px; }
  .hx-factory-video__proof span { min-height: 50px; border-bottom: 1px solid var(--hx-line); }
  .hx-factory-video__proof span:nth-child(2n) { border-right: 0; }
  .hx-factory-video__proof span:nth-last-child(-n+2) { border-bottom: 0; }
}
/* =========================================================
   Hexu Certifications Slider
   ========================================================= */

.hx-certificates {
  padding: clamp(90px, 9vw, 130px) 0;
  background: #ffffff;
  overflow: hidden;
}

.hx-certificates__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.hx-certificates__head .hx-copy {
  margin: 0;
}

.hx-certificates__slider {
  position: relative;
}

.hx-certificates__viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hx-certificates__viewport::-webkit-scrollbar {
  display: none;
}


/* 横向排列 */

.hx-certificates__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 18px;
}


/* 电脑端一排约4张 */

.hx-certificate {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.hx-certificate__link {
  display: block;
  color: inherit;
  text-decoration: none;
}


/* 横向证书图片框 */

.hx-certificate__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--hx-line);
  border-radius: 18px;
  background: #f7f8f6;
}


/* 图片完整显示，不裁剪 */

.hx-certificate__image img,
.hx-certificate__image svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hx-certificate h3 {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.3;
}

.hx-certificate p {
  margin: 5px 0 0;
  color: var(--hx-muted);
  font-size: 12px;
  line-height: 1.5;
}


/* 左右箭头 */

.hx-certificates__arrow {
  position: absolute;
  z-index: 4;
  top: 45%;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hx-line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--hx-green-dark);
  font-size: 26px;
  cursor: pointer;
  transform: translateY(-50%);
}

.hx-certificates__arrow--prev {
  left: -21px;
}

.hx-certificates__arrow--next {
  right: -21px;
}


/* 证书图片：竖版完整显示 */

.hx-certificate__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4  / 4;
  padding: 6px;
  overflow: hidden;
  border: 1px solid var(--hx-line);
  border-radius: 18px;
  background: #f7f8f6;
}

.hx-certificate__image img,
.hx-certificate__image svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}


/* 平板 */
@media (max-width: 990px) {
/* 平板 */

@media (max-width: 990px) {

  .hx-certificates__head {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hx-certificate {
    flex: 0 0 calc((100% - 36px) / 3);
  }
}


/* 手机 */

@media (max-width: 749px) {

  .hx-certificates {
    padding: 60px 0;
  }

  .hx-certificates__head {
    margin-bottom: 28px;
  }

  .hx-certificates__track {
    gap: 12px;
  }

  .hx-certificate {
    flex: 0 0 78%;
  }

  .hx-certificates__arrow {
    display: none;
  }
}

/* ===== Certificate image final override ===== */

.hx-certificates .hx-certificate__image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 290 / 297 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--hx-line);
  border-radius: 16px;
  background: transparent !important;
}

.hx-certificates .hx-certificate__image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  max-width: none !important;
  max-height: none !important;
}