:root {
  --ink: #002b39;
  --muted: #606b72;
  --line: #e4e4df;
  --soft-line: #eeeeea;
  --paper: #ffffff;
  --mist: #f7f7f2;
  --wash: #efefea;
  --brand: #3e769b;
  --brand-dark: #315f7e;
  --accent: #3e769b;
  --surface-ur: #f3f4f5;
  --surface-ur-hover: #ffffff;
  --link-ur: #3e769c;
  --green: #178b63;
  --gold: #c99019;
  --navy: #101820;
  --shadow: 0 18px 45px rgba(0, 43, 57, 0.12);
  --radius: 16px;
  --radius-panel: 22px;
  --radius-control: 999px;
  --shell: min(1180px, calc(100vw - 48px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

body.is-leaving-page {
  pointer-events: none;
  animation: page-leave 220ms ease-in both;
}

body.modal-open {
  overflow: hidden;
}

main {
  animation: none;
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-enter-main {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes page-leave {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 97, 174, 0.32);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  scroll-margin-top: 86px;
}

.section h2,
.catalog-hero h1,
.product-detail-hero h1,
.subpage-hero h1 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}

.section h2 {
  color: #111827;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-lead {
  max-width: 680px;
  margin: 14px 0 30px;
  color: #5f6b7a;
  font-size: 17px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(0, 43, 57, 0.56);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-topbar {
  display: none;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-links {
  display: flex;
  gap: 18px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: color 260ms var(--ease-out), background 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-solid {
  color: var(--ink);
  border-color: rgba(223, 231, 238, 0.82);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: none;
  box-shadow: 0 12px 30px rgba(21, 32, 43, 0.09);
}

.catalog-route-page .site-header {
  color: var(--ink);
  border-color: rgba(223, 231, 238, 0.82);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: none;
  box-shadow: 0 12px 30px rgba(21, 32, 43, 0.07);
}

.header-inner {
  width: min(1360px, calc(100vw - 24px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 226px;
}

.brand-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong {
  position: relative;
  display: block;
  width: max-content;
  color: currentColor;
  font-family: Bahnschrift, "Aptos Display", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 23px;
  font-stretch: condensed;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: none;
}

.brand-text strong::after {
  content: "";
  display: block;
  width: 42%;
  height: 2px;
  margin-top: 4px;
  background: linear-gradient(90deg, #149ed8, transparent);
  transform-origin: left center;
}

.brand-text span {
  display: block;
  color: currentColor;
  opacity: 0.72;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: currentColor;
  font-size: 16px;
  font-weight: 400;
}

.main-nav a,
.mega-trigger {
  position: relative;
  padding: 30px 0;
}

.mega-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
}

.main-nav a::after,
.mega-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.mega-trigger:hover::after,
.mega-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

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

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.header-actions [data-search-open] {
  width: 36px;
  height: 36px;
  border-color: transparent;
  background: transparent;
}

.icon-button > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.mobile-menu-button::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

[data-search-open]::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

[data-search-open]::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: translate(8px, 9px) rotate(45deg);
  transform-origin: center;
}

.icon-button:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.header-actions [data-search-open]:hover,
.header-actions [data-search-open]:focus-visible {
  color: currentColor;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .icon-button,
.site-header.is-solid .icon-button {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.catalog-route-page .site-header .icon-button {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.site-header.is-scrolled .header-actions [data-search-open],
.site-header.is-solid .header-actions [data-search-open] {
  border-color: transparent;
  background: transparent;
}

.catalog-route-page .site-header .header-actions [data-search-open] {
  border-color: transparent;
  background: transparent;
}

.mobile-menu-button {
  display: none;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  border: 1px solid var(--brand);
  border-radius: var(--radius-control);
  background: var(--brand);
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.16), 0 0.5px 2px rgba(0, 0, 0, 0.12);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), background 260ms var(--ease-out), border-color 260ms var(--ease-out);
}

.quote-button:hover {
  transform: translateY(-2px);
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  box-shadow: 0 8px 16px 1px rgba(0, 43, 57, 0.20), 0 1px 3px rgba(0, 0, 0, 0.14);
}

.header-actions .quote-button {
  min-height: 40px;
  padding: 10px 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  border-color: rgba(255, 255, 255, 0.94);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.header-actions .quote-button:hover,
.header-actions .quote-button:focus-visible {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled .header-actions .quote-button,
.site-header.is-solid .header-actions .quote-button {
  color: #ffffff;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.16), 0 0.5px 2px rgba(0, 0, 0, 0.12);
}

.catalog-route-page .site-header .header-actions .quote-button {
  color: #ffffff;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.16), 0 0.5px 2px rgba(0, 0, 0, 0.12);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  border: 1px solid var(--brand);
  border-radius: var(--radius-control);
  background: #ffffff;
  backdrop-filter: blur(10px);
  transition: transform 320ms var(--ease-out), border-color 320ms var(--ease-out), box-shadow 320ms var(--ease-out), background 320ms var(--ease-out);
}

.secondary-button:hover {
  transform: translateY(-2px);
  color: var(--brand-dark);
  border-color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.16), 0 0.5px 2px rgba(0, 0, 0, 0.12);
}

.cta-helper-link,
.route-context-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: rgba(9, 33, 52, 0.74);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  text-underline-offset: 5px;
  transition: color 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.cta-helper-link::after,
.route-context-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.cta-helper-link:hover,
.cta-helper-link:focus-visible,
.route-context-link:hover,
.route-context-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  transform: translateX(2px);
}

.quote-button:active,
.secondary-button:active,
.mega-card-action:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 7px 16px rgba(0, 97, 174, 0.18);
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 55;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -14px, 0);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 252, 0.98) 100%);
  border-top: 1px solid rgba(223, 231, 238, 0.82);
  border-bottom: 1px solid rgba(9, 33, 52, 0.10);
  box-shadow: 0 26px 56px rgba(8, 30, 48, 0.14);
  transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out), visibility 0s linear 220ms;
  will-change: opacity, transform;
}

.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.mega-inner {
  width: min(1440px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mega-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 4px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  background: transparent;
  border-bottom: 1px solid rgba(9, 33, 52, 0.10);
  user-select: none;
}

.mega-tabs::-webkit-scrollbar {
  display: none;
}

.mega-tab {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #243746;
  font-size: 13.5px;
  font-weight: 680;
  line-height: 1.28;
  text-align: center;
  white-space: nowrap;
  background: transparent;
  -webkit-user-drag: none;
  transition: color 260ms var(--ease-out), background 260ms var(--ease-out), border-color 260ms var(--ease-out), transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.mega-tab::after {
  display: none;
}

.mega-tab.is-active,
.mega-tab:hover,
.mega-tab:focus-visible {
  color: #fff;
  border-color: transparent;
  background: #3e769b;
  transform: translate3d(0, -1px, 0);
  box-shadow: 0 10px 22px rgba(62, 118, 155, 0.22);
}

.mega-tab.is-active::after,
.mega-tab:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-tab-icon {
  display: none;
}

.mega-tab.is-active .mega-tab-icon,
.mega-tab:hover .mega-tab-icon {
  display: none;
}

.mega-tab span:not(.mega-tab-icon) {
  display: block;
}

.mega-panels {
  min-width: 0;
  padding: 16px 4px 20px;
  background: transparent;
}

.mega-panel {
  display: none;
}

.mega-panel.is-active {
  display: block;
  opacity: 1;
  animation: mega-panel-enter 360ms var(--ease-out) both;
}

@keyframes mega-panel-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mega-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.mega-panel-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.mega-panel-head p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mega-panel-controls {
  display: flex;
  gap: 10px;
}

.mega-panel-controls button {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid #d7e1e8;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(9, 33, 52, 0.08);
  cursor: pointer;
  transition: color 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out), transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.mega-panel-controls button:hover,
.mega-panel-controls button:focus-visible {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 14px 28px rgba(0, 97, 174, 0.22);
}

.mega-panel-controls button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.mega-panel-controls button.is-next::before {
  transform: rotate(135deg);
}

.mega-product-stage {
  position: relative;
  padding: 0 52px;
}

.mega-products {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 2px 0 10px;
}

.mega-products::-webkit-scrollbar {
  display: none;
}

.mega-product-card {
  position: relative;
  flex: 0 0 clamp(252px, 22vw, 318px);
  display: grid;
  grid-template-rows: clamp(154px, 13vw, 190px) auto;
  align-content: stretch;
  justify-items: stretch;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  text-align: left;
  scroll-snap-align: start;
  box-shadow: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 360ms var(--ease-out), border-color 360ms var(--ease-out), box-shadow 360ms var(--ease-out), background 360ms var(--ease-out);
}

.mega-product-card::after {
  display: none;
}

.mega-product-card:hover,
.mega-product-card:focus-visible {
  transform: translate3d(0, -2px, 0);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.mega-product-card:hover::after,
.mega-product-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-product-media {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  width: 100%;
  height: clamp(154px, 13vw, 190px);
  padding: 14px 18px 12px;
  overflow: hidden;
  border: 1px solid rgba(9, 33, 52, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 20px rgba(8, 30, 48, 0.06);
  transition: border-color 360ms var(--ease-out), box-shadow 360ms var(--ease-out), transform 360ms var(--ease-out);
}

.mega-product-card:hover .mega-product-media,
.mega-product-card:focus-visible .mega-product-media {
  border-color: rgba(62, 118, 155, 0.26);
  box-shadow: 0 20px 38px rgba(8, 30, 48, 0.12);
}

.mega-product-card img {
  position: absolute;
  inset: 14px 18px 12px;
  width: calc(100% - 36px);
  max-width: 100%;
  height: calc(100% - 26px);
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: drop-shadow(0 12px 12px rgba(8, 30, 48, 0.12));
  transition: transform 480ms var(--ease-out), filter 480ms var(--ease-out);
}

.mega-product-card:hover img,
.mega-product-card:focus-visible img {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 14px rgba(8, 30, 48, 0.16)) saturate(1.06) contrast(1.03);
}

.mega-product-card strong {
  display: block;
  max-width: 100%;
  padding-top: 0;
  color: #0d1720;
  font-size: clamp(14.5px, 1.05vw, 16px);
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.mega-card-action {
  display: inline-block;
  width: auto;
  height: auto;
  color: #0d1720;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  box-shadow: none;
  transform: translate3d(-6px, 0, 0);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out), color 260ms var(--ease-out);
}

.mega-card-action::after {
  content: "→";
  display: inline-block;
  width: auto;
  height: auto;
  border: 0;
  font-size: 18px;
  font-weight: 520;
  line-height: 1;
  transform: none;
}

.mega-product-card:hover .mega-card-action,
.mega-product-card:focus-visible .mega-card-action {
  opacity: 1;
  color: #3e769b;
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}

.mega-product-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  color: #0d1720;
  transition: transform 260ms var(--ease-out), color 260ms var(--ease-out);
}

.mega-product-card:hover .mega-product-title,
.mega-product-card:focus-visible .mega-product-title {
  transform: translate3d(2px, 0, 0);
}

.mega-product-scroll {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 56px;
  color: #0d1720;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 30, 48, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 240ms var(--ease-out), background 240ms var(--ease-out), border-color 240ms var(--ease-out), transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.mega-product-scroll[hidden] {
  display: none;
}

.mega-product-scroll.is-prev {
  left: 0;
}

.mega-product-scroll.is-next {
  right: 0;
}

.mega-product-scroll::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.mega-product-scroll.is-next::before {
  transform: rotate(135deg);
}

.mega-product-scroll:hover,
.mega-product-scroll:focus-visible {
  color: #ffffff;
  background: #3e769b;
  box-shadow: 0 22px 42px rgba(62, 118, 155, 0.28);
  transform: translateY(-50%) translateY(-2px);
}

.hero-slider {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity 520ms var(--ease-out), visibility 0s linear 520ms;
  will-change: opacity;
  contain: layout paint;
}

.hero-slide.is-active,
.hero-slide.is-leaving {
  visibility: visible;
  transition-delay: 0s;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transform: translateZ(0);
}

.hero-slide.is-leaving {
  opacity: 0;
  z-index: 1;
  transform: translateZ(0);
}

.hero-slide.is-leaving.is-reverse {
  transform: translateZ(0);
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: translateZ(0);
  transition: none;
  will-change: auto;
  backface-visibility: hidden;
}

.hero-slide.is-active img {
  transform: translateZ(0);
}

.hero-slide.is-leaving img {
  transform: translateZ(0);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(5, 19, 31, 0.30) 0%, rgba(5, 19, 31, 0.18) 36%, rgba(5, 19, 31, 0.04) 70%),
    linear-gradient(180deg, rgba(5, 19, 31, 0.34), rgba(5, 19, 31, 0.02) 42%, rgba(5, 19, 31, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  min-height: 760px;
  padding-top: 92px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #fff;
  transform: translate3d(0, -46px, 0);
}

.hero-content > * {
  grid-column: 1;
}

.hero-slider.is-animating .hero-slide.is-active .hero-kicker,
.hero-slider.is-animating .hero-slide.is-active .hero-content h1,
.hero-slider.is-animating .hero-slide.is-active .hero-content h2,
.hero-slider.is-animating .hero-slide.is-active .hero-content p,
.hero-slider.is-animating .hero-slide.is-active .hero-actions,
.hero-slider.is-animating .hero-slide.is-active .hero-data {
  animation: hero-copy-enter 540ms var(--ease-out) both;
}

.hero-slider.is-animating .hero-slide.is-active .hero-content h1,
.hero-slider.is-animating .hero-slide.is-active .hero-content h2 {
  animation-delay: 90ms;
}

.hero-slider.is-animating .hero-slide.is-active .hero-content p {
  animation-delay: 170ms;
}

.hero-slider.is-animating .hero-slide.is-active .hero-actions {
  animation-delay: 250ms;
}

.hero-slider.is-animating .hero-slide.is-active .hero-data {
  animation-delay: 330ms;
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-kicker {
  display: none;
  width: fit-content;
  margin-bottom: 16px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-content h1,
.hero-content h2 {
  max-width: 870px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(50px, 5.4vw, 72px);
  font-weight: 300;
  line-height: 1.02;
  text-transform: none;
}

.hero-content h1 {
  margin: 0 auto;
  font-weight: 300;
  text-transform: none;
}

.hero-content p {
  max-width: 510px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .quote-button {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.hero-actions .quote-button:hover,
.hero-actions .quote-button:focus-visible {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.hero-actions .secondary-button {
  display: none;
}

.hero-data {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin-top: 26px;
}

.hero-data span {
  min-height: 36px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 97, 174, 0.46);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  transform: translateX(-50%);
}

.slide-counter {
  display: none;
}

.hero-progress {
  position: relative;
  width: min(54vw, 560px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-progress-segment {
  position: relative;
  height: 22px;
  padding: 0;
  color: transparent;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.hero-progress-segment::before,
.hero-progress-segment::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.hero-progress-segment::before {
  background: rgba(255, 255, 255, 0.26);
}

.hero-progress-segment::after {
  width: 0;
  right: auto;
  background: #fff;
  transition: width 520ms var(--ease-out);
}

.hero-progress-segment.is-active::after {
  width: 100%;
  background: #fff;
}

.hero-progress-segment:hover::before,
.hero-progress-segment:focus-visible::before {
  background: rgba(255, 255, 255, 0.44);
}

.hero-progress-segment span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.section-center {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-center .section-lead {
  margin-inline: auto;
  margin-bottom: 0;
}

.reference-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 6px 14px;
  color: #0369a1;
  border-radius: 999px;
  background: #e8f7ff;
  box-shadow: 0 8px 22px rgba(20, 158, 216, 0.08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.reference-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #149ed8;
}

.product-fit-section {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 10%, rgba(20, 158, 216, 0.16), transparent 25%),
    radial-gradient(circle at 12% 82%, rgba(23, 139, 99, 0.07), transparent 34%),
    linear-gradient(135deg, #f8fcff 0%, #eef8fb 48%, #ffffff 100%);
  overflow: hidden;
}

.product-fit-section .shell {
  width: min(1600px, calc(100vw - 60px));
}

.product-fit-section.section,
.capacity-match-section.section,
.process-section.section,
.why-choose-section.section,
.integration-section.section,
.factory-proof-section.section,
.case-section.section,
.faq-section.section {
  padding: 72px 0;
}

.diagnostic-section.section,
.industry-section.section {
  padding: 40px 0;
}

.case-section.section {
  padding: 60px 0;
}

.factory-proof-section.section {
  padding: 40px 0;
}

.product-fit-section::before,
.diagnostic-section::before,
.capacity-match-section::before,
.industry-section::before,
.custom-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 158, 216, 0.038) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 158, 216, 0.032) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
}

.product-fit-section .shell,
.diagnostic-section .shell,
.capacity-match-section .shell,
.industry-section .shell,
.process-section .shell,
.integration-section .shell,
.custom-section .shell,
.factory-proof-section .shell,
.qa-section .shell,
.case-section .shell,
.faq-section .shell,
.quote-section .shell {
  position: relative;
  z-index: 1;
}

.product-fit-viewport {
  position: relative;
  overflow: visible;
}

.product-fit-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 14px;
  will-change: transform;
}

.fit-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  min-height: 330px;
  overflow: hidden;
  color: #0b2537;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(9, 33, 52, 0.08),
    0 16px 34px rgba(9, 33, 52, 0.08);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}

.fit-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 52%, #fff 100%);
  pointer-events: none;
}

.fit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 18, 30, 0.10) 0%, rgba(5, 18, 30, 0.50) 48%, rgba(5, 18, 30, 0.86) 100%),
    radial-gradient(circle at 50% 0%, rgba(20, 158, 216, 0.20), transparent 36%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}

.fit-card img {
  width: 100%;
  height: 100%;
  padding: 30px 16px 74px;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: transform 260ms var(--ease-out), opacity 260ms var(--ease-out);
}

.fit-corner,
.fit-badge {
  display: none;
  position: absolute;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(20, 158, 216, 0.18);
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(7, 31, 51, 0.35);
}

.fit-corner {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
}

.fit-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 28px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
}

.fit-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  gap: 0;
  padding: 20px 22px 22px;
  transition: gap 260ms var(--ease-out);
}

.fit-index,
.process-index,
.panel-tag {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  color: #0369a1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.fit-card strong {
  color: #0b2537;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 800;
  line-height: 1.08;
  text-shadow: none;
}

.fit-card span:not(.fit-index):not(.fit-card-copy) {
  color: rgba(235, 247, 253, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.fit-card .fit-index,
.fit-card .fit-card-copy > span:not(.fit-index),
.fit-card .fit-card-copy em {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translate3d(0, 8px, 0);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out), max-height 260ms var(--ease-out);
}

.fit-card em,
.story-panel button,
.capacity-grid a,
.text-link-button {
  font-style: normal;
}

.fit-card em {
  justify-self: start;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.fit-card:hover,
.fit-card:focus-visible {
  transform: translateY(-5px);
  filter: none;
}

.fit-card:hover::after,
.fit-card:focus-visible::after {
  opacity: 1;
}

.fit-card:hover .fit-card-copy,
.fit-card:focus-visible .fit-card-copy {
  gap: 8px;
}

.fit-card:hover strong,
.fit-card:focus-visible strong {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.fit-card:hover .fit-index,
.fit-card:focus-visible .fit-index,
.fit-card:hover .fit-card-copy > span:not(.fit-index),
.fit-card:focus-visible .fit-card-copy > span:not(.fit-index),
.fit-card:hover .fit-card-copy em,
.fit-card:focus-visible .fit-card-copy em {
  max-height: 120px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fit-card:hover .fit-index,
.fit-card:focus-visible .fit-index {
  min-height: 28px;
}

.fit-card:hover img,
.fit-card:focus-visible img {
  transform: scale(1.035);
  filter: drop-shadow(0 24px 20px rgba(15, 35, 50, 0.20)) saturate(1.06) contrast(1.05) brightness(1.02);
}

.product-route-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.product-route-controls > button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #3e769b;
  box-shadow: 0 16px 28px rgba(62, 118, 155, 0.22);
}

.product-route-controls > button::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.product-route-controls > button:first-child::before {
  transform: rotate(-135deg);
}

.product-route-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-route-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 158, 216, 0.22);
  transition: width 240ms var(--ease-out), background 240ms var(--ease-out);
}

.product-route-dots button.is-active {
  width: 26px;
  background: #0369a1;
}

.fit-bottom-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  color: rgba(9, 33, 52, 0.68);
  text-align: center;
}

.text-link-button {
  padding: 0;
  color: #0369a1;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-weight: 700;
}

.diagnostic-section,
.industry-section,
.faq-section {
  position: relative;
  background:
    radial-gradient(circle at 86% 20%, rgba(20, 158, 216, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3f9fc 100%);
  overflow: hidden;
}

.diagnostic-section .section-center {
  margin-bottom: 16px;
  text-align: center;
}

.diagnostic-section .section-lead {
  max-width: 760px;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.story-tab-list {
  display: grid;
  gap: 9px;
}

.diagnostic-tab-viewport {
  position: relative;
  min-width: 0;
}

.diagnostic-tab-controls {
  display: none;
}

.story-tab {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 6px 14px;
  min-height: 76px;
  padding: 13px 42px 13px 18px;
  color: #22313d;
  text-align: left;
  border: 1px solid rgba(27, 42, 68, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(20, 158, 216, 0.06);
  transition: background 260ms var(--ease-out), color 260ms var(--ease-out), border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.story-tab span {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #3e769b;
  background: rgba(62, 118, 155, 0.10);
  font-size: 13px;
  font-weight: 800;
}

.story-tab strong {
  display: block;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.18;
}

.story-tab em {
  grid-column: 1;
  color: rgba(34, 49, 61, 0.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.25;
}

.story-tab::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  margin-right: 2px;
  color: rgba(34, 49, 61, 0.42);
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.story-tab.is-active {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 14px 28px rgba(62, 118, 155, 0.20);
}

.story-tab.is-active span {
  display: none;
}

.story-tab.is-active em,
.story-tab.is-active::after {
  color: rgba(255, 255, 255, 0.76);
}

.diagnostic-tab-list .story-tab {
  grid-template-columns: 1fr;
  padding-left: 18px;
}

.story-tab > span,
.diagnostic-section .panel-tag {
  display: none;
}

.diagnostic-tab-list .story-tab em {
  grid-column: 1;
}

.diagnostic-section .story-panel h3 {
  margin-top: 0;
}

.story-panel-stack {
  min-width: 0;
  height: clamp(540px, 36vw, 580px);
  min-height: clamp(540px, 36vw, 580px);
}

.story-panel {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
  border: 1px solid rgba(9, 33, 52, 0.10);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 252, 0.96));
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.story-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: clamp(76px, 8vw, 116px);
  height: clamp(76px, 8vw, 116px);
  background:
    linear-gradient(135deg, #0369a1 0%, #149ed8 100%);
  box-shadow: -18px 18px 42px rgba(3, 105, 161, 0.12);
}

.story-panel::after {
  display: none;
}

.story-panel > * {
  position: relative;
  z-index: 1;
}

.story-panel[hidden],
.industry-panel[hidden] {
  display: none;
}

.story-panel h3 {
  max-width: 650px;
  margin: 15px 0 10px;
  color: #141b2d;
  font-size: clamp(25px, 2.05vw, 33px);
  line-height: 1.14;
  text-wrap: balance;
}

.story-panel p {
  max-width: 690px;
  margin: 0 0 20px;
  color: rgba(9, 33, 52, 0.70);
  font-size: 16px;
  line-height: 1.55;
}

.story-panel p strong {
  color: #101820;
  font-weight: 800;
}

.impact-label {
  display: block;
  margin: 0 0 14px;
  color: rgba(9, 33, 52, 0.54);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.impact-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 16px;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.impact-pair span {
  display: grid;
  gap: 4px;
  min-height: 0;
  padding: 15px 18px 15px 0;
  border-radius: 0;
  background: transparent;
}

.impact-pair span:nth-child(2) {
  color: #0b2537;
  padding-left: 18px;
  border-left: 1px solid rgba(9, 33, 52, 0.12);
  background: transparent;
}

.impact-pair strong {
  font-size: 19px;
  line-height: 1.1;
}

.impact-pair em {
  color: inherit;
  opacity: 0.72;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.impact-pair small {
  color: inherit;
  opacity: 0.70;
  font-size: 13px;
}

.story-panel ul,
.engineer-card ul,
.industry-panel ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.story-panel li,
.engineer-card li,
.industry-panel li {
  position: relative;
  margin-top: 7px;
  padding-left: 22px;
  color: rgba(9, 33, 52, 0.70);
}

.story-panel li::before,
.engineer-card li::before,
.industry-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0369a1;
}

.story-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  margin-top: 16px;
  padding: 14px 0 0;
  color: rgba(9, 33, 52, 0.76);
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-left: 0;
  background: transparent;
}

.story-note strong {
  color: #075985;
}

.capacity-match-section {
  background:
    radial-gradient(circle at 76% 14%, rgba(20, 158, 216, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfd 54%, #eef8fb 100%);
  color: var(--ink);
}

.capacity-match-section h2,
.process-section h2,
.integration-section h2 {
  color: inherit;
}

.capacity-match-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.capacity-copy .section-lead {
  color: rgba(9, 33, 52, 0.68);
}

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

.capacity-board {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(9, 33, 52, 0.10);
}

.capacity-board > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: #ffffff;
}

.capacity-grid a {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 14px;
  border-radius: 10px;
  background: #f3f7ff;
  box-shadow: inset 0 0 0 1px rgba(20, 158, 216, 0.08);
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out);
}

.capacity-grid a:hover,
.capacity-grid a:focus-visible {
  background: #e8f0ff;
  transform: translateY(-2px);
}

.capacity-grid strong {
  color: #0369a1;
  font-size: 17px;
}

.capacity-grid span {
  color: rgba(9, 33, 52, 0.62);
  font-size: 13px;
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.industry-tab-viewport {
  position: relative;
  min-width: 0;
}

.industry-tab-controls {
  display: none;
}

.industry-tabs .story-tab {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  white-space: nowrap;
}

.industry-tabs .story-tab::after {
  display: none;
}

.industry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(18px, 2vw, 26px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.industry-panel img {
  width: 100%;
  height: clamp(300px, 25vw, 380px);
  object-fit: cover;
  border-radius: 16px;
  filter: saturate(1.06) contrast(1.05);
}

.industry-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
}

.industry-panel p {
  color: rgba(9, 33, 52, 0.70);
  font-size: 18px;
}

.process-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 158, 216, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 54%, #eef8fb 100%);
}

.process-section .shell {
  width: min(1800px, calc(100vw - 40px));
}

.process-section .section-lead {
  color: rgba(9, 33, 52, 0.68);
}

.process-accordion {
  display: flex;
  gap: 10px;
  min-height: 460px;
}

.process-step {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-width: 0;
  flex: 1 1 0;
  min-height: 460px;
  padding: 20px;
  color: #fff;
  text-align: left;
  border: 0;
  border-radius: 12px;
  background: #0b2537;
  transition:
    flex-grow 560ms var(--ease-out),
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
  isolation: isolate;
  contain: layout paint;
}

.process-step.is-active {
  flex-grow: 2.6;
  box-shadow: 0 22px 50px rgba(9, 33, 52, 0.14);
}

.process-step.is-flipping {
  will-change: transform;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 15, 24, 0.08) 20%, rgba(4, 15, 24, 0.84) 100%),
    linear-gradient(90deg, rgba(4, 15, 24, 0.54), rgba(4, 15, 24, 0));
  opacity: 0.74;
  transition: opacity 360ms var(--ease-out);
}

.process-step.is-active::after {
  opacity: 0;
}

.process-step img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: translateZ(0);
  transition: opacity 220ms var(--ease-out);
  backface-visibility: hidden;
}

.process-step.is-active img {
  filter: none;
}

.process-step strong {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
}

.process-step span:last-child {
  max-width: 420px;
  margin-top: 8px;
  color: rgba(235, 247, 253, 0.74);
  font-size: 15px;
}

.process-step:not(.is-active) strong,
.process-step:not(.is-active) > span:last-child {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.process-step:not(.is-active) > span:last-child {
  display: none;
}

.process-step:hover img,
.process-step:focus-visible img,
.process-step.is-active img {
  transform: translateZ(0);
  filter: none;
}

.process-confirm-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 16px 20px;
  color: #102134;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(20, 158, 216, 0.10), rgba(255, 255, 255, 0.92)),
    #f6f8ff;
  box-shadow: inset 0 0 0 1px rgba(20, 158, 216, 0.10);
}

.process-confirm-strip strong {
  color: #142279;
  font-size: 17px;
}

.process-confirm-strip span {
  color: rgba(9, 33, 52, 0.66);
}

.why-choose-section {
  position: relative;
  min-height: 760px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 21, 32, 0.94) 0%, rgba(11, 37, 55, 0.91) 54%, rgba(6, 19, 31, 0.96) 100%),
    url("assets/images/factory/factory-engineering-support-bg.webp") center/cover no-repeat;
  overflow: hidden;
}

.why-choose-section::before,
.why-choose-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-choose-section::before {
  background:
    radial-gradient(circle at 50% -8%, rgba(20, 158, 216, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 86px 86px;
  opacity: 0.72;
}

.why-choose-section::after {
  background: linear-gradient(180deg, rgba(7, 15, 46, 0.10), rgba(7, 15, 46, 0.34));
}

.why-choose-section .shell {
  position: relative;
  z-index: 1;
  width: min(1160px, var(--shell));
}

.why-choose-section .section-center {
  max-width: 820px;
  margin: 0 auto 36px;
}

.why-choose-section .section-center h2,
.why-choose-section strong {
  color: #fff;
}

.why-choose-section .section-center h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.04;
}

.why-choose-section .section-center h2 span {
  color: #70d4eb;
}

.why-choose-section .section-lead {
  max-width: 720px;
  color: rgba(238, 244, 255, 0.78);
}

.why-choose-section .reference-kicker {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.why-choose-section .reference-kicker::before {
  background: #70d4eb;
}

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

.why-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 238px;
  padding: 26px 28px 28px;
  color: #fff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 320ms var(--ease-out), color 320ms var(--ease-out), border-color 320ms var(--ease-out), transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 4%, rgba(20, 158, 216, 0.28), transparent 34%);
  opacity: 0.58;
  transition: opacity 320ms var(--ease-out);
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
}

.why-icon {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.why-metric {
  color: rgba(112, 212, 235, 0.78);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 0.92;
}

.why-metric-label {
  justify-self: end;
  margin-top: -4px;
  color: rgba(238, 244, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.why-card strong {
  max-width: 320px;
  margin-top: 4px;
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.12;
}

.why-card > span:last-child {
  color: rgba(238, 244, 255, 0.75);
  font-size: 15px;
  line-height: 1.5;
}

.why-card:hover,
.why-card:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.why-card.is-active {
  color: #082f5f;
  border-color: rgba(255, 255, 255, 0.86);
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 18, 58, 0.28);
  transform: translateY(-4px);
}

.why-card.is-active::before {
  opacity: 0;
}

.why-card.is-active strong {
  color: #111827;
}

.why-card.is-active .why-icon {
  color: #fff;
  background: #0369a1;
  box-shadow: 0 10px 22px rgba(20, 158, 216, 0.24);
}

.why-card.is-active .why-metric {
  color: #0369a1;
}

.why-card.is-active .why-metric-label {
  color: rgba(13, 32, 88, 0.64);
}

.why-card.is-active > span:last-child {
  color: rgba(17, 24, 39, 0.68);
}

.why-bottom-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  color: rgba(238, 244, 255, 0.78);
}

.why-bottom-line .text-link-button {
  color: #fff;
}

.integration-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(20, 158, 216, 0.10), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #eef7fb 100%);
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.integration-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 20px;
}

.integration-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.integration-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid rgba(9, 33, 52, 0.14);
  border-bottom: 1px solid rgba(9, 33, 52, 0.14);
}

.integration-list article {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 0 16px 28px;
  background: transparent;
}

.integration-list article + article {
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.integration-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #149ed8;
}

.integration-list strong {
  font-size: 17px;
}

.integration-list span {
  color: rgba(9, 33, 52, 0.64);
}

.integration-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.custom-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0%, rgba(20, 158, 216, 0.28) 42%, rgba(23, 139, 99, 0.16) 58%, transparent 100%) top center / min(980px, 76vw) 1px no-repeat,
    radial-gradient(circle at 86% 18%, rgba(20, 158, 216, 0.10), transparent 28%),
    linear-gradient(180deg, #eef7fb 0%, #f8fcff 22%, #ffffff 100%);
  overflow: hidden;
}

.custom-section .shell {
  width: min(1320px, calc(100vw - 144px));
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.custom-card,
.qa-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 316px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.custom-card {
  overflow: visible;
  padding: 0 18px 18px;
}

.custom-card + .custom-card {
  border-left: 1px solid rgba(9, 33, 52, 0.10);
}

.custom-card img,
.qa-card img {
  width: 100%;
  height: 210px;
  padding: 10px 4px 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.07);
  transition: transform 720ms var(--ease-out), filter 720ms var(--ease-out);
}

.custom-card span {
  display: none;
}

.custom-card strong,
.qa-card strong {
  padding: 14px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.custom-card p,
.qa-card span {
  margin: 0;
  padding: 9px 0 0;
  color: rgba(9, 33, 52, 0.66);
  font-size: 13px;
  line-height: 1.38;
}

.custom-card:hover img,
.qa-card:hover img {
  transform: scale(1.11);
  filter: saturate(1.1) contrast(1.08);
}

.factory-proof-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0%, rgba(20, 158, 216, 0.26) 44%, rgba(23, 139, 99, 0.14) 58%, transparent 100%) top center / min(980px, 76vw) 1px no-repeat,
    radial-gradient(circle at 14% 10%, rgba(20, 158, 216, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef6f8 100%);
}

.factory-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

.factory-proof-photo {
  position: relative;
  min-width: 0;
  min-height: clamp(360px, 40vw, 500px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #0b2537;
}

.factory-proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.factory-proof-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 18, 30, 0.74));
}

.factory-proof-photo figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 28px);
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #fff;
}

.factory-proof-photo strong {
  max-width: 18ch;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 0.98;
  text-wrap: balance;
}

.factory-proof-photo span {
  max-width: 48ch;
  color: rgba(235, 247, 253, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.factory-proof-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 252, 0.82));
  box-shadow: inset 0 0 0 1px rgba(20, 158, 216, 0.12);
}

.factory-proof-kicker {
  color: #08719d;
  font-size: 13px;
  font-weight: 760;
}

.factory-proof-panel h3 {
  max-width: 14ch;
  margin: 0;
  color: #07263a;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.factory-proof-list {
  display: grid;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.factory-proof-list article {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 16px 0 16px 24px;
}

.factory-proof-list article + article {
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.factory-proof-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #149ed8;
  box-shadow: 0 0 0 5px rgba(20, 158, 216, 0.12);
}

.factory-proof-list strong {
  color: #0b3047;
  font-size: 16px;
  line-height: 1.2;
}

.factory-proof-list span {
  color: rgba(9, 33, 52, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.qa-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 158, 216, 0.18), transparent 26%),
    linear-gradient(135deg, #071520 0%, #102638 62%, #08131d 100%);
}

.qa-section h2 {
  color: #fff;
}

.qa-section .section-lead {
  color: rgba(235, 247, 253, 0.74);
}

.qa-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

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

.qa-card {
  background: rgba(255, 255, 255, 0.08);
}

.qa-card strong {
  color: #fff;
}

.qa-card span {
  color: rgba(235, 247, 253, 0.70);
}

.case-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0%, rgba(20, 158, 216, 0.24) 42%, rgba(23, 139, 99, 0.13) 58%, transparent 100%) top center / min(980px, 76vw) 1px no-repeat,
    radial-gradient(circle at 78% 12%, rgba(20, 158, 216, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f9fc 100%);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0b2537;
  box-shadow: 0 14px 30px rgba(7, 31, 51, 0.13);
}

.testimonial-media img {
  width: 100%;
  height: clamp(280px, 24vw, 340px);
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
}

.testimonial-note,
.testimonial-badge,
.testimonial-metrics {
  display: none;
}

.testimonial-quote {
  position: relative;
  padding: clamp(22px, 2.6vw, 34px);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(20, 158, 216, 0.12);
}

.quote-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 999px;
  background: #0369a1;
  font-size: 28px;
  line-height: 1;
}

.testimonial-quote h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.testimonial-quote p {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(9, 33, 52, 0.68);
  font-size: 16px;
}

.testimonial-author {
  display: grid;
  gap: 4px;
}

.testimonial-author span {
  color: rgba(9, 33, 52, 0.56);
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
  margin: 16px auto 0;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.testimonial-strip article {
  display: grid;
  gap: 6px;
  min-height: 84px;
  padding: 16px 18px;
  background: transparent;
  box-shadow: none;
}

.testimonial-strip article + article {
  border-left: 1px solid rgba(9, 33, 52, 0.10);
}

.testimonial-strip span {
  color: rgba(9, 33, 52, 0.62);
}

.faq-section {
  background:
    linear-gradient(90deg, transparent 0%, rgba(20, 158, 216, 0.22) 42%, rgba(23, 139, 99, 0.12) 58%, transparent 100%) top center / min(980px, 76vw) 1px no-repeat,
    radial-gradient(circle at 12% 20%, rgba(20, 158, 216, 0.10), transparent 26%),
    linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.faq-layout {
  display: block;
}

.faq-layout .faq-list {
  display: grid;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-section .section-center {
  max-width: 780px;
}

.engineer-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #eff8ff 100%);
  box-shadow: 0 28px 80px rgba(9, 33, 52, 0.10);
}

.engineer-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(20, 158, 216, 0.12);
}

.engineer-avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 18px;
  background: #0369a1;
  font-weight: 800;
}

.engineer-logo-avatar {
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.94));
  border: 1px solid rgba(20, 158, 216, 0.20);
  box-shadow: 0 12px 26px rgba(7, 31, 51, 0.10);
}

.engineer-logo-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.engineer-backup {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 18px;
  color: #fff;
  border-radius: 14px;
  background: #071520;
}

.engineer-backup span {
  color: rgba(235, 247, 253, 0.76);
}

.engineered-form label {
  display: grid;
  gap: 7px;
}

.engineered-form label span {
  color: rgba(9, 33, 52, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.engineered-form .form-wide {
  grid-column: 1 / -1;
}

.product-selector-section {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(20, 158, 216, 0.14), transparent 28%),
    radial-gradient(circle at 14% 92%, rgba(23, 139, 99, 0.10), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #eef6f7 52%, #f5fbf8 100%);
  overflow: hidden;
}

.product-selector-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 43, 57, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 43, 57, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 74%, transparent);
  opacity: 0.42;
}

.product-selector-section .shell {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 64px));
}

.product-selector-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.product-selector-copy {
  max-width: 470px;
}

.product-selector-copy .section-lead {
  max-width: 470px;
  margin-bottom: 24px;
  color: rgba(9, 33, 52, 0.68);
}

.selector-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.selector-board {
  display: grid;
  grid-template-columns: minmax(320px, 1.06fr) minmax(280px, 0.94fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.selector-main-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(145deg, #071520 0%, #0b2537 58%, #06111a 100%);
  box-shadow: 0 34px 80px rgba(6, 31, 49, 0.20);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 520ms var(--ease-out), box-shadow 520ms var(--ease-out);
}

.selector-main-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.46), transparent);
  opacity: 0.86;
}

.selector-main-media {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(ellipse at 50% 84%, rgba(255, 255, 255, 0.40), transparent 45%),
    linear-gradient(180deg, #f9fbfa 0%, #e9f1f1 100%);
  overflow: hidden;
}

.selector-main-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1);
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}

.selector-main-copy {
  display: grid;
  gap: 10px;
  padding: 26px 28px 30px;
}

.selector-code {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 5px 10px;
  color: #075f82;
  border-radius: 999px;
  background: rgba(20, 158, 216, 0.12);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.selector-main-copy .selector-code {
  color: #dff7ff;
  background: rgba(255, 255, 255, 0.12);
}

.selector-main-copy strong {
  max-width: 520px;
  color: #fff;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 400;
  line-height: 1.03;
  text-wrap: balance;
}

.selector-main-copy span:not(.selector-code) {
  max-width: 560px;
  color: rgba(231, 243, 248, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.selector-main-copy em,
.selector-mini-card em {
  justify-self: start;
  color: currentColor;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border-bottom: 1px solid currentColor;
}

.selector-main-card:hover,
.selector-main-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px rgba(6, 31, 49, 0.24);
}

.selector-main-card:hover .selector-main-media img,
.selector-main-card:focus-visible .selector-main-media img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
}

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

.selector-mini-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  min-width: 0;
  min-height: 172px;
  overflow: hidden;
  padding: 18px;
  color: var(--ink);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  transform: translateY(0);
  transition: transform 420ms var(--ease-out), background 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
}

.selector-mini-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 158, 216, 0.74), transparent);
  opacity: 0;
  transition: opacity 360ms var(--ease-out);
}

.selector-mini-card:last-child {
  grid-column: 1 / -1;
  min-height: 138px;
}

.selector-mini-card strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.18;
  text-wrap: balance;
}

.selector-mini-card span:not(.selector-code) {
  color: rgba(9, 33, 52, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.selector-mini-card:hover,
.selector-mini-card:focus-visible {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(6, 31, 49, 0.11);
}

.selector-mini-card:hover::after,
.selector-mini-card:focus-visible::after {
  opacity: 1;
}

.selector-side-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.selector-side-grid .reveal:nth-child(3) {
  transition-delay: 120ms;
}

.selector-side-grid .reveal:nth-child(4) {
  transition-delay: 170ms;
}

.selector-side-grid .reveal:nth-child(5) {
  transition-delay: 220ms;
}

.capacity-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding: 8px;
  color: #fff;
  border-radius: 18px;
  background: #071520;
  box-shadow: 0 24px 58px rgba(6, 31, 49, 0.16);
}

.capacity-rail a {
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 0;
  min-height: 76px;
  padding: 13px 12px;
  color: #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.065);
  overflow-wrap: anywhere;
  transform: translateY(0);
  transition: transform 320ms var(--ease-out), color 320ms var(--ease-out), background 320ms var(--ease-out);
}

.capacity-rail strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
}

.capacity-rail span {
  color: rgba(231, 243, 248, 0.62);
  font-size: 12px;
  line-height: 1.25;
}

.capacity-rail a:hover,
.capacity-rail a:focus-visible {
  color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
}

.capacity-rail a:hover span,
.capacity-rail a:focus-visible span {
  color: rgba(0, 43, 57, 0.62);
}

.proof-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 158, 216, 0.18), transparent 28%),
    linear-gradient(135deg, #071520 0%, #102638 56%, #08131d 100%);
}

.featured-products {
  color: var(--ink);
  background: #f7f9f8;
}

.featured-products .eyebrow,
.featured-products h2,
.featured-products .section-lead,
.featured-products .section-heading-row {
  color: inherit;
}

.featured-products .product-card {
  background: transparent;
}

.faq-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(20, 158, 216, 0.10), transparent 26%),
    linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.applications-section {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(135deg, #f7fafb 0%, #edf4f2 100%);
  overflow: hidden;
}

.applications-section .shell {
  width: min(1160px, calc(100vw - 120px));
}

.applications-section .eyebrow {
  color: rgba(0, 43, 57, 0.54);
}

.applications-section h2,
.applications-section .section-heading-row {
  color: var(--ink);
}

.applications-section .section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: end;
  gap: 34px;
  margin-bottom: 40px;
}

.applications-section .secondary-button {
  color: var(--brand);
  border-color: var(--brand);
  background: #ffffff;
}

.applications-section .secondary-button:hover,
.applications-section .secondary-button:focus-visible {
  color: #fff;
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.applications-section .application-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-auto-rows: minmax(196px, auto);
  gap: 20px;
  background: transparent;
}

.applications-section .application-card {
  color: var(--ink);
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  min-height: 0;
}

.applications-section .application-card img {
  height: 180px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  background: #f1f1eb;
}

.applications-section .application-card .card-body {
  min-height: 0;
  padding: 20px 22px 22px;
  background: transparent;
}

.applications-section .application-card strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
}

.applications-section .application-card p {
  display: block;
  color: rgba(9, 33, 52, 0.62);
}

.applications-section .application-card em {
  color: var(--ink);
}

.applications-section .application-card-featured {
  grid-row: span 2;
  background: rgba(255, 255, 255, 0.76);
}

.applications-section .application-card-featured img {
  height: 382px;
}

.applications-section .application-card-featured .card-body {
  min-height: 132px;
  padding: 28px 32px 32px;
  background: transparent;
}

.applications-section .application-card-featured strong {
  max-width: 620px;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.04;
}

.applications-section .application-card-featured p {
  max-width: 560px;
  font-size: 17px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  align-items: stretch;
  background: transparent;
}

.workflow-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.workflow-intro {
  max-width: 330px;
}

.workflow-intro .eyebrow,
.proof-section .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.workflow-intro h2 {
  color: #fff;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.02;
}

.workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.workflow-steps::before {
  content: none;
  position: absolute;
  left: 7%;
  right: 7%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.workflow-step {
  position: relative;
  min-height: 198px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.workflow-steps .workflow-step {
  min-height: 190px;
  padding: 12px clamp(18px, 2vw, 28px) 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workflow-step + .workflow-step {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow-index {
  display: none;
}

.workflow-step strong {
  margin-top: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
}

.workflow-step > span:not(.workflow-index) {
  max-width: 220px;
  margin-top: 10px;
  color: rgba(224, 241, 248, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.proof-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.proof-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.proof-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px;
  color: #fff;
  border-radius: 6px;
  background: rgba(2, 126, 138, 0.92);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.proof-item {
  min-height: 152px;
  padding: 24px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(9, 33, 52, 0.08);
}

.proof-item strong {
  display: block;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.category-section {
  background: #ffffff;
}

.product-grid-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(20, 158, 216, 0.13), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(23, 139, 99, 0.07), transparent 30%),
    linear-gradient(90deg, rgba(20, 158, 216, 0.042) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 158, 216, 0.036) 1px, transparent 1px),
    linear-gradient(135deg, #fbfdff 0%, #eef8fb 52%, #ffffff 100%);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
}

.product-grid-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.82), transparent 60%);
  pointer-events: none;
}

.product-grid-section::after {
  content: "";
  position: absolute;
  right: max(-120px, -8vw);
  bottom: max(-130px, -10vw);
  width: min(420px, 44vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 158, 216, 0.13), rgba(23, 139, 99, 0.06) 42%, transparent 70%);
  pointer-events: none;
}

.product-grid-section .shell {
  position: relative;
  z-index: 1;
}

.product-grid-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.product-grid-section .section-center {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.product-grid-section .reference-kicker {
  color: #0369a1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(229, 246, 252, 0.72));
  box-shadow: inset 0 0 0 1px rgba(20, 158, 216, 0.14);
}

.product-grid-section h2 {
  max-width: 760px;
  color: #08263c;
  font-size: clamp(34px, 3.35vw, 50px);
  line-height: 1.02;
}

.product-grid-section .section-lead {
  max-width: 650px;
  color: #395467;
  font-size: clamp(15px, 1.12vw, 17px);
}

.product-grid-summary {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 168px;
  padding: 20px;
  border-radius: 16px;
  color: #eaf7ff;
  background:
    radial-gradient(circle at 90% 0%, rgba(56, 189, 248, 0.32), transparent 34%),
    linear-gradient(135deg, #08263c 0%, #0d4262 100%);
}

.product-grid-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.72), transparent 78%);
  pointer-events: none;
}

.product-grid-summary span,
.product-grid-summary p {
  position: relative;
  z-index: 1;
}

.product-grid-summary span {
  display: grid;
  gap: 2px;
}

.product-grid-summary strong {
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.product-grid-summary em {
  color: rgba(234, 247, 255, 0.74);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-grid-summary p {
  max-width: 24ch;
  margin: 0;
  color: rgba(234, 247, 255, 0.84);
  font-size: 14px;
  line-height: 1.45;
}

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

.category-grid,
.product-grid,
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

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

.factory-section {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef5f3 100%);
}

.factory-support-layout {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100vw - 120px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
}

.factory-section .factory-support-panel {
  max-width: 560px;
  padding: clamp(24px, 3vw, 34px);
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(20, 42, 55, 0.12);
  backdrop-filter: blur(8px);
}

.factory-section h2 {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: clamp(38px, 3.8vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.factory-section .section-lead {
  max-width: 500px;
  margin-bottom: 26px;
  color: #4f5b5e;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.45;
}

.factory-section .category-grid {
  margin-top: 0;
}

.factory-section .category-grid {
  margin-top: 0;
  margin-bottom: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.factory-support-points {
  margin-top: 0;
  margin-bottom: 26px;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: factory-step;
}

.factory-section .proof-item {
  min-height: 136px;
  padding: 17px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
}

.factory-section .factory-support-points .proof-item {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: 2px;
  align-items: center;
  min-height: auto;
  padding: 12px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.factory-section .factory-support-points .proof-item::before {
  content: none;
  display: none;
}

.factory-section .factory-support-points .proof-item + .proof-item {
  border-top: 1px solid rgba(0, 43, 57, 0.12);
}

.factory-section .factory-support-points .proof-item strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.factory-section .factory-support-points .proof-item span {
  grid-column: 1;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.factory-map-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.factory-route-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 43, 57, 0.03) 100%),
    url("assets/images/factory/qingzhou-export-map-real.webp") center/cover no-repeat;
  background-size: cover;
  box-shadow: 0 36px 90px rgba(31, 43, 42, 0.16);
  isolation: isolate;
}

.factory-route-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(180deg, transparent 58%, rgba(0, 43, 57, 0.06) 100%);
  pointer-events: none;
}

.category-card,
.product-card,
.application-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  transform: translateY(0);
  isolation: isolate;
  transition: transform 520ms var(--ease-out), box-shadow 520ms var(--ease-out), border-color 520ms var(--ease-out), background 520ms var(--ease-out);
}

.category-card::before,
.product-card::before,
.application-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(0, 43, 57, 0) 70%, rgba(0, 43, 57, 0.035));
  opacity: 0;
  transition: opacity 420ms var(--ease-out);
}

.category-card:hover,
.product-card:hover,
.application-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: none;
}

.category-card:hover::before,
.product-card:hover::before,
.application-card:hover::before {
  opacity: 1;
}

.visual-field,
.category-card img,
.product-card img,
.application-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 50% 84%, rgba(8, 30, 48, 0.12), transparent 44%),
    #fff;
  background-size: auto;
  transform: scale(1);
  transition: transform 980ms var(--ease-out), filter 980ms var(--ease-out);
  will-change: transform;
}

.product-grid .product-card img {
  height: 210px;
  padding: 20px 20px 14px;
  background:
    radial-gradient(ellipse at 50% 84%, rgba(8, 30, 48, 0.10), transparent 46%),
    #fff;
  background-size: auto;
  filter: drop-shadow(0 14px 14px rgba(8, 30, 48, 0.10));
}

.product-grid-section .product-card {
  min-height: 292px;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-ur);
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.12), 0 0.5px 2px rgba(0, 0, 0, 0.10);
}

.product-grid-section .product-card::before {
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.50), transparent 36%),
    linear-gradient(180deg, transparent 58%, rgba(20, 158, 216, 0.06));
}

.product-grid-section .product-card:hover,
.product-grid-section .product-card:focus-visible {
  background: #ffffff;
  box-shadow:
    0 8px 16px 1px rgba(0, 43, 57, 0.16),
    0 1px 3px rgba(0, 0, 0, 0.12);
}

.product-grid-section .product-card img {
  height: 174px;
  padding: 14px 12px 8px;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 88%, rgba(8, 30, 48, 0.12), transparent 45%);
  background-size: auto;
  filter: drop-shadow(0 14px 12px rgba(8, 30, 48, 0.10));
}

.product-grid-section .product-card .card-body {
  min-height: 74px;
  gap: 8px;
  padding: 10px 4px 2px;
}

.product-grid-section .product-card .card-body p {
  display: none;
}

.product-grid-section .product-card .card-body strong {
  color: #0b2537;
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.24;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-grid-section .product-card .card-body em {
  color: var(--link-ur);
  font-size: 12px;
  font-weight: 650;
}

.catalog-browser-section {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(62, 118, 155, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(62, 118, 155, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 46%, #eef8fb 100%);
  background-size: 46px 46px, 46px 46px, auto;
}

.catalog-browser-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background:
    radial-gradient(circle at 18% 0%, rgba(20, 158, 216, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.catalog-browser-shell {
  position: relative;
  z-index: 1;
}

.catalog-browser-heading {
  max-width: 790px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.catalog-browser-heading .breadcrumb {
  margin-bottom: 12px;
  color: rgba(0, 43, 57, 0.58);
  font-size: 14px;
  font-weight: 650;
}

.catalog-browser-heading h2 {
  max-width: 720px;
  color: #08263c;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.015em;
}

.catalog-browser-heading > p:not(.breadcrumb) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #425868;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.52;
}

.catalog-mobile-select {
  display: none;
}

.catalog-browser-layout {
  display: grid;
  grid-template-columns: minmax(224px, 270px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.catalog-category-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(0, 43, 57, 0.08),
    0 16px 38px rgba(0, 43, 57, 0.08);
  backdrop-filter: blur(10px);
}

.catalog-category-button {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #203745;
  text-align: left;
  background: transparent;
  transition: color 260ms var(--ease-out), background 260ms var(--ease-out), border-color 260ms var(--ease-out), transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.catalog-category-button span {
  font-size: 15px;
  font-weight: 720;
  line-height: 1.16;
}

.catalog-category-button em {
  color: #637887;
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.35;
}

.catalog-category-button:hover,
.catalog-category-button:focus-visible {
  color: #0b2537;
  background: #eef8fb;
  border-color: rgba(62, 118, 155, 0.22);
  transform: translateX(2px);
}

.catalog-category-button.is-active {
  color: #ffffff;
  background: var(--brand);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(62, 118, 155, 0.22);
}

.catalog-category-button.is-active em {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-products-board {
  min-width: 0;
}

.catalog-products-panel {
  min-height: 520px;
}

.catalog-products-panel.is-active {
  animation: catalog-panel-in 340ms var(--ease-out) both;
}

@keyframes catalog-panel-in {
  from {
    opacity: 0;
    transform: translate3d(14px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.catalog-panel-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 24px;
}

.catalog-panel-head span {
  justify-self: start;
  padding: 5px 10px;
  color: #315f7e;
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  border-radius: 999px;
  background: #eef8fb;
}

.catalog-panel-head h2 {
  color: #08263c;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.04;
}

.catalog-panel-head p {
  max-width: 640px;
  margin: 0;
  color: #4d6574;
  font-size: 16px;
  line-height: 1.52;
}

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

.catalog-product-card {
  display: grid;
  grid-template-rows: 236px 1fr;
  min-height: 414px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(219, 226, 232, 0.78);
  border-radius: 14px;
  background: #f5f7fa;
  box-shadow: 0 6px 16px rgba(15, 45, 62, 0.04);
  transform: none;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out);
}

.catalog-product-card:hover,
.catalog-product-card:focus-visible {
  border-color: rgba(62, 118, 155, 0.72);
  background: #f5f7fa;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 45, 62, 0.08);
}

.catalog-product-image {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 20px;
  background:
    radial-gradient(ellipse at 50% 88%, rgba(8, 30, 48, 0.11), transparent 45%),
    #ffffff;
}

.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 16px rgba(8, 30, 48, 0.10));
  transition: transform 600ms var(--ease-out);
}

.catalog-product-card:hover .catalog-product-image img,
.catalog-product-card:focus-visible .catalog-product-image img {
  transform: scale(1.02);
}

.catalog-product-copy {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 9px;
  padding: 20px 22px 24px;
}

.catalog-product-copy strong {
  color: #0b2537;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 740;
  line-height: 1.15;
}

.catalog-product-copy em {
  color: var(--brand);
  font-size: 13px;
  font-style: normal;
  font-weight: 680;
}

.catalog-product-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: #596f7f;
  font-size: 14px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.category-card:hover img,
.product-card:hover img,
.application-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

.card-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 10px;
  min-height: 154px;
  padding: 18px 2px 4px;
}

.product-card .card-body {
  min-height: 94px;
  padding: 16px 2px 0;
  gap: 8px;
}

.category-card .card-body {
  min-height: 106px;
  padding: 18px 2px 0;
  gap: 8px;
}

.card-body strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.28;
}

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

.product-card .card-body p {
  display: none;
}

.category-card .card-body p {
  display: none;
}

.product-card .card-body strong {
  font-size: 16px;
  line-height: 1.24;
}

.card-body em {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  align-self: end;
  min-height: auto;
  margin-top: 8px;
  padding: 0 0 3px;
  color: var(--link-ur);
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  transition: color 320ms var(--ease-out), transform 320ms var(--ease-out), border-color 320ms var(--ease-out);
}

.card-body em::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 320ms var(--ease-out);
}

.category-card:hover .card-body em,
.product-card:hover .card-body em,
.application-card:hover .card-body em {
  color: var(--brand);
  transform: translateX(4px);
  border-color: currentColor;
}

.product-card:hover .card-body em {
  color: var(--brand);
  transform: translateX(3px);
  border-color: currentColor;
}

.category-card:hover .card-body em::after,
.product-card:hover .card-body em::after,
.application-card:hover .card-body em::after {
  width: 34px;
}

.product-card .card-body em {
  justify-self: start;
  min-height: auto;
  margin-top: 0;
  padding: 0 0 3px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 12px;
}

.category-card .card-body em {
  justify-self: start;
  min-height: auto;
  margin-top: 0;
  padding: 0 0 3px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 12px;
}

.service-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 38, 55, 0.72), rgba(10, 48, 60, 0.58)),
    url("assets/images/hero/factory-service-hero.webp") center/cover no-repeat;
}

.service-band h2 {
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.service-item {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.service-item p {
  color: #d5e9eb;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  position: relative;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(20, 158, 216, 0.08);
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.faq-list details[open] {
  box-shadow: 0 18px 42px rgba(20, 158, 216, 0.10);
  transform: translateY(-1px);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 17px 48px 17px 18px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #0369a1;
  border-radius: 6px;
  background: #e5f6fc;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out);
}

.faq-list details[open] summary::after {
  color: #fff;
  background: #0369a1;
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.search-overlay,
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 20, 30, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.search-overlay[hidden],
.inquiry-modal[hidden] {
  display: flex;
}

.search-overlay.is-open,
.inquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-dialog,
.modal-dialog {
  position: relative;
  width: min(720px, 100%);
  padding: 36px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  opacity: 1;
  transform: translate3d(0, 28px, 0) scale(0.98);
  transition: transform 260ms var(--ease-out);
}

.search-overlay.is-open .search-dialog,
.inquiry-modal.is-open .modal-dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.search-dialog h2,
.modal-dialog h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 30px;
}

.overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-form input,
.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

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

.quote-form textarea,
.quote-form .form-note,
.quote-form .turnstile-field,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.about-focus-section,
.contact-section,
.quote-section {
  background: #ffffff;
}

.about-focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.about-focus-copy {
  max-width: 560px;
}

.about-focus-visual {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #eef3f4;
  box-shadow: 0 28px 80px rgba(9, 33, 52, 0.12);
}

.about-focus-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 18, 28, 0.18)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.22), transparent 26%);
  pointer-events: none;
}

.about-focus-visual img {
  width: 100%;
  height: clamp(360px, 36vw, 520px);
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

.about-factory-section {
  background: #edf4f6;
}

.about-factory-section .category-card {
  background: rgba(255, 255, 255, 0.64);
}

.about-factory-section .category-card img {
  object-fit: cover;
  background: #e9f0f2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.contact-info-card {
  max-width: 600px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(247, 250, 251, 0.96), rgba(239, 246, 248, 0.88));
  box-shadow: 0 22px 64px rgba(9, 33, 52, 0.09);
}

.contact-email {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.contact-data-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-data-list li {
  min-height: 52px;
  padding: 13px 14px;
  color: #33434b;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(9, 33, 52, 0.06);
}

.solution-index-section,
.solution-detail-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 158, 216, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f9fb 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(28px, 4vw, 48px);
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.86fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 280px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(9, 33, 52, 0.10);
  border-radius: 18px;
  background: #fff;
  transition: transform 280ms var(--ease-out), border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.solution-card:hover,
.solution-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(20, 158, 216, 0.32);
  box-shadow: 0 18px 44px rgba(9, 33, 52, 0.12);
}

.solution-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.solution-card span {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
}

.solution-card em {
  color: #1d749c;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.solution-card strong {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.04;
}

.solution-card p {
  margin: 0;
  color: #536879;
  line-height: 1.55;
}

.solution-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.solution-detail-layout .actions,
.solution-route-section .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.solution-detail-layout > div > .actions {
  justify-content: flex-start;
}

.solution-visual {
  margin: 0;
}

.solution-visual img {
  width: 100%;
  height: clamp(340px, 38vw, 540px);
  object-fit: cover;
  border-radius: 18px;
}

.solution-visual figcaption {
  margin-top: 14px;
  color: #536879;
  font-size: 14px;
  line-height: 1.45;
}

.solution-route-section {
  background: #ffffff;
}

.contact-form-panel {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(9, 33, 52, 0.13);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.quote-section {
  background:
    linear-gradient(135deg, #f7fafb 0%, #ffffff 54%, #edf4f6 100%);
}

.quote-layout > div:first-child {
  max-width: 560px;
}

.quote-layout .quote-form {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(9, 33, 52, 0.12);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

.turnstile-field {
  min-height: 0;
}

.turnstile-field:not([hidden]) {
  display: block;
  margin: 2px 0;
}

.contact-rail {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 74;
  display: grid;
  inline-size: 68px;
  gap: 14px;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-rail a {
  position: relative;
  display: grid;
  place-items: center;
  inline-size: 60px;
  block-size: 64px;
  padding: 0;
  pointer-events: auto;
  color: #121820;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  isolation: isolate;
  transition: transform 300ms var(--ease-out);
}

.contact-rail a::after {
  content: none;
  display: none;
}

.contact-rail a:hover,
.contact-rail a:focus-visible {
  color: var(--ink);
  background: transparent;
  transform: translateX(-6px);
  box-shadow: none;
}

.contact-icon {
  position: relative;
  display: grid;
  place-items: center;
  inline-size: 58px;
  block-size: 58px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: transform 300ms var(--ease-out), filter 300ms var(--ease-out);
}

.contact-svg {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 43, 57, 0.18));
}

.contact-rail a:hover .contact-icon,
.contact-rail a:focus-visible .contact-icon {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.contact-panel {
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: max-content;
  min-width: 236px;
  padding: 11px 16px 11px 18px;
  display: grid;
  align-content: center;
  color: var(--ink);
  border: 1px solid rgba(9, 33, 52, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 48px rgba(9, 33, 52, 0.16);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
  z-index: -1;
}

.contact-panel strong,
.contact-panel em {
  display: block;
  font-style: normal;
  line-height: 1.35;
}

.contact-panel em {
  color: rgba(0, 43, 57, 0.56);
  margin-top: 2px;
}

.contact-rail a:hover .contact-panel,
.contact-rail a:focus-visible .contact-panel {
  opacity: 1;
  transform: translateX(0);
}

.floating-inquiry {
  position: fixed;
  right: 12px;
  top: auto;
  bottom: 0;
  z-index: 73;
  width: 226px;
  max-width: calc(100vw - 96px);
  transform: none;
}

.floating-inquiry button {
  width: 100%;
  min-height: 34px;
  padding: 0 12px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
  border: 0;
  border-radius: 14px 14px 0 0;
  background: var(--brand);
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.16), 0 0.5px 2px rgba(0, 0, 0, 0.12);
  transition: transform 260ms var(--ease-out), background 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.floating-inquiry button:hover,
.floating-inquiry button:focus-visible {
  background: var(--brand-dark);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 16px 1px rgba(0, 43, 57, 0.20), 0 1px 3px rgba(0, 0, 0, 0.14);
}

.floating-inquiry button span:first-child {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.floating-inquiry button span:last-child {
  font-size: 15px;
  transform: none;
}

.mobile-drawer,
.drawer-mask {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
}

.drawer-mask.is-open {
  display: block;
  background: rgba(5, 18, 28, 0.62);
}

.mobile-drawer {
  right: auto;
  width: min(340px, 86vw);
  padding: 24px;
  overflow: auto;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.mobile-drawer.is-open {
  display: block;
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.drawer-nav {
  display: grid;
  gap: 8px;
}

.drawer-nav a,
.drawer-nav button {
  width: 100%;
  padding: 14px 0;
  text-align: left;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--soft-line);
  background: transparent;
  font-weight: 800;
}

.drawer-subnav {
  display: grid;
  gap: 8px;
  margin: 8px 0 14px 14px;
}

.drawer-subnav a {
  padding: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

/* Mobile drawer polish: the generated markup uses a plain nav, so scope the
   finished drawer system to the real structure instead of relying on old classes. */
.mobile-drawer {
  width: min(360px, calc(100vw - 28px));
  height: 100dvh;
  padding: 18px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(20, 158, 216, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  box-shadow: 18px 0 38px rgba(5, 18, 28, 0.18);
  transform: translate3d(-100%, 0, 0);
  transition: transform 360ms var(--ease-out);
}

.mobile-drawer.is-open {
  transform: translate3d(0, 0, 0);
}

.mobile-drawer .drawer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 36px);
  min-height: 0;
  gap: 18px;
  overflow: hidden;
}

.mobile-drawer .drawer-panel::before {
  content: "Xinnuo Water";
  display: block;
  max-width: calc(100% - 58px);
  padding: 8px 0 16px;
  color: #08263c;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  border-bottom: 1px solid rgba(8, 38, 60, 0.10);
}

.mobile-drawer .overlay-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  min-height: 0;
  padding: 0;
  color: #08263c;
  font-size: 0;
  border: 1px solid rgba(8, 38, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.mobile-drawer .overlay-close::before,
.mobile-drawer .overlay-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
}

.mobile-drawer .overlay-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-drawer .overlay-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-drawer nav {
  display: grid;
  gap: 6px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: max(18px, env(safe-area-inset-bottom));
  scrollbar-width: thin;
}

.mobile-drawer nav > a,
.mobile-drawer nav > button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #0b2537;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.2;
}

.mobile-drawer nav > button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 260ms var(--ease-out);
}

.mobile-drawer nav > button[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(-1px);
}

.mobile-drawer nav > a:hover,
.mobile-drawer nav > a:focus-visible,
.mobile-drawer nav > button:hover,
.mobile-drawer nav > button:focus-visible,
.mobile-drawer nav > button[aria-expanded="true"] {
  color: #08263c;
  border-color: rgba(20, 158, 216, 0.16);
  background: rgba(232, 247, 255, 0.74);
}

.mobile-drawer nav > div {
  display: grid;
  gap: 4px;
  margin: 2px 0 8px;
  padding: 8px;
  overflow: visible;
  border: 1px solid rgba(8, 38, 60, 0.08);
  border-radius: 12px;
  background: #ffffff;
}

.mobile-drawer nav > div[hidden] {
  display: none;
}

.mobile-drawer nav > div a {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  color: #395467;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.mobile-drawer nav > div a:hover,
.mobile-drawer nav > div a:focus-visible {
  color: #08263c;
  background: #f4f9fc;
}

.mobile-drawer nav > .drawer-product-groups {
  gap: 8px;
  margin: 0 0 8px;
  padding: 2px 2px 6px;
  max-height: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  scrollbar-width: thin;
}

.mobile-drawer nav > .drawer-product-groups::-webkit-scrollbar {
  width: 4px;
}

.mobile-drawer nav > .drawer-product-groups::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(8, 38, 60, 0.18);
}

.drawer-all-products {
  justify-content: space-between;
  min-height: 42px;
  color: #08263c !important;
  background: rgba(8, 38, 60, 0.05) !important;
}

.drawer-all-products span {
  font-weight: 760;
}

.drawer-all-products em,
.drawer-group-toggle em,
.drawer-model-link em {
  font-style: normal;
}

.drawer-all-products em {
  color: #5c7282;
  font-size: 12px;
  font-weight: 650;
}

.drawer-product-group {
  overflow: hidden;
  border: 1px solid rgba(8, 38, 60, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.mobile-drawer .drawer-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 9px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0b2537;
}

.mobile-drawer .drawer-group-toggle::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 260ms var(--ease-out);
}

.mobile-drawer .drawer-group-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(-1px);
}

.mobile-drawer .drawer-group-toggle[aria-expanded="true"] {
  color: #08263c;
  background:
    linear-gradient(90deg, rgba(20, 158, 216, 0.13), rgba(255, 255, 255, 0));
}

.mobile-drawer .drawer-group-toggle span {
  display: grid;
  gap: 3px;
}

.mobile-drawer .drawer-group-toggle strong {
  color: inherit;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.1;
}

.mobile-drawer .drawer-group-toggle em {
  color: #627989;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.drawer-group-panel {
  display: grid;
  gap: 8px;
  padding: 0 10px 10px;
  animation: drawerPanelIn 260ms var(--ease-out);
}

.drawer-group-panel[hidden] {
  display: none;
}

.drawer-route-links,
.drawer-model-list {
  display: grid;
  gap: 4px;
}

.mobile-drawer nav > .drawer-product-groups .drawer-route-link,
.mobile-drawer nav > .drawer-product-groups .drawer-model-link {
  min-height: 34px;
  padding: 8px 9px;
  border-radius: 8px;
  line-height: 1.18;
}

.mobile-drawer nav > .drawer-product-groups .drawer-route-link {
  color: #0369a1;
  background: rgba(3, 105, 161, 0.08);
  font-size: 13px;
  font-weight: 760;
}

.mobile-drawer nav > .drawer-product-groups .drawer-model-link {
  justify-content: space-between;
  gap: 12px;
  color: #2d4658;
  background: rgba(8, 38, 60, 0.035);
  font-size: 13px;
  font-weight: 650;
}

.drawer-model-link span {
  min-width: 0;
}

.drawer-model-link em {
  flex: 0 0 auto;
  color: #6d8291;
  font-size: 11px;
  font-weight: 700;
}

.mobile-drawer nav > .drawer-product-groups .drawer-route-link:hover,
.mobile-drawer nav > .drawer-product-groups .drawer-route-link:focus-visible,
.mobile-drawer nav > .drawer-product-groups .drawer-model-link:hover,
.mobile-drawer nav > .drawer-product-groups .drawer-model-link:focus-visible {
  color: #08263c;
  background: rgba(20, 158, 216, 0.12);
}

@keyframes drawerPanelIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.subpage-main,
.product-detail-main {
  padding-top: 0;
}

.catalog-hero,
.subpage-hero,
.product-detail-hero {
  padding: 118px 0 72px;
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.24), rgba(4, 12, 18, 0.08)),
    linear-gradient(180deg, rgba(4, 12, 18, 0.18), rgba(4, 12, 18, 0.04)),
    url("assets/images/hero/factory-service-hero.webp") center/cover no-repeat;
}

.subpage-hero {
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.78) 0%, rgba(4, 12, 18, 0.62) 48%, rgba(4, 12, 18, 0.36) 100%),
    linear-gradient(180deg, rgba(4, 12, 18, 0.5), rgba(4, 12, 18, 0.22)),
    url("assets/images/hero/factory-service-hero.webp") center/cover no-repeat;
}

.product-detail-hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 84px 0 36px;
  background:
    linear-gradient(110deg, #f7f7f2 0%, #ffffff 46%, #f0f0eb 100%);
}

.catalog-hero .shell,
.subpage-hero .shell,
.product-detail-hero .shell {
  width: var(--shell);
  margin: 0 auto;
}

.breadcrumb {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.product-detail-hero .breadcrumb {
  color: rgba(9, 33, 52, 0.52);
}

.catalog-hero h1,
.subpage-hero h1,
.product-detail-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: 46px;
}

.catalog-hero p:not(.breadcrumb),
.subpage-hero p:not(.breadcrumb) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

@keyframes content-enter-up {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.catalog-hero .breadcrumb,
.subpage-hero .breadcrumb,
.product-detail-hero .breadcrumb {
  animation: content-enter-up 680ms var(--ease-out) 70ms both;
}

.catalog-hero h1,
.subpage-hero h1,
.product-summary h1 {
  animation: content-enter-up 760ms var(--ease-out) 140ms both;
}

.product-detail-heading {
  animation: content-enter-up 760ms var(--ease-out) 130ms both;
}

.catalog-hero p:not(.breadcrumb),
.subpage-hero p:not(.breadcrumb),
.product-summary p:not(.eyebrow) {
  animation: content-enter-up 780ms var(--ease-out) 210ms both;
}

.product-summary .eyebrow,
.product-detail-heading .eyebrow {
  animation: content-enter-up 680ms var(--ease-out) 90ms both;
}

.product-summary .actions,
.product-detail-heading .actions {
  animation: content-enter-up 760ms var(--ease-out) 280ms both;
}

.product-gallery {
  animation: content-enter-up 820ms var(--ease-out) 120ms both;
}

.category-intro-grid > *,
.content-section .shell > * {
  animation: content-enter-up 780ms var(--ease-out) both;
}

.subpage-main > .section .shell > *,
.factory-section .category-card,
.about-factory-section .category-card {
  animation: content-enter-up 780ms var(--ease-out) both;
}

.factory-section .proof-item,
.factory-route-panel {
  animation: content-enter-up 780ms var(--ease-out) both;
}

.category-intro-grid > :nth-child(2),
.content-section .shell > :nth-child(2),
.content-section .shell > :nth-child(3),
.subpage-main > .section .shell > :nth-child(2),
.factory-section .category-card:nth-child(2),
.factory-section .proof-item:nth-child(2) {
  animation-delay: 120ms;
}

.subpage-main > .section .shell > :nth-child(3),
.factory-section .category-card:nth-child(3),
.factory-section .proof-item:nth-child(3) {
  animation-delay: 200ms;
}

.content-section:nth-of-type(2) .shell > * {
  animation-delay: 110ms;
}

.content-section:nth-of-type(3) .shell > * {
  animation-delay: 180ms;
}

.content-section:nth-of-type(4) .shell > * {
  animation-delay: 250ms;
}

.category-strip {
  padding: 18px 0;
  background: linear-gradient(180deg, #fff, #f7fbfd);
  border-bottom: 1px solid var(--soft-line);
  box-shadow: 0 10px 30px rgba(9, 33, 52, 0.045);
}

.category-strip-nav {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.category-strip-nav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid rgba(0, 97, 174, 0.16);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 18px rgba(9, 33, 52, 0.045);
  transition: color 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out), box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.category-strip-nav a.is-active,
.category-strip-nav a:hover {
  color: #fff;
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 97, 174, 0.16);
}

.category-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.category-intro-grid img {
  width: 100%;
  height: 390px;
  border-radius: var(--radius-panel);
  object-fit: contain;
  object-position: center;
  background: #f4f6f6;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(650px, 1.22fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.product-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: clamp(20px, 3vw, 38px);
  align-items: end;
  margin: 0 0 clamp(14px, 1.8vw, 22px);
  padding-bottom: clamp(14px, 1.6vw, 18px);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.product-detail-heading .eyebrow {
  margin: 0 0 10px;
  color: rgba(9, 33, 52, 0.58);
}

.product-detail-heading h1 {
  max-width: 1040px;
  color: var(--ink);
  font-size: clamp(24px, 2.45vw, 32px);
  font-weight: 470;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-detail-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 9px 0 0;
  color: rgba(9, 33, 52, 0.66);
  font-size: 14px;
  line-height: 1.48;
}

.product-detail-heading .actions {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 220px;
}

.product-detail-heading .quote-button {
  min-height: 42px;
  padding: 10px 22px;
  white-space: nowrap;
}

.product-detail-heading .cta-helper-link {
  color: #24506c;
  font-size: 13px;
}

.product-detail-heading .route-context-link {
  color: rgba(9, 33, 52, 0.52);
  font-size: 12px;
  text-align: right;
}

.product-gallery {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-gallery::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 8%;
  height: 13%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 43, 57, 0.16), transparent 68%);
  filter: blur(10px);
  opacity: 0.7;
}

.product-gallery img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(31vw, 390px);
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 28px 34px rgba(0, 43, 57, 0.16));
}

.product-hero-info {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  color: var(--ink);
}

.product-hero-info .product-purchase-panel {
  padding: 18px 20px 20px;
  border: 1px solid rgba(9, 33, 52, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(9, 33, 52, 0.08);
}

.product-hero-info .product-purchase-panel p {
  margin: 0;
  color: rgba(9, 33, 52, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.product-purchase-panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 620;
  line-height: 1.18;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 16px 0 0;
}

.purchase-actions .quote-button {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 14px;
  white-space: nowrap;
}

.whatsapp-quote-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 15px;
  color: #24506c;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(9, 33, 52, 0.16);
  background: #f7fbfd;
}

.whatsapp-quote-link:hover,
.whatsapp-quote-link:focus-visible {
  color: var(--brand-dark);
  border-color: rgba(0, 97, 174, 0.28);
  background: #eef8fc;
}

.purchase-key-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: 16px 0 0;
  padding: 12px 0 0;
  list-style: none;
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.purchase-key-points li {
  display: grid;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(9, 33, 52, 0.08);
}

.purchase-key-points span {
  color: rgba(9, 33, 52, 0.52);
  font-size: 12px;
  font-weight: 740;
}

.purchase-key-points strong {
  color: #0b2537;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.product-hero-info .product-purchase-panel .purchase-note {
  margin-top: 12px;
  color: rgba(9, 33, 52, 0.56);
  font-size: 12.5px;
}

.product-detail-reference-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: clamp(30px, 4vw, 52px);
}

.product-reference-table-card {
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid rgba(9, 33, 52, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(9, 33, 52, 0.06);
}

.product-reference-table-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 650;
  line-height: 1.16;
}

.reference-spec-table,
.application-reference-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(9, 33, 52, 0.14);
  background: #ffffff;
}

.reference-spec-table thead th,
.application-reference-table thead th {
  padding: 14px 18px;
  color: #0b2537;
  background: #eef5f8;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.35;
  text-align: left;
}

.reference-spec-table th,
.reference-spec-table td,
.application-reference-table th,
.application-reference-table td {
  padding: 13px 18px;
  color: #172b38;
  font-size: 16px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.reference-spec-table tbody th,
.application-reference-table tbody th {
  width: 34%;
  color: rgba(9, 33, 52, 0.66);
  font-weight: 760;
}

.reference-spec-table td,
.application-reference-table td {
  font-weight: 560;
}

.product-hero-info .detail-panel:not(.product-purchase-panel) {
  padding: 0;
}

.product-hero-info .detail-panel + .detail-panel {
  padding-top: 20px;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
}

.product-hero-info .reference-kicker {
  margin-bottom: 7px;
  color: rgba(9, 33, 52, 0.48);
  font-size: 11.5px;
  letter-spacing: 0.10em;
}

.product-hero-info h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 1.65vw, 24px);
  font-weight: 530;
  line-height: 1.22;
}

.product-hero-info .spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(9, 33, 52, 0.12);
  background: #ffffff;
  font-size: 14px;
}

.product-hero-info .spec-table thead {
  display: table-header-group;
}

.product-hero-info .spec-table thead th {
  color: #0b2537;
  background: #eef5f8;
  font-size: 12.5px;
  font-weight: 780;
}

.product-hero-info .spec-table tbody {
  display: table-row-group;
}

.product-hero-info .spec-table tr {
  display: table-row;
}

.product-hero-info .spec-table th,
.product-hero-info .spec-table td {
  display: table-cell;
  padding: 7px 10px;
  vertical-align: top;
  border-top: 1px solid rgba(9, 33, 52, 0.10);
  line-height: 1.42;
}

.product-hero-info .spec-table tbody th {
  width: 40%;
  color: rgba(9, 33, 52, 0.56);
  font-size: 13px;
  font-weight: 740;
  text-align: left;
}

.product-hero-info .spec-table td {
  color: #172b38;
  font-size: 13.5px;
  font-weight: 650;
}

.product-hero-info .detail-panel-applications ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.product-hero-info .detail-panel-applications li {
  padding: 8px 0;
  color: rgba(9, 33, 52, 0.72);
  font-size: 15px;
  line-height: 1.58;
  border-top: 1px solid rgba(9, 33, 52, 0.09);
}

.gallery-thumbs {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumbs button {
  min-height: 48px;
  color: var(--brand-dark);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  transition: color 240ms var(--ease-out), border-color 240ms var(--ease-out), background 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.product-summary {
  color: var(--ink);
  max-width: 560px;
  padding: 22px 0;
  border-left: 0;
}

.product-summary p:not(.eyebrow) {
  color: rgba(0, 43, 57, 0.62);
  font-size: 16px;
  line-height: 1.68;
}

.product-summary .eyebrow,
.product-summary h1 {
  color: var(--ink);
}

.product-summary .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.product-summary h1 {
  max-width: 11em;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.product-summary-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 26px 0 0;
  padding: 22px 0;
  list-style: none;
  border-top: 1px solid rgba(9, 33, 52, 0.14);
  border-bottom: 1px solid rgba(9, 33, 52, 0.14);
}

.product-summary-specs li {
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 0 0 14px;
}

.product-summary-specs span {
  color: rgba(9, 33, 52, 0.52);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.product-summary-specs strong {
  color: #0b2537;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.product-summary .actions .quote-button {
  min-height: 44px;
  padding: 11px 24px;
  box-shadow: none;
}

.product-summary .actions button.quote-button {
  color: var(--brand);
  border-color: var(--brand);
  background: #ffffff;
}

.product-summary .actions button.quote-button:hover,
.product-summary .actions button.quote-button:focus-visible {
  color: #fff;
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.product-summary .product-cta-stack {
  gap: 12px 16px;
}

.product-summary .route-context-link {
  flex-basis: 100%;
  min-height: 24px;
  color: rgba(0, 43, 57, 0.54);
  font-size: 13px;
}

.content-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--soft-line);
}

.content-section h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.content-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.site-footer {
  color: #d8e8f0;
  background: #092134;
}

.footer-grid {
  width: var(--shell);
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: 34px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: #b8cbd2;
}

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

.footer-social-links {
  display: grid;
  gap: 14px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #d8e8f0;
  min-height: 26px;
}

.footer-social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.92;
}

.footer-social-link:hover img,
.footer-social-link:focus-visible img {
  opacity: 1;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9fb6be;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: none;
  clip-path: none;
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-38px, 0, 0) scale(0.985);
}

.reveal-right {
  transform: translate3d(38px, 0, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: none;
  clip-path: none;
}

.category-grid .reveal:nth-child(2),
.product-grid .reveal:nth-child(2),
.application-grid .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.category-grid .reveal:nth-child(3),
.product-grid .reveal:nth-child(3),
.application-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.category-grid .reveal:nth-child(4),
.product-grid .reveal:nth-child(4),
.application-grid .reveal:nth-child(4) {
  transition-delay: 210ms;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2026 reference-led pass: second screen onward, product-led and image-first. */
.section h2,
.content-section h2,
.catalog-hero h1,
.product-detail-hero h1,
.subpage-hero h1 {
  color: #111827;
  font-weight: 750;
  letter-spacing: 0;
}

.subpage-hero h1 {
  color: #fff;
  max-width: 780px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.subpage-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.subpage-hero .breadcrumb a {
  color: #fff;
}

.subpage-hero p:not(.breadcrumb) {
  color: rgba(244, 250, 252, 0.94);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.56);
}

.section h2 {
  font-size: clamp(30px, 2.55vw, 40px);
}

.section-lead {
  color: #667085;
  font-size: 16px;
  line-height: 1.5;
}

.reference-kicker {
  color: #075985;
  background: rgba(229, 246, 252, 0.92);
  box-shadow: 0 10px 28px rgba(20, 158, 216, 0.08);
}

.diagnostic-section,
.capacity-match-section,
.process-section {
  background:
    radial-gradient(circle at 50% 34%, rgba(20, 158, 216, 0.10), transparent 30%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 54%, #eef8fb 100%);
}

.diagnostic-section.section,
.capacity-match-section.section,
.process-section.section,
.product-fit-section.section,
.why-choose-section.section {
  padding: clamp(56px, 6vw, 78px) 0;
}

.diagnostic-section .section-center,
.product-fit-section .section-center,
.process-section .section-center,
.why-choose-section .section-center {
  max-width: 780px;
  margin-bottom: 30px;
}

.diagnostic-layout {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3.8vw, 46px);
}

.story-tab-list {
  gap: 10px;
}

.story-tab {
  grid-template-columns: 1fr;
  min-height: 70px;
  padding: 11px 38px 11px 18px;
  border: 1px solid rgba(9, 33, 52, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(9, 33, 52, 0.07);
}

.story-tab span {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.story-tab::after {
  width: 7px;
  height: 7px;
  margin-right: 0;
}

.story-tab.is-active {
  background: #3e769b;
  border-color: #3e769b;
  box-shadow: 0 20px 44px rgba(62, 118, 155, 0.22);
}

.story-panel {
  padding: clamp(24px, 2.65vw, 32px);
  border-radius: 0;
  box-shadow: none;
}

.story-note {
  border-left: 0;
}

.product-fit-section {
  background:
    radial-gradient(circle at 50% 48%, rgba(20, 158, 216, 0.11), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(23, 139, 99, 0.06), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 56%, #eef8fb 100%);
}

.product-fit-section .shell {
  width: min(1320px, calc(100vw - 144px));
}

.product-fit-rail {
  gap: 12px;
}

.fit-card {
  min-height: clamp(310px, 30vw, 350px);
  border-radius: 13px;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 40, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 34%, rgba(198, 229, 250, 0.62), transparent 56%),
    linear-gradient(180deg, #bad9f2 0%, #8bb9dc 52%, #244c6a 100%);
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.fit-card::before {
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 29, 45, 0.18) 38%, rgba(8, 29, 45, 0.78) 100%);
}

.fit-card::after {
  background:
    linear-gradient(180deg, rgba(5, 18, 30, 0) 18%, rgba(8, 68, 96, 0.24) 54%, rgba(8, 38, 60, 0.84) 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.40), transparent 34%);
}

.fit-card img {
  padding: 30px 12px 72px;
  background: transparent;
}

.fit-card strong {
  font-size: clamp(17px, 1.18vw, 22px);
}

.fit-card.is-active::after,
.fit-card:hover::after,
.fit-card:focus-visible::after {
  opacity: 1;
}

.fit-card.is-active .fit-card-copy,
.fit-card:hover .fit-card-copy,
.fit-card:focus-visible .fit-card-copy {
  gap: 7px;
}

.fit-card.is-active .fit-index,
.fit-card.is-active .fit-card-copy > span:not(.fit-index),
.fit-card.is-active .fit-card-copy em,
.fit-card:hover .fit-index,
.fit-card:focus-visible .fit-index,
.fit-card:hover .fit-card-copy > span:not(.fit-index),
.fit-card:focus-visible .fit-card-copy > span:not(.fit-index),
.fit-card:hover .fit-card-copy em,
.fit-card:focus-visible .fit-card-copy em {
  max-height: 120px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Image simplification pass: keep route photos clear and move detail into hover states. */
.fit-card .fit-corner,
.fit-card .fit-badge {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fit-card .fit-index {
  max-height: 0;
  min-height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}

.fit-card::before {
  height: 34%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 29, 45, 0.20) 42%, rgba(8, 29, 45, 0.76) 100%);
}

.fit-card.is-active::after {
  opacity: 0;
}

.fit-card:hover::after,
.fit-card:focus-visible::after {
  opacity: 1;
}

.fit-card img {
  padding: 26px 12px 58px;
}

.fit-card-copy {
  padding: 18px 20px 20px;
}

.fit-card.is-active .fit-card-copy {
  gap: 0;
}

.fit-card.is-active .fit-card-copy > span:not(.fit-index),
.fit-card.is-active .fit-card-copy em {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translate3d(0, 8px, 0);
}

.fit-card:hover .fit-card-copy,
.fit-card:focus-visible .fit-card-copy {
  gap: 7px;
}

.fit-card:hover .fit-card-copy > span:not(.fit-index),
.fit-card:focus-visible .fit-card-copy > span:not(.fit-index),
.fit-card:hover .fit-card-copy em,
.fit-card:focus-visible .fit-card-copy em {
  max-height: 120px;
  min-height: 0;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.fit-card .fit-corner,
.fit-card .fit-badge,
.fit-card .fit-index {
  display: none;
}

.fit-card .fit-card-copy {
  gap: 0;
}

.fit-card.is-active .fit-card-copy {
  gap: 0;
}

.fit-card .fit-card-copy > span:not(.fit-index),
.fit-card .fit-card-copy em,
.fit-card.is-active .fit-card-copy > span:not(.fit-index),
.fit-card.is-active .fit-card-copy em {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translate3d(0, 8px, 0);
}

.fit-card:hover .fit-card-copy,
.fit-card:focus-visible .fit-card-copy {
  gap: 7px;
}

.fit-card:hover .fit-card-copy > span:not(.fit-index),
.fit-card:focus-visible .fit-card-copy > span:not(.fit-index),
.fit-card:hover .fit-card-copy em,
.fit-card:focus-visible .fit-card-copy em {
  max-height: 120px;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.fit-card.is-active::after {
  opacity: 0;
}

.fit-card {
  color: #08263c;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(8, 38, 60, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f8fbfd 100%);
  background-size: auto;
  box-shadow: inset 0 0 0 1px rgba(8, 38, 60, 0.08);
}

.fit-card::before {
  height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.98) 100%);
}

.fit-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.92) 70%, rgba(248, 251, 253, 0.98) 100%),
    radial-gradient(circle at 50% 0%, rgba(8, 38, 60, 0.06), transparent 36%);
}

.fit-card img {
  filter: drop-shadow(0 18px 14px rgba(8, 30, 48, 0.12)) saturate(1.04) contrast(1.03);
}

.fit-card strong {
  color: #08263c;
  text-shadow: none;
}

.fit-card span:not(.fit-index):not(.fit-card-copy) {
  color: #395467;
}

.fit-card em {
  color: #0369a1;
}

.fit-card:hover,
.fit-card:focus-visible {
  filter: drop-shadow(0 18px 28px rgba(9, 33, 52, 0.12));
}

.fit-card:hover img,
.fit-card:focus-visible img {
  filter: drop-shadow(0 20px 16px rgba(8, 30, 48, 0.16)) saturate(1.08) contrast(1.05) brightness(1.01);
}

.capacity-match-section {
  color: #111827;
}

.capacity-match-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.capacity-board {
  border-radius: 16px;
  box-shadow: 0 26px 74px rgba(9, 33, 52, 0.13);
}

.capacity-board > img {
  height: clamp(250px, 24vw, 320px);
}

.capacity-grid a {
  background: #f3f6ff;
}

.process-section .shell {
  width: min(1500px, calc(100vw - 48px));
}

.process-accordion {
  min-height: clamp(390px, 38vw, 470px);
}

.process-step {
  min-height: clamp(390px, 38vw, 470px);
  padding: 18px;
  border-radius: 11px;
  transition:
    flex-grow 560ms var(--ease-out),
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.process-step.is-active {
  flex-grow: 2.72;
}

.process-step::after {
  background:
    linear-gradient(180deg, rgba(4, 15, 24, 0.04) 24%, rgba(4, 15, 24, 0.58) 100%),
    linear-gradient(90deg, rgba(4, 15, 24, 0.36), rgba(4, 15, 24, 0));
  opacity: 0.50;
}

.process-step.is-active::after,
.process-step:hover::after,
.process-step:focus-visible::after {
  opacity: 0;
}

.process-step img {
  filter: none;
}

.process-step.is-active img,
.process-step:hover img,
.process-step:focus-visible img {
  filter: none;
}

.process-confirm-strip {
  max-width: 1120px;
  border-radius: 12px;
}

.why-choose-section {
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(5, 23, 36, 0.94) 0%, rgba(7, 78, 112, 0.88) 52%, rgba(4, 14, 24, 0.93) 100%),
    url("media/factory/xinnuo-workshop-overview-20260704.webp") center/cover no-repeat;
}

.why-choose-section .shell {
  width: min(1120px, var(--shell));
}

.why-choose-section .section-center h2 {
  font-size: clamp(31px, 3vw, 46px);
}

.why-choose-section .section-center h2 span {
  color: #70d4eb;
}

.why-choose-grid {
  gap: 14px;
}

.why-card {
  min-height: 198px;
  padding: 20px 22px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.why-card.is-active,
.why-card:hover,
.why-card:focus-visible {
  color: #082f5f;
  border-color: rgba(255, 255, 255, 0.86);
  background: #fff;
  box-shadow: 0 26px 62px rgba(7, 18, 58, 0.24);
  transform: translateY(-3px);
}

.why-card:hover::before,
.why-card:focus-visible::before,
.why-card.is-active::before {
  opacity: 0;
}

.why-card:hover strong,
.why-card:focus-visible strong,
.why-card.is-active strong {
  color: #111827;
}

.why-card:hover .why-icon,
.why-card:focus-visible .why-icon,
.why-card.is-active .why-icon {
  color: #fff;
  background: #0369a1;
}

.why-card:hover .why-metric,
.why-card:focus-visible .why-metric,
.why-card.is-active .why-metric {
  color: #0369a1;
}

.why-card:hover .why-metric-label,
.why-card:focus-visible .why-metric-label,
.why-card.is-active .why-metric-label,
.why-card:hover > span:last-child,
.why-card:focus-visible > span:last-child,
.why-card.is-active > span:last-child {
  color: rgba(17, 24, 39, 0.68);
}

.catalog-route-hero {
  position: relative;
  overflow: hidden;
  color: #0b1f33;
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 158, 216, 0.13), transparent 28%),
    radial-gradient(circle at 16% 86%, rgba(3, 105, 161, 0.11), transparent 32%),
    linear-gradient(90deg, rgba(20, 158, 216, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 158, 216, 0.046) 1px, transparent 1px),
    linear-gradient(135deg, #fbfdff 0%, #f2f8fb 52%, #ffffff 100%);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
}

.catalog-route-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.catalog-route-hero::after {
  content: "";
  position: absolute;
  right: max(-120px, -7vw);
  bottom: max(-130px, -8vw);
  width: min(430px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 158, 216, 0.14), rgba(23, 139, 99, 0.055) 42%, transparent 70%);
  pointer-events: none;
}

.catalog-route-hero .category-intro-grid {
  position: relative;
  z-index: 1;
  min-height: 520px;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(40px, 5.6vw, 84px);
}

.catalog-route-hero .category-intro-grid > div:first-child {
  position: relative;
  max-width: 590px;
  padding-left: 24px;
}

.catalog-route-hero .category-intro-grid > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #149ed8, rgba(20, 158, 216, 0.10));
}

.catalog-route-hero .breadcrumb {
  color: rgba(11, 31, 51, 0.56);
}

.catalog-route-hero .breadcrumb a:hover,
.catalog-route-hero .breadcrumb a:focus-visible {
  color: #0369a1;
}

.catalog-route-hero .reference-kicker {
  color: #0369a1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 245, 255, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(20, 158, 216, 0.18),
    0 12px 28px rgba(20, 158, 216, 0.10);
}

.catalog-route-hero h1 {
  max-width: 560px;
  color: #081827;
  font-size: clamp(48px, 5.3vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.catalog-route-hero p:not(.breadcrumb) {
  max-width: 520px;
  color: #385268;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.42;
}

.catalog-route-hero .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 28px;
}

.catalog-route-hero .cta-helper-link {
  color: #24506c;
}

.catalog-route-hero .visual-field {
  position: relative;
  height: min(42vw, 470px);
  padding: clamp(18px, 3vw, 34px);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 84%, rgba(8, 30, 48, 0.16), transparent 48%),
    linear-gradient(90deg, rgba(20, 158, 216, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 158, 216, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(229, 244, 253, 0.46));
  background-size: auto, 44px 44px, 44px 44px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(20, 158, 216, 0.10),
    0 18px 34px rgba(9, 33, 52, 0.08);
  filter: drop-shadow(0 24px 24px rgba(9, 33, 52, 0.10));
}

.product-route-section {
  background:
    radial-gradient(circle at 50% 44%, rgba(20, 158, 216, 0.10), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(23, 139, 99, 0.055), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 55%, #eef8fb 100%);
}

.product-route-detail-snapshot {
  padding-block: clamp(56px, 6vw, 86px);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f2 100%);
}

.product-detail-hero {
  background:
    linear-gradient(110deg, #f7f7f2 0%, #ffffff 46%, #f0f0eb 100%),
    url("assets/images/factory/factory-engineering-support-bg.webp") center/cover no-repeat;
}

.product-detail-grid {
  align-items: start;
}

.product-gallery {
  overflow: visible;
}

.product-gallery img {
  height: min(31vw, 390px);
  padding: 12px;
  background: transparent;
  filter: none;
}

.product-detail-panels {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0%, rgba(9, 33, 52, 0.16) 38%, rgba(20, 158, 216, 0.22) 58%, transparent 100%) top center / min(1020px, 78vw) 1px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.detail-panel-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) repeat(2, minmax(240px, 0.68fr));
  grid-auto-rows: auto;
  gap: 0 clamp(28px, 3vw, 44px);
  align-items: stretch;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.detail-panel {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  padding: 28px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-panel .reference-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  width: fit-content;
  margin: 0 0 2px;
  padding: 0;
  color: #036d98;
  background: transparent;
  box-shadow: none;
}

.detail-panel .reference-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0896c7;
}

.detail-panel-large {
  grid-row: span 2;
  min-height: 0;
  margin: 0;
  padding: 28px clamp(28px, 3vw, 44px) 28px 0;
  border-right: 1px solid rgba(9, 33, 52, 0.12);
  border-radius: 0;
  color: #0b2537;
  background: transparent;
  box-shadow: none;
}

.detail-panel-large h2,
.detail-panel-large p {
  color: #0b2537;
}

.detail-panel-large .reference-kicker {
  color: #036d98;
}

.detail-overview-media {
  display: grid;
  align-items: end;
  justify-items: center;
  height: clamp(250px, 24vw, 360px);
  margin: 0 0 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(9, 33, 52, 0.10);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.detail-overview-media img {
  width: 100%;
  height: 100%;
  padding: 22px 26px 18px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 18px rgba(8, 30, 48, 0.14));
}

.detail-overview-copy {
  display: grid;
  gap: 12px;
}

.detail-panel h2 {
  margin: 0;
  color: #0b2537;
  font-size: clamp(24px, 1.9vw, 31px);
  line-height: 1.08;
}

.detail-panel-large h2 {
  color: #0b2537;
}

.detail-panel p,
.detail-panel li {
  color: rgba(9, 33, 52, 0.68);
}

.detail-panel-large p {
  max-width: 46ch;
  color: rgba(9, 33, 52, 0.68);
}

.detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  padding: 9px 0;
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.spec-table th,
.spec-table td {
  padding: 9px 0;
  vertical-align: top;
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.spec-table th {
  width: 42%;
  padding-right: 18px;
  color: rgba(9, 33, 52, 0.56);
  font-weight: 760;
  text-align: left;
}

.spec-table td {
  color: #1d2730;
}

.detail-panel-quote {
  grid-column: 2 / span 2;
  color: #0b2537;
  border-top: 1px solid rgba(9, 33, 52, 0.14);
  background: transparent;
  box-shadow: none;
}

.detail-panel-quote h2,
.detail-panel-quote li {
  color: #0b2537;
}

.detail-panel-quote .quote-button {
  width: min(360px, 100%);
  margin-top: 2px;
  color: #fff;
  background: #3e769b;
  box-shadow: 0 14px 28px rgba(62, 118, 155, 0.22);
}

.detail-panel-quote .quote-button:hover,
.detail-panel-quote .quote-button:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 18px 36px rgba(62, 118, 155, 0.28);
}

.detail-overview-grid {
  display: block;
  border-bottom: 0;
  background: transparent;
}

.detail-overview-grid .detail-panel-large {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding-right: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.product-process-section {
  background:
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.product-process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.process-copy {
  display: grid;
  gap: 18px;
}

.process-copy h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 520;
  line-height: 1.04;
}

.process-copy p {
  max-width: 58ch;
  margin: 0;
  color: #4d5e6c;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.68;
}

.component-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.component-list li {
  padding: 8px 12px;
  border: 1px solid rgba(9, 33, 52, 0.12);
  border-radius: 999px;
  color: #1d3444;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
}

.process-flow-figure {
  margin: 0;
  padding: clamp(14px, 2.2vw, 24px);
  border: 1px solid rgba(9, 33, 52, 0.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(9, 33, 52, 0.08);
}

.process-flowchart {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.process-flow-figure figcaption {
  margin-top: 12px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.5;
}

.product-principle-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(76, 141, 180, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f7f8 100%);
}

.product-principle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.product-principle-copy {
  max-width: 820px;
}

.product-principle-copy h2,
.product-quality-layout h2,
.product-faq-layout h2 {
  margin: 0 0 18px;
  color: #10212c;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 560;
  line-height: 1.05;
}

.product-principle-copy p {
  margin: 0 0 16px;
  color: #415463;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.72;
}

.product-advantages-panel {
  padding: clamp(24px, 3vw, 36px);
  border-left: 3px solid #4b6473;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 55px rgba(20, 41, 52, 0.08);
}

.product-advantages-panel h3 {
  margin: 8px 0 18px;
  color: #132532;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
}

.product-advantages-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-advantages-panel li {
  position: relative;
  padding-left: 22px;
  color: #435461;
  line-height: 1.58;
}

.product-advantages-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b6473;
}

.product-spec-section {
  background:
    linear-gradient(90deg, transparent 0%, rgba(9, 33, 52, 0.13) 40%, rgba(20, 158, 216, 0.18) 60%, transparent 100%) top center / min(1020px, 78vw) 1px no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.product-spec-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.product-spec-layout .detail-panel {
  padding: 28px 0;
}

.product-spec-primary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.product-spec-secondary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  border-top: 0;
}

.product-spec-primary .detail-panel + .detail-panel,
.product-spec-secondary .detail-panel + .detail-panel {
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.product-spec-secondary .detail-panel + .detail-panel {
  border-top: 0;
  border-left: 1px solid rgba(9, 33, 52, 0.10);
  padding-left: clamp(26px, 3vw, 42px);
}

.model-range-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.model-range-table th,
.model-range-table td {
  padding: 10px 0;
  vertical-align: top;
  border-top: 1px solid rgba(9, 33, 52, 0.10);
  text-align: left;
}

.model-range-table thead th {
  color: rgba(9, 33, 52, 0.56);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.model-range-table tbody th {
  width: 28%;
  padding-right: 18px;
  color: #0b2537;
  font-weight: 760;
}

.model-range-table td {
  color: rgba(9, 33, 52, 0.70);
}

.product-quality-section,
.product-faq-section {
  background: #f7fbfd;
}

.product-quality-layout,
.product-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.quality-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-top: 3px solid #4b6473;
  box-shadow: 0 20px 46px rgba(9, 33, 52, 0.08);
}

.quality-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 15px;
}

.quality-table th,
.quality-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(9, 33, 52, 0.10);
  text-align: left;
  color: #445867;
}

.quality-table thead th {
  color: #10212c;
  background: #eef4f6;
  font-weight: 720;
}

.quality-table tbody th {
  color: #10212c;
  font-weight: 700;
}

.product-faq-list {
  display: grid;
  gap: 10px;
}

.product-faq-list details {
  padding: 18px 0;
  border-bottom: 1px solid rgba(9, 33, 52, 0.14);
}

.product-faq-list summary {
  cursor: pointer;
  list-style: none;
  color: #10212c;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 660;
  line-height: 1.35;
}

.product-faq-list summary::-webkit-details-marker {
  display: none;
}

.product-faq-list summary::after {
  content: "+";
  float: right;
  color: #4b6473;
  font-size: 24px;
  line-height: 1;
}

.product-faq-list details[open] summary::after {
  content: "-";
}

.product-faq-list p {
  margin: 12px 0 0;
  max-width: 68ch;
  color: #536574;
  line-height: 1.68;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100vw - 32px, 920px);
  }

  .site-topbar,
  .main-nav,
  .header-actions .desktop-only {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 18px;
    letter-spacing: 0.01em;
  }

  .brand-text strong::after {
    width: 34%;
    margin-top: 3px;
  }

  .brand-text span {
    display: none;
  }

  .mega-menu {
    display: none;
  }

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

  .hero-data,
  .proof-grid,
  .workflow-strip,
  .product-selector-layout,
  .about-focus-layout,
  .contact-layout,
  .quote-layout,
  .category-intro-grid,
  .product-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-selector-section .shell {
    width: var(--shell);
  }

  .catalog-browser-section {
    overflow: hidden;
  }

  .catalog-browser-heading {
    max-width: 720px;
  }

  .catalog-browser-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .catalog-category-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .catalog-category-button {
    min-height: 96px;
  }

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

  .catalog-product-card {
    grid-template-rows: 220px 1fr;
    min-height: 376px;
  }

  .custom-section .shell {
    width: var(--shell);
  }

  .product-selector-layout {
    align-items: start;
    gap: 30px;
  }

  .product-selector-copy {
    max-width: 720px;
  }

  .product-selector-copy .section-lead {
    max-width: 650px;
  }

  .selector-board {
    grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.96fr);
  }

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

  .product-fit-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fit-card {
    min-height: 320px;
    grid-template-rows: minmax(220px, 1fr) auto;
  }

  .diagnostic-layout,
  .capacity-match-layout,
  .integration-layout,
  .qa-layout,
  .case-layout,
  .testimonial-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .story-tab-list {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    overflow-x: hidden;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .story-tab-list::-webkit-scrollbar {
    display: none;
  }

  .diagnostic-tab-viewport {
    --diagnostic-control-space: 48px;
    --diagnostic-side-gutter: calc((100vw - var(--shell)) / 2);
    margin-inline: calc((100vw - var(--shell)) / -2);
    padding-inline: calc(var(--diagnostic-side-gutter) + var(--diagnostic-control-space));
    overflow: hidden;
  }

  .diagnostic-tab-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-inline: 0;
    padding: 0;
    overflow-x: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .diagnostic-tab-list::-webkit-scrollbar {
    display: none;
  }

  .diagnostic-tab-controls {
    position: absolute;
    inset: 0 calc(var(--diagnostic-side-gutter) + var(--diagnostic-control-space));
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .diagnostic-tab-controls > button {
    position: relative;
    display: grid;
    place-items: center;
    width: var(--diagnostic-control-space);
    height: min(92px, 100%);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
  }

  .diagnostic-tab-controls > button:first-child {
    background: linear-gradient(90deg, rgba(247, 250, 253, 0.82), rgba(247, 250, 253, 0));
  }

  .diagnostic-tab-controls > button:last-child {
    background: linear-gradient(270deg, rgba(247, 250, 253, 0.82), rgba(247, 250, 253, 0));
  }

  .diagnostic-tab-controls > button::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid rgba(62, 118, 155, 0.82);
    border-right: 2px solid rgba(62, 118, 155, 0.82);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.9));
    transform: rotate(45deg);
    transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
  }

  .diagnostic-tab-controls > button:hover::before,
  .diagnostic-tab-controls > button:focus-visible::before {
    border-color: #3e769b;
  }

  .diagnostic-tab-controls > button:first-child::before {
    transform: rotate(-135deg);
  }

  .diagnostic-tab-controls > button:last-child::before {
    transform: rotate(45deg);
  }

  .story-tab-list .story-tab {
    scroll-snap-align: start;
  }

  .story-tab-list.diagnostic-tab-list .story-tab {
    flex: 0 0 clamp(238px, 34vw, 316px);
    scroll-snap-align: center;
  }

  .story-tab.is-active {
    transform: none;
  }

  .story-panel {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.94)),
      url("media/factory/xinnuo-ro-equipment-testing-20260704.webp") right bottom/36% auto no-repeat;
  }

  .capacity-match-layout,
  .qa-layout {
    align-items: stretch;
  }

  .industry-panel {
    grid-template-columns: 1fr;
  }

  .industry-panel img {
    height: 360px;
  }

  .process-accordion {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 560px;
  }

  .process-step.is-active {
    grid-column: span 2;
  }

  .process-step:not(.is-active) strong {
    font-size: 22px;
  }

  .integration-visual,
  .integration-visual img {
    min-height: 460px;
  }

  .custom-grid,
  .qa-cards,
  .testimonial-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-strip article:last-child {
    grid-column: 1 / -1;
  }

  .factory-proof-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .factory-proof-photo {
    min-height: 360px;
  }

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

  .selector-main-card {
    min-height: 520px;
  }

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

  .workflow-strip {
    gap: 34px;
  }

  .workflow-intro {
    max-width: 680px;
  }

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

  .workflow-steps::before {
    display: none;
  }

  .about-focus-layout,
  .contact-layout,
  .quote-layout {
    gap: 28px;
  }

  .contact-info-card,
  .contact-form-panel,
  .quote-layout .quote-form {
    max-width: none;
  }

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

  .product-grid-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-grid-summary {
    min-height: 132px;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-detail-heading .actions {
    display: flex;
    flex-wrap: wrap;
    justify-items: start;
    justify-content: flex-start;
    min-width: 0;
  }

  .product-detail-heading .route-context-link {
    flex-basis: 100%;
    text-align: left;
  }

  .purchase-key-points,
  .product-hero-info .detail-panel-applications ul {
    grid-template-columns: 1fr;
  }

  .product-reference-table-card {
    padding: 18px 14px;
  }

  .reference-spec-table thead th,
  .application-reference-table thead th,
  .reference-spec-table th,
  .reference-spec-table td,
  .application-reference-table th,
  .application-reference-table td {
    padding: 11px 10px;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .reference-spec-table tbody th,
  .application-reference-table tbody th {
    width: 38%;
  }

  .applications-section .shell {
    width: var(--shell);
  }

  .applications-section .section-heading-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .applications-section .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .applications-section .application-card-featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .applications-section .application-card-featured img {
    height: 390px;
  }

  .factory-section {
    min-height: auto;
    padding-block: 88px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5f3 100%);
  }

  .factory-support-layout {
    width: var(--shell);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .factory-section .factory-support-panel {
    max-width: none;
  }

  .factory-map-stack {
    gap: 14px;
  }

  .factory-route-panel {
    min-height: 430px;
  }

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

  .factory-support-points {
    grid-template-columns: 1fr;
  }

  .product-gallery img {
    height: min(54vw, 390px);
  }

  .product-summary {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(9, 33, 52, 0.14);
  }

  .product-summary h1 {
    max-width: none;
  }

  .product-summary-specs {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-summary-specs li {
    min-height: auto;
    padding: 12px 0;
    border-top: 1px solid rgba(9, 33, 52, 0.08);
  }

  .product-summary-specs li:first-child {
    border-top: 0;
  }

  .catalog-route-hero .category-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .catalog-route-hero .category-intro-grid > div:first-child {
    max-width: 720px;
  }

  .catalog-route-hero .visual-field {
    height: min(58vw, 430px);
  }
}

@media (min-width: 1021px) and (max-width: 1280px) {
  .contact-rail {
    right: -8px;
    inline-size: 52px;
    gap: 10px;
  }

  .contact-rail a {
    inline-size: 48px;
    block-size: 52px;
  }

  .contact-icon {
    inline-size: 46px;
    block-size: 46px;
  }

  .contact-svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 54px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand {
    gap: 8px;
  }

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

  .header-actions {
    gap: 6px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero-slider {
    min-height: 0;
    overflow: hidden;
  }

  .hero-slide {
    position: relative;
    display: none;
    min-height: 0;
    padding-bottom: 0;
    transform: none;
    transition: opacity 600ms var(--ease-out), visibility 600ms var(--ease-out);
  }

  .hero-slide.is-active {
    display: grid;
  }

  .hero-content {
    min-height: 620px;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .hero-content h1 {
    font-size: clamp(31px, 8vw, 39px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-actions a,
  .hero-actions button {
    width: auto;
    flex: 1 1 180px;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero-data {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 24px;
  }

  .hero-data span {
    min-height: 34px;
    padding: 7px 10px;
    color: #e7f3f8;
    font-size: 12px;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(7, 30, 47, 0.52);
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(6, 24, 38, 0.78), rgba(6, 24, 38, 0.56) 50%, rgba(6, 24, 38, 0.28)),
      linear-gradient(90deg, rgba(6, 24, 38, 0.72), rgba(6, 24, 38, 0.18));
  }

  .hero-controls {
    position: static;
    width: var(--shell);
    margin: 0 auto 10px;
    justify-content: center;
  }

  .slide-counter {
    text-align: center;
    color: #fff;
    background: rgba(7, 30, 47, 0.58);
  }

  .section-heading-row {
    display: block;
  }

  .section h2,
  .content-section h2 {
    font-size: 28px;
  }

  .section-center {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-center .section-lead {
    margin-inline: 0;
  }

  .catalog-browser-section {
    background:
      linear-gradient(90deg, rgba(62, 118, 155, 0.10) 1px, transparent 1px),
      linear-gradient(180deg, #f7fbfd 0%, #ffffff 54%, #eef8fb 100%);
    background-size: 34px 34px, auto;
  }

  .catalog-browser-heading {
    margin-bottom: 22px;
  }

  .catalog-browser-heading h2 {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.08;
  }

  .catalog-mobile-select {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
  }

  .catalog-mobile-select label {
    color: rgba(0, 43, 57, 0.66);
    font-size: 13px;
    font-weight: 700;
  }

  .catalog-mobile-select select {
    min-height: 48px;
    width: 100%;
    padding: 0 42px 0 14px;
    border: 1px solid rgba(0, 43, 57, 0.14);
    border-radius: 10px;
    color: #0b2537;
    font: inherit;
    font-weight: 680;
    background:
      linear-gradient(45deg, transparent 50%, var(--brand) 50%) calc(100% - 22px) 21px / 7px 7px no-repeat,
      linear-gradient(135deg, var(--brand) 50%, transparent 50%) calc(100% - 16px) 21px / 7px 7px no-repeat,
      #ffffff;
    box-shadow: 0 12px 28px rgba(0, 43, 57, 0.08);
    appearance: none;
  }

  .catalog-category-panel {
    display: none;
  }

  .catalog-panel-head {
    margin-bottom: 18px;
  }

  .catalog-panel-head h2 {
    font-size: 27px;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-product-card {
    grid-template-rows: 210px auto;
    min-height: 0;
  }

  .catalog-product-copy {
    padding: 18px 18px 22px;
  }

  .product-grid-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .product-grid-section h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.05;
  }

  .product-grid-summary {
    min-height: auto;
    padding: 16px;
  }

  .product-grid-summary strong {
    font-size: 40px;
  }

  .product-grid-summary p {
    max-width: none;
  }

  .product-fit-section,
  .diagnostic-section,
  .capacity-match-section,
  .industry-section,
  .process-section,
  .integration-section,
  .custom-section,
  .factory-proof-section,
  .qa-section,
  .case-section,
  .faq-section {
    overflow: hidden;
  }

  .product-fit-rail {
    display: flex;
    gap: 0;
    overflow: visible;
    transform: translate3d(calc(var(--product-route-index, 0) * -100%), 0, 0);
    transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-fit-viewport {
    overflow: hidden;
    padding-bottom: 34px;
    border-radius: 16px;
  }

  .fit-card {
    flex: 0 0 100%;
    min-height: min(58vh, 342px);
    border-radius: 16px;
  }

  .fit-card img {
    padding: 22px 16px 66px;
  }

  .product-route-controls {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 0;
    padding: 0 2px;
    pointer-events: none;
  }

  .product-route-controls > button {
    position: relative;
    width: 48px;
    height: 100%;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0.88;
    pointer-events: auto;
  }

  .product-route-controls > button::before {
    inset: auto;
    top: 50%;
    left: 15px;
    width: 17px;
    height: 17px;
    border-top-color: rgba(62, 118, 155, 0.82);
    border-right-color: rgba(62, 118, 155, 0.82);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.85));
    transform: translateY(-50%) rotate(45deg);
  }

  .product-route-controls > button:first-child::before {
    transform: translateY(-50%) rotate(-135deg);
  }

  .product-route-controls > button:last-child::before {
    right: 15px;
    left: auto;
  }

  .product-route-dots {
    position: absolute;
    bottom: -28px;
    left: 50%;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .fit-card-copy {
    padding: 18px;
  }

  .fit-card strong {
    font-size: 22px;
  }

  .fit-bottom-note {
    justify-content: flex-start;
    text-align: left;
  }

  .diagnostic-layout,
  .capacity-match-layout,
  .industry-panel,
  .integration-layout,
  .qa-layout,
  .case-layout,
  .testimonial-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .industry-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    touch-action: pan-y;
    transform: translate3d(calc(var(--story-tab-index, 0) * -100%), 0, 0);
    transition: transform 560ms var(--ease-out);
    will-change: transform;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .industry-tabs::-webkit-scrollbar {
    display: none;
  }

  .industry-tab-viewport {
    --industry-control-space: 38px;
    --industry-side-gutter: calc((100vw - var(--shell)) / 2);
    margin-inline: calc((100vw - var(--shell)) / -2);
    padding-inline: calc(var(--industry-side-gutter) + var(--industry-control-space));
    overflow: hidden;
  }

  .industry-tab-controls {
    position: absolute;
    inset: 0 calc(var(--industry-side-gutter) + var(--industry-control-space));
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .industry-tab-controls > button {
    position: relative;
    display: grid;
    place-items: center;
    width: var(--industry-control-space);
    min-height: 60px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
  }

  .industry-tab-controls > button:first-child {
    background: linear-gradient(90deg, rgba(247, 250, 253, 0.82), rgba(247, 250, 253, 0));
  }

  .industry-tab-controls > button:last-child {
    background: linear-gradient(270deg, rgba(247, 250, 253, 0.82), rgba(247, 250, 253, 0));
  }

  .industry-tab-controls > button::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid rgba(62, 118, 155, 0.82);
    border-right: 2px solid rgba(62, 118, 155, 0.82);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.9));
    transform: rotate(45deg);
  }

  .industry-tab-controls > button:first-child::before {
    transform: rotate(-135deg);
  }

  .industry-tab-viewport .industry-tabs .story-tab {
    flex: 0 0 100%;
    justify-content: center;
    scroll-snap-align: center;
  }

  .diagnostic-tab-viewport {
    --diagnostic-control-space: 36px;
    --diagnostic-side-gutter: calc((100vw - var(--shell)) / 2);
    margin-inline: calc((100vw - var(--shell)) / -2);
    padding-inline: calc(var(--diagnostic-side-gutter) + var(--diagnostic-control-space));
    overflow: hidden;
  }

  .diagnostic-tab-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-inline: 0;
    padding: 0;
    overflow-x: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .diagnostic-tab-list::-webkit-scrollbar {
    display: none;
  }

  .diagnostic-tab-controls {
    position: absolute;
    inset: 0 calc(var(--diagnostic-side-gutter) + var(--diagnostic-control-space));
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .diagnostic-tab-controls > button {
    position: relative;
    display: grid;
    place-items: center;
    width: var(--diagnostic-control-space);
    height: min(84px, 100%);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
  }

  .diagnostic-tab-controls > button:first-child {
    background: linear-gradient(90deg, rgba(247, 250, 253, 0.8), rgba(247, 250, 253, 0));
  }

  .diagnostic-tab-controls > button:last-child {
    background: linear-gradient(270deg, rgba(247, 250, 253, 0.8), rgba(247, 250, 253, 0));
  }

  .diagnostic-tab-controls > button::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid rgba(62, 118, 155, 0.82);
    border-right: 2px solid rgba(62, 118, 155, 0.82);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.9));
    transform: rotate(45deg);
    transition: border-color 220ms var(--ease-out);
  }

  .diagnostic-tab-controls > button:hover::before,
  .diagnostic-tab-controls > button:focus-visible::before {
    border-color: #3e769b;
  }

  .diagnostic-tab-controls > button:first-child::before {
    transform: rotate(-135deg);
  }

  .diagnostic-tab-controls > button:last-child::before {
    transform: rotate(45deg);
  }

  .story-tab {
    flex: 0 0 min(78vw, 300px);
    min-height: 66px;
    border-radius: 14px;
    scroll-snap-align: start;
    padding-inline: 18px 34px;
  }

  .story-tab-list.diagnostic-tab-list .story-tab {
    flex: 0 0 min(74vw, 286px);
    scroll-snap-align: center;
  }

  .industry-tabs .story-tab {
    flex-basis: auto;
  }

  .story-tab em {
    font-size: 13px;
  }

  .story-panel-stack {
    height: 660px;
    min-height: 660px;
  }

  .story-panel {
    height: 100%;
    min-height: 0;
    padding: 22px;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 252, 0.97));
  }

  .story-panel h3 {
    font-size: 29px;
  }

  .story-note {
    grid-template-columns: 1fr;
  }

  .story-panel p,
  .industry-panel p {
    font-size: 16px;
  }

  .impact-pair,
  .capacity-grid,
  .case-specs {
    grid-template-columns: 1fr;
  }

  .impact-pair span {
    min-height: 0;
  }

  .capacity-board {
    border-radius: 16px;
  }

  .capacity-board > img {
    height: 260px;
  }

  .capacity-grid a {
    min-height: 68px;
  }

  .industry-panel {
    padding: 0;
    background: transparent;
  }

  .industry-panel img,
  .case-media img {
    height: 280px;
    border-radius: 16px;
  }

  .industry-panel h3 {
    font-size: 28px;
  }

  .process-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .process-step,
  .process-step.is-active {
    grid-column: auto;
    min-height: 160px;
    padding: 18px;
    border-radius: 16px;
  }

  .process-step:not(.is-active) strong,
  .process-step:not(.is-active) span:last-child {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .process-step:not(.is-active) span:last-child {
    display: block;
  }

  .process-step strong {
    font-size: 23px;
  }

  .process-confirm-strip {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 16px;
  }

  .why-choose-section {
    min-height: 0;
    background-position: center;
  }

  .why-choose-section .section-center {
    margin-bottom: 24px;
  }

  .why-choose-section .section-center h2 {
    font-size: 30px;
  }

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

  .why-card {
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .detail-panel-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .detail-panel-large {
    margin: 0;
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 33, 52, 0.10);
  }

  .detail-overview-media {
    height: 260px;
    margin-bottom: 20px;
  }

  .detail-panel:not(.detail-panel-large) {
    padding: 18px 0;
  }

  .detail-panel-quote {
    grid-column: auto;
  }

  .detail-panel:not(.detail-panel-large) + .detail-panel:not(.detail-panel-large) {
    padding-left: 0;
    border-top: 1px solid rgba(9, 33, 52, 0.10);
    border-left: 0;
  }

  .detail-overview-grid .detail-panel-large,
  .product-process-layout,
  .product-principle-layout,
  .product-quality-layout,
  .product-faq-layout,
  .product-spec-layout {
    grid-template-columns: 1fr;
  }

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

  .product-advantages-panel {
    padding: 22px;
  }

  .product-spec-secondary .detail-panel + .detail-panel {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(9, 33, 52, 0.10);
  }

  .product-spec-layout .detail-panel + .detail-panel {
    border-top: 1px solid rgba(9, 33, 52, 0.10);
  }

  .process-flow-figure {
    padding: 12px;
    border-radius: 14px;
  }

  .model-range-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .quality-table-wrap {
    margin-inline: calc((100vw - 100%) / -2);
    border-radius: 0;
  }

  .why-card.is-active,
  .why-card:hover,
  .why-card:focus-visible {
    transform: none;
  }

  .why-metric {
    font-size: 32px;
  }

  .why-bottom-line {
    justify-content: flex-start;
    text-align: left;
  }

  .integration-visual,
  .integration-visual img {
    min-height: 360px;
    border-radius: 16px;
  }

  .integration-list article {
    padding: 16px 0 16px 24px;
  }

  .custom-grid,
  .qa-cards,
  .testimonial-strip,
  .factory-proof-layout,
  .faq-layout .faq-list {
    grid-template-columns: 1fr;
  }

  .custom-card {
    padding: 0 0 18px;
  }

  .custom-card + .custom-card {
    border-top: 1px solid rgba(9, 33, 52, 0.10);
    border-left: 0;
  }

  .testimonial-strip article + article {
    border-top: 1px solid rgba(9, 33, 52, 0.10);
    border-left: 0;
  }

  .testimonial-media img {
    height: 270px;
  }

  .testimonial-quote {
    padding: 22px;
    border-radius: 16px;
  }

  .testimonial-quote h3 {
    font-size: 27px;
  }

  .testimonial-strip article:last-child {
    grid-column: auto;
  }

  .custom-card,
  .qa-card,
  .factory-proof-photo,
  .factory-proof-panel,
  .engineer-card {
    border-radius: 16px;
  }

  .custom-card img,
  .qa-card img {
    height: 220px;
  }

  .factory-proof-section.section {
    padding: 34px 0;
  }

  .factory-proof-section .section-center {
    margin-bottom: 18px;
  }

  .factory-proof-section .section-lead {
    font-size: 15px;
    line-height: 1.45;
  }

  .factory-proof-layout {
    gap: 14px;
  }

  .factory-proof-photo {
    min-height: 240px;
  }

  .factory-proof-photo strong {
    font-size: 26px;
  }

  .factory-proof-photo span,
  .factory-proof-kicker,
  .factory-proof-list span {
    display: none;
  }

  .factory-proof-panel {
    gap: 12px;
    padding: 16px 18px;
  }

  .factory-proof-panel h3 {
    max-width: none;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .factory-proof-list article {
    min-height: 44px;
    padding: 12px 0 12px 22px;
    align-content: center;
  }

  .factory-proof-list article::before {
    top: 18px;
  }

  .case-specs {
    margin: 20px 0;
  }

  .engineer-card {
    padding: 22px;
  }

  .engineer-card::after {
    width: 190px;
    height: 190px;
  }

  .engineered-form label span {
    font-size: 12px;
  }

  .product-selector-section {
    padding: 58px 0;
  }

  .product-selector-layout {
    gap: 22px;
  }

  .product-selector-copy .section-lead {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .selector-actions .quote-button,
  .selector-actions .secondary-button {
    flex: 1 1 100%;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

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

  .selector-main-card {
    grid-template-rows: minmax(220px, auto) auto;
    min-height: 0;
    border-radius: 16px;
  }

  .selector-main-media {
    min-height: 220px;
    padding: 18px;
  }

  .selector-main-copy {
    padding: 20px;
  }

  .selector-main-copy strong {
    font-size: 30px;
  }

  .selector-side-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .selector-mini-card,
  .selector-mini-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 16px;
  }

  .capacity-rail {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .capacity-rail a {
    flex: 0 0 172px;
    min-height: 72px;
    scroll-snap-align: start;
  }

  .category-grid,
  .product-grid,
  .application-grid,
  .solution-grid,
  .solution-detail-layout,
  .service-grid,
  .proof-list,
  .workflow-steps,
  .contact-data-list {
    grid-template-columns: 1fr;
  }

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

  .solution-card img,
  .solution-visual img {
    height: 240px;
    min-height: 0;
  }

  .workflow-strip {
    gap: 28px;
  }

  .workflow-intro h2 {
    font-size: 34px;
  }

  .workflow-step {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
  }

  .workflow-index {
    display: none;
  }

  .workflow-step strong {
    margin-top: 2px;
  }

  .workflow-step > span:not(.workflow-index) {
    max-width: none;
    margin-top: 0;
  }

  .about-focus-visual img {
    height: 280px;
  }

  .contact-info-card,
  .contact-form-panel,
  .quote-layout .quote-form {
    padding: 20px;
    border-radius: 16px;
  }

  .applications-section .application-grid {
    grid-template-columns: 1fr;
  }

  .applications-section .application-card-featured {
    grid-column: auto;
  }

  .visual-field,
  .category-card img,
  .product-card img,
  .application-card img {
    height: 210px;
  }

  .product-grid-section .product-card {
    min-height: 322px;
  }

  .product-grid-section .product-card img {
    height: 184px;
  }

  .product-grid-section .product-card .card-body {
    min-height: 112px;
  }

  .applications-section .application-card img {
    height: 220px;
  }

  .applications-section .application-card-featured img {
    height: 280px;
  }

  .factory-section {
    padding-block: 72px;
  }

  .factory-section h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .factory-section .factory-support-panel {
    padding: 20px;
    border-radius: 16px;
  }

  .factory-section .category-grid,
  .factory-support-points {
    grid-template-columns: 1fr;
  }

  .factory-section .proof-item {
    min-height: auto;
  }

  .factory-route-panel {
    min-height: 320px;
    border-radius: 16px;
    background-position: 62% center;
  }

  .catalog-hero,
  .subpage-hero,
  .product-detail-hero {
    padding: 58px 0 38px;
  }

  .catalog-route-hero {
    padding: 94px 0 48px;
  }

  .catalog-hero h1,
  .subpage-hero h1,
  .product-detail-hero h1 {
    font-size: 34px;
  }

  .product-detail-heading h1 {
    font-size: clamp(27px, 8vw, 32px);
    line-height: 1.08;
  }

  .product-detail-heading p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.42;
  }

  .catalog-route-hero h1 {
    max-width: 360px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.98;
  }

  .catalog-route-hero p:not(.breadcrumb) {
    max-width: 350px;
    font-size: 17px;
  }

  .catalog-route-hero .actions,
  .product-summary .actions,
  .product-detail-heading .actions {
    align-items: flex-start;
    gap: 10px 14px;
  }

  .catalog-route-hero .cta-helper-link,
  .product-summary .cta-helper-link,
  .product-summary .route-context-link,
  .product-detail-heading .cta-helper-link,
  .product-detail-heading .route-context-link {
    min-height: 28px;
  }

  .catalog-route-hero .category-intro-grid {
    gap: 28px;
  }

  .catalog-route-hero .category-intro-grid > div:first-child {
    padding-left: 18px;
  }

  .catalog-route-hero .visual-field {
    height: 300px;
    padding: 18px;
  }

  .category-strip-nav {
    width: var(--shell);
  }

  .product-gallery img {
    height: 300px;
  }

  .product-hero-info {
    gap: 18px;
  }

  .product-hero-info h2 {
    font-size: 21px;
  }

  .product-hero-info .spec-table tr {
    grid-template-columns: minmax(104px, 0.74fr) minmax(0, 1.26fr);
    min-height: auto;
  }

  .product-hero-info .spec-table th,
  .product-hero-info .spec-table td,
  .product-hero-info .detail-panel-applications li {
    font-size: 13.75px;
  }

  .quote-form,
  .search-form {
    grid-template-columns: 1fr;
  }

  .search-dialog,
  .modal-dialog {
    width: min(100%, 430px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    padding: 24px 16px 18px;
  }

  .inquiry-modal {
    align-items: flex-start;
    padding: 16px 12px;
    overflow-y: auto;
  }

  .modal-dialog h2 {
    padding-right: 46px;
    font-size: 24px;
  }

  .quote-form {
    gap: 8px;
  }

  .quote-form input,
  .quote-form textarea {
    min-height: 42px;
    padding: 10px 12px;
  }

  .quote-form textarea {
    min-height: 86px;
  }

  .contact-rail {
    display: none;
  }

  .hero-slider {
    min-height: 430px;
  }

  .hero-slide {
    min-height: 430px;
  }

  .hero-content {
    min-height: 430px;
    padding-top: 94px;
    padding-bottom: 78px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: none;
  }

  .hero-content > * {
    grid-column: auto;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .hero-content h1 {
    max-width: 300px;
    font-size: 25px;
    line-height: 1.08;
  }

  .hero-content p {
    display: none;
  }

  .hero-data {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(5, 19, 31, 0.48), rgba(5, 19, 31, 0.04) 42%, rgba(5, 19, 31, 0.58)),
      linear-gradient(90deg, rgba(5, 19, 31, 0.06), rgba(5, 19, 31, 0.42));
  }

  .hero-controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 24px;
    width: auto;
    margin: 0;
    justify-content: center;
    transform: none;
  }

  .hero-control {
    display: none;
  }

  .slide-counter {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    min-width: 38px;
    color: #fff;
    font-size: 13px;
    background: transparent;
  }

  .hero-progress {
    width: min(220px, 56vw);
    gap: 7px;
  }

  .hero-progress-segment {
    height: 18px;
  }

  .floating-inquiry {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 0;
    width: auto;
    max-width: none;
    transform: none;
  }

  .floating-inquiry button {
    display: flex;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 12px 12px 0 0;
    background: var(--brand);
    transform: none;
  }

  .floating-inquiry button:hover,
  .floating-inquiry button:focus-visible {
    transform: none;
  }

  .floating-inquiry button span:first-child {
    writing-mode: horizontal-tb;
  }

  .floating-inquiry button span:last-child {
    transform: none;
  }

  .footer-grid {
    padding: 42px 0;
  }

  .footer-bottom .shell {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    animation-iteration-count: 1 !important;
  }

  .selector-main-card,
  .selector-mini-card,
  .capacity-rail a {
    transition-duration: 220ms !important;
    transition-timing-function: ease-out !important;
  }

  .product-fit-rail,
  .product-route-dots button,
  .fit-card,
  .why-card,
  .process-step,
  .story-tab {
    transition-duration: 220ms !important;
    transition-timing-function: ease-out !important;
  }

  .hero-slide,
  .hero-slide img,
  .category-card,
  .product-card,
  .application-card,
  .selector-main-media img,
  .visual-field,
  .category-card img,
  .product-card img,
  .application-card img,
  .contact-rail a,
  .contact-panel,
  .quote-button,
  .secondary-button,
  .icon-button {
    transition-duration: 220ms !important;
    transition-timing-function: ease-out !important;
  }

  .hero-slide,
  .hero-slide img,
  .hero-slide.is-active img,
  .hero-slide.is-leaving img {
    transform: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    filter: none;
    clip-path: none;
    transform: none;
    transition: opacity 220ms ease-out;
  }

  .category-card.reveal,
  .product-card.reveal,
  .application-card.reveal {
    transition: opacity 220ms ease-out, transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
  }

  .reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Open Design pass: turn route and proof areas into equipment-led decision surfaces. */
.product-fit-section {
  background:
    linear-gradient(90deg, transparent 0%, rgba(20, 158, 216, 0.24) 44%, rgba(23, 139, 99, 0.14) 58%, transparent 100%) top center / min(1040px, 76vw) 1px no-repeat,
    radial-gradient(circle at 50% 45%, rgba(20, 158, 216, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 46%, #eef8fb 100%);
}

.product-fit-section .section-center {
  max-width: 760px;
  margin-bottom: 36px;
}

.product-fit-section .section-center h2 {
  color: #101820;
  font-size: clamp(34px, 3.15vw, 50px);
  line-height: 1.04;
}

.product-fit-section .section-lead {
  max-width: 620px;
}

.product-fit-viewport {
  overflow: visible;
  padding: 0;
  border-radius: 0;
}

.product-fit-rail {
  gap: 0;
  overflow: visible;
  border-top: 1px solid rgba(9, 33, 52, 0.13);
  border-bottom: 1px solid rgba(9, 33, 52, 0.13);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f5fbfd 100%);
  box-shadow: none;
}

.fit-card {
  min-height: clamp(340px, 27vw, 390px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  transition: transform 460ms var(--ease-out), background 360ms var(--ease-out);
}

.fit-card + .fit-card {
  box-shadow: inset 1px 0 0 rgba(9, 33, 52, 0.10);
}

.fit-card::before {
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.82) 46%, rgba(245, 251, 253, 0.98) 100%);
}

.fit-card::after {
  background:
    linear-gradient(180deg, rgba(5, 18, 30, 0) 28%, rgba(5, 18, 30, 0.20) 58%, rgba(5, 18, 30, 0.82) 100%);
}

.fit-card img {
  padding: 14px 8px 70px;
  transform: scale(1.08);
  filter: drop-shadow(0 18px 14px rgba(8, 30, 48, 0.13)) saturate(1.04) contrast(1.03);
}

.fit-card-copy {
  padding: 18px 18px 20px;
}

.fit-card strong {
  color: #101820;
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.12;
}

.fit-card:hover,
.fit-card:focus-visible {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  filter: none;
}

.fit-card:hover::after,
.fit-card:focus-visible::after {
  opacity: 1;
}

.fit-card:hover img,
.fit-card:focus-visible img {
  transform: scale(1.15) translate3d(0, -4px, 0);
  filter: drop-shadow(0 22px 18px rgba(8, 30, 48, 0.18)) saturate(1.07) contrast(1.04);
}

.fit-card:hover strong,
.fit-card:focus-visible strong {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.fit-card:hover .fit-card-copy > span:not(.fit-index),
.fit-card:focus-visible .fit-card-copy > span:not(.fit-index) {
  color: rgba(238, 248, 252, 0.88);
}

.fit-card:hover em,
.fit-card:focus-visible em {
  color: #fff;
}

.fit-bottom-note {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(9, 33, 52, 0.10);
}

.why-choose-section {
  min-height: 0;
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 24, 0.96) 0%, rgba(5, 42, 61, 0.89) 48%, rgba(4, 15, 24, 0.94) 100%),
    url("media/factory/xinnuo-workshop-overview-20260704.webp") center/cover no-repeat;
}

.why-choose-section .shell {
  width: min(1320px, calc(100vw - 72px));
}

.why-choose-section .section-center {
  max-width: none;
  margin: 0 0 34px;
  text-align: left;
}

.why-choose-section .section-center h2 {
  max-width: 800px;
  font-size: clamp(34px, 3vw, 48px);
}

.why-choose-section .section-lead {
  max-width: 620px;
  margin-left: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 17, 26, 0.30);
  backdrop-filter: blur(4px);
}

.why-card {
  min-height: 288px;
  padding: 24px 20px 22px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.why-card:first-child {
  border-left: 0;
}

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

.why-card-top {
  justify-content: flex-start;
}

.why-metric {
  color: rgba(112, 212, 235, 0.86);
  font-size: clamp(28px, 2.5vw, 40px);
}

.why-metric-label {
  justify-self: start;
  color: rgba(238, 244, 255, 0.62);
}

.why-card strong {
  margin-top: 10px;
  font-size: clamp(17px, 1.18vw, 21px);
}

.why-card > span:last-child {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-out), opacity 260ms var(--ease-out), transform 260ms var(--ease-out);
  transform: translate3d(0, 8px, 0);
}

.why-card.is-active,
.why-card:hover,
.why-card:focus-visible {
  z-index: 2;
  color: #111827;
  border-color: transparent;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  transform: translateY(-10px);
}

.why-card.is-active > span:last-child,
.why-card:hover > span:last-child,
.why-card:focus-visible > span:last-child {
  max-height: 140px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.why-card.is-active strong,
.why-card:hover strong,
.why-card:focus-visible strong {
  color: #111827;
}

.why-card.is-active .why-metric,
.why-card:hover .why-metric,
.why-card:focus-visible .why-metric {
  color: #0369a1;
}

.why-card.is-active .why-metric-label,
.why-card:hover .why-metric-label,
.why-card:focus-visible .why-metric-label {
  color: rgba(17, 24, 39, 0.58);
}

.why-bottom-line {
  justify-content: flex-start;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.factory-proof-panel {
  padding: clamp(30px, 3vw, 44px);
}

.factory-proof-panel h3 {
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 0.98;
}

.factory-proof-list article {
  padding: 16px 0 16px 24px;
}

@media (max-width: 1020px) {
  .product-fit-section .shell,
  .why-choose-section .shell {
    width: var(--shell);
  }

  .product-fit-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .why-card:nth-child(3n + 1) {
    border-left: 0;
  }

  .why-card:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 760px) {
  .product-fit-section.section,
  .why-choose-section.section {
    padding: 46px 0;
  }

  .product-fit-section .section-center,
  .why-choose-section .section-center {
    margin-bottom: 16px;
    text-align: left;
  }

  .product-fit-section .section-center h2,
  .why-choose-section .section-center h2 {
    font-size: 29px;
  }

  .product-fit-viewport {
    overflow: hidden;
    padding-bottom: 30px;
    border-radius: 0;
  }

  .product-fit-rail {
    display: flex;
    gap: 0;
    transform: translate3d(calc(var(--product-route-index, 0) * -100%), 0, 0);
    transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .fit-card {
    flex: 0 0 100%;
    min-height: min(48vh, 318px);
    border-left: 0;
  }

  .product-fit-section .fit-card.reveal,
  .product-fit-section .fit-card.reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .fit-card + .fit-card {
    box-shadow: none;
  }

  .fit-card img {
    padding: 10px 18px 62px;
    transform: scale(1.05);
  }

  .fit-card:hover,
  .fit-card:focus-visible {
    transform: none;
  }

  .fit-bottom-note {
    margin-top: 8px;
    padding-top: 10px;
    font-size: 14px;
  }

  .fit-bottom-note .text-link-button,
  .why-bottom-line {
    display: none;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    border-top: 0;
    border-bottom: 0;
    background: rgba(3, 17, 26, 0.18);
  }

  .why-card,
  .why-card:nth-child(n + 4) {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    min-height: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .why-card:first-child {
    border-top: 0;
  }

  .why-card.is-active,
  .why-card:hover,
  .why-card:focus-visible {
    grid-template-columns: 1fr;
    padding: 16px;
    transform: none;
  }

  .why-card-top {
    grid-row: 1 / span 2;
  }

  .why-card.is-active .why-card-top,
  .why-card:hover .why-card-top,
  .why-card:focus-visible .why-card-top {
    grid-row: auto;
  }

  .why-metric {
    font-size: 25px;
  }

  .why-card.is-active .why-metric,
  .why-card:hover .why-metric,
  .why-card:focus-visible .why-metric {
    font-size: 33px;
  }

  .why-metric-label {
    margin: 0;
    font-size: 10px;
  }

  .why-card strong {
    margin: 0;
    font-size: 15px;
    line-height: 1.18;
  }

  .why-card > span:last-child {
    display: none;
  }

  .why-card.is-active > span:last-child,
  .why-card:hover > span:last-child,
  .why-card:focus-visible > span:last-child {
    display: block;
    max-height: 110px;
  }

  .factory-proof-photo.reveal,
  .factory-proof-panel.reveal,
  .factory-proof-photo.reveal.is-visible,
  .factory-proof-panel.reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .factory-proof-panel h3 {
    font-size: 36px;
  }
}

/* Reference pass: Universal Robots-inspired proof band with stable interaction. */
.why-choose-section {
  min-height: clamp(600px, 46vw, 720px);
  padding: clamp(54px, 5vw, 76px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 39, 96, 0.94) 0%, rgba(18, 57, 132, 0.86) 52%, rgba(7, 31, 83, 0.94) 100%),
    url("media/factory/xinnuo-workshop-overview-20260704.webp") center/cover no-repeat;
}

.why-choose-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 128px 128px;
  opacity: 0.46;
}

.why-choose-section::after {
  background:
    linear-gradient(90deg, rgba(7, 24, 64, 0.16), rgba(17, 67, 157, 0.10) 44%, rgba(7, 24, 64, 0.30)),
    radial-gradient(circle at 68% 24%, rgba(69, 139, 255, 0.16), transparent 34%);
}

.why-choose-section .shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  width: min(1280px, calc(100vw - 176px));
}

.why-choose-section .section-center {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.why-choose-section .reference-kicker {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  letter-spacing: 0.02em;
}

.why-choose-section .reference-kicker::before {
  background: #58a4ff;
}

.why-choose-section .section-center h2 {
  max-width: 560px;
  margin-top: 14px;
  color: #fff;
  font-family: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.why-choose-section .section-center h2 span {
  color: #58a4ff;
}

.why-choose-section .section-lead {
  max-width: 52ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.48;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 1px solid rgba(255, 255, 255, 0.20);
  background: transparent;
  backdrop-filter: none;
}

.why-card,
.why-card:nth-child(n + 4),
.why-card:nth-child(3n + 1) {
  position: relative;
  display: grid;
  grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  justify-items: start;
  align-content: stretch;
  gap: 6px 20px;
  min-height: 158px;
  padding: clamp(18px, 1.8vw, 24px);
  color: #fff;
  text-align: left;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  overflow: hidden;
  transition: border-color 260ms var(--ease-out), background-color 260ms var(--ease-out), color 260ms var(--ease-out);
}

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

.why-card::after {
  content: "";
  position: absolute;
  right: clamp(18px, 1.8vw, 24px);
  bottom: clamp(16px, 1.6vw, 20px);
  left: calc(clamp(18px, 1.8vw, 24px) + min(112px, 24%));
  height: 2px;
  background: currentColor;
  opacity: 0.32;
  transform: scaleX(0.22);
  transform-origin: left center;
  transition: transform 260ms var(--ease-out), opacity 260ms var(--ease-out);
}

.why-card-top {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: start;
  justify-content: flex-start;
}

.why-metric {
  color: #fff;
  font-family: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(30px, 2.45vw, 42px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.why-metric-label {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  letter-spacing: 0;
}

.why-card strong {
  grid-column: 2;
  grid-row: 2;
  max-width: 17ch;
  margin: 0;
  color: #fff;
  font-family: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 600;
  line-height: 1.12;
  text-transform: none;
}

.why-card > span:last-child {
  grid-column: 2;
  grid-row: 3;
  max-width: 31ch;
  display: -webkit-box;
  min-height: 2.86em;
  padding-right: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.43;
  opacity: 1;
  overflow: hidden;
  transform: none;
  transition: color 260ms var(--ease-out);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.why-card.is-active,
.why-card:hover,
.why-card:focus-visible {
  color: #071f53;
  border-color: rgba(255, 255, 255, 0.48);
  background: #f7fbfd;
  box-shadow: none;
  transform: none;
}

.why-card.is-active strong,
.why-card:hover strong,
.why-card:focus-visible strong,
.why-card.is-active .why-metric,
.why-card:hover .why-metric,
.why-card:focus-visible .why-metric,
.why-card.is-active .why-metric-label,
.why-card:hover .why-metric-label,
.why-card:focus-visible .why-metric-label {
  color: #071f53;
}

.why-card.is-active > span:last-child,
.why-card:hover > span:last-child,
.why-card:focus-visible > span:last-child {
  color: rgba(7, 31, 83, 0.74);
  opacity: 1;
  transform: none;
}

.why-card.is-active::after,
.why-card:hover::after,
.why-card:focus-visible::after {
  opacity: 0.55;
  transform: scaleX(0.62);
}

.why-bottom-line {
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
}

.why-bottom-line .text-link-button {
  color: #fff;
}

.solution-index-section {
  padding: clamp(58px, 6vw, 82px) 0 clamp(84px, 8vw, 122px);
  background: #ffffff;
}

.solutions-hero {
  min-height: clamp(430px, 46vw, 540px);
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 31, 83, 0.78) 0%, rgba(7, 31, 83, 0.46) 52%, rgba(7, 31, 83, 0.10) 100%),
    url("assets/images/generated-site/section-industrial-ro-workshop-wide.webp") center/cover no-repeat;
}

.solutions-hero .shell {
  max-width: min(1180px, calc(100vw - 96px));
  padding-top: 28px;
}

.solutions-hero .breadcrumb,
.solutions-hero .breadcrumb a,
.solutions-hero h1,
.solutions-hero p:not(.breadcrumb) {
  color: #fff;
}

.solutions-hero h1 {
  max-width: 560px;
  font-family: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
}

.solutions-hero p:not(.breadcrumb) {
  max-width: 540px;
  margin-top: 22px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.solution-intro {
  max-width: 760px;
  margin-left: 0;
  text-align: left;
}

.solution-intro h2 {
  margin: 0;
  color: #002b39;
  font-family: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.solution-intro .section-lead {
  max-width: 66ch;
  color: #41545d;
  font-size: 17px;
  line-height: 1.62;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3.4vw, 44px);
  margin-top: clamp(44px, 5vw, 70px);
  border: 0;
}

.solution-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 304px;
  align-items: center;
  gap: clamp(38px, 5.2vw, 86px);
  min-height: 228px;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(0, 43, 57, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #002b39;
  transition: color 260ms var(--ease-out), border-color 260ms var(--ease-out);
}

.solution-feature-row:last-child {
  border-bottom: 1px solid rgba(0, 43, 57, 0.14);
}

.solution-feature-row.is-image-left {
  grid-template-columns: 304px minmax(0, 1fr);
}

.solution-feature-row.is-image-left img {
  grid-column: 1;
}

.solution-feature-row.is-image-left .solution-feature-copy {
  grid-column: 2;
  padding-left: clamp(2px, 1.6vw, 24px);
}

.solution-feature-row.is-image-right img {
  grid-column: 2;
}

.solution-feature-row.is-image-right .solution-feature-copy {
  grid-column: 1;
  padding-right: clamp(2px, 1.6vw, 24px);
}

.solution-feature-row:hover,
.solution-feature-row:focus-visible {
  color: #005f8f;
  border-color: rgba(0, 95, 143, 0.34);
  box-shadow: none;
  transform: none;
}

.solution-feature-row img {
  grid-row: 1;
  width: 304px;
  height: 228px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
  transition: filter 260ms var(--ease-out), transform 420ms var(--ease-out);
}

.solution-feature-row:hover img,
.solution-feature-row:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: translateX(0);
}

.solution-feature-copy {
  grid-row: 1;
  display: grid;
  align-content: center;
  gap: 14px;
  max-width: 640px;
  min-height: 228px;
  padding: 22px 0;
}

.solution-feature-row em {
  color: #1d749c;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: color 260ms var(--ease-out);
}

.solution-feature-row strong {
  max-width: 620px;
  color: #002b39;
  font-family: "Red Hat Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.3;
  transition: color 260ms var(--ease-out);
}

.solution-feature-row p {
  max-width: 62ch;
  margin: 0;
  color: #1d2930;
  font-size: 16px;
  line-height: 1.62;
  transition: color 260ms var(--ease-out);
}

.solution-feature-row b {
  justify-self: start;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: #005f8f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid currentColor;
}

.solution-feature-row b::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 260ms var(--ease-out);
}

.solution-feature-row:hover em,
.solution-feature-row:focus-visible em,
.solution-feature-row:hover strong,
.solution-feature-row:focus-visible strong,
.solution-feature-row:hover p,
.solution-feature-row:focus-visible p,
.solution-feature-row:hover b,
.solution-feature-row:focus-visible b {
  color: #005f8f;
}

.solution-feature-row:hover b::after,
.solution-feature-row:focus-visible b::after {
  transform: translateX(4px) rotate(45deg);
}

.text-link-button {
  position: relative;
  transition: color 240ms var(--ease-out), transform 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.text-link-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 260ms var(--ease-out);
}

.text-link-button:hover,
.text-link-button:focus-visible {
  color: #0584bd;
  transform: translateY(-1px);
}

.text-link-button:hover::after,
.text-link-button:focus-visible::after {
  transform: scaleX(1);
}

.product-route-controls > button,
.diagnostic-tab-controls > button,
.industry-tab-controls > button,
.mega-panel-controls button,
.gallery-thumbs button,
.mobile-drawer nav > button,
.mobile-drawer .drawer-group-toggle,
.mobile-drawer nav > .drawer-product-groups .drawer-route-link,
.mobile-drawer nav > .drawer-product-groups .drawer-model-link {
  transition: color 240ms var(--ease-out), background 240ms var(--ease-out), border-color 240ms var(--ease-out), transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.product-route-controls > button:hover,
.product-route-controls > button:focus-visible,
.diagnostic-tab-controls > button:hover,
.diagnostic-tab-controls > button:focus-visible,
.industry-tab-controls > button:hover,
.industry-tab-controls > button:focus-visible,
.gallery-thumbs button:hover,
.gallery-thumbs button:focus-visible {
  transform: translateY(-1px);
}

.product-route-controls > button:hover::before,
.product-route-controls > button:focus-visible::before,
.industry-tab-controls > button:hover::before,
.industry-tab-controls > button:focus-visible::before {
  border-color: #3e769b #3e769b transparent transparent;
}

/* Width and interaction polish: keep full-bleed screens, widen standard content screens. */
:root {
  --wide-shell: min(1280px, calc(100vw - 72px));
}

@media (min-width: 1021px) {
  .diagnostic-section .shell,
  .capacity-match-section .shell,
  .industry-section .shell,
  .integration-section .shell,
  .factory-proof-section .shell,
  .case-section .shell,
  .faq-section .shell,
  .quote-section .shell,
  .product-grid-section .shell,
  .product-detail-panels .shell,
  .related-products .shell,
  .solution-index-section .shell,
  .solution-detail-section .shell,
  .solution-route-section .shell,
  .content-section .shell,
  .applications-section .shell,
  .product-selector-section .shell,
  .site-footer .footer-grid,
  .site-footer .footer-bottom .shell {
    width: var(--wide-shell);
  }
}

.brand,
.main-nav a,
.mega-trigger,
.hero-progress-segment,
.site-footer a {
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out), transform 220ms var(--ease-out), background-color 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.brand-text strong::after {
  transition: width 260ms var(--ease-out), opacity 260ms var(--ease-out);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand:hover .brand-text strong::after,
.brand:focus-visible .brand-text strong::after {
  width: 64%;
  opacity: 1;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.mega-trigger:hover,
.mega-trigger:focus-visible {
  color: #149ed8;
}

.main-nav a:focus-visible::after,
.mega-trigger:focus-visible::after {
  transform: scaleX(1);
}

.hero-progress-segment:hover,
.hero-progress-segment:focus-visible {
  transform: translateY(-1px);
}

.hero-progress-segment:hover::after,
.hero-progress-segment:focus-visible::after {
  width: max(34%, 34px);
  background: rgba(255, 255, 255, 0.82);
}

.hero-progress-segment.is-active:hover::after,
.hero-progress-segment.is-active:focus-visible::after {
  inline-size: 100%;
  background: #fff;
}

.site-footer a {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.breadcrumb a {
  transition: color 220ms var(--ease-out), opacity 220ms var(--ease-out), text-decoration-color 220ms var(--ease-out);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #149ed8;
  opacity: 1;
  text-decoration-color: currentColor;
}

/* Interaction and color correction pass: clearer feedback, unified action color. */
.story-tab {
  transform: translate3d(0, 0, 0);
  transition: background 260ms var(--ease-out), color 260ms var(--ease-out), border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.story-tab::after {
  transition: color 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.story-tab:hover,
.story-tab:focus-visible {
  border-color: rgba(62, 118, 155, 0.30);
  box-shadow: 0 12px 24px rgba(8, 38, 58, 0.10);
  transform: none;
}

.story-tab:not(.is-active):hover,
.story-tab:not(.is-active):focus-visible {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, rgba(62, 118, 155, 0.055) 100%);
}

.story-tab:hover::after,
.story-tab:focus-visible::after {
  color: #3e769b;
  transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.story-tab.is-active:hover,
.story-tab.is-active:focus-visible {
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(62, 118, 155, 0.22);
}

.story-tab.is-active:hover::after,
.story-tab.is-active:focus-visible::after {
  color: #ffffff;
}

.industry-tabs .story-tab:hover,
.industry-tabs .story-tab:focus-visible {
  transform: none;
}

.faq-list details {
  transition: background 240ms var(--ease-out), box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.faq-list details:hover,
.faq-list details:focus-within {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
  box-shadow: inset 0 0 0 1px rgba(3, 105, 161, 0.18), 0 16px 34px rgba(9, 33, 52, 0.08);
  transform: translateY(-2px);
}

.faq-list summary {
  transition: color 220ms var(--ease-out);
}

.faq-list details:hover summary,
.faq-list details:focus-within summary {
  color: #0b3047;
}

.faq-list details:hover summary::after,
.faq-list details:focus-within summary::after {
  color: #ffffff;
  background: #3e769b;
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open]:hover summary::after,
.faq-list details[open]:focus-within summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.factory-proof-photo {
  background: #f3f8fb;
}

.factory-proof-photo::after {
  background:
    linear-gradient(180deg, rgba(4, 18, 30, 0) 58%, rgba(4, 18, 30, 0.18) 100%);
}

.factory-proof-photo figcaption {
  right: auto;
  width: min(360px, calc(100% - 36px));
  gap: 5px;
  padding: 14px 16px;
  color: #0b3047;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(6, 31, 49, 0.16);
}

.factory-proof-photo strong {
  max-width: none;
  color: #08273a;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.05;
}

.factory-proof-photo span {
  max-width: 32ch;
  color: rgba(9, 33, 52, 0.68);
  font-size: 13px;
}

.factory-proof-photo.reveal,
.factory-proof-panel.reveal,
.factory-proof-photo.reveal.is-visible,
.factory-proof-panel.reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

.mega-menu {
  width: min(1040px, calc(100vw - 56px));
  box-shadow: 0 30px 70px rgba(8, 30, 48, 0.18);
  transition: opacity 220ms var(--ease-out), transform 260ms var(--ease-out), visibility 0s linear 220ms;
}

.mega-inner {
  background: #ffffff;
  border-color: rgba(9, 33, 52, 0.12);
  border-radius: 16px;
}

.mega-tabs {
  gap: 8px;
  padding: 10px 14px 8px;
  background: #ffffff;
  border-bottom-color: rgba(9, 33, 52, 0.10);
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.mega-tab {
  color: #344854;
  border: 1px solid transparent;
  background: transparent;
}

.mega-tab:hover,
.mega-tab:focus-visible {
  color: #ffffff;
  border-color: #3e769b;
  background: #3e769b;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(62, 118, 155, 0.22);
}

.mega-tab.is-active,
.mega-tab.is-active:hover,
.mega-tab.is-active:focus-visible {
  color: #ffffff;
  border-color: #3e769b;
  background: #3e769b;
  box-shadow: 0 14px 28px rgba(62, 118, 155, 0.26);
}

.mega-panels {
  padding: 16px 18px 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.mega-panel-head {
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(9, 33, 52, 0.10);
}

.mega-panel-head h3 {
  color: #0d1720;
  font-size: 25px;
  font-weight: 560;
}

.mega-panel-head p {
  color: rgba(9, 33, 52, 0.66);
}

.mega-panel-controls button {
  color: #0d1720;
  border-color: rgba(3, 105, 161, 0.16);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 30, 48, 0.08);
}

.mega-panel-controls button:hover,
.mega-panel-controls button:focus-visible {
  border-color: #08719d;
  background: #08719d;
  box-shadow: 0 14px 28px rgba(3, 105, 161, 0.20);
}

.mega-products {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding: 2px 0 10px;
}

.mega-products:has(.mega-product-card:only-child) {
  justify-content: start;
}

.mega-product-card {
  flex-basis: clamp(252px, 22vw, 318px);
  grid-template-rows: clamp(154px, 13vw, 190px) auto;
  grid-template-columns: none;
  justify-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mega-product-card::after {
  inset: auto 18px 0;
  width: auto;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #3e769b, rgba(62, 118, 155, 0.35));
  transform: scaleX(0.48);
  transform-origin: center;
}

.mega-product-card:hover,
.mega-product-card:focus-visible {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, -2px, 0);
}

.mega-product-card:hover::after,
.mega-product-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-product-card img {
  position: absolute;
  inset: 14px 18px 12px;
  width: calc(100% - 36px);
  height: calc(100% - 26px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 12px rgba(8, 30, 48, 0.12));
}

.mega-product-card:hover img,
.mega-product-card:focus-visible img {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 14px rgba(8, 30, 48, 0.16)) saturate(1.06) contrast(1.03);
}

.mega-product-card > span {
  justify-items: center;
  min-height: 74px;
}

.mega-product-card strong {
  max-width: 12ch;
  padding-top: 0;
  color: #0d1720;
  font-size: 15.5px;
  font-weight: 760;
  line-height: 1.15;
  text-wrap: balance;
}

.mega-card-action {
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: #08719d;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 680;
}

.mega-card-action::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.mega-product-card:hover .mega-card-action,
.mega-product-card:focus-visible .mega-card-action {
  color: #3e769b;
  background: transparent;
  box-shadow: none;
  transform: translate3d(2px, 0, 0);
}

.mega-products:has(.mega-product-card:only-child) .mega-product-card {
  max-width: 224px;
}

.mega-products:has(.mega-product-card:only-child) .mega-product-card::after {
  inset: auto 18px 0;
}

.mega-products:has(.mega-product-card:only-child) .mega-product-card:hover,
.mega-products:has(.mega-product-card:only-child) .mega-product-card:focus-visible {
  border-color: rgba(3, 105, 161, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9fd 100%);
}

/* Mega product rail polish: wider drawer and floating square controls. */
.mega-menu {
  width: min(1120px, calc(100vw - 56px));
}

.mega-product-stage {
  margin-inline: 26px;
}

.mega-products {
  padding: 2px 0 10px;
}

.mega-product-scroll {
  width: 44px;
  height: 44px;
  color: #3e769b;
  border: 1px solid rgba(62, 118, 155, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(8, 30, 48, 0.16);
}

.mega-product-scroll.is-prev {
  left: -50px;
  border-radius: 14px;
}

.mega-product-scroll.is-next {
  right: -50px;
  border-radius: 14px;
}

.mega-product-scroll:hover,
.mega-product-scroll:focus-visible {
  color: #ffffff;
  border-color: #3e769b;
  background: #3e769b;
  box-shadow: 0 22px 42px rgba(62, 118, 155, 0.26);
  transform: translateY(-50%) translateY(-2px);
}

/* Final full-width product mega menu: image-led route drawer. */
.site-header {
  z-index: 90;
}

.mega-menu {
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  pointer-events: none;
  transform: translate3d(0, -16px, 0);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 252, 0.98) 100%);
  border-top: 1px solid rgba(223, 231, 238, 0.82);
  border-bottom: 1px solid rgba(9, 33, 52, 0.10);
  box-shadow: 0 22px 44px rgba(8, 30, 48, 0.13);
  transition: opacity 170ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 150ms;
}

.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.mega-inner {
  width: min(1560px, calc(100vw - 48px));
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.mega-tabs {
  padding: 8px 2px 7px;
  background: transparent;
  border-bottom: 1px solid rgba(9, 33, 52, 0.10);
  user-select: none;
}

.mega-tab {
  min-height: 34px;
  padding: 0 13px;
  color: #243746;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  -webkit-user-drag: none;
}

.mega-tab:hover,
.mega-tab:focus-visible,
.mega-tab.is-active,
.mega-tab.is-active:hover,
.mega-tab.is-active:focus-visible {
  color: #ffffff;
  border-color: transparent;
  background: #3e769b;
  box-shadow: 0 10px 22px rgba(62, 118, 155, 0.22);
  transform: translate3d(0, -1px, 0);
}

.mega-panels {
  padding: 12px 2px 14px;
  background: transparent;
}

.mega-panel-head {
  margin-bottom: 9px;
  padding-bottom: 0;
  border-bottom: 0;
}

.mega-panel-head h3 {
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 700;
}

.mega-panel-head p {
  color: var(--muted);
  font-size: 12.5px;
}

.mega-product-stage {
  --mega-media-h: clamp(178px, 12vw, 198px);
  margin-inline: 0;
  padding: 0 64px;
  overflow: visible;
}

.mega-products {
  gap: 16px;
  overflow: hidden;
  padding: 1px 0 5px;
  scroll-behavior: auto;
  scroll-snap-type: none;
  will-change: scroll-position;
}

.mega-products.is-gliding .mega-product-card {
  transition-duration: 420ms;
}

.mega-products.is-gliding {
  scroll-snap-type: none;
  pointer-events: none;
}

.mega-product-card {
  flex: 0 0 calc((100% - 48px) / 4);
  grid-template-rows: var(--mega-media-h) auto;
  justify-items: stretch;
  gap: 8px;
  min-height: 0;
  padding: 0;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  user-select: none;
  -webkit-user-drag: none;
}

.mega-product-card:hover,
.mega-product-card:focus-visible {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.mega-product-card::after {
  display: none;
}

.mega-product-media {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: var(--mega-media-h);
  padding: 12px 16px;
  overflow: hidden;
  border: 1px solid rgba(9, 33, 52, 0.08);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 18px rgba(8, 30, 48, 0.055);
  transition: border-color 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
}

.mega-product-card:hover .mega-product-media,
.mega-product-card:focus-visible .mega-product-media {
  border-color: rgba(62, 118, 155, 0.26);
  box-shadow: 0 16px 28px rgba(8, 30, 48, 0.11);
}

.mega-product-card img {
  --mega-img-scale: 1;
  --mega-img-y: 0px;
  position: absolute;
  inset: 10px 14px;
  width: calc(100% - 28px);
  max-width: 100%;
  height: calc(100% - 20px);
  max-height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center center;
  transform: translate3d(0, var(--mega-img-y), 0) scale(var(--mega-img-scale));
  transform-origin: center center;
  transition: filter 260ms var(--ease-out), transform 320ms var(--ease-out);
}

.mega-product-card img[src*="product-250-lph-single-pass-frp-cutout"],
.mega-product-card img[src*="product-250-lph-double-pass-frp-cutout"] {
  --mega-img-scale: 0.98;
  --mega-img-y: 0px;
}

.mega-product-card img[src*="product-1m3h-single-pass-ro-cutout"] {
  --mega-img-scale: 1.02;
  --mega-img-y: 0px;
}

.mega-product-card img[src*="product-2m3h-single-pass-ro-cutout"] {
  --mega-img-scale: 0.98;
  --mega-img-y: 0px;
}

.mega-product-card img[src*="product-4m3h-single-pass-ro-cutout"] {
  --mega-img-scale: 1.04;
  --mega-img-y: 0px;
}

.mega-product-card img[src*="product-1-10m3h-single-pass-ro-cutout"] {
  --mega-img-scale: 1.08;
}

.mega-product-card img[src*="product-20m3h-single-pass-ro-cutout"] {
  --mega-img-scale: 1.04;
}

.mega-product-card img[src*="product-50m3h-single-pass-ro-cutout"] {
  --mega-img-scale: 1.08;
}

.mega-product-card img[src*="product-500-lph-stainless-purified-cutout"] {
  --mega-img-scale: 1;
  --mega-img-y: 0px;
}

.mega-product-card img[src*="product-2m3h-edi-8040-cutout"] {
  --mega-img-scale: 1.06;
}

.mega-product-card img[src*="product-200m3h-pretreatment-cutout"],
.mega-product-card img[src*="product-uf-system-cutout"] {
  --mega-img-scale: 1;
}

.mega-product-card img[src*="product-ro-membrane-consumables-cutout"] {
  --mega-img-scale: 1.04;
}

.mega-product-card:hover img,
.mega-product-card:focus-visible img {
  transform: translate3d(0, var(--mega-img-y), 0) scale(var(--mega-img-scale));
}

.mega-product-card strong {
  max-width: 100%;
  color: #0d1720;
  font-size: clamp(14px, 0.98vw, 15px);
  font-weight: 760;
  line-height: 1.22;
}

.mega-card-action {
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  color: #0d1720;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  box-shadow: none;
  transform: translate3d(-6px, 0, 0);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out), color 260ms var(--ease-out);
}

.mega-card-action::after {
  content: "→";
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0;
  border: 0;
  font-size: 18px;
  font-weight: 520;
  line-height: 1;
  transform: none;
}

.mega-product-card:hover .mega-card-action,
.mega-product-card:focus-visible .mega-card-action {
  opacity: 1;
  color: #3e769b;
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}

.mega-product-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 0 2px;
  color: #0d1720;
  transition: transform 260ms var(--ease-out), color 260ms var(--ease-out);
}

.mega-product-card:hover .mega-product-title,
.mega-product-card:focus-visible .mega-product-title {
  transform: translate3d(2px, 0, 0);
}

@keyframes mega-panel-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 4%);
    transform: translate3d(28px, 0, 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
  }
}

.mega-menu.is-switching .mega-panel.is-active {
  animation: mega-panel-switch 420ms var(--ease-out) both;
}

@keyframes mega-panel-switch {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 5%);
    transform: translate3d(34px, 0, 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
  }
}

.mega-products:has(.mega-product-card:only-child) .mega-product-card {
  max-width: clamp(252px, 22vw, 318px);
}

.mega-product-scroll {
  top: calc(var(--mega-media-h) / 2);
  width: 38px;
  height: 44px;
  color: #0d1720;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(8, 30, 48, 0.15);
}

@media (max-width: 1320px) {
  .mega-inner {
    width: min(1180px, calc(100vw - 40px));
  }

  .mega-product-stage {
    --mega-media-h: clamp(176px, 14.5vw, 196px);
  }

  .mega-product-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 980px) {
  .mega-inner {
    width: min(920px, calc(100vw - 28px));
  }

  .mega-product-stage {
    --mega-media-h: 174px;
    padding-inline: 52px;
  }

  .mega-product-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}

.mega-product-scroll.is-prev {
  left: 0;
  border-radius: 14px;
}

.mega-product-scroll.is-next {
  right: 0;
  border-radius: 14px;
}

.mega-product-scroll:hover,
.mega-product-scroll:focus-visible {
  color: #ffffff;
  background: #3e769b;
  box-shadow: 0 22px 42px rgba(62, 118, 155, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu,
  .mega-product-card,
  .mega-product-media,
  .mega-card-action,
  .mega-product-scroll {
    transition-duration: 220ms !important;
    transition-timing-function: ease-out !important;
  }

  .mega-panel.is-active {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .why-choose-section .shell {
    grid-template-columns: 1fr;
    width: var(--shell);
  }

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

  .why-bottom-line {
    grid-column: auto;
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  .why-choose-section {
    min-height: 0;
    padding: 52px 0;
    background:
      linear-gradient(180deg, rgba(10, 39, 96, 0.94) 0%, rgba(8, 34, 91, 0.94) 100%),
      url("media/factory/xinnuo-workshop-overview-20260704.webp") center/cover no-repeat;
  }

  .why-choose-section .shell {
    gap: 24px;
  }

  .why-choose-section .section-center h2 {
    font-size: 31px;
  }

  .why-choose-section .section-lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .why-card,
  .why-card:nth-child(n + 4),
  .why-card:nth-child(3n + 1) {
    grid-template-columns: 90px minmax(0, 1fr);
    justify-items: start;
    min-height: 108px;
    padding: 14px 0;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .why-card::after {
    display: none;
  }

  .why-card-top {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .why-card.is-active,
  .why-card:hover,
  .why-card:focus-visible {
    grid-template-columns: 90px minmax(0, 1fr);
    padding: 14px 0;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(247, 251, 253, 0.96);
    transform: none;
  }

  .why-metric,
  .why-card.is-active .why-metric,
  .why-card:hover .why-metric,
  .why-card:focus-visible .why-metric {
    font-size: 30px;
  }

  .why-metric-label {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    font-size: 10px;
  }

  .why-card strong {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    max-width: none;
    margin: 0;
    font-size: 15px;
  }

  .why-card.is-active strong,
  .why-card:hover strong,
  .why-card:focus-visible strong,
  .why-card.is-active .why-metric,
  .why-card:hover .why-metric,
  .why-card:focus-visible .why-metric,
  .why-card.is-active .why-metric-label,
  .why-card:hover .why-metric-label,
  .why-card:focus-visible .why-metric-label {
    color: #071f53;
  }

  .why-card > span:last-child,
  .why-card.is-active > span:last-child,
  .why-card:hover > span:last-child,
  .why-card:focus-visible > span:last-child {
    display: none;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solution-feature-row,
  .solution-feature-row.is-image-left,
  .solution-feature-row.is-image-right {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 24px 0;
  }

  .solution-feature-row img,
  .solution-feature-row.is-image-left img,
  .solution-feature-row.is-image-right img {
    grid-column: 1;
    grid-row: auto;
    inline-size: 100%;
    height: 220px;
    margin-bottom: 20px;
  }

  .solution-feature-row .solution-feature-copy,
  .solution-feature-row.is-image-left .solution-feature-copy,
  .solution-feature-row.is-image-right .solution-feature-copy {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    padding: 0;
  }

  .solution-feature-row strong {
    font-size: 24px;
    line-height: 1.24;
  }
}

/* Final scoped interaction fallback for the selected diagnostic, industry and FAQ controls. */
.diagnostic-section .story-tab:hover,
.diagnostic-section .story-tab:focus-visible,
.industry-section .story-tab:hover,
.industry-section .story-tab:focus-visible {
  border-color: rgba(62, 118, 155, 0.30) !important;
  box-shadow: 0 12px 24px rgba(8, 38, 58, 0.10) !important;
  transform: none !important;
}

.diagnostic-section .story-tab:not(.is-active):hover,
.diagnostic-section .story-tab:not(.is-active):focus-visible,
.industry-section .story-tab:not(.is-active):hover,
.industry-section .story-tab:not(.is-active):focus-visible {
  color: var(--ink) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(62, 118, 155, 0.055) 100%) !important;
}

.diagnostic-section .story-tab:hover::after,
.diagnostic-section .story-tab:focus-visible::after {
  color: #3e769b !important;
  transform: translateY(-50%) translateX(3px) rotate(45deg) !important;
}

.diagnostic-section .story-tab.is-active:hover,
.diagnostic-section .story-tab.is-active:focus-visible,
.industry-section .story-tab.is-active:hover,
.industry-section .story-tab.is-active:focus-visible {
  color: #ffffff !important;
  background: var(--brand) !important;
}

.faq-section .faq-list details:hover,
.faq-section .faq-list details:focus-within {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(3, 105, 161, 0.18), 0 16px 34px rgba(9, 33, 52, 0.08) !important;
  transform: translateY(-2px) !important;
}

.faq-section .faq-list details:hover summary,
.faq-section .faq-list details:focus-within summary {
  color: #0b3047 !important;
}

.faq-section .faq-list details:hover summary::after,
.faq-section .faq-list details:focus-within summary::after {
  color: #ffffff !important;
  background: #3e769b !important;
  transform: translateY(-50%) rotate(90deg) !important;
}

.faq-section .faq-list details[open]:hover summary::after,
.faq-section .faq-list details[open]:focus-within summary::after {
  transform: translateY(-50%) rotate(45deg) !important;
}

/* Solutions hero and final width polish. */
.header-actions .quote-button {
  color: var(--ink);
  border-color: transparent;
  background: #ffffff;
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.16), 0 0.5px 2px rgba(0, 0, 0, 0.12);
  font-weight: 700;
}

.header-actions .quote-button:hover,
.header-actions .quote-button:focus-visible {
  color: var(--ink);
  border-color: transparent;
  background: #ffffff;
  box-shadow: 0 8px 16px 1px rgba(0, 43, 57, 0.20), 0 1px 3px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.site-header.is-scrolled .header-actions .quote-button,
.site-header.is-solid .header-actions .quote-button,
.catalog-route-page .site-header .header-actions .quote-button {
  color: #ffffff;
  border-color: transparent;
  background: var(--brand);
  box-shadow: 0 4px 8px 1px rgba(0, 43, 57, 0.16), 0 0.5px 2px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled .header-actions .quote-button:hover,
.site-header.is-scrolled .header-actions .quote-button:focus-visible,
.site-header.is-solid .header-actions .quote-button:hover,
.site-header.is-solid .header-actions .quote-button:focus-visible,
.catalog-route-page .site-header .header-actions .quote-button:hover,
.catalog-route-page .site-header .header-actions .quote-button:focus-visible {
  color: #ffffff;
  border-color: transparent;
  background: var(--brand-dark);
  box-shadow: 0 8px 16px 1px rgba(0, 43, 57, 0.20), 0 1px 3px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.solutions-hero {
  min-height: clamp(560px, 47vw, 680px);
  padding: 0;
  position: relative;
  overflow: hidden;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(46, 54, 55, 0.94) 0%, rgba(57, 65, 66, 0.86) 31%, rgba(66, 77, 79, 0.46) 58%, rgba(66, 77, 79, 0.05) 100%),
    linear-gradient(180deg, rgba(6, 18, 28, 0.10), rgba(6, 18, 28, 0.22)),
    url("media/factory/xinnuo-workshop-overview-20260704.webp") right center / cover no-repeat;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(124, 211, 238, 0.22), rgba(124, 211, 238, 0.04) 34%, transparent 62%),
    linear-gradient(180deg, transparent 0%, rgba(4, 12, 18, 0.30) 100%);
}

.solutions-hero .shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 72px));
  max-width: none;
  padding-top: clamp(48px, 6vw, 76px);
}

.solutions-hero .breadcrumb {
  margin-bottom: 28px;
}

.solutions-hero h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(62px, 6vw, 92px);
  font-weight: 720;
  line-height: 0.98;
  text-wrap: balance;
}

.solutions-hero p:not(.breadcrumb) {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.48;
}

.solutions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 38px;
}

.solutions-hero-primary,
.solutions-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: color 260ms var(--ease-out), background 260ms var(--ease-out), border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.solutions-hero-primary {
  color: #075985;
  border: 1px solid rgba(255, 255, 255, 0.94);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 18, 28, 0.24);
}

.solutions-hero-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: transparent;
}

.solutions-hero-primary:hover,
.solutions-hero-primary:focus-visible {
  color: #053d5c;
  background: #f5fbff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 18, 28, 0.30);
}

.solutions-hero-secondary:hover,
.solutions-hero-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

@media (min-width: 1021px) {
  .custom-section .shell,
  .custom-grid,
  .why-choose-section .shell,
  .factory-proof-section .shell,
  .case-section .shell,
  .factory-proof-layout,
  .testimonial-layout,
  .testimonial-strip {
    width: var(--wide-shell);
    max-width: none;
  }
}

/* Reference-style diagnostic section: layered white card, not an internal blue block. */
.diagnostic-section {
  background:
    radial-gradient(circle at 68% 48%, rgba(62, 118, 155, 0.105), transparent 31%),
    radial-gradient(circle at 28% 72%, rgba(3, 105, 161, 0.06), transparent 26%),
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 44%, #f5f9fc 100%);
}

.diagnostic-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 52%, rgba(62, 118, 155, 0.08), transparent 38%);
  background-size: auto;
  mask-image: none;
}

.diagnostic-section .section-center {
  max-width: 860px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.diagnostic-section .section-center h2 {
  color: #101827;
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 760;
  line-height: 1.06;
  text-wrap: balance;
}

.diagnostic-section .section-lead {
  max-width: 760px;
  color: rgba(16, 24, 39, 0.66);
  font-size: clamp(16px, 1.15vw, 18px);
}

.diagnostic-layout {
  align-items: center;
  gap: clamp(24px, 2.8vw, 38px);
}

.diagnostic-tab-list {
  gap: 14px;
  filter: drop-shadow(0 26px 34px rgba(15, 23, 42, 0.08));
}

.diagnostic-tab-list .story-tab {
  min-height: 78px;
  padding: 17px 48px 16px 28px;
  border: 1px solid rgba(33, 45, 72, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 16px 34px rgba(15, 23, 42, 0.055);
  transition:
    color 260ms var(--ease-out),
    border-color 260ms var(--ease-out),
    background 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.diagnostic-tab-list .story-tab strong {
  color: inherit;
  font-size: clamp(15px, 1.02vw, 17px);
  font-weight: 760;
  letter-spacing: 0;
}

.diagnostic-tab-list .story-tab em {
  color: rgba(36, 52, 69, 0.58);
  font-size: 14px;
}

.diagnostic-tab-list .story-tab::after {
  right: 24px;
  color: rgba(36, 52, 69, 0.38);
}

.diagnostic-tab-list .story-tab:not(.is-active):hover,
.diagnostic-tab-list .story-tab:not(.is-active):focus-visible {
  color: #1b2551;
  border-color: rgba(62, 118, 155, 0.28);
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 20px 44px rgba(15, 23, 42, 0.085);
  transform: translate3d(4px, -1px, 0);
}

.diagnostic-tab-list .story-tab.is-active {
  color: #ffffff;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 18px 34px rgba(62, 118, 155, 0.22);
}

.diagnostic-tab-list .story-tab.is-active em,
.diagnostic-tab-list .story-tab.is-active::after {
  color: rgba(255, 255, 255, 0.78);
}

.story-panel-stack {
  position: relative;
  isolation: isolate;
  height: clamp(550px, 37vw, 590px);
  min-height: clamp(550px, 37vw, 590px);
}

.story-panel-stack::before {
  content: "";
  position: absolute;
  inset: 36px -22px -22px 32px;
  z-index: -2;
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(135deg, rgba(62, 118, 155, 0.28), rgba(3, 105, 161, 0.10));
  filter: blur(2px);
  opacity: 0.92;
  transform: translate3d(0, 8px, 0);
}

.story-panel-stack::after {
  content: "";
  position: absolute;
  inset: auto 10% -30px 8%;
  z-index: -3;
  height: 82px;
  border-radius: 999px;
  background: rgba(62, 118, 155, 0.18);
  filter: blur(24px);
}

.diagnostic-section .story-panel {
  padding: clamp(26px, 2.35vw, 34px);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.92) inset,
    0 34px 70px rgba(31, 41, 55, 0.14),
    0 28px 80px rgba(62, 118, 155, 0.10);
}

.diagnostic-section .story-panel::before {
  display: none;
}

.diagnostic-section .story-panel::after {
  content: "“";
  position: absolute;
  top: 16px;
  right: 26px;
  z-index: 0;
  display: block;
  color: rgba(62, 118, 155, 0.075);
  font-size: clamp(70px, 6vw, 104px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.diagnostic-section .story-panel h3 {
  max-width: 720px;
  margin: 4px 0 10px;
  color: #101827;
  font-size: clamp(24px, 1.9vw, 32px);
  font-weight: 760;
}

.diagnostic-section .story-panel p {
  max-width: 760px;
  margin-bottom: 12px;
  color: rgba(16, 24, 39, 0.68);
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.48;
}

.diagnostic-section .impact-label {
  margin-top: clamp(16px, 2.1vw, 24px);
  margin-bottom: 10px;
  color: rgba(16, 24, 39, 0.56);
  letter-spacing: 0.11em;
}

.diagnostic-section .impact-pair {
  gap: 14px;
  margin: 12px 0 14px;
  border: 0;
}

.diagnostic-section .impact-pair span {
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
}

.diagnostic-section .impact-pair span:nth-child(2) {
  color: #ffffff;
  border-color: rgba(62, 118, 155, 0.36);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 18px 36px rgba(62, 118, 155, 0.24);
}

.diagnostic-section .impact-pair em {
  opacity: 0.68;
  font-size: 10.5px;
}

.diagnostic-section .impact-pair strong {
  font-size: clamp(18px, 1.35vw, 24px);
}

.diagnostic-section .story-panel ul {
  margin-bottom: 10px;
}

.diagnostic-section .story-panel li {
  color: rgba(16, 24, 39, 0.68);
  margin-top: 5px;
  line-height: 1.34;
}

.diagnostic-section .story-panel li::before {
  width: 7px;
  height: 7px;
  background: transparent;
  border: 1.5px solid rgba(62, 118, 155, 0.58);
}

.diagnostic-section .story-note {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-top: clamp(12px, 1.6vw, 18px);
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(62, 118, 155, 0.22);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(62, 118, 155, 0.12), rgba(62, 118, 155, 0.035));
}

.diagnostic-section .story-note strong {
  color: var(--brand-dark);
}

@media (max-width: 1020px) {
  .story-panel-stack::before {
    inset: 34px -12px -18px 16px;
  }

  .diagnostic-section .story-panel {
    border-radius: 20px;
  }
}

@media (max-width: 760px) {
  .diagnostic-section .section-center h2 {
    font-size: 32px;
  }

  .story-panel-stack {
    height: 680px;
    min-height: 680px;
  }

  .diagnostic-section .story-panel {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .diagnostic-section .impact-pair {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .diagnostic-section .impact-pair span {
    min-height: 96px;
  }

  .diagnostic-section .story-note {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1021px) and (max-width: 1320px) {
  .why-choose-section .shell {
    grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
    gap: clamp(34px, 5vw, 64px);
  }
}

@media (max-width: 760px) {
  .solutions-hero {
    min-height: 620px;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(42, 50, 52, 0.94) 0%, rgba(45, 55, 57, 0.76) 52%, rgba(45, 55, 57, 0.22) 100%),
      url("media/factory/xinnuo-workshop-overview-20260704.webp") center bottom / cover no-repeat;
  }

  .solutions-hero .shell {
    width: var(--shell);
    padding-top: 94px;
  }

  .solutions-hero h1 {
    max-width: 10ch;
    font-size: 48px;
  }

  .solutions-hero p:not(.breadcrumb) {
    font-size: 17px;
  }

  .solutions-hero-actions {
    gap: 12px;
  }

  .solutions-hero-primary,
.solutions-hero-secondary {
  inline-size: 100%;
}
}

/* Universal Robots-inspired home product showcase. Scoped away from product route subpages. */
.product-fit-section:not(.product-route-section) {
  color: #082f44;
  background: #ffffff;
}

.product-fit-section:not(.product-route-section)::before {
  display: none;
}

.product-fit-section:not(.product-route-section).section {
  padding: clamp(44px, 4.8vw, 66px) 0 clamp(36px, 3.5vw, 50px);
}

.product-fit-section:not(.product-route-section) .shell {
  width: min(1280px, calc(100vw - 96px));
}

.product-fit-section:not(.product-route-section) .section-center {
  max-width: 940px;
  margin: 0 auto clamp(20px, 2.5vw, 30px);
  text-align: center;
}

.product-fit-section:not(.product-route-section) .reference-kicker {
  display: none;
}

.product-fit-section:not(.product-route-section) .section-center h2 {
  max-width: 980px;
  margin-inline: auto;
  color: #08334b;
  font-size: clamp(34px, 3.1vw, 52px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-fit-section:not(.product-route-section) .section-lead {
  max-width: 720px;
  margin: 14px auto 0;
  color: #315b72;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.52;
}

.product-fit-section:not(.product-route-section) .product-fit-viewport {
  position: relative;
  overflow: visible;
  padding: 4px 0 50px;
  border-radius: 0;
}

.product-fit-section:not(.product-route-section) .product-fit-rail {
  display: flex;
  grid-template-columns: none;
  gap: 36px;
  overflow-x: auto;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.product-fit-section:not(.product-route-section) .product-fit-rail::-webkit-scrollbar {
  display: none;
}

.product-fit-section:not(.product-route-section) .fit-card {
  flex: 0 0 calc((100% - 108px) / 4);
  scroll-snap-align: start;
  min-height: clamp(392px, 30vw, 440px);
  display: grid;
  grid-template-rows: clamp(230px, 19vw, 266px) auto;
  overflow: hidden;
  color: #08334b;
  text-align: center;
  border: 0;
  border-radius: 12px;
  background: var(--surface-ur);
  box-shadow:
    0 4px 8px 1px rgba(0, 43, 57, 0.16),
    0 0.5px 2px rgba(0, 0, 0, 0.12);
  filter: none;
  transform: translateY(0);
  transition:
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    background-color 220ms var(--ease-out);
}

.product-fit-section:not(.product-route-section) .fit-card + .fit-card {
  box-shadow:
    0 4px 8px 1px rgba(0, 43, 57, 0.16),
    0 0.5px 2px rgba(0, 0, 0, 0.12);
}

.product-fit-section:not(.product-route-section) .fit-card::before,
.product-fit-section:not(.product-route-section) .fit-card::after {
  display: none;
}

.product-fit-section:not(.product-route-section) .fit-card.is-active,
.product-fit-section:not(.product-route-section) .fit-card:hover,
.product-fit-section:not(.product-route-section) .fit-card:focus-visible {
  background: var(--surface-ur-hover);
  box-shadow:
    0 8px 16px 1px rgba(0, 43, 57, 0.18),
    0 1px 3px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.product-fit-section:not(.product-route-section) .fit-card img {
  align-self: center;
  justify-self: center;
  width: min(260px, calc(100% - 48px));
  height: clamp(188px, 15.5vw, 230px);
  padding: 0;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  filter: drop-shadow(0 16px 14px rgba(8, 30, 48, 0.11));
  transform: none;
  transition: transform 220ms var(--ease-out), filter 220ms var(--ease-out);
}

.product-fit-section:not(.product-route-section) .fit-card:hover img,
.product-fit-section:not(.product-route-section) .fit-card:focus-visible img {
  transform: translateY(-4px) scale(1.025);
  filter: drop-shadow(0 22px 18px rgba(8, 30, 48, 0.16));
}

.product-fit-section:not(.product-route-section) .fit-card-copy {
  position: static;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 10px clamp(18px, 2vw, 28px) clamp(28px, 2.4vw, 36px);
}

.product-fit-section:not(.product-route-section) .fit-card-copy small {
  color: var(--link-ur);
  font-size: clamp(12px, 0.86vw, 14px);
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: 0;
}

.product-fit-section:not(.product-route-section) .fit-card strong {
  color: #062f45;
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: none;
  transition: color 180ms var(--ease-out);
}

.product-fit-section:not(.product-route-section) .fit-card .fit-card-copy > span:not(.fit-index) {
  max-width: 300px;
  max-height: none;
  min-height: 0;
  color: #35596d;
  font-size: clamp(14px, 0.98vw, 16px);
  font-weight: 410;
  line-height: 1.44;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  transform: none;
}

.product-fit-section:not(.product-route-section) .fit-card:hover strong,
.product-fit-section:not(.product-route-section) .fit-card:focus-visible strong {
  color: var(--link-ur);
}

.product-fit-section:not(.product-route-section) .fit-card em {
  display: none;
}

.product-fit-section:not(.product-route-section) .fit-badge {
  display: none;
}

.product-fit-section:not(.product-route-section) .product-route-controls {
  position: absolute;
  inset: 4px 10px 50px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 0;
  pointer-events: none;
}

.product-fit-section:not(.product-route-section) .product-route-controls > button {
  position: absolute;
  top: 50%;
  display: block;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(8, 38, 60, 0.18);
  opacity: 0.96;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.product-fit-section:not(.product-route-section) .product-route-controls > button:first-child {
  left: 0;
}

.product-fit-section:not(.product-route-section) .product-route-controls > button:last-child {
  right: 0;
}

.product-fit-section:not(.product-route-section) .product-route-controls > button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: translate(-58%, -50%) rotate(45deg);
}

.product-fit-section:not(.product-route-section) .product-route-controls > button:first-child::before {
  transform: translate(-42%, -50%) rotate(-135deg);
}

.product-fit-section:not(.product-route-section) .product-route-controls > button:hover,
.product-fit-section:not(.product-route-section) .product-route-controls > button:focus-visible {
  box-shadow: 0 16px 34px rgba(8, 38, 60, 0.24);
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.product-fit-section:not(.product-route-section) .product-route-dots {
  position: absolute;
  bottom: -34px;
  left: 50%;
  display: flex;
  gap: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  transform: translateX(-50%);
  pointer-events: auto;
}

.product-fit-section:not(.product-route-section) .product-route-dots button {
  width: 50px;
  height: 8px;
  border-radius: 999px;
  background: #d5dde1;
}

.product-fit-section:not(.product-route-section) .product-route-dots button.is-active {
  width: 50px;
  background: var(--brand);
}

.product-fit-section:not(.product-route-section) .product-route-dots button[hidden] {
  display: none;
}

.product-fit-section:not(.product-route-section) .fit-bottom-note {
  display: none;
}

@media (max-width: 1180px) {
  .product-fit-section:not(.product-route-section) .fit-card {
    flex-basis: calc((100% - 72px) / 3);
  }
}

@media (max-width: 760px) {
  .product-fit-section:not(.product-route-section).section {
    padding: 44px 0 38px;
  }

  .product-fit-section:not(.product-route-section) .shell {
    width: var(--shell);
  }

  .product-fit-section:not(.product-route-section) .section-center {
    margin-bottom: 18px;
    text-align: left;
  }

  .product-fit-section:not(.product-route-section) .section-center h2 {
    font-size: 30px;
  }

  .product-fit-section:not(.product-route-section) .section-lead {
    margin-left: 0;
    font-size: 16px;
  }

  .product-fit-section:not(.product-route-section) .product-fit-viewport {
    overflow: hidden;
    padding-bottom: 42px;
  }

  .product-fit-section:not(.product-route-section) .product-fit-rail {
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    transform: translate3d(calc(var(--product-route-index, 0) * -100%), 0, 0);
    transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-fit-section:not(.product-route-section) .fit-card {
    flex: 0 0 100%;
    min-height: min(64vh, 500px);
    border-radius: 12px;
    grid-template-rows: minmax(228px, 1fr) auto;
  }

  .product-fit-section:not(.product-route-section) .fit-card img {
    width: min(280px, calc(100% - 52px));
    height: clamp(210px, 45vw, 260px);
    padding: 0;
  }

  .product-fit-section:not(.product-route-section) .fit-card-copy {
    padding: 14px 26px 34px;
  }

  .product-fit-section:not(.product-route-section) .fit-card .fit-card-copy > span:not(.fit-index) {
    font-size: 18px;
  }

  .product-fit-section:not(.product-route-section) .product-route-controls {
    position: absolute;
    inset: 0;
    z-index: 8;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button {
    position: relative;
    display: block;
    width: 48px;
    height: 100%;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0.88;
    pointer-events: auto;
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button::before {
    inset: auto;
    top: 50%;
    left: 15px;
    width: 17px;
    height: 17px;
    border-top-color: rgba(44, 124, 173, 0.88);
    border-right-color: rgba(44, 124, 173, 0.88);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.86));
    transform: translateY(-50%) rotate(45deg);
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button:first-child::before {
    transform: translateY(-50%) rotate(-135deg);
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button:last-child::before {
    right: 15px;
    left: auto;
  }

  .product-fit-section:not(.product-route-section) .product-route-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .product-fit-section:not(.product-route-section) .product-route-dots button,
  .product-fit-section:not(.product-route-section) .product-route-dots button.is-active {
    width: 28px;
    height: 6px;
  }
}

/* Performance pass: keep interaction-heavy media on compositor-friendly opacity/transform paths. */
.site-header.is-scrolled,
.site-header.is-solid,
.catalog-route-page .site-header,
.secondary-button,
.fit-corner,
.fit-badge {
  backdrop-filter: none !important;
}

.hero-slide img,
.process-step img,
.fit-card img,
.product-card img,
.category-card img,
.application-card img,
.custom-card img,
.industry-panel img,
.capacity-board img,
.integration-visual img,
.factory-proof-photo img,
.testimonial-media img,
.solution-card img,
.solution-visual img,
.visual-field,
.mega-product-card img,
.detail-overview-media img,
.product-gallery img {
  filter: none !important;
  transition-property: opacity, transform !important;
}

.reveal,
.reveal-left,
.reveal-right {
  filter: none !important;
  clip-path: none !important;
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out) !important;
  will-change: opacity, transform !important;
}

/* Interaction stability pass: one control system for carousels, tabs and drawer. */
.mega-tab:hover,
.mega-tab:focus-visible {
  color: var(--ink) !important;
  border-color: rgba(62, 118, 155, 0.24) !important;
  background: #edf4f7 !important;
  box-shadow: none !important;
  transform: translate3d(0, -1px, 0);
}

.mega-tab.is-active,
.mega-tab.is-active:hover,
.mega-tab.is-active:focus-visible {
  color: #ffffff !important;
  border-color: transparent !important;
  background: var(--brand) !important;
  box-shadow: 0 10px 22px rgba(62, 118, 155, 0.22) !important;
}

.mega-menu.is-switching .mega-panel.is-active {
  animation: mega-panel-switch 240ms var(--ease-out) both;
}

@keyframes mega-panel-switch {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.mega-products.is-gliding {
  pointer-events: auto;
}

.mega-products.is-gliding .mega-product-card {
  pointer-events: none;
}

.diagnostic-section .diagnostic-tab-list,
.industry-section .industry-tabs {
  filter: none !important;
}

.diagnostic-section .diagnostic-tab-list .story-tab.is-active,
.diagnostic-section .diagnostic-tab-list .story-tab.is-active:hover,
.diagnostic-section .diagnostic-tab-list .story-tab.is-active:focus-visible,
.industry-section .industry-tabs .story-tab.is-active,
.industry-section .industry-tabs .story-tab.is-active:hover,
.industry-section .industry-tabs .story-tab.is-active:focus-visible {
  color: #ffffff !important;
  border-color: transparent !important;
  background: var(--brand) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 24px rgba(62, 118, 155, 0.20) !important;
  transform: none !important;
}

.diagnostic-section .diagnostic-tab-list .story-tab.is-active em,
.diagnostic-section .diagnostic-tab-list .story-tab.is-active::after,
.industry-section .industry-tabs .story-tab.is-active em,
.industry-section .industry-tabs .story-tab.is-active::after {
  color: rgba(255, 255, 255, 0.78) !important;
}

.diagnostic-section .story-tab:not(.is-active):hover,
.diagnostic-section .story-tab:not(.is-active):focus-visible,
.industry-section .story-tab:not(.is-active):hover,
.industry-section .story-tab:not(.is-active):focus-visible {
  color: var(--ink) !important;
  background: #ffffff !important;
}

.quote-button,
.detail-panel-quote .quote-button,
.floating-inquiry button {
  color: #ffffff;
  background: var(--brand);
  border-color: transparent;
}

.quote-button:hover,
.quote-button:focus-visible,
.detail-panel-quote .quote-button:hover,
.detail-panel-quote .quote-button:focus-visible,
.floating-inquiry button:hover,
.floating-inquiry button:focus-visible {
  color: #ffffff;
  background: var(--brand-dark);
  border-color: transparent;
}

.mobile-drawer .drawer-panel {
  overflow: hidden;
}

.mobile-drawer nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: max(76px, calc(24px + env(safe-area-inset-bottom)));
}

.mobile-drawer nav > .drawer-product-groups {
  padding-bottom: 18px;
}

@media (max-width: 1020px) {
  .diagnostic-tab-controls > button,
  .industry-tab-controls > button {
    display: grid !important;
    place-items: center;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(62, 118, 155, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 12px 24px rgba(8, 30, 48, 0.16) !important;
    opacity: 0.98 !important;
    pointer-events: auto;
    transform: none !important;
  }

  .diagnostic-tab-controls > button::before,
  .industry-tab-controls > button::before {
    width: 11px !important;
    height: 11px !important;
    border-top: 2px solid var(--brand) !important;
    border-right: 2px solid var(--brand) !important;
    filter: none !important;
  }
}

@media (max-width: 760px) {
  .product-route-controls {
    padding-inline: 10px !important;
  }

  .product-route-controls > button,
  .product-fit-section:not(.product-route-section) .product-route-controls > button {
    display: grid !important;
    place-items: center;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(62, 118, 155, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 12px 24px rgba(8, 30, 48, 0.16) !important;
    opacity: 0.98 !important;
    pointer-events: auto;
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button:first-child {
    left: 8px !important;
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button:last-child {
    right: 8px !important;
  }

  .product-route-controls > button::before,
  .product-fit-section:not(.product-route-section) .product-route-controls > button::before {
    inset: auto !important;
    position: static !important;
    width: 12px !important;
    height: 12px !important;
    border-top: 2px solid var(--brand) !important;
    border-right: 2px solid var(--brand) !important;
    filter: none !important;
    transform: rotate(45deg) !important;
  }

  .product-route-controls > button:first-child::before,
  .product-fit-section:not(.product-route-section) .product-route-controls > button:first-child::before {
    transform: rotate(-135deg) !important;
  }

  .product-route-controls > button:hover,
  .product-route-controls > button:focus-visible,
  .diagnostic-tab-controls > button:hover,
  .diagnostic-tab-controls > button:focus-visible,
  .industry-tab-controls > button:hover,
  .industry-tab-controls > button:focus-visible {
    transform: scale(1.03) !important;
    background: #ffffff !important;
    box-shadow: 0 16px 30px rgba(8, 30, 48, 0.20) !important;
  }

  .product-fit-section:not(.product-route-section) .product-route-controls > button:hover,
  .product-fit-section:not(.product-route-section) .product-route-controls > button:focus-visible {
    transform: translateY(-50%) scale(1.03) !important;
  }
}

/* Gerunco-inspired homepage pass: white product catalogue, factory proof, light proof cards, and contact close. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.gerunco-home {
  --home-soft: #f5f7f9;
  --home-ink: #1f2937;
  --home-muted: #6b7280;
  --home-blue: #2563eb;
  --home-blue-dark: #1d4ed8;
}

.gerunco-home .section h2 {
  color: var(--home-ink);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 760;
  line-height: 1.12;
}

.gerunco-home .section-lead {
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.62;
}

.gerunco-home .quote-button,
.gerunco-home .floating-inquiry button {
  background: var(--home-blue);
  color: #ffffff;
  border-color: transparent;
}

.gerunco-home .quote-button:hover,
.gerunco-home .quote-button:focus-visible,
.gerunco-home .floating-inquiry button:hover,
.gerunco-home .floating-inquiry button:focus-visible {
  background: var(--home-blue-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.gerunco-home .hero-actions .quote-button,
.gerunco-home .header-actions .quote-button {
  background: #ffffff;
  color: #111827;
}

.gerunco-home .site-header.is-scrolled .header-actions .quote-button,
.gerunco-home .site-header.is-solid .header-actions .quote-button {
  background: var(--home-blue);
  color: #ffffff;
}

.gerunco-home .product-fit-section {
  background: #ffffff;
}

.gerunco-home .product-fit-section.section {
  padding: clamp(70px, 7vw, 106px) 0 clamp(58px, 6vw, 90px);
}

.gerunco-home .product-fit-section .shell {
  width: min(1260px, calc(100vw - 64px));
}

.gerunco-home .product-fit-section .section-center {
  max-width: 780px;
  margin: 0 auto clamp(32px, 4vw, 52px);
  text-align: center;
}

.gerunco-home .product-fit-section .section-center h2 {
  font-size: clamp(40px, 3.8vw, 58px);
}

.gerunco-home .product-fit-section .section-lead {
  max-width: 780px;
  margin: 16px auto 0;
}

.gerunco-home .product-fit-section .product-fit-viewport {
  overflow: visible;
  padding: 0 0 58px;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.gerunco-home .product-fit-section .product-fit-rail {
  gap: 28px;
  align-items: stretch;
  padding: 10px 2px 24px;
  margin: -10px -2px -24px;
  background: transparent;
}

.gerunco-home .product-fit-section .fit-card {
  flex: 0 0 calc((100% - 84px) / 4);
  min-height: 442px;
  grid-template-rows: 248px auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(9, 33, 52, 0.08);
}

.gerunco-home .product-fit-section .fit-card.is-active,
.gerunco-home .product-fit-section .fit-card:hover,
.gerunco-home .product-fit-section .fit-card:focus-visible {
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(9, 33, 52, 0.14);
  transform: translateY(-4px);
}

.gerunco-home .product-fit-section .fit-card img {
  width: min(260px, calc(100% - 44px));
  height: 224px;
  margin-top: 18px;
  filter: none;
}

.gerunco-home .product-fit-section .fit-card-copy {
  align-content: start;
  gap: 10px;
  padding: 14px 24px 30px;
  text-align: left;
  justify-items: start;
}

.gerunco-home .product-fit-section .fit-card-copy small {
  color: var(--home-blue);
  font-size: 13px;
  font-weight: 650;
}

.gerunco-home .product-fit-section .fit-card strong {
  color: var(--home-ink);
  font-size: clamp(19px, 1.35vw, 23px);
  font-weight: 760;
}

.gerunco-home .product-fit-section .fit-card .fit-card-copy > span:not(.fit-index) {
  color: var(--home-muted);
  font-size: 15px;
}

.gerunco-home .product-fit-section .product-route-controls > button {
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(9, 33, 52, 0.16);
}

.gerunco-home .product-fit-section .product-route-dots {
  bottom: -18px;
}

.gerunco-home .capacity-match-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.gerunco-home .capacity-board {
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(9, 33, 52, 0.10);
}

.gerunco-home .capacity-grid a {
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(9, 33, 52, 0.08);
}

.gerunco-home .diagnostic-section,
.gerunco-home .industry-section,
.gerunco-home .faq-section {
  background:
    linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.22) 48%, transparent 100%) top center / min(860px, 70vw) 1px no-repeat,
    #f8fafc;
}

.gerunco-home .process-section,
.gerunco-home .custom-section {
  background:
    linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.18) 48%, transparent 100%) top center / min(920px, 72vw) 1px no-repeat,
    #ffffff;
}

.gerunco-home .factory-proof-section {
  background: #ffffff;
}

.gerunco-home .factory-proof-section.section {
  padding: clamp(74px, 7vw, 112px) 0;
}

.gerunco-home .factory-proof-section .section-center {
  display: none;
}

.gerunco-home .factory-proof-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(42px, 6vw, 88px);
  max-width: 1280px;
  align-items: center;
}

.gerunco-home .factory-proof-photo {
  grid-column: 2;
  min-height: clamp(420px, 44vw, 620px);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(9, 33, 52, 0.10);
}

.gerunco-home .factory-proof-photo::after {
  background: linear-gradient(180deg, transparent 58%, rgba(5, 18, 30, 0.66));
}

.gerunco-home .factory-proof-panel {
  grid-column: 1;
  grid-row: 1;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.gerunco-home .factory-proof-kicker {
  color: var(--home-blue);
  font-weight: 760;
}

.gerunco-home .factory-proof-panel h3 {
  max-width: 15ch;
  margin-top: 10px;
  color: var(--home-ink);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 760;
  letter-spacing: 0;
}

.gerunco-home .factory-proof-list {
  margin-top: 28px;
  border-top: 1px solid rgba(9, 33, 52, 0.12);
  border-bottom: 1px solid rgba(9, 33, 52, 0.12);
}

.gerunco-home .factory-proof-summary {
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.68;
}

.gerunco-home .factory-proof-list article {
  padding: 18px 0;
}

.gerunco-home .factory-proof-list article::before {
  display: none;
}

.gerunco-home .factory-proof-list strong {
  color: var(--home-ink);
  font-size: 17px;
}

.gerunco-home .factory-proof-list span {
  color: var(--home-muted);
}

.gerunco-home .why-choose-section {
  min-height: 0;
  color: var(--home-ink);
  background: #f5f7f9;
}

.gerunco-home .why-choose-section::before,
.gerunco-home .why-choose-section::after {
  display: none;
}

.gerunco-home .why-choose-section .shell {
  display: block;
  width: min(1260px, calc(100vw - 64px));
}

.gerunco-home .why-choose-section .section-center {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.gerunco-home .why-choose-section .reference-kicker {
  display: none;
}

.gerunco-home .why-choose-section .section-center h2 {
  color: var(--home-ink);
  font-size: clamp(38px, 3.6vw, 54px);
}

.gerunco-home .why-choose-section .section-lead {
  color: var(--home-muted);
}

.gerunco-home .why-choose-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  border: 0;
}

.gerunco-home .why-card,
.gerunco-home .why-card:nth-child(n + 4),
.gerunco-home .why-card:nth-child(3n + 1) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  justify-items: center;
  gap: 12px;
  min-height: 286px;
  padding: 32px 24px;
  color: var(--home-ink);
  text-align: center;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(9, 33, 52, 0.07);
}

.gerunco-home .why-card:nth-child(n + 5) {
  display: none;
}

.gerunco-home .why-card::after {
  display: none;
}

.gerunco-home .why-card-top {
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
}

.gerunco-home .why-metric {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--home-blue);
  border-radius: 999px;
  background: #e8f0ff;
  font-size: 22px;
  text-shadow: none;
}

.gerunco-home .why-metric-label {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  color: var(--home-muted);
  font-size: 13px;
}

.gerunco-home .why-card strong {
  grid-column: 1;
  grid-row: 3;
  max-width: 16ch;
  color: var(--home-ink);
  font-size: 18px;
  font-weight: 760;
  text-align: center;
}

.gerunco-home .why-card > span:last-child {
  grid-column: 1;
  grid-row: 4;
  max-width: 25ch;
  min-height: 0;
  color: var(--home-muted);
  font-size: 14px;
  -webkit-line-clamp: 4;
}

.gerunco-home .why-card.is-active,
.gerunco-home .why-card:hover,
.gerunco-home .why-card:focus-visible {
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(9, 33, 52, 0.12);
  transform: translateY(-3px);
}

.gerunco-home .why-card.is-active strong,
.gerunco-home .why-card:hover strong,
.gerunco-home .why-card:focus-visible strong,
.gerunco-home .why-card.is-active .why-metric,
.gerunco-home .why-card:hover .why-metric,
.gerunco-home .why-card:focus-visible .why-metric,
.gerunco-home .why-card.is-active .why-metric-label,
.gerunco-home .why-card:hover .why-metric-label,
.gerunco-home .why-card:focus-visible .why-metric-label {
  color: var(--home-blue);
}

.gerunco-home .why-bottom-line {
  display: none;
}

/* Reference pass: Gerunco-inspired four-card why choose grid. */
.gerunco-home .why-choose-section {
  color: #1f2937;
  background: #f9fafb;
}

.gerunco-home .why-choose-section.section {
  padding: clamp(74px, 7.2vw, 112px) 0 clamp(80px, 7vw, 118px);
}

.gerunco-home .why-choose-section::before,
.gerunco-home .why-choose-section::after {
  display: none;
}

.gerunco-home .why-choose-section .shell {
  display: block;
  width: min(1180px, calc(100vw - 64px));
}

.gerunco-home .why-choose-section .section-center {
  max-width: 760px;
  margin: 0 auto clamp(40px, 4.4vw, 56px);
  text-align: center;
}

.gerunco-home .why-choose-section .section-center h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.gerunco-home .why-choose-section .section-lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: #4b5f70;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
  text-align: center;
  text-wrap: balance;
}

.gerunco-home .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 2.5vw, 32px);
  border: 0;
}

.gerunco-home .why-card,
.gerunco-home .why-card:nth-child(n + 4),
.gerunco-home .why-card:nth-child(3n + 1) {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 96px auto 1fr;
  align-content: start;
  justify-items: start;
  gap: 20px;
  min-height: 360px;
  padding: clamp(30px, 3vw, 40px) clamp(24px, 2.4vw, 34px);
  overflow: hidden;
  color: #1f2937;
  text-align: left;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), background 280ms var(--ease-out);
}

.gerunco-home .why-card:nth-child(n + 5) {
  display: none;
}

.gerunco-home .why-card::before,
.gerunco-home .why-card::after {
  display: none;
}

.gerunco-home .why-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #3e769b;
  border-radius: 18px;
  background: #edf6fa;
  box-shadow: inset 0 0 0 1px rgba(62, 118, 155, 0.10);
  transition: color 280ms var(--ease-out), background 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.gerunco-home .why-icon::before,
.gerunco-home .why-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.gerunco-home .why-icon-quality::before {
  width: 24px;
  height: 32px;
  border: 3px solid currentColor;
  border-radius: 14px 14px 18px 18px;
}

.gerunco-home .why-icon-quality::after {
  width: 16px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(1px) rotate(-45deg);
}

.gerunco-home .why-icon-custom::before {
  width: 38px;
  height: 24px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.gerunco-home .why-icon-custom::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -16px -12px 0 currentColor, 16px 12px 0 currentColor;
}

.gerunco-home .why-icon-team::before {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -18px 8px 0 -1px currentColor, 18px 8px 0 -1px currentColor;
}

.gerunco-home .why-icon-team::after {
  width: 44px;
  height: 18px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  transform: translateY(17px);
}

.gerunco-home .why-icon-logistics::before {
  width: 38px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: translateX(-3px);
}

.gerunco-home .why-icon-logistics::after {
  width: 34px;
  height: 14px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(8px, 8px) skewX(-18deg);
}

.gerunco-home .why-card strong {
  max-width: 15ch;
  margin: 0;
  color: #111827;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 760;
  line-height: 1.16;
  text-align: left;
  text-wrap: balance;
}

.gerunco-home .why-card > span:last-child {
  max-width: 25ch;
  min-height: 5.2em;
  color: #5f6b7a;
  font-size: 15px;
  line-height: 1.56;
  text-align: left;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.gerunco-home .why-card.is-active,
.gerunco-home .why-card:hover,
.gerunco-home .why-card:focus-visible {
  color: #1f2937;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(9, 33, 52, 0.12);
  transform: translateY(-8px);
}

.gerunco-home .why-card.is-active .why-icon,
.gerunco-home .why-card:hover .why-icon,
.gerunco-home .why-card:focus-visible .why-icon {
  color: #ffffff;
  background: #3e769b;
  transform: translateY(-2px);
}

.gerunco-home .why-card.is-active strong,
.gerunco-home .why-card:hover strong,
.gerunco-home .why-card:focus-visible strong {
  color: #111827;
}

.gerunco-home .why-card.is-active > span:last-child,
.gerunco-home .why-card:hover > span:last-child,
.gerunco-home .why-card:focus-visible > span:last-child {
  color: #4b5f70;
}

.gerunco-home .why-metric,
.gerunco-home .why-metric-label,
.gerunco-home .why-card-top {
  display: none;
}

@media (max-width: 980px) {
  .gerunco-home .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gerunco-home .why-choose-section .shell {
    width: var(--shell);
  }

  .gerunco-home .why-choose-section .section-center {
    text-align: left;
  }

  .gerunco-home .why-choose-section .section-lead {
    margin-left: 0;
    text-align: left;
  }

  .gerunco-home .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .gerunco-home .why-card,
  .gerunco-home .why-card:nth-child(n + 4),
  .gerunco-home .why-card:nth-child(3n + 1) {
    min-height: 260px;
  }
}

.gerunco-home .case-section {
  background: #ffffff;
}

.gerunco-home .quote-section {
  background: #f5f7f9;
}

.gerunco-home .quote-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.gerunco-home .engineer-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.gerunco-home .engineer-card::after {
  display: none;
}

.gerunco-home .engineer-card h2 {
  color: var(--home-ink);
  font-size: clamp(34px, 3vw, 46px);
}

.gerunco-home .engineer-card p,
.gerunco-home .engineer-card li,
.gerunco-home .engineer-backup span {
  color: var(--home-muted);
}

.gerunco-home .engineer-avatar {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(9, 33, 52, 0.08);
}

.gerunco-home .quote-layout .quote-form {
  border-radius: 14px;
  box-shadow: 0 22px 58px rgba(9, 33, 52, 0.10);
}

@media (max-width: 1180px) {
  .gerunco-home .product-fit-section .fit-card {
    flex-basis: calc((100% - 56px) / 3);
  }

  .gerunco-home .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gerunco-home .product-fit-section .shell,
  .gerunco-home .why-choose-section .shell {
    width: var(--shell);
  }

  .gerunco-home .product-fit-section .section-center,
  .gerunco-home .why-choose-section .section-center {
    text-align: left;
  }

  .gerunco-home .product-fit-section .fit-card {
    flex-basis: 100%;
    min-height: min(66vh, 500px);
  }

  .gerunco-home .factory-proof-layout,
  .gerunco-home .quote-layout {
    grid-template-columns: 1fr;
  }

  .gerunco-home .factory-proof-photo,
  .gerunco-home .factory-proof-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .gerunco-home .factory-proof-panel h3 {
    font-size: 34px;
  }

  .gerunco-home .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .gerunco-home .why-card,
  .gerunco-home .why-card:nth-child(n + 4),
  .gerunco-home .why-card:nth-child(3n + 1) {
    min-height: 0;
  }
}

/* Final Gerunco why-card stability override: keep default cards aligned, move only on direct interaction. */
.gerunco-home .why-card.is-active {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transform: none;
}

.gerunco-home .why-card:hover,
.gerunco-home .why-card:focus-visible {
  box-shadow: 0 18px 42px rgba(9, 33, 52, 0.12);
  transform: translateY(-8px);
}

.gerunco-home .why-card.is-active .why-icon {
  color: #3e769b;
  background: #edf6fa;
  transform: none;
}

.gerunco-home .why-card:hover .why-icon,
.gerunco-home .why-card:focus-visible .why-icon {
  color: #ffffff;
  background: #3e769b;
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .gerunco-home .why-choose-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
  }

  .gerunco-home .why-card,
  .gerunco-home .why-card:nth-child(n + 4),
  .gerunco-home .why-card:nth-child(3n + 1) {
    min-height: 360px;
    padding: 30px 22px;
  }
}

@media (max-width: 900px) {
  .gerunco-home .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gerunco-home .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* Visual reference lock: Gerunco-style product and why-choose sections. */
.gerunco-home .product-fit-section .product-fit-viewport,
.gerunco-home .product-fit-section:not(.product-route-section) .product-fit-viewport {
  overflow: visible;
  padding: 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gerunco-home .product-fit-section,
.gerunco-home .product-fit-section.section,
.gerunco-home .product-fit-section:not(.product-route-section),
.gerunco-home .product-fit-section:not(.product-route-section).section {
  overflow: visible;
  background: #ffffff;
}

.gerunco-home .product-fit-section .product-fit-viewport::before,
.gerunco-home .product-fit-section .product-fit-viewport::after {
  display: none;
}

.gerunco-home .product-fit-section .product-fit-rail {
  padding: 8px 2px 18px;
  margin: 0;
  background: transparent;
}

.gerunco-home .product-fit-section .fit-card {
  border: 1px solid rgba(219, 226, 232, 0.78);
  box-shadow: 0 6px 16px rgba(15, 45, 62, 0.04);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out);
}

.gerunco-home .product-fit-section .fit-card.is-active {
  border-color: rgba(219, 226, 232, 0.78);
  box-shadow: 0 6px 16px rgba(15, 45, 62, 0.04);
  transform: none;
}

.gerunco-home .product-fit-section .fit-card:hover,
.gerunco-home .product-fit-section .fit-card:focus-visible {
  border-color: rgba(62, 118, 155, 0.72);
  box-shadow: 0 14px 28px rgba(15, 45, 62, 0.08);
  transform: translateY(-2px);
}

/* Product route card consistency pass: keep selected cards stable, reserve room for carousel state. */
.gerunco-home .product-fit-section .product-fit-viewport,
.gerunco-home .product-fit-section:not(.product-route-section) .product-fit-viewport {
  padding: 0 0 64px;
}

.gerunco-home .product-fit-section .product-fit-rail {
  padding: 8px 2px 24px;
}

.gerunco-home .product-fit-section .fit-card,
.gerunco-home .product-fit-section .fit-card.is-active,
.gerunco-home .product-fit-section .fit-card + .fit-card {
  border: 1px solid rgba(219, 226, 232, 0.78);
  background: #f5f7fa;
  box-shadow: 0 6px 16px rgba(15, 45, 62, 0.04);
  transform: none;
}

.gerunco-home .product-fit-section .fit-card.is-active {
  border-color: rgba(219, 226, 232, 0.78);
  background: #f5f7fa;
  box-shadow: 0 6px 16px rgba(15, 45, 62, 0.04);
  transform: none;
}

.gerunco-home .product-fit-section .fit-card:hover,
.gerunco-home .product-fit-section .fit-card:focus-visible {
  border-color: rgba(62, 118, 155, 0.72);
  background: #f5f7fa;
  box-shadow: 0 14px 28px rgba(15, 45, 62, 0.08);
  transform: translateY(-2px);
}

.gerunco-home .product-fit-section .fit-card.reveal.is-visible:hover,
.gerunco-home .product-fit-section .fit-card.reveal.is-visible:focus-visible {
  border-color: rgba(62, 118, 155, 0.72);
  background: #f5f7fa;
  box-shadow: 0 14px 28px rgba(15, 45, 62, 0.08);
  transform: translateY(-2px);
}

.gerunco-home .product-fit-section .product-route-dots {
  bottom: 12px;
}

.gerunco-home .why-choose-section,
.gerunco-home .why-choose-section.section {
  scroll-margin-top: 96px;
  color: #1f2937;
  background: #f5f7fa;
}

.gerunco-home .why-choose-section .shell {
  display: block;
  width: min(1180px, calc(100vw - 64px));
  margin-inline: auto;
}

.gerunco-home .why-choose-section .section-center {
  display: block;
  max-width: 720px;
  margin: 0 auto clamp(40px, 4.4vw, 56px);
  text-align: center;
}

.gerunco-home .why-choose-section .section-center h2 {
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #1e2530;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.gerunco-home .why-choose-section .section-lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #5f6b7a;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.72;
  text-align: center;
}

.gerunco-home .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 2.6vw, 32px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gerunco-home .why-card,
.gerunco-home .why-card:nth-child(n + 4),
.gerunco-home .why-card:nth-child(3n + 1) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 88px auto 1fr;
  align-content: start;
  justify-items: center;
  gap: 20px;
  min-height: 392px;
  padding: clamp(34px, 3.2vw, 42px) clamp(24px, 2.4vw, 34px);
  overflow: visible;
  color: #1f2937;
  text-align: center;
  border: 1px solid rgba(224, 230, 236, 0.72);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 45, 62, 0.06);
  transform: none;
  transition: border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.gerunco-home .why-card::before,
.gerunco-home .why-card::after {
  display: none;
}

.gerunco-home .why-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  color: #165dff;
  border: 0;
  border-radius: 999px;
  background: #edf3ff;
  box-shadow: none;
  transform: none;
  transition: color 240ms var(--ease-out), background 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.gerunco-home .why-card strong {
  max-width: 15ch;
  margin: 0 auto;
  color: #1f2530;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 760;
  line-height: 1.34;
  text-align: center;
  text-wrap: balance;
}

.gerunco-home .why-card > span:last-child {
  max-width: 23ch;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0 auto;
  overflow: visible;
  color: #67727f;
  font-size: 15px;
  line-height: 1.66;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.gerunco-home .why-card.is-active {
  border-color: rgba(224, 230, 236, 0.72);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 45, 62, 0.06);
  transform: none;
}

.gerunco-home .why-card:hover,
.gerunco-home .why-card:focus-visible {
  border-color: rgba(22, 93, 255, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 45, 62, 0.10);
  transform: translateY(-4px);
}

.gerunco-home .why-card.is-active .why-icon {
  color: #165dff;
  background: #edf3ff;
  transform: none;
}

.gerunco-home .why-card:hover .why-icon,
.gerunco-home .why-card:focus-visible .why-icon {
  color: #ffffff;
  background: #165dff;
  transform: translateY(-2px);
}

.gerunco-home .why-card.is-active strong,
.gerunco-home .why-card:hover strong,
.gerunco-home .why-card:focus-visible strong {
  color: #1f2530;
}

.gerunco-home .why-card.is-active > span:last-child,
.gerunco-home .why-card:hover > span:last-child,
.gerunco-home .why-card:focus-visible > span:last-child {
  color: #5f6b7a;
}

/* Industrial proof icon pass: concrete service symbols instead of abstract blue badges. */
.gerunco-home .why-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #3e769b;
  border: 1px solid rgba(62, 118, 155, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #e9f4f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(15, 45, 62, 0.08);
  transform: none;
  transition: color 240ms var(--ease-out), background 240ms var(--ease-out), box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.gerunco-home .why-icon::before,
.gerunco-home .why-icon::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.gerunco-home .why-icon-quality::before {
  width: 30px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 7px;
  background:
    linear-gradient(currentColor, currentColor) 50% 9px / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 17px / 18px 2px no-repeat,
    transparent;
}

.gerunco-home .why-icon-quality::after {
  width: 17px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(2px, 8px) rotate(-45deg);
}

.gerunco-home .why-icon-custom::before {
  width: 42px;
  height: 30px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 0 14px 0 currentColor;
}

.gerunco-home .why-icon-custom::after {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    -16px 14px 0 -2px #ffffff,
    -16px 14px 0 0 currentColor,
    16px -14px 0 -2px #ffffff,
    16px -14px 0 0 currentColor;
}

.gerunco-home .why-icon-team::before {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background:
    linear-gradient(currentColor, currentColor) 6px 8px / 13px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 7px 15px / 11px 2px no-repeat,
    #ffffff;
  transform: translateY(-8px);
}

.gerunco-home .why-icon-team::after {
  width: 43px;
  height: 22px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 22px 22px;
  box-shadow:
    -17px -17px 0 -11px currentColor,
    17px -17px 0 -11px currentColor;
  transform: translateY(16px);
}

.gerunco-home .why-icon-logistics::before {
  width: 42px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 0 58%, currentColor 58% 64%, transparent 64%) 0 0 / 100% 100% no-repeat,
    #ffffff;
  transform: translate(-4px, -3px);
}

.gerunco-home .why-icon-logistics::after {
  width: 38px;
  height: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow:
    -10px 10px 0 -5px currentColor,
    14px 10px 0 -5px currentColor;
  transform: translate(7px, 10px) skewX(-18deg);
}

.gerunco-home .why-card.is-active .why-icon {
  color: #3e769b;
  background: linear-gradient(135deg, #ffffff 0%, #e9f4f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(15, 45, 62, 0.08);
  transform: none;
}

.gerunco-home .why-card:hover .why-icon,
.gerunco-home .why-card:focus-visible .why-icon {
  color: #315f7e;
  background: linear-gradient(135deg, #ffffff 0%, #dff0f6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(15, 45, 62, 0.12);
  transform: translateY(-2px);
}

/* Standard icon asset pass: use real SVG icon files, not CSS-drawn pictograms. */
.gerunco-home .why-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #3e769b;
  border: 1px solid rgba(62, 118, 155, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #e9f4f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(15, 45, 62, 0.08);
  transform: none;
  transition: background 240ms var(--ease-out), box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.gerunco-home .why-icon::before,
.gerunco-home .why-icon::after {
  content: none !important;
  display: none !important;
}

.gerunco-home .why-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  color: inherit;
  display: block;
  opacity: 1;
  filter: none;
  transform: none;
  transition: filter 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.gerunco-home .why-card.is-active .why-icon {
  background: linear-gradient(135deg, #ffffff 0%, #e9f4f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(15, 45, 62, 0.08);
  transform: none;
}

.gerunco-home .why-card:hover .why-icon,
.gerunco-home .why-card:focus-visible .why-icon {
  background: linear-gradient(135deg, #ffffff 0%, #dff0f6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(15, 45, 62, 0.12);
  transform: translateY(-2px);
}

.gerunco-home .why-card:hover .why-icon-img,
.gerunco-home .why-card:focus-visible .why-icon-img {
  transform: scale(1.04);
}

/* Product page card consistency pass: match homepage Products card interaction. */
.catalog-route-page .catalog-product-card,
.product-route-section .fit-card,
.related-products .product-card {
  border: 1px solid rgba(219, 226, 232, 0.78);
  background: #f5f7fa;
  box-shadow: 0 6px 16px rgba(15, 45, 62, 0.04);
  transform: none;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out);
}

.catalog-route-page .catalog-product-card:hover,
.catalog-route-page .catalog-product-card:focus-visible,
.product-route-section .fit-card:hover,
.product-route-section .fit-card:focus-visible,
.related-products .product-card:hover,
.related-products .product-card:focus-visible {
  border-color: rgba(62, 118, 155, 0.72);
  background: #f5f7fa;
  box-shadow: 0 14px 28px rgba(15, 45, 62, 0.08);
  transform: translateY(-2px);
}

.catalog-route-page .catalog-product-card:hover .catalog-product-image img,
.catalog-route-page .catalog-product-card:focus-visible .catalog-product-image img,
.related-products .product-card:hover img,
.related-products .product-card:focus-visible img,
.product-route-section .fit-card:hover img,
.product-route-section .fit-card:focus-visible img {
  transform: scale(1.02);
}

.product-route-section .fit-card::before,
.product-route-section .fit-card::after {
  display: none;
}

.product-route-section .fit-card img {
  background: transparent;
  filter: drop-shadow(0 16px 14px rgba(8, 30, 48, 0.11));
  transform: none;
}

.product-route-section .fit-card:hover strong,
.product-route-section .fit-card:focus-visible strong {
  color: #062f45;
  text-shadow: none;
}

.product-route-section .fit-card .fit-card-copy > span:not(.fit-index),
.product-route-section .fit-card em,
.product-route-section .fit-card:hover .fit-card-copy > span:not(.fit-index),
.product-route-section .fit-card:focus-visible .fit-card-copy > span:not(.fit-index),
.product-route-section .fit-card:hover em,
.product-route-section .fit-card:focus-visible em {
  max-height: none;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  transform: none;
}

.product-route-section .fit-card em {
  display: none;
}

@media (max-width: 1180px) {
  .gerunco-home .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gerunco-home .why-card,
  .gerunco-home .why-card:nth-child(n + 4),
  .gerunco-home .why-card:nth-child(3n + 1) {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .gerunco-home .product-fit-section .product-fit-viewport,
  .gerunco-home .product-fit-section:not(.product-route-section) .product-fit-viewport {
    overflow: hidden;
    padding-bottom: 48px;
  }

  .gerunco-home .product-fit-section .product-fit-rail {
    padding: 4px 0 16px;
  }

  .gerunco-home .why-choose-section .shell {
    width: var(--shell);
  }

  .gerunco-home .why-choose-section .section-center,
  .gerunco-home .why-choose-section .section-lead,
  .gerunco-home .why-choose-section .section-center h2 {
    text-align: center;
  }

  .gerunco-home .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gerunco-home .why-card,
  .gerunco-home .why-card:nth-child(n + 4),
  .gerunco-home .why-card:nth-child(3n + 1) {
    min-height: 0;
    padding: 30px 24px 34px;
  }
}
