@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0100-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2100-214F, U+2190-21FF, U+2200-22FF;
}

:root {
  --font-latin: "Inter";
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI";
  --font-zh: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  --font-ja: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", "Noto Sans SC", sans-serif;
  --font-body: var(--font-latin), var(--font-ui), var(--font-zh);
  --font-body-ja: var(--font-latin), var(--font-ui), var(--font-ja);
  --font-display: var(--font-latin), var(--font-ui), var(--font-zh);
  --font-display-ja: var(--font-latin), var(--font-ui), var(--font-ja);
  --font-number: var(--font-latin), var(--font-ui), var(--font-zh);
  --font-number-ja: var(--font-latin), var(--font-ui), var(--font-ja);
  --sw-ink: #172131;
  --sw-ink-2: #344255;
  --sw-muted: #667489;
  --sw-line: #dfe5ec;
  --sw-soft: #f4f7fa;
  --sw-white: #ffffff;
  --sw-steel: #0f2a3f;
  --sw-steel-2: #163b58;
  --sw-red: #c9212a;
  --sw-red-dark: #981822;
  --sw-logo-blue: #3098d8;
  --sw-cyan: #2e8da7;
  --sw-shadow: 0 18px 45px rgba(15, 42, 63, 0.12);
  --sw-radius: 8px;
  --sw-header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html.is-gsap-scrolling {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  color: var(--sw-ink);
  background: var(--sw-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
  overflow-x: clip;
}

html[lang="ja"] body {
  font-family: var(--font-body-ja);
}

body.nav-open {
  overflow: visible;
}

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

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

p {
  color: var(--sw-muted);
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--sw-ink);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

.font-en,
.brand-text strong,
.metric-number,
.hero-title,
.section-title,
.page-title {
  font-family: var(--font-display);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--sw-header);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 42, 63, 0.08);
  backdrop-filter: blur(12px);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--sw-white);
  background: linear-gradient(135deg, var(--sw-steel), var(--sw-red));
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

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

.brand-text span {
  color: var(--sw-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--sw-ink-2);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--sw-red);
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--sw-soft);
  border: 1px solid var(--sw-line);
  border-radius: 6px;
}

.lang-option {
  min-width: 34px;
  padding: 6px 8px;
  border: 0;
  border-radius: 4px;
  color: var(--sw-muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.lang-option.active {
  color: var(--sw-white);
  background: var(--sw-steel);
}

.lang-option[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--sw-line);
  color: var(--sw-ink);
  background: var(--sw-white);
  border-radius: 6px;
  font-size: 22px;
}

.mobile-panel {
  position: fixed;
  inset: var(--sw-header) 0 auto 0;
  z-index: 45;
  display: none;
  background: var(--sw-white);
  border-bottom: 1px solid var(--sw-line);
  box-shadow: var(--sw-shadow);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  padding: 18px 24px 24px;
}

.mobile-panel a {
  padding: 13px 0;
  color: var(--sw-ink);
  border-bottom: 1px solid var(--sw-line);
  font-weight: 700;
}

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--sw-line);
}

.btn-sw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary-sw {
  color: var(--sw-white);
  background: var(--sw-red);
}

.btn-primary-sw:hover {
  color: var(--sw-white);
  background: var(--sw-red-dark);
}

.btn-outline-sw {
  color: var(--sw-white);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn-outline-dark-sw {
  color: var(--sw-steel);
  border-color: var(--sw-steel);
}

.section-space {
  padding: 96px 0;
}

.section-space-sm {
  padding: 72px 0;
}

.section-soft {
  background: var(--sw-soft);
}

.section-dark {
  color: var(--sw-white);
  background: var(--sw-steel);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--sw-white);
}

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

.section-head p {
  max-width: 640px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-kicker {
  display: inline-flex;
  color: var(--sw-red);
  font-weight: 800;
  margin-bottom: 10px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--sw-header));
  overflow: hidden;
  background: var(--sw-steel);
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  min-height: calc(100vh - var(--sw-header));
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--sw-header));
  padding: 90px 0 118px;
  color: var(--sw-white);
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 38, 0.88), rgba(8, 24, 38, 0.56) 45%, rgba(8, 24, 38, 0.16));
}

.hero-slide.forging {
  background-position: center 45%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-subtitle {
  display: inline-flex;
  color: #cfe4ee;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-title {
  color: var(--sw-white);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  letter-spacing: 0;
  max-width: 780px;
}

.hero-slogan {
  color: var(--sw-white);
  margin: 24px 0 6px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: rgba(12, 35, 53, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item h3 {
  color: var(--sw-white);
  font-size: 21px;
  margin-bottom: 6px;
}

.proof-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin: 0;
}

.swiper-pagination-bullet {
  background: var(--sw-white);
  opacity: 0.55;
}

.swiper-pagination-bullet-active {
  background: var(--sw-red);
  opacity: 1;
}

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

.metric {
  padding: 34px 26px;
  border-right: 1px solid var(--sw-line);
  background: var(--sw-white);
}

.metric:last-child {
  border-right: 0;
}

.metric-number {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--sw-red);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.metric-title {
  margin-top: 10px;
  color: var(--sw-ink);
  font-weight: 800;
}

.metric-en {
  color: var(--sw-muted);
  font-size: 13px;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

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

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

.tabs-sw .nav-pills {
  gap: 10px;
  margin: 24px 0 28px;
}

.tabs-sw .nav-link {
  color: var(--sw-ink);
  background: var(--sw-soft);
  border-radius: 6px;
  font-weight: 800;
}

.tabs-sw .nav-link.active {
  background: var(--sw-red);
  color: var(--sw-white);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--sw-ink-2);
  font-weight: 600;
}

.check-list i {
  color: var(--sw-red);
  margin-top: 5px;
}

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

.info-card,
.product-card,
.partner-card,
.faq-card {
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-radius);
  background: var(--sw-white);
}

.info-card,
.product-card,
.partner-card {
  padding: 28px;
}

.info-card h3,
.product-card h3,
.partner-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.product-card {
  display: grid;
  gap: 14px;
}

.product-card img,
.factory-card img,
.process-step img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  color: var(--sw-steel);
  background: #edf3f6;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  padding: 18px;
  background: var(--sw-white);
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-radius);
}

.step-number {
  color: var(--sw-red);
  font-weight: 800;
  font-size: 13px;
}

.process-step h3 {
  font-size: 20px;
  margin: 8px 0;
}

.trust-band {
  position: relative;
  overflow: hidden;
  color: var(--sw-white);
  background: var(--sw-steel);
}

.trust-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 42, 63, 0.94), rgba(15, 42, 63, 0.72)), var(--trust-bg);
  background-size: cover;
  background-position: center;
}

.trust-band .container {
  position: relative;
  z-index: 2;
}

.trust-quote {
  max-width: 940px;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  color: var(--sw-white);
  font-weight: 800;
  line-height: 1.25;
}

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

.brand-chip {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--sw-ink);
  background: var(--sw-white);
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-radius);
  text-align: center;
  font-weight: 800;
}

.brand-chip span {
  display: block;
  color: var(--sw-muted);
  font-size: 12px;
  font-weight: 600;
}

.cta {
  color: var(--sw-white);
  background: linear-gradient(135deg, var(--sw-red), var(--sw-steel));
}

.cta p,
.cta h2 {
  color: var(--sw-white);
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--sw-white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 38, 0.86), rgba(8, 24, 38, 0.38));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-title {
  color: var(--sw-white);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.breadcrumb-sw {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  font-weight: 700;
}

.factory-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-radius);
  background: var(--sw-white);
}

.factory-card + .factory-card {
  margin-top: 24px;
}

.data-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.data-list div {
  padding: 12px;
  background: var(--sw-soft);
  border-radius: 6px;
}

.data-list strong {
  display: block;
  color: var(--sw-ink);
}

.chain-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.chain-node {
  padding: 24px;
  color: var(--sw-white);
  background: var(--sw-steel);
  border-radius: var(--sw-radius);
}

.chain-node span {
  display: block;
  color: #9ed4e6;
  font-weight: 800;
  margin-bottom: 8px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 22px;
  background: var(--sw-white);
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-radius);
}

.timeline-year {
  color: var(--sw-red);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}

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

.cert-card {
  padding: 28px;
  background: var(--sw-steel);
  color: var(--sw-white);
  border-radius: var(--sw-radius);
}

.cert-card h3,
.cert-card p {
  color: var(--sw-white);
}

.product-nav {
  position: sticky;
  top: var(--sw-header);
  z-index: 20;
  background: var(--sw-white);
  border-bottom: 1px solid var(--sw-line);
}

.product-nav-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
}

.product-nav a {
  flex: 0 0 auto;
  padding: 9px 14px;
  background: var(--sw-soft);
  border-radius: 6px;
  color: var(--sw-ink);
  font-weight: 800;
  font-size: 14px;
}

.product-section {
  scroll-margin-top: calc(var(--sw-header) + 80px);
}

.partner-region {
  margin-bottom: 46px;
}

.partner-region h2 {
  margin-bottom: 20px;
}

.contact-panel {
  padding: 34px;
  background: var(--sw-white);
  border: 1px solid var(--sw-line);
  border-radius: var(--sw-radius);
}

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

.contact-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sw-line);
}

.contact-list strong {
  display: block;
  color: var(--sw-ink);
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: var(--sw-line);
  border-radius: 6px;
}

textarea.form-control {
  min-height: 140px;
}

.form-status {
  display: block;
  max-height: 0;
  padding: 0 14px;
  color: #0d4a24;
  background: #e5f7ec;
  border: 1px solid #bfe9cf;
  border-radius: 6px;
  font-weight: 700;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.22s ease, transform 0.28s ease;
}

.form-status.show {
  max-height: 160px;
  padding: 12px 14px;
  opacity: 1;
  transform: translateY(0);
}

.accordion-button {
  font-weight: 800;
  color: var(--sw-ink);
}

.accordion-button:not(.collapsed) {
  color: var(--sw-red);
  background: #fff4f4;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0a1d2c;
}

.site-footer h3,
.site-footer h4,
.site-footer a {
  color: var(--sw-white);
}

.footer-top {
  padding: 72px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 34px;
}

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

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 14px;
}

.reveal-up {
  opacity: 1;
}

@media (max-width: 1199px) {
  .desktop-nav {
    gap: 16px;
    font-size: 14px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Shimizu SR featured catalog - local V2 extension */
.featured-series-rail {
  padding: clamp(54px, 7vw, 88px) 0;
  background: #f8fafc;
}

.featured-series-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06), 0 8px 30px rgba(48, 152, 216, 0.08);
}

.featured-series-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #3098d8, #383868);
}

.featured-series-copy {
  min-width: 0;
}

.featured-series-copy h2 {
  margin: 10px 0 14px;
  color: #383868;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.featured-series-copy p {
  max-width: 760px;
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.82;
}

.featured-series-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.featured-series-meta div {
  min-width: 0;
  padding: 16px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

.featured-series-meta strong {
  display: block;
  color: #383868;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
  font-weight: 950;
}

.featured-series-meta span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
}

body.shimizu-v2-catalog {
  --shimizu-navy: #383868;
  --shimizu-blue: #3098d8;
  --shimizu-ink: #0f172a;
  --shimizu-muted: #475569;
  --shimizu-soft: #f8fafc;
  --shimizu-line: #e2e8f0;
  --shimizu-shadow: 0 16px 42px rgba(15, 23, 42, 0.06), 0 8px 28px rgba(48, 152, 216, 0.08);
  color: var(--shimizu-ink);
  background: #ffffff;
}

body.shimizu-v2-catalog .shimizu-hero {
  position: relative;
  padding: clamp(44px, 6vw, 72px) 0 clamp(46px, 7vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(48, 152, 216, 0.1), rgba(255, 255, 255, 0) 38%),
    #f8fafc;
  border-bottom: 1px solid var(--shimizu-line);
}

body.shimizu-v2-catalog .shimizu-hero::after {
  content: "SR SERIES";
  position: absolute;
  right: -0.08em;
  bottom: -0.24em;
  color: rgba(56, 56, 104, 0.045);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.8;
  font-weight: 950;
  pointer-events: none;
}

body.shimizu-v2-catalog .breadcrumb-sw {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.shimizu-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
}

.shimizu-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--shimizu-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shimizu-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--shimizu-blue), var(--shimizu-navy));
}

.shimizu-hero-copy h1 {
  max-width: 840px;
  margin: 16px 0 22px;
  color: var(--shimizu-navy);
  font-size: clamp(2.55rem, 7vw, 6.45rem);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

.shimizu-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--shimizu-muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.9;
  font-weight: 650;
}

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

body.shimizu-v2-catalog .shimizu-hero-actions .btn-outline-sw {
  color: var(--shimizu-navy);
  border-color: var(--shimizu-navy);
}

body.shimizu-v2-catalog .shimizu-hero-actions .btn-outline-sw:hover {
  color: #ffffff;
  background: var(--shimizu-navy);
}

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

.shimizu-hero-panel div {
  padding: clamp(18px, 2.6vw, 26px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--shimizu-line);
  border-radius: 8px;
  box-shadow: var(--shimizu-shadow);
}

.shimizu-hero-panel strong {
  display: block;
  color: var(--shimizu-navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  font-weight: 950;
}

.shimizu-hero-panel span {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 900;
}

.shimizu-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(28px, 4vw, 42px);
}

.shimizu-tags span {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--shimizu-navy);
  background: #ffffff;
  border: 1px solid var(--shimizu-line);
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
}

.shimizu-feature-note {
  padding: clamp(28px, 4vw, 42px) 0;
  background: #ffffff;
}

.shimizu-note-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: clamp(18px, 3vw, 26px);
  background: #f8fafc;
  border: 1px solid var(--shimizu-line);
  border-left: 4px solid var(--shimizu-blue);
  border-radius: 8px;
}

.shimizu-note-card i {
  color: var(--shimizu-blue);
  font-size: 1.45rem;
  line-height: 1;
}

.shimizu-note-card p {
  margin: 0;
  color: var(--shimizu-muted);
  line-height: 1.8;
}

.shimizu-note-card strong {
  color: var(--shimizu-navy);
}

.shimizu-catalog-section {
  padding: clamp(66px, 8vw, 104px) 0;
  background: #f8fafc;
}

.shimizu-section-head {
  align-items: end;
  margin-bottom: 28px;
}

.shimizu-filter-panel {
  position: sticky;
  top: calc(var(--chrome-header-h) + 10px);
  z-index: 30;
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  padding: clamp(16px, 2.2vw, 24px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--shimizu-line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.shimizu-search {
  position: relative;
  display: block;
}

.shimizu-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  color: var(--shimizu-blue);
  transform: translateY(-50%);
  pointer-events: none;
}

.shimizu-search input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px 12px 46px;
  color: var(--shimizu-ink);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: 0;
  font-size: 0.96rem;
  font-weight: 750;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shimizu-search input:focus {
  border-color: var(--shimizu-blue);
  box-shadow: 0 0 0 3px rgba(48, 152, 216, 0.13);
}

.shimizu-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shimizu-filter-row button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--shimizu-navy);
  background: #ffffff;
  border: 1px solid var(--shimizu-line);
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.shimizu-filter-row button span {
  color: #64748b;
  font-size: 0.76rem;
}

.shimizu-filter-row button:hover,
.shimizu-filter-row button.is-active {
  color: #ffffff;
  background: var(--shimizu-blue);
  border-color: var(--shimizu-blue);
  transform: translateY(-1px);
}

.shimizu-filter-row button:hover span,
.shimizu-filter-row button.is-active span {
  color: rgba(255, 255, 255, 0.78);
}

.shimizu-result-meta {
  color: var(--shimizu-muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.shimizu-empty {
  margin: 0 0 26px;
  padding: 18px 20px;
  color: var(--shimizu-muted);
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  font-weight: 800;
}

.shimizu-catalog-list {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.shimizu-category-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--shimizu-line);
}

.shimizu-category-order {
  color: var(--shimizu-blue);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.shimizu-category-head h3 {
  margin: 0;
  color: var(--shimizu-navy);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  line-height: 1.1;
  font-weight: 950;
}

.shimizu-category-head small {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 900;
}

.shimizu-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shimizu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--shimizu-line);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
}

.shimizu-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--shimizu-blue), var(--shimizu-navy));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.shimizu-card:hover {
  border-color: rgba(48, 152, 216, 0.38);
  box-shadow: var(--shimizu-shadow);
  transform: translateY(-4px);
}

.shimizu-card:hover::after {
  transform: scaleX(1);
}

.shimizu-card-media {
  position: relative;
  height: 168px;
  margin: 0;
  overflow: hidden;
  background: #eef6fb;
}

.shimizu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.01);
}

.shimizu-card.has-product-crop .shimizu-card-media {
  background: #ffffff;
}

.shimizu-card.has-product-crop .shimizu-card-media img {
  object-fit: contain;
  padding: 12px;
  filter: none;
  transform: none;
}

.shimizu-card-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px 8px;
  color: var(--shimizu-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 950;
}

.shimizu-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.shimizu-card-model {
  width: fit-content;
  margin-bottom: 10px;
  padding-bottom: 5px;
  color: var(--shimizu-blue);
  border-bottom: 2px solid rgba(48, 152, 216, 0.28);
  font-size: 1rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.shimizu-card h3 {
  min-height: 2.76em;
  margin: 0 0 6px;
  color: var(--shimizu-navy);
  font-size: 1.03rem;
  line-height: 1.38;
  font-weight: 950;
}

.shimizu-card-en,
.shimizu-card-ja {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 750;
}

.shimizu-spec-list {
  display: grid;
  gap: 0;
  margin: 0 0 14px;
  padding: 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.shimizu-spec-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f1f5f9;
}

.shimizu-spec-row:last-child {
  border-bottom: 0;
}

.shimizu-spec-row dt {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
}

.shimizu-spec-row dd {
  margin: 0;
  color: var(--shimizu-ink);
  font-size: 0.82rem;
  font-weight: 900;
  word-break: break-word;
}

.shimizu-materials {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 6px;
}

.shimizu-material-title {
  margin-bottom: 2px;
  color: var(--shimizu-blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shimizu-material-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 8px;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.45;
}

.shimizu-material-row b {
  color: var(--shimizu-navy);
  font-weight: 950;
}

.shimizu-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  color: #ffffff;
  background: #3098d8;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.shimizu-card-cta:hover {
  color: #ffffff;
  background: #247fbd;
  box-shadow: 0 12px 26px rgba(48, 152, 216, 0.2);
  transform: translateY(-1px);
}

.shimizu-cta {
  background: #0b1120;
}

.shimizu-cta .section-title {
  color: #ffffff;
}

.shimizu-cta p {
  color: #cbd5e1;
}

/* Shimizu professional gallery upgrade */
html.has-shimizu-lightbox,
html.has-shimizu-lightbox body {
  overflow: hidden;
}

body.shimizu-v2-catalog {
  --shimizu-navy: #0f172a;
  --shimizu-blue: #2563eb;
  --shimizu-blue-soft: #eff6ff;
  --shimizu-ink: #0f172a;
  --shimizu-muted: #64748b;
  --shimizu-line: #dbeafe;
  --shimizu-shadow: 0 26px 60px rgba(37, 99, 235, 0.1), 0 18px 42px rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

body.shimizu-v2-catalog .shimizu-hero,
.shimizu-catalog-section {
  background: #f8fafc;
}

body.shimizu-v2-catalog .shimizu-filter-panel {
  position: static;
  z-index: auto;
}

.shimizu-filter-panel {
  border-color: rgba(191, 219, 254, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.shimizu-filter-row button {
  border-radius: 6px;
}

.shimizu-filter-row button:hover,
.shimizu-filter-row button.is-active {
  background: #2563eb;
  border-color: #2563eb;
}

.shimizu-catalog-list {
  gap: clamp(38px, 5vw, 64px);
}

.shimizu-category-head {
  border-bottom-color: rgba(191, 219, 254, 0.85);
}

.shimizu-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 22px);
}

.shimizu-card {
  position: relative;
  height: 430px;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, 0.62), rgba(14, 165, 233, 0.16) 42%, rgba(15, 23, 42, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  isolation: isolate;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.65s ease;
}

.shimizu-card::after {
  display: none;
}

.shimizu-card:hover,
.shimizu-card:focus-within {
  border-color: transparent;
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.1), 0 18px 40px rgba(15, 23, 42, 0.09);
  transform: translateY(-6px);
}

.shimizu-card.is-visible {
  animation: shimizuGalleryFade 0.28s ease both;
}

@keyframes shimizuGalleryFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shimizu-card-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.06), rgba(15, 23, 42, 0.12)),
    #ffffff;
  border: 0;
  border-radius: 0;
  appearance: none;
}

.shimizu-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, 0.06) 66%, rgba(15, 23, 42, 0.28) 100%);
  pointer-events: none;
}

.shimizu-card-media img,
.shimizu-card.has-product-crop .shimizu-card-media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.shimizu-card.has-product-crop .shimizu-card-media img {
  padding: 16px 18px 140px;
  object-fit: contain;
  object-position: center top;
  background: #ffffff;
  filter: none;
}

.shimizu-card:hover .shimizu-card-media img,
.shimizu-card:focus-within .shimizu-card-media img {
  filter: saturate(1.05) contrast(1.07);
  transform: scale(1.05);
}

.shimizu-card.has-product-crop:hover .shimizu-card-media img,
.shimizu-card.has-product-crop:focus-within .shimizu-card-media img {
  filter: none;
  transform: scale(1.035);
}

.shimizu-card-badge,
.shimizu-zoom-cue {
  position: absolute;
  z-index: 2;
  color: #2563eb;
  background: rgba(239, 246, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 6px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
}

.shimizu-card-badge {
  left: 12px;
  right: auto;
  top: 12px;
  padding: 6px 8px;
}

.shimizu-zoom-cue {
  left: auto;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  opacity: 0.92;
  transform: translateY(0);
  transition: color 0.35s ease, background 0.35s ease, opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.shimizu-zoom-cue i {
  font-size: 0.88rem;
  line-height: 1;
}

.shimizu-zoom-cue .zoom-hover {
  display: none;
}

.shimizu-card:hover .shimizu-zoom-cue,
.shimizu-card:focus-within .shimizu-zoom-cue {
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
  opacity: 1;
  transform: translateY(2px);
}

.shimizu-card:hover .shimizu-zoom-cue .zoom-default,
.shimizu-card:focus-within .shimizu-zoom-cue .zoom-default {
  display: none;
}

.shimizu-card:hover .shimizu-zoom-cue .zoom-hover,
.shimizu-card:focus-within .shimizu-zoom-cue .zoom-hover {
  display: inline;
}

.shimizu-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  gap: 12px;
  min-height: 30%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(219, 234, 254, 0.95);
  box-shadow: 0 -18px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(calc(100% - 142px));
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), background 0.65s ease;
}

.shimizu-card:hover .shimizu-card-body,
.shimizu-card:focus-within .shimizu-card-body {
  background: #ffffff;
  transform: translateY(0);
}

.shimizu-card-summary {
  min-height: 106px;
}

.shimizu-card-model {
  margin-bottom: 9px;
  color: #2563eb;
  border-bottom-color: rgba(37, 99, 235, 0.24);
}

.shimizu-card h3 {
  min-height: 0;
  margin: 0;
  color: #0f172a;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 900;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shimizu-card-details {
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.65s ease 0.12s, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.shimizu-card:hover .shimizu-card-details,
.shimizu-card:focus-within .shimizu-card-details {
  opacity: 1;
  transform: translateY(0);
}

.shimizu-card-en,
.shimizu-card-ja {
  margin: 0;
}

.shimizu-spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.shimizu-spec-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 8px;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid rgba(191, 219, 254, 0.82);
  border-radius: 6px;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 850;
}

.shimizu-card-facts {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 750;
}

.shimizu-card-cta {
  min-height: 38px;
  background: #0f172a;
  border-radius: 6px;
}

.shimizu-card-cta:hover {
  background: #2563eb;
}

.shimizu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(2, 6, 23, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.shimizu-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.shimizu-lightbox-frame {
  display: grid;
  gap: 14px;
  width: min(1040px, 94vw);
  margin: 0;
}

.shimizu-lightbox-frame img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(191, 219, 254, 0.28);
  border-radius: 8px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

.shimizu-lightbox-frame figcaption {
  color: #e2e8f0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 850;
}

.shimizu-lightbox-close {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  z-index: 1;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.22);
  border-radius: 8px;
  font-size: 1.4rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.shimizu-lightbox-close:hover {
  color: #ffffff;
  background: #2563eb;
}

@media (max-width: 1199px) {
  .featured-series-card {
    grid-template-columns: 1fr;
  }

  .featured-series-meta {
    max-width: 680px;
  }

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

@media (max-width: 991px) {
  .shimizu-hero-grid {
    grid-template-columns: 1fr;
  }

  .shimizu-hero-panel {
    max-width: 620px;
  }

  .shimizu-filter-panel {
    position: static;
  }

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

@media (max-width: 767px) {
  .featured-series-rail {
    padding: 42px 0;
  }

  .featured-series-card {
    padding: 24px 20px;
  }

  .featured-series-meta {
    grid-template-columns: 1fr;
  }

  body.shimizu-v2-catalog .shimizu-hero {
    padding-top: 44px;
  }

  .shimizu-hero-copy h1 {
    font-size: clamp(2.45rem, 16vw, 4.2rem);
  }

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

  .shimizu-filter-row {
    flex-wrap: nowrap;
    margin-inline: -4px;
    padding: 0 4px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shimizu-filter-row button {
    flex: 0 0 auto;
  }

  .shimizu-category-head {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .shimizu-card-grid {
    grid-template-columns: 1fr;
  }

  .shimizu-card {
    height: 390px;
  }

  .shimizu-card-media {
    height: 100%;
  }

  .shimizu-card-body {
    transform: translateY(calc(100% - 116px));
  }

  .shimizu-lightbox {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shimizu-card,
  .shimizu-card::after,
  .shimizu-filter-row button,
  .shimizu-card-cta,
  .shimizu-card-media img,
  .shimizu-card-body,
  .shimizu-card-details,
  .shimizu-zoom-cue,
  .shimizu-lightbox {
    transition: none;
    animation: none;
  }
}

@media (max-width: 991px) {
  :root {
    --sw-header: 74px;
  }

  .desktop-nav,
  .header-actions .btn-sw,
  .site-header .language-switcher {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

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

  .section-head {
    display: block;
  }

  .hero,
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide,
  .hero-slide {
    min-height: 760px;
  }

  .hero-slide {
    padding-bottom: 245px;
  }

  .proof-grid,
  .metric-grid,
  .cert-grid,
  .chain-map {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .metric {
    border-bottom-color: var(--sw-line);
  }

  .image-pair,
  .factory-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .hero,
  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide,
  .hero-slide {
    min-height: 820px;
  }

  .hero-slide {
    padding-top: 58px;
    padding-bottom: 315px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 13vw, 3.3rem);
  }

  .hero-actions,
  .cta .d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-item {
    padding: 16px;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-panel,
  .info-card,
  .product-card,
  .partner-card,
  .factory-card {
    padding: 22px;
  }
}

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

/* Products page: dense industrial horizontal gallery */
.products-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--sw-header) + 84px) 0 84px;
  color: #f5f2ea;
  background:
    radial-gradient(circle at 18% 22%, rgba(48, 152, 216, 0.18), transparent 28%),
    linear-gradient(145deg, #07121d, #1d2d3e 58%, #050b12);
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  mix-blend-mode: screen;
}

.products-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 18, 0.94), rgba(5, 11, 18, 0.58) 48%, rgba(5, 11, 18, 0.88)),
    linear-gradient(180deg, rgba(5, 11, 18, 0.16), #07121d);
}

.products-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.18) saturate(0.92);
}

.products-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.products-hero .page-title {
  max-width: 980px;
  margin: 28px 0 20px;
  color: #f5f2ea;
  font-size: clamp(3.2rem, 7.2vw, 6rem);
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 24px 78px rgba(0, 0, 0, 0.46);
}

.products-hero .hero-copy {
  max-width: 720px;
  color: rgba(245, 242, 234, 0.78);
}

.products-hero .breadcrumb-sw,
.products-hero .breadcrumb-sw span {
  color: rgba(245, 242, 234, 0.72);
}

.products-hero .breadcrumb-sw a {
  color: #f5f2ea;
}

.products-hero-proof {
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 90px rgba(0, 0, 0, 0.28);
}

.products-hero-proof span,
.product-index {
  display: block;
  color: #3098d8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.products-hero-proof strong {
  display: block;
  color: rgba(245, 242, 234, 0.9);
  line-height: 1.8;
}

.product-nav-dark {
  background: #07121d;
  border-bottom-color: rgba(192, 192, 192, 0.12);
}

.product-nav-dark .product-nav-inner {
  scrollbar-color: rgba(48, 152, 216, 0.5) transparent;
}

.product-nav-dark a {
  color: rgba(245, 242, 234, 0.74);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(192, 192, 192, 0.1);
}

.product-nav-dark a:hover,
.product-nav-dark a.is-active {
  color: #f5f2ea;
  background: rgba(48, 152, 216, 0.18);
  border-color: rgba(48, 152, 216, 0.46);
}

.product-spec-strip,
.product-horizontal,
.product-after {
  background: #07121d;
  color: #f5f2ea;
}

.product-spec-strip {
  padding: 34px 0;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
}

.spec-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(192, 192, 192, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.spec-strip-grid div {
  padding: 22px 24px;
  border-right: 1px solid rgba(192, 192, 192, 0.1);
}

.spec-strip-grid div:last-child {
  border-right: 0;
}

.spec-strip-grid span,
.capability-plate span,
.procurement-rail span {
  display: block;
  color: rgba(192, 192, 192, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.spec-strip-grid strong {
  display: block;
  color: #f5f2ea;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1;
}

.spec-strip-grid small {
  display: block;
  color: rgba(245, 242, 234, 0.58);
  margin-top: 9px;
}

.product-horizontal {
  position: relative;
  overflow: hidden;
}

.product-horizontal-sticky {
  min-height: 100vh;
  padding-top: calc(var(--sw-header) + 34px);
  overflow: hidden;
}

.product-horizontal-head {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  color: rgba(245, 242, 234, 0.72);
  font-weight: 900;
}

.product-horizontal-head span {
  color: #3098d8;
}

.product-horizontal-progress {
  height: 2px;
  background: rgba(192, 192, 192, 0.13);
  overflow: hidden;
}

.product-horizontal-progress i {
  display: block;
  width: var(--product-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, #3098d8, #f5f2ea);
  box-shadow: 0 0 18px rgba(48, 152, 216, 0.32);
}

.product-horizontal-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.product-panel {
  position: relative;
  width: 100vw;
  min-height: calc(100vh - var(--sw-header) - 72px);
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(28px, 4vw, 58px) max(6vw, calc((100vw - 1200px) / 2));
  overflow: hidden;
  scroll-margin-top: calc(var(--sw-header) + 80px);
}

.product-panel::before {
  content: attr(data-depth);
  position: absolute;
  right: 4vw;
  top: 3vh;
  color: rgba(192, 192, 192, 0.035);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.product-panel-copy {
  position: relative;
  z-index: 1;
}

.product-panel h2 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #f5f2ea;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.86;
  font-weight: 950;
  text-wrap: balance;
  text-shadow: 0 20px 64px rgba(0, 0, 0, 0.42);
}

.product-panel p {
  max-width: 620px;
  color: rgba(245, 242, 234, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.92;
}

.product-param-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 22px;
}

.product-param-grid span,
.metal-pill-list li {
  border: 1px solid rgba(192, 192, 192, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-param-grid span {
  min-height: 84px;
  padding: 16px;
  color: #f5f2ea;
  font-weight: 900;
  line-height: 1.35;
}

.product-param-grid b {
  display: block;
  color: rgba(192, 192, 192, 0.58);
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.metal-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.metal-pill-list li {
  padding: 9px 13px;
  color: rgba(245, 242, 234, 0.82);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 900;
}

.metal-product-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: clamp(420px, 62vh, 650px);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(192, 192, 192, 0.14);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.42), 0 18px 70px rgba(48, 152, 216, 0.11);
  transform: translateZ(0);
}

.metal-product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.34) 48%, transparent 64%);
  transform: translateX(-140%) skewX(-10deg);
  transition: transform 0.82s ease;
  pointer-events: none;
}

.metal-product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, transparent, rgba(5, 11, 18, 0.52));
  pointer-events: none;
}

.metal-product-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.96);
  transition: transform 0.82s ease, filter 0.82s ease;
}

.metal-product-visual:hover::before {
  transform: translateX(140%) skewX(-10deg);
}

.metal-product-visual:hover img {
  transform: scale(1.055) translateZ(0);
  filter: contrast(1.18) saturate(1.04);
}

body.products-v2-precision .product-panel {
  grid-template-columns: minmax(340px, 0.76fr) minmax(500px, 1.12fr);
  gap: clamp(30px, 4.5vw, 72px);
}

body.products-v2-precision .metal-product-visual {
  min-height: clamp(470px, 68vh, 720px);
}

.product-model-spec {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    #07121d;
  background-size: 72px 72px;
  color: #f5f2ea;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
  overflow: hidden;
}

.product-model-spec .section-title {
  color: #f5f2ea;
}

.product-model-spec .section-head p {
  color: rgba(245, 242, 234, 0.68);
}

.product-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(192, 192, 192, 0.13);
  border: 1px solid rgba(192, 192, 192, 0.13);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.model-spec-card {
  min-height: 430px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #0b1926;
}

.model-spec-card > span,
.model-spec-meta b,
.model-spec-stack b {
  display: block;
  color: #3098d8;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.model-spec-card h3 {
  color: #f5f2ea;
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.model-spec-card p,
.model-spec-meta span,
.model-spec-stack span {
  color: rgba(245, 242, 234, 0.68);
  line-height: 1.78;
}

.model-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.model-chip-list li {
  padding: 8px 11px;
  color: rgba(245, 242, 234, 0.84);
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(192, 192, 192, 0.13);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 900;
}

.model-chip-list-dense li {
  padding-inline: 10px;
  font-size: 0.76rem;
}

.model-spec-meta,
.model-spec-stack div {
  padding-top: 16px;
  border-top: 1px solid rgba(192, 192, 192, 0.13);
}

.model-spec-stack {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.dark-capability,
.procurement-dark {
  padding: clamp(82px, 10vw, 132px) 0;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
}

.dark-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
}

.dark-capability h2,
.procurement-dark .section-title {
  color: #f5f2ea;
}

.dark-capability p,
.procurement-dark .section-head p,
.procurement-rail p {
  color: rgba(245, 242, 234, 0.68);
}

.capability-plate {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(192, 192, 192, 0.13);
  border-radius: 6px;
}

.capability-plate strong {
  color: #f5f2ea;
  text-align: right;
}

.procurement-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(192, 192, 192, 0.12);
  border: 1px solid rgba(192, 192, 192, 0.12);
}

.procurement-rail article {
  min-height: 220px;
  padding: 28px;
  background: #0b1926;
}

.procurement-rail h3 {
  color: #f5f2ea;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .products-hero {
    min-height: auto;
    padding: calc(var(--sw-header) + 54px) 0 64px;
  }

  .products-hero-grid,
  .dark-capability-grid,
  .procurement-rail,
  .product-model-grid,
  .spec-strip-grid {
    grid-template-columns: 1fr;
  }

  .spec-strip-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
  }

  .product-horizontal {
    overflow: visible;
  }

  .product-horizontal-sticky {
    min-height: 0;
    padding-top: 64px;
    overflow: visible;
  }

  .product-horizontal-head {
    width: min(100% - 32px, 720px);
  }

  .product-horizontal-track {
    width: auto;
    display: grid;
    gap: 18px;
    padding: 0 16px 64px;
  }

  .product-panel {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 28px 0;
    gap: 24px;
  }

  .product-panel h2 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

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

  .metal-product-visual {
    min-height: 320px;
  }
}

/* Industrial visual system upgrade */
:root {
  --sw-ink: #101926;
  --sw-ink-2: #29384a;
  --sw-muted: #5d6b7c;
  --sw-line: #d5dde7;
  --sw-soft: #eef3f7;
  --sw-steel: #071d2f;
  --sw-steel-2: #123650;
  --sw-red: #c91f2b;
  --sw-red-dark: #991721;
  --sw-cyan: #4fb1c4;
  --sw-shadow: 0 24px 70px rgba(7, 29, 47, 0.16);
  --sw-hard-shadow: 0 28px 90px rgba(7, 29, 47, 0.28);
}

body {
  background:
    linear-gradient(90deg, rgba(7, 29, 47, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 54%, #ffffff 100%);
  background-size: 72px 72px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(201, 31, 43, 0.045), transparent 34%),
    linear-gradient(270deg, rgba(79, 177, 196, 0.04), transparent 42%);
}

.site-header {
  background: rgba(255, 255, 255, 0.88);
  transition: height 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(7, 29, 47, 0.1);
}

.brand-mark {
  position: relative;
  overflow: hidden;
  background: var(--sw-steel);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.22) 43% 50%, transparent 51%);
  transform: translateX(-100%);
  transition: transform 0.42s ease;
}

.brand:hover .brand-mark::after {
  transform: translateX(100%);
}

.desktop-nav a {
  transition: color 0.24s ease;
}

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

.btn-sw {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  letter-spacing: 0;
  box-shadow: none;
}

.btn-sw i {
  transition: transform 0.25s ease;
}

.btn-sw::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-105%) skewX(-18deg);
  transition: transform 0.38s ease;
}

.btn-sw:hover::before {
  transform: translateX(105%) skewX(-18deg);
}

.btn-sw:hover i {
  transform: translateX(4px);
}

.hero {
  min-height: calc(100vh - var(--sw-header));
  background: #061826;
}

.hero::before {
  content: "三旺金属";
  position: absolute;
  right: -3vw;
  bottom: 138px;
  z-index: 3;
  max-width: 100%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 13vw, 12rem);
  font-weight: 800;
  line-height: 0.85;
  pointer-events: none;
  white-space: nowrap;
}

.hero-slide {
  background-attachment: fixed;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(4, 17, 28, 0.94), rgba(7, 29, 47, 0.7) 42%, rgba(7, 29, 47, 0.22) 72%),
    linear-gradient(180deg, transparent 62%, rgba(4, 17, 28, 0.94) 100%);
}

.hero-slide::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  padding-left: clamp(0px, 2vw, 28px);
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 88px;
  background: var(--sw-red);
}

.hero-subtitle,
.section-kicker {
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
}

.hero-subtitle::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-title {
  text-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.hero-copy {
  text-wrap: pretty;
}

.hero .swiper-pagination {
  bottom: 142px;
  left: auto;
  right: max(24px, calc((100vw - 1320px) / 2));
  width: auto;
}

.hero-nav {
  position: absolute;
  right: max(24px, calc((100vw - 1320px) / 2));
  bottom: 190px;
  z-index: 6;
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--sw-white);
  background: rgba(7, 29, 47, 0.4);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.hero-arrow:hover {
  background: var(--sw-red);
  transform: translateY(-2px);
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 123px;
  z-index: 5;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-progress span {
  display: block;
  width: var(--hero-progress, 50%);
  height: 100%;
  background: var(--sw-red);
  transition: width 0.5s ease;
}

.hero-proof {
  background: rgba(6, 24, 38, 0.96);
}

.proof-grid {
  position: relative;
}

.proof-grid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 33.333%;
  height: 3px;
  background: var(--sw-red);
}

.proof-item {
  position: relative;
  min-height: 126px;
  transition: background-color 0.24s ease;
}

.proof-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.section-space,
.section-space-sm {
  position: relative;
  overflow: clip;
}

.section-space::before {
  content: attr(data-stroke);
  position: absolute;
  right: 4vw;
  top: 20px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(7, 29, 47, 0.08);
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.section-space > .container,
.section-space-sm > .container {
  position: relative;
  z-index: 1;
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 243, 247, 0.94)),
    var(--sw-soft);
}

.section-dark,
.trust-band,
.cta {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--sw-steel);
  background-size: 88px 88px, 88px 88px, auto;
}

.section-title {
  letter-spacing: 0;
}

.section-head {
  border-bottom: 1px solid rgba(7, 29, 47, 0.12);
  padding-bottom: 26px;
}

.section-head p {
  color: var(--sw-ink-2);
}

.image-pair {
  position: relative;
}

.image-pair::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 5%;
  bottom: -18px;
  height: 42%;
  border: 1px solid rgba(201, 31, 43, 0.42);
  z-index: -1;
}

.image-frame {
  position: relative;
  border-radius: 4px;
  box-shadow: var(--sw-hard-shadow);
  transform: translateZ(0);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.image-frame img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.image-frame:hover img,
.product-card:hover img,
.factory-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.metric-grid {
  border: 0;
  box-shadow: var(--sw-shadow);
}

.metric {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  border-right-color: rgba(7, 29, 47, 0.1);
}

.metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: var(--sw-red);
  transition: width 0.35s ease;
}

.metric:hover::before {
  width: 100%;
}

.metric-number {
  color: var(--sw-steel);
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: clamp(2rem, 3vw, 3.05rem);
}

.metric-number::first-letter {
  color: var(--sw-red);
}

.metric-number .odometer {
  white-space: nowrap;
}

.metric-number .metric-value {
  display: inline-block;
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.metric-number > span:not(.odometer) {
  flex: 0 0 auto;
  font-size: 0.72em;
}

.card-grid {
  align-items: stretch;
}

.info-card,
.product-card,
.partner-card,
.faq-card,
.process-step,
.contact-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(7, 29, 47, 0.12);
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(7, 29, 47, 0.06);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.info-card::before,
.product-card::before,
.partner-card::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--sw-red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.info-card:hover,
.product-card:hover,
.partner-card:hover,
.process-step:hover,
.contact-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 31, 43, 0.3);
  box-shadow: var(--sw-shadow);
}

.info-card:hover::before,
.product-card:hover::before,
.partner-card:hover::before,
.contact-panel:hover::before {
  transform: scaleX(1);
}

.product-card {
  padding: 0;
  gap: 0;
}

.product-card img {
  border-radius: 0;
}

.product-card h3,
.product-card p,
.product-card .tag-list {
  margin-left: 26px;
  margin-right: 26px;
}

.product-card h3 {
  margin-top: 24px;
}

.product-card .tag-list {
  margin-bottom: 26px;
}

.tag-list li {
  background: #e5edf3;
  border: 1px solid rgba(7, 29, 47, 0.08);
}

.process-grid {
  position: relative;
  counter-reset: process;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--sw-red) var(--process-progress, 0%), rgba(7, 29, 47, 0.16) 0);
}

.process-step {
  padding: 26px 22px 24px;
  min-height: 172px;
  background: rgba(255, 255, 255, 0.94);
}

.step-number {
  display: inline-grid;
  place-items: center;
  min-width: 68px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--sw-white);
  background: var(--sw-steel);
  border-radius: 3px;
}

.trust-band {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.trust-band::before {
  transform: scale(1.02);
  background: linear-gradient(90deg, rgba(7, 29, 47, 0.98), rgba(7, 29, 47, 0.75) 54%, rgba(7, 29, 47, 0.36)), var(--trust-bg);
  background-size: cover;
  background-position: center;
}

.trust-band::after {
  content: "稳定履约";
  position: absolute;
  right: -1vw;
  bottom: 24px;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  pointer-events: none;
}

.brand-wall {
  display: flex;
  gap: 14px;
  max-width: 100%;
  overflow: clip;
  contain: paint;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.brand-chip {
  min-width: 210px;
  min-height: 112px;
  color: var(--sw-white);
  background: var(--sw-steel);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(7, 29, 47, 0.14);
  animation: sw-marquee 26s linear infinite;
}

.brand-chip span {
  color: rgba(255, 255, 255, 0.68);
}

@keyframes sw-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-112%);
  }
}

.brand-wall:hover .brand-chip {
  animation-play-state: paused;
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(201, 31, 43, 0.96), rgba(7, 29, 47, 0.96)),
    var(--sw-steel);
}

.cta::after {
  content: "发送询盘";
  position: absolute;
  right: -2vw;
  bottom: -18px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  pointer-events: none;
}

.page-hero {
  min-height: 500px;
  padding: 90px 0;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 17, 28, 0.92), rgba(7, 29, 47, 0.54)),
    linear-gradient(180deg, transparent 58%, rgba(4, 17, 28, 0.82));
}

.page-hero .container::after {
  content: "三旺金属";
  position: absolute;
  right: 18px;
  bottom: -84px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 800;
  white-space: nowrap;
}

.factory-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sw-shadow);
}

.factory-card:nth-of-type(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.factory-card:nth-of-type(even) img {
  order: 2;
}

.data-list div {
  border: 1px solid rgba(7, 29, 47, 0.08);
}

.chain-map {
  position: relative;
}

.chain-node {
  position: relative;
  min-height: 216px;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 44%),
    var(--sw-steel);
  box-shadow: var(--sw-shadow);
}

.chain-node h3 {
  color: var(--sw-white);
}

.chain-node p {
  color: rgba(255, 255, 255, 0.72);
}

.chain-node::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: rotate(45deg);
}

.timeline {
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 132px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sw-red) var(--timeline-progress, 0%), rgba(7, 29, 47, 0.14) 0);
}

.timeline-item {
  position: relative;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(7, 29, 47, 0.07);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 125px;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--sw-red);
  border: 4px solid var(--sw-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 31, 43, 0.16);
}

.cert-grid {
  align-items: stretch;
}

.cert-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(201, 31, 43, 0.16), transparent 44%),
    var(--sw-steel);
  box-shadow: var(--sw-shadow);
}

.cert-card::after {
  content: "ISO";
  position: absolute;
  right: 16px;
  bottom: 4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: 66px;
  font-weight: 800;
}

.product-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.product-nav a {
  border: 1px solid transparent;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.product-nav a:hover,
.product-nav a.is-active {
  color: var(--sw-white);
  background: var(--sw-steel);
  border-color: var(--sw-steel);
}

.product-nav.product-nav-dark {
  background: rgba(7, 18, 29, 0.94);
  border-bottom-color: rgba(192, 192, 192, 0.12);
}

.product-nav.product-nav-dark a {
  color: rgba(245, 242, 234, 0.74);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(192, 192, 192, 0.1);
}

.product-nav.product-nav-dark a:hover,
.product-nav.product-nav-dark a.is-active {
  color: #f5f2ea;
  background: rgba(48, 152, 216, 0.18);
  border-color: rgba(48, 152, 216, 0.46);
}

.partner-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 38px;
}

.partner-filter button,
.faq-index a {
  border: 1px solid var(--sw-line);
  color: var(--sw-ink);
  background: var(--sw-white);
  border-radius: 4px;
  font-weight: 800;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.partner-filter button {
  padding: 10px 16px;
}

.partner-filter button.is-active,
.partner-filter button:hover,
.faq-index a:hover {
  color: var(--sw-white);
  background: var(--sw-red);
  border-color: var(--sw-red);
}

.partner-region {
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.partner-region.is-hidden {
  display: none;
}

.partner-region h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.partner-region h2::after {
  content: "";
  width: 86px;
  height: 2px;
  background: var(--sw-red);
}

.partners-page {
  color: #f1f0eb;
  background:
    radial-gradient(circle at 82% 0%, rgba(46, 141, 167, 0.16), transparent 34vw),
    linear-gradient(180deg, #07121d 0%, #101820 44%, #07121d 100%);
}

.partners-page .section-head {
  border-bottom-color: rgba(192, 192, 192, 0.18);
}

.partners-page .section-head p,
.partners-page p {
  color: rgba(241, 240, 235, 0.72);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.partners-page .section-title,
.partners-page h2,
.partners-page h3 {
  color: #f5f2ea;
}

.partners-hero {
  min-height: 560px;
}

.partners-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 8, 13, 0.96), rgba(7, 18, 29, 0.7) 48%, rgba(7, 18, 29, 0.28)),
    linear-gradient(180deg, transparent 52%, #07121d 96%);
}

.partners-hero .page-title {
  max-width: 900px;
}

.partners-hero .page-title span {
  display: block;
}

.partners-hero .hero-copy {
  max-width: 720px;
  color: rgba(245, 242, 234, 0.78);
}

.partners-orbit {
  position: relative;
  overflow: clip;
  padding: 34px 0 42px;
  margin-top: -1px;
  color: #f5f2ea;
  background:
    linear-gradient(90deg, rgba(48, 152, 216, 0.1), transparent 28%, rgba(46, 141, 167, 0.12)),
    #07121d;
  border-block: 1px solid rgba(192, 192, 192, 0.16);
}

.partners-orbit::before,
.partners-orbit::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: min(16vw, 190px);
  pointer-events: none;
  background: linear-gradient(90deg, #07121d, rgba(7, 18, 29, 0));
}

.partners-orbit::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, #07121d, rgba(7, 18, 29, 0));
}

.partners-orbit-head {
  width: min(1320px, calc(100% - 48px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 18px;
  color: rgba(241, 240, 235, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.partners-orbit-head span,
.partners-orbit-head strong {
  letter-spacing: 0;
}

.partners-orbit-head strong {
  color: #3098d8;
}

.partners-marquee {
  overflow: visible;
  cursor: default;
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.partners-marquee-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding-right: clamp(14px, 2vw, 26px);
}

.partners-marquee-group > span {
  min-width: clamp(188px, 20vw, 330px);
  min-height: clamp(82px, 8vw, 126px);
  display: grid;
  place-items: center;
  padding: 18px 28px;
  color: rgba(245, 242, 234, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 44%, rgba(48, 152, 216, 0.11)),
    #121820;
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.24);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.partner-logo-card {
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, transform 0.24s ease;
}

.partner-logo-card img {
  width: min(76%, 210px);
  max-height: clamp(34px, 4.8vw, 58px);
  object-fit: contain;
  padding: 10px 16px;
  background: rgba(246, 247, 244, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.partner-logo-card-wide img {
  width: min(84%, 230px);
  max-height: clamp(28px, 4vw, 46px);
}

.partner-logo-card-tall img {
  width: min(62%, 162px);
  max-height: clamp(58px, 6.4vw, 82px);
}

.partner-logo-card-sm img {
  width: min(70%, 170px);
  max-height: clamp(24px, 3.4vw, 38px);
}

.partner-logo-card small {
  color: rgba(245, 242, 234, 0.66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.partner-logo-card strong {
  color: rgba(245, 242, 234, 0.94);
  font-family: "Noto Sans SC", system-ui, sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
}

.partner-logo-card.is-fallback {
  color: rgba(245, 242, 234, 0.92);
}

.partner-logo-card:hover {
  filter: brightness(1.12) saturate(1.08);
  border-color: rgba(48, 152, 216, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 28px 68px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.partners-network {
  padding-top: 108px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(48, 152, 216, 0.14), transparent 32vw),
    #101820;
  background-size: 88px 88px, 88px 88px, auto, auto;
}

.partners-network::before {
  -webkit-text-stroke-color: rgba(192, 192, 192, 0.08);
}

.partners-network .partner-filter {
  margin: -10px 0 52px;
}

.partners-network .partner-filter button {
  color: rgba(245, 242, 234, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(192, 192, 192, 0.18);
}

.partners-network .partner-filter button.is-active,
.partners-network .partner-filter button:hover {
  color: #07121d;
  background: #3098d8;
  border-color: #3098d8;
}

.partner-region + .partner-region {
  margin-top: 64px;
}

.partner-region-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1fr);
  align-items: start;
  gap: 26px;
  margin-bottom: 20px;
}

.partner-region-heading h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.partner-region-heading h2::after {
  background: #3098d8;
}

.partner-region-heading p {
  max-width: 580px;
  margin: 6px 0 0;
  color: rgba(241, 240, 235, 0.64);
}

.partners-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(192, 192, 192, 0.16);
  background: rgba(192, 192, 192, 0.16);
  perspective: 1100px;
}

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

.partners-network .partner-card {
  min-height: 360px;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  color: #f5f2ea;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), transparent 38%),
    linear-gradient(180deg, #161b22, #0d1218);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform-style: preserve-3d;
  will-change: transform;
}

.partners-network .partner-card::before {
  height: auto;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(48, 152, 216, 0.28), transparent 44%),
    linear-gradient(180deg, rgba(46, 141, 167, 0.18), transparent 55%);
  opacity: 0;
  transform: none;
  transition: opacity 0.28s ease;
}

.partners-network .partner-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 64px;
  height: 64px;
  border-right: 1px solid rgba(48, 152, 216, 0.42);
  border-bottom: 1px solid rgba(48, 152, 216, 0.42);
  pointer-events: none;
}

.partners-network .partner-card:hover {
  border-color: transparent;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.26);
}

.partners-network .partner-card:hover::before {
  opacity: 1;
}

.partner-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  padding: clamp(24px, 2.6vw, 36px);
  will-change: transform;
}

.partner-market {
  display: block;
  margin-bottom: clamp(44px, 5vw, 72px);
  color: #2e8da7;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.partner-card h3 {
  margin: 0 0 18px;
  color: #f5f2ea;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  line-height: 1.25;
}

.partner-card h3 span {
  display: block;
  margin-bottom: 6px;
  color: #3098d8;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.96;
}

.partner-card p {
  color: rgba(245, 242, 234, 0.68);
}

.partners-network .tag-list {
  margin-top: 14px;
}

.partners-network .tag-list li {
  color: rgba(245, 242, 234, 0.84);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(192, 192, 192, 0.16);
}

.partners-crisis {
  min-height: min(760px, calc(100vh - var(--sw-header)));
  background: #030507;
}

.partners-crisis::before {
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.97), rgba(3, 5, 7, 0.78) 56%, rgba(3, 5, 7, 0.5)),
    var(--trust-bg);
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(0.82);
}

.partners-crisis::after {
  content: "契约已兑现";
  right: -4vw;
  bottom: 38px;
  -webkit-text-stroke-color: rgba(46, 141, 167, 0.22);
}

.crisis-frame {
  position: relative;
  max-width: 1040px;
  padding: clamp(32px, 5vw, 68px);
  background:
    linear-gradient(145deg, rgba(46, 141, 167, 0.11), transparent 42%),
    rgba(0, 0, 0, 0.54);
  border: 1px solid rgba(46, 141, 167, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 40px 120px rgba(0, 0, 0, 0.42);
}

.crisis-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(48, 152, 216, 0.32);
  pointer-events: none;
}

.crisis-year {
  display: block;
  color: #ff8a3d;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 10vw, 10.5rem);
  font-weight: 800;
  line-height: 0.78;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.partners-crisis .trust-quote {
  max-width: 980px;
  color: #d8fbff;
  font-size: clamp(2rem, 4vw, 4.8rem);
  text-shadow: 0 0 34px rgba(46, 141, 167, 0.24);
}

.partners-crisis .trust-quote.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 0.08em;
  background: #ff8a3d;
  transform: translateY(0.08em);
  animation: type-caret 0.76s steps(1) infinite;
}

@keyframes type-caret {
  50% {
    opacity: 0;
  }
}

.partners-crisis p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(245, 242, 234, 0.78);
  font-size: 18px;
}

@media (max-width: 1199px) {
  .partners-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .partners-hero {
    min-height: 500px;
  }

  .partners-orbit {
    padding: 28px 0 34px;
  }

  .partners-network {
    padding-top: 78px;
  }

  .partner-region-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partners-network .partner-card {
    min-height: 320px;
  }

  .partners-crisis {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .partners-hero .page-title {
    font-size: clamp(2.4rem, 13vw, 3.45rem);
  }

  .partners-orbit-head {
    width: min(100% - 32px, 1320px);
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .partners-marquee-group span {
    min-width: 178px;
    min-height: 78px;
    padding: 16px 18px;
  }

  .partners-network .partner-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-network .partner-filter button {
    min-height: 42px;
    padding: 9px 10px;
  }

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

  .partners-network .partner-card {
    min-height: 300px;
  }

  .partner-card h3 {
    margin-top: 0;
  }

  .crisis-frame {
    padding: 28px 22px;
  }

  .crisis-frame::before {
    inset: 10px;
  }

  .partners-crisis p {
    font-size: 16px;
  }
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(238, 243, 247, 0.72), rgba(255, 255, 255, 0.96)),
    var(--sw-white);
}

.form-control,
.form-select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sw-red);
  box-shadow: 0 0 0 4px rgba(201, 31, 43, 0.12);
}

/* Contact command center */
.contact-page {
  --contact-night: #121212;
  --contact-midnight: #0a0f1a;
  --contact-panel: rgba(255, 255, 255, 0.072);
  --contact-panel-strong: rgba(255, 255, 255, 0.11);
  --contact-line: rgba(192, 192, 192, 0.18);
  --contact-line-strong: rgba(48, 152, 216, 0.44);
  --contact-ink: #f5f2ea;
  --contact-muted: rgba(218, 224, 226, 0.72);
  --contact-cyan: #32d7d2;
  --contact-logo-blue: #3098d8;
  color: var(--contact-ink);
  background:
    radial-gradient(circle at 72% 30%, rgba(25, 88, 112, 0.22), transparent 34%),
    radial-gradient(circle at 22% 18%, rgba(48, 152, 216, 0.12), transparent 26%),
    linear-gradient(135deg, var(--contact-night), var(--contact-midnight) 68%, #05080d);
}

.contact-command {
  position: relative;
  min-height: 100vh;
  padding: clamp(126px, 12vw, 168px) 0 clamp(72px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}

.contact-command::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 60% 42%, black, transparent 76%);
}

.contact-command::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 10, 0.72));
  pointer-events: none;
}

.contact-command-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 0.78fr);
  grid-template-areas:
    "copy form";
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.contact-command-copy {
  grid-area: copy;
}

.contact-form-deck {
  grid-area: form;
}

.contact-breadcrumb {
  margin-bottom: 26px;
  color: rgba(245, 242, 234, 0.7);
}

.contact-breadcrumb a {
  color: rgba(245, 242, 234, 0.78);
}

.contact-command h1 {
  max-width: 840px;
  margin: 0;
  color: var(--contact-ink);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-command-lead {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--contact-muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.9;
}

.contact-priority {
  width: fit-content;
  margin-top: 28px;
  padding: 13px 16px;
  color: #041212;
  background: linear-gradient(135deg, var(--contact-cyan), #c7e7f6);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(50, 215, 210, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.46);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0;
}

.contact-promise-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.11);
}

.contact-promise-rail div {
  min-height: 92px;
  padding: 16px 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(7, 13, 20, 0.76);
}

.contact-promise-rail span,
.company-coordinate-head span,
.company-coordinate-grid span {
  display: block;
  color: var(--contact-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.contact-promise-rail strong {
  display: block;
  color: var(--contact-ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.contact-data-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 152px;
  padding: 22px;
  color: var(--contact-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.028)),
    var(--contact-panel);
  border: 1px solid var(--contact-line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 68px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  overflow: hidden;
}

.contact-data-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 24%, transparent 74%, rgba(48, 152, 216, 0.12));
  opacity: 0.62;
}

.contact-data-card span,
.contact-data-card small {
  position: relative;
  z-index: 1;
}

.contact-data-card span {
  color: var(--contact-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-data-card strong {
  position: relative;
  z-index: 1;
  color: var(--contact-ink);
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.24;
  word-break: break-word;
}

.contact-data-card[href^="mailto"] strong {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  overflow-wrap: anywhere;
}

.contact-data-card small {
  color: var(--contact-muted);
  line-height: 1.6;
}

.company-coordinate-panel {
  max-width: 760px;
  margin-top: 14px;
  padding: 22px;
  color: var(--contact-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.024)),
    rgba(8, 13, 19, 0.74);
  border: 1px solid var(--contact-line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 22px 62px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.company-coordinate-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.company-coordinate-head h2 {
  margin: 0;
  color: var(--contact-ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.company-coordinate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-coordinate-grid div {
  min-height: 96px;
  padding: 16px;
  background: rgba(5, 9, 14, 0.58);
}

.company-coordinate-grid strong {
  display: block;
  color: var(--contact-ink);
  font-size: 0.98rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.coordinate-wide {
  grid-column: 1 / -1;
}

.contact-form-deck {
  position: relative;
  padding: clamp(24px, 3.4vw, 42px);
  color: var(--contact-ink);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035) 58%, rgba(50, 215, 210, 0.06)),
    rgba(8, 13, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.contact-form-deck::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(48, 152, 216, 0.18);
  border-radius: 4px;
}

.contact-form-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.contact-form-head h2 {
  margin: 0;
  color: var(--contact-ink);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.contact-form-head p {
  max-width: 30ch;
  margin: 0;
  color: var(--contact-muted);
  font-size: 14px;
  line-height: 1.7;
}

.command-form {
  position: relative;
  z-index: 1;
}

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

.field-unit {
  position: relative;
  min-height: 62px;
  padding-top: 12px;
}

.field-unit input,
.field-unit textarea {
  width: 100%;
  min-height: 50px;
  padding: 18px 0 9px;
  color: var(--contact-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.28);
  border-radius: 0;
  outline: 0;
  font-size: 16px;
  line-height: 1.45;
}

.field-unit input[type="file"] {
  color: rgba(245, 242, 234, 0.72);
  font-size: 13px;
}

.field-unit input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 7px 10px;
  color: var(--contact-ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}

.field-unit textarea {
  min-height: 126px;
  resize: vertical;
}

.field-unit label {
  position: absolute;
  left: 0;
  top: 27px;
  color: rgba(218, 224, 226, 0.78);
  pointer-events: none;
  transform-origin: left center;
  transition: color 0.24s ease, transform 0.24s ease, top 0.24s ease;
}

.field-unit .field-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--contact-cyan), var(--contact-logo-blue), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s ease;
}

.field-unit:focus-within label,
.field-unit.is-filled label,
.field-file label {
  top: 0;
  color: var(--contact-cyan);
  transform: scale(0.78);
}

.field-unit:focus-within .field-line {
  transform: scaleX(1);
}

.field-wide {
  grid-column: 1 / -1;
}

.command-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  margin-top: 24px;
  padding: 0 26px;
  color: #081014;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 38%),
    linear-gradient(135deg, #d6edf8, var(--contact-logo-blue) 48%, #2d4f86);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), inset 0 -12px 22px rgba(56, 56, 104, 0.18), 0 18px 50px rgba(48, 152, 216, 0.22);
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
  will-change: transform;
}

.command-submit::before {
  content: "";
  position: absolute;
  inset: -50% auto -50% -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: rotate(18deg);
  transition: transform 0.64s ease;
}

.command-submit:hover::before {
  transform: translateX(470%) rotate(18deg);
}

.command-submit span,
.command-submit i {
  position: relative;
  z-index: 1;
}

.contact-page .form-status {
  margin-top: 18px;
  color: #c8fff9;
  background: rgba(50, 215, 210, 0.1);
  border-color: rgba(50, 215, 210, 0.32);
}

.contact-proof-strip {
  padding: 34px 0 78px;
  background: #05080d;
}

.contact-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.contact-proof-grid div {
  min-height: 136px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #0b1119;
}

.contact-proof-grid strong {
  display: block;
  color: var(--contact-ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.contact-proof-grid span {
  display: block;
  margin-top: 14px;
  color: var(--contact-muted);
}

@media (max-width: 1199px) {
  .contact-command-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form";
    align-items: start;
  }

  .contact-form-deck {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .contact-command {
    padding-top: 116px;
  }

  .contact-command h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .contact-data-grid,
  .contact-promise-rail,
  .command-form-grid,
  .company-coordinate-grid,
  .contact-proof-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-head {
    display: grid;
  }

}

@media (prefers-reduced-motion: reduce) {
  .command-submit,
  .field-unit .field-line {
    transition: none;
  }
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
}

.faq-index {
  position: sticky;
  top: calc(var(--sw-header) + 28px);
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--sw-steel);
  border-radius: 4px;
  box-shadow: var(--sw-shadow);
}

.faq-index h3 {
  color: var(--sw-white);
  font-size: 20px;
  margin-bottom: 6px;
}

.faq-index a {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.accordion-item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(7, 29, 47, 0.12);
  border-radius: 4px !important;
  box-shadow: 0 10px 26px rgba(7, 29, 47, 0.05);
}

.accordion-button {
  min-height: 66px;
  font-size: 17px;
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: none;
  content: "\ea13";
  font-family: remixicon;
  display: grid;
  place-items: center;
  color: var(--sw-red);
}

.accordion-body {
  color: var(--sw-ink-2);
  background: #fbfdff;
}

.faq-page {
  --faq-night: #080d12;
  --faq-plate: #111820;
  --faq-plate-2: #171d24;
  --faq-line: rgba(192, 192, 192, 0.16);
  --faq-line-strong: rgba(48, 152, 216, 0.46);
  --faq-ink: #f4f1e8;
  --faq-muted: #a0a0a0;
  --faq-cyan: #27d6d0;
  --faq-orange: #d68a2f;
  color: var(--faq-ink);
  background:
    radial-gradient(circle at 78% 10%, rgba(39, 214, 208, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(192, 192, 192, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(192, 192, 192, 0.028) 1px, transparent 1px),
    var(--faq-night);
  background-size: auto, 88px 88px, 88px 88px, auto;
}

.faq-hero.page-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 13, 18, 0.92) 0%, rgba(8, 13, 18, 0.72) 48%, rgba(8, 13, 18, 0.28) 100%),
    radial-gradient(circle at 72% 28%, rgba(39, 214, 208, 0.12), transparent 32%);
}

.faq-manual {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8, 13, 18, 0.98), rgba(13, 20, 28, 0.98)),
    var(--faq-night);
}

.faq-command {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(26px, 4vw, 42px);
  border-bottom: 1px solid var(--faq-line);
}

.faq-command .section-title {
  max-width: 840px;
  color: var(--faq-ink);
  font-size: clamp(2.6rem, 5.8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.faq-command p {
  max-width: 62ch;
  margin-top: 18px;
  color: rgba(192, 192, 192, 0.74);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.9;
}

.faq-page .faq-index {
  position: relative;
  top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.faq-page .faq-index a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: rgba(244, 241, 232, 0.78);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.faq-page .faq-index a:hover,
.faq-page .faq-index a.is-active {
  color: #071013;
  background: var(--faq-cyan);
  border-color: rgba(39, 214, 208, 0.86);
  transform: translateY(-1px);
}

.faq-ledger {
  display: grid;
  gap: clamp(40px, 6vw, 78px);
}

.faq-cluster {
  scroll-margin-top: calc(var(--sw-header) + 34px);
}

.faq-cluster > h2 {
  margin-bottom: 16px;
  color: rgba(244, 241, 232, 0.88);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
}

.faq-entry {
  position: relative;
  isolation: isolate;
  min-height: 132px;
  overflow: hidden;
  border-top: 1px solid var(--faq-line);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016) 58%, rgba(48, 152, 216, 0.035)),
    rgba(17, 24, 32, 0.54);
  transition: border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-entry:last-child {
  border-bottom: 1px solid var(--faq-line);
}

.faq-entry::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(39, 214, 208, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.faq-entry.is-open,
.faq-entry:hover {
  border-color: var(--faq-line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 70px rgba(0, 0, 0, 0.2);
}

.faq-entry.is-open::after {
  opacity: 1;
}

.faq-question-no {
  position: absolute;
  left: clamp(10px, 2vw, 26px);
  top: 50%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192, 192, 192, 0.2);
  text-stroke: 1px rgba(192, 192, 192, 0.2);
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 12vw, 12.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
  transform: translateY(-50%);
  user-select: none;
  white-space: nowrap;
}

.faq-question {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 3.5vw, 42px) clamp(18px, 4vw, 54px) clamp(22px, 3.2vw, 38px) clamp(96px, 16vw, 240px);
  color: var(--faq-ink);
  background: transparent;
  border: 0;
  text-align: left;
}

.faq-question span {
  max-width: 24ch;
  color: #fffaf0;
  font-size: clamp(1.55rem, 3.2vw, 3.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.faq-question i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--faq-cyan);
  border: 1px solid rgba(39, 214, 208, 0.42);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.faq-entry.is-open .faq-question i {
  color: #071013;
  background: var(--faq-cyan);
  transform: rotate(180deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.faq-answer-inner {
  position: relative;
  max-width: 78ch;
  margin-left: clamp(96px, 16vw, 240px);
  margin-right: clamp(18px, 4vw, 54px);
  padding: 0 0 clamp(28px, 4vw, 46px) clamp(24px, 3vw, 38px);
}

.faq-answer-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: clamp(28px, 4vw, 46px);
  width: 2px;
  background: linear-gradient(180deg, var(--faq-cyan), var(--faq-orange));
  box-shadow: 0 0 18px rgba(39, 214, 208, 0.34);
}

.faq-answer-inner p {
  margin: 0;
  color: var(--faq-muted);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

@media (max-width: 991px) {
  .faq-command {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .faq-page .faq-index {
    align-self: start;
  }

  .faq-question {
    padding-left: clamp(78px, 18vw, 132px);
  }

  .faq-answer-inner {
    margin-left: clamp(78px, 18vw, 132px);
  }

  .faq-question-no {
    font-size: clamp(4.4rem, 18vw, 8rem);
  }
}

@media (max-width: 640px) {
  .faq-command {
    margin-bottom: 34px;
  }

  .faq-page .faq-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .faq-page .faq-index a {
    min-height: 40px;
    padding: 9px 8px;
    font-size: 12px;
  }

  .faq-entry {
    min-height: 112px;
  }

  .faq-question {
    min-height: 112px;
    grid-template-columns: minmax(0, 1fr) 38px;
    padding: 24px 14px 22px 68px;
  }

  .faq-question span {
    max-width: 100%;
    font-size: clamp(1.32rem, 7.6vw, 2.2rem);
  }

  .faq-question i {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .faq-question-no {
    left: 8px;
    font-size: clamp(3.8rem, 22vw, 5.9rem);
  }

  .faq-answer-inner {
    max-width: none;
    margin-left: 68px;
    margin-right: 14px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-page .faq-index a,
  .faq-entry,
  .faq-entry::after,
  .faq-question i {
    transition: none;
  }
}

.mobile-panel {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.mobile-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero::before {
    bottom: 298px;
    font-size: clamp(3.4rem, 16vw, 7rem);
  }

  .hero .swiper-pagination,
  .hero-nav {
    display: none;
  }

  .hero-progress {
    bottom: 300px;
  }

  .hero-content::before,
  .hero-subtitle::before,
  .section-kicker::before {
    display: none;
  }

  .hero-content {
    padding-left: 0;
  }

  .process-grid::before {
    display: none;
  }

  .factory-card:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .factory-card:nth-of-type(even) img {
    order: 0;
  }

  .timeline::before,
  .timeline-item::before {
    display: none;
  }

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

  .faq-index {
    position: static;
  }
}

@media (max-width: 640px) {
  .section-head {
    padding-bottom: 20px;
  }

  .hero::before {
    bottom: 350px;
  }

  .hero-progress {
    bottom: 315px;
  }

  .brand-chip {
    min-width: 185px;
  }

  .metric {
    min-height: 138px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero .container::after {
    bottom: -58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-chip {
    animation: none;
  }

  .hero-slide {
    background-attachment: scroll;
  }
}

/* Hand-forged layered homepage system.
   Tailwind mapping notes:
   .stack-glass ~= backdrop-blur-xl bg-white/10 border border-white/20 shadow-2xl
   .metal-button ~= bg-[#3098d8] text-[#F5F2EA] shadow-lg
   .push-card ~= transform-gpu will-change-transform rounded-[6px]
*/
:root {
  --artisan-iron: #2b2b2b;
  --artisan-sea: #1d2d3e;
  --artisan-sea-deep: #07121d;
  --artisan-silver: #c0c0c0;
  --artisan-silver-bright: #f1f0eb;
  --artisan-logo-blue: #3098d8;
  --artisan-logo-blue-deep: #383868;
  --artisan-smoke: rgba(241, 240, 235, 0.68);
  --artisan-glass: rgba(18, 28, 38, 0.52);
  --artisan-line: rgba(192, 192, 192, 0.22);
  --artisan-shadow: 0 34px 100px rgba(3, 8, 13, 0.44);
}

.artisan-hero {
  background: var(--artisan-sea-deep);
  perspective: 1400px;
}

.artisan-hero::before {
  color: rgba(192, 192, 192, 0.02);
  -webkit-text-stroke-color: rgba(192, 192, 192, 0.14);
}

.artisan-hero .hero-slide {
  transform-origin: center;
  background-position: center var(--stack-bg-y, 50%);
  will-change: background-position, transform;
}

.artisan-hero .hero-slide::before {
  background:
    radial-gradient(circle at 76% 24%, rgba(48, 152, 216, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(4, 8, 12, 0.88), rgba(29, 45, 62, 0.62) 48%, rgba(43, 43, 43, 0.18) 76%),
    linear-gradient(180deg, transparent 56%, rgba(4, 8, 12, 0.96));
}

.artisan-hero .hero-slide::after {
  opacity: 0.55;
  background-size: 84px 84px;
}

.stack-glass {
  max-width: min(780px, calc(100vw - 48px));
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--artisan-line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    var(--artisan-glass);
  box-shadow: var(--artisan-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(1.1);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.stack-glass::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(192, 192, 192, 0.1);
  pointer-events: none;
}

.artisan-hero .hero-subtitle {
  color: var(--artisan-silver);
}

.artisan-hero .hero-title {
  max-width: 760px;
  color: var(--artisan-silver-bright);
  font-size: clamp(3.2rem, 7.4vw, 6rem);
  line-height: 0.96;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
}

.artisan-hero .hero-slogan {
  color: var(--artisan-logo-blue);
}

.artisan-hero .hero-copy {
  color: rgba(241, 240, 235, 0.78);
  font-size: 15px;
  line-height: 1.9;
}

.metal-button,
.artisan-hero .btn-primary-sw {
  color: #fffaf0;
  background: linear-gradient(135deg, var(--artisan-logo-blue), var(--artisan-logo-blue-deep));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(48, 152, 216, 0.3);
}

.metal-button:hover,
.artisan-hero .btn-primary-sw:hover {
  color: #fffaf0;
  background: linear-gradient(135deg, #66bde8, var(--artisan-logo-blue));
  box-shadow: 0 24px 64px rgba(48, 152, 216, 0.42);
}

.artisan-hero .hero-arrow {
  border-color: rgba(192, 192, 192, 0.28);
  background: rgba(29, 45, 62, 0.52);
}

.artisan-hero .hero-arrow:hover {
  background: var(--artisan-logo-blue);
}

.artisan-hero .hero-progress span,
.artisan-hero .proof-grid::before {
  background: var(--artisan-logo-blue);
}

.artisan-hero .hero-proof {
  background: rgba(7, 18, 29, 0.96);
  border-top-color: rgba(192, 192, 192, 0.16);
}

.artisan-hero .proof-item h3 {
  color: var(--artisan-silver-bright);
}

.artisan-hero .proof-item p {
  color: rgba(192, 192, 192, 0.76);
}

.artisan-about {
  background:
    radial-gradient(circle at 12% 24%, rgba(48, 152, 216, 0.11), transparent 28%),
    linear-gradient(180deg, #f6f7f7, #e9edf0);
}

.mask-rise-title {
  position: relative;
  width: min(760px, 100%);
  margin-bottom: 16px;
  color: var(--artisan-logo-blue);
}

.mask-rise-title svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.mask-rise-title .mask-title-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.mask-rise-text {
  fill: var(--artisan-logo-blue);
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 800;
  letter-spacing: 0;
}

.mask-rise-path {
  transform: translateY(120px);
  will-change: transform;
}

.mask-rise-surface {
  fill: none;
  stroke: rgba(48, 152, 216, 0.72);
  stroke-width: 2;
  transform: translateY(120px);
  filter: drop-shadow(0 10px 16px rgba(48, 152, 216, 0.24));
  will-change: transform;
}

.artisan-about .section-title {
  max-width: 850px;
  color: var(--artisan-iron);
  font-size: clamp(2.75rem, 5.8vw, 5.7rem);
  line-height: 0.98;
}

.artisan-about .tabs-sw .nav-link.active,
.artisan-products .tag-list li,
.push-stack .step-number {
  color: #fffaf0;
  background: var(--artisan-logo-blue);
}

.stack-stats {
  background:
    linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px),
    var(--artisan-iron);
  background-size: 78px 78px;
  perspective: 1400px;
}

.stack-stats-grid {
  gap: 0;
  border: 1px solid rgba(192, 192, 192, 0.14);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  transform-style: preserve-3d;
}

.stack-stats .metric {
  min-height: 190px;
  color: var(--artisan-smoke);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(29, 45, 62, 0.62);
  border-right-color: rgba(192, 192, 192, 0.14);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.stack-stats .metric::before {
  background: var(--artisan-logo-blue);
}

.stack-stats .metric-number {
  color: var(--artisan-silver-bright);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.stack-stats .metric-title {
  color: var(--artisan-silver);
}

.stack-stats .metric-en {
  color: rgba(192, 192, 192, 0.58);
}

.artisan-products {
  background:
    radial-gradient(circle at 84% 10%, rgba(48, 152, 216, 0.1), transparent 22%),
    linear-gradient(180deg, #eef2f4, #fafafa);
  perspective: 1300px;
}

.artisan-products .section-kicker {
  color: var(--artisan-logo-blue);
}

.artisan-products .section-title {
  color: var(--artisan-iron);
  font-size: clamp(3rem, 7vw, 6rem);
}

.product-stack-grid {
  perspective: 1200px;
}

.parallax-product-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 43, 43, 0.12);
  box-shadow: 0 18px 46px rgba(29, 45, 62, 0.11);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  backdrop-filter: blur(10px);
}

.parallax-product-card img {
  min-height: 240px;
  transform: scale(1.08);
  will-change: transform;
}

.parallax-product-card h3 {
  color: var(--artisan-iron);
}

.parallax-product-card p {
  color: rgba(43, 43, 43, 0.68);
}

.metal-hover-card:hover {
  transform: translateY(-12px) scale(1.015) rotateX(1.4deg);
  box-shadow: 0 34px 100px rgba(29, 45, 62, 0.2), 0 16px 44px rgba(48, 152, 216, 0.16);
}

.push-stack {
  background:
    radial-gradient(circle at 20% 16%, rgba(48, 152, 216, 0.12), transparent 26%),
    linear-gradient(180deg, var(--artisan-sea), var(--artisan-sea-deep));
  color: var(--artisan-silver-bright);
  perspective: 1600px;
  overflow: hidden;
  min-height: 100vh;
  padding-top: clamp(72px, 8vh, 96px);
  padding-bottom: clamp(58px, 7vh, 86px);
}

.push-stack .section-head {
  border-bottom-color: rgba(192, 192, 192, 0.18);
}

.push-stack > .container {
  min-height: 0;
}

.push-stack .section-kicker {
  color: var(--artisan-logo-blue);
}

.push-stack .section-title {
  color: var(--artisan-silver-bright);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.push-stack .section-head p {
  color: rgba(192, 192, 192, 0.72);
}

.process-progress-panel {
  position: relative;
  z-index: 2;
  margin: clamp(16px, 2.2vw, 24px) 0 clamp(18px, 2.6vw, 30px);
  padding: 14px 18px 16px;
  color: rgba(244, 241, 232, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(9, 20, 31, 0.64);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 54px rgba(0, 0, 0, 0.22);
}

.process-progress-meta {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.process-progress-meta span {
  color: var(--artisan-silver-bright);
}

.process-progress-track {
  position: relative;
  min-height: 3px;
}

.process-progress-track::before,
.process-progress-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  content: "";
  border-radius: 999px;
}

.process-progress-track::before {
  background: rgba(192, 192, 192, 0.16);
}

.process-progress-fill {
  right: auto;
  width: var(--push-progress, 0%);
  background: linear-gradient(90deg, var(--artisan-logo-blue), var(--artisan-silver-bright));
  box-shadow: 0 0 18px rgba(48, 152, 216, 0.28);
  transition: width 0.18s ease-out;
}

.push-stage {
  min-height: clamp(390px, 45vh, 500px);
  position: relative;
  top: auto;
  display: block;
  overflow: hidden;
  contain: paint;
  perspective: 1400px;
  transform-style: preserve-3d;
  background:
    linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  background-size: 72px 72px, 72px 72px, auto;
  border: 1px solid rgba(192, 192, 192, 0.1);
  border-radius: 6px;
}

.push-stage::before {
  display: none;
}

.push-card {
  position: absolute;
  top: clamp(34px, 5vh, 56px);
  left: 0;
  width: clamp(196px, 15.8vw, 228px);
  min-height: 198px;
  padding: clamp(20px, 1.7vw, 24px);
  color: var(--artisan-smoke);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(43, 43, 43, 0.78);
  border: 1px solid rgba(192, 192, 192, 0.16);
  border-radius: 6px;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
  will-change: transform, box-shadow, filter;
}

.push-card h3 {
  color: var(--artisan-silver-bright);
  font-size: clamp(1.18rem, 1.55vw, 1.72rem);
}

.push-card p {
  color: rgba(192, 192, 192, 0.72);
  font-size: clamp(0.82rem, 0.95vw, 0.94rem);
  line-height: 1.75;
}

.push-card .step-number {
  min-width: 70px;
  background: linear-gradient(135deg, var(--artisan-logo-blue), var(--artisan-logo-blue-deep));
}

@media (max-width: 991px) {
  .stack-glass {
    padding: 26px;
    background: rgba(7, 18, 29, 0.68);
  }

  .artisan-hero .hero-title,
  .artisan-about .section-title,
  .artisan-products .section-title,
  .push-stack .section-title {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .mask-rise-text {
    font-size: 66px;
  }

  .push-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    background: transparent;
    border: 0;
    position: relative;
    top: auto;
  }

  .push-stack,
  .push-stack > .container {
    min-height: 0;
  }

  .push-stack {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .process-progress-panel {
    display: none;
  }

  .push-card {
    position: relative;
    top: auto;
    width: 100%;
  }

  .stack-stats .metric {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .stack-glass {
    max-width: 100%;
    padding: 22px;
  }

  .mask-rise-title {
    margin-bottom: 10px;
  }

  .mask-rise-text {
    font-size: 54px;
  }

  .parallax-product-card img {
    min-height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mask-rise-path,
  .mask-rise-surface {
    transform: translateY(0);
  }

  .push-stage {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    background: transparent;
    border: 0;
    position: relative;
    top: auto;
  }

  .push-card {
    position: relative;
    top: auto;
    width: 100%;
  }
}

/* About page hand-crafted metal system.
   Tailwind mapping: .industrial-nameplate ~= backdrop-blur-xl bg-white/10 border border-white/20 font-mono;
   .factory-stack-card ~= transform-gpu will-change-transform shadow-2xl;
   .brushed-metal-title ~= text-6xl font-black tracking-normal text-silver. */
.about-factory-stack,
.about-cert-section,
.about-process-section,
.about-why-section,
.milestone-tunnel {
  --about-night: #090f16;
  --about-space: #111a24;
  --about-panel: rgba(255, 255, 255, 0.065);
  --about-panel-strong: rgba(255, 255, 255, 0.105);
  --about-silver: #c9c9c7;
  --about-silver-bright: #f2f1eb;
  --about-muted: rgba(218, 222, 224, 0.72);
  --about-logo-blue: #3098d8;
  --about-logo-blue-deep: #383868;
  --about-bevel: rgba(255, 255, 255, 0.18);
  color: var(--about-silver-bright);
  background:
    radial-gradient(circle at 18% 12%, rgba(48, 152, 216, 0.13), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, var(--about-space), var(--about-night));
  background-size: auto, 92px 92px, 92px 92px, auto;
}

.brushed-metal-title {
  max-width: 940px;
  margin: 0;
  color: var(--about-silver-bright);
  background: linear-gradient(105deg, #8e9292 0%, #f5f2e8 26%, #a6aaa8 48%, #ffffff 58%, #8f9595 78%, #d8d5ca 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.85rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18), 0 22px 54px rgba(0, 0, 0, 0.38);
  text-wrap: balance;
}

.metal-micro-label {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--about-logo-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.factory-stack-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.42fr);
  gap: clamp(32px, 6vw, 82px);
  min-height: 100%;
}

.factory-stack-copy {
  align-self: start;
}

.factory-stack-copy p:not(.metal-micro-label) {
  max-width: 44ch;
  margin-top: 22px;
  color: var(--about-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.factory-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.factory-proof-line span,
.industrial-nameplate {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: rgba(245, 242, 232, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(12, 21, 30, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.factory-stack-stage {
  position: relative;
  display: grid;
  gap: 24px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.factory-stack-rail {
  position: relative;
}

.factory-stack-card {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  color: var(--about-silver-bright);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
    rgba(18, 28, 38, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.42);
  transform-style: preserve-3d;
  will-change: transform, filter, opacity;
}

.factory-stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 18%, transparent 72%, rgba(48, 152, 216, 0.1)),
    linear-gradient(180deg, transparent 42%, rgba(5, 11, 17, 0.84));
}

.factory-stack-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
  transform: scale(1.02);
}

.factory-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 38px);
}

.factory-index {
  display: block;
  margin-bottom: 12px;
  color: var(--about-logo-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.factory-card-body h3,
.milestone-node h3,
.engraved-badge h3 {
  color: var(--about-silver-bright);
  text-wrap: balance;
}

.factory-card-body h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.factory-card-body p {
  max-width: 56ch;
  color: var(--about-muted);
}

.nameplate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.about-factory-stack.is-animated {
  min-height: calc(100vh + 1400px);
  overflow: visible;
}

.about-factory-stack.is-animated > .factory-stack-shell,
.about-factory-stack.is-animated > .container {
  min-height: calc(100vh + 1400px);
}

.about-factory-stack.is-animated .factory-stack-rail {
  min-height: calc(100vh + 1400px);
}

.about-factory-stack.is-animated .factory-stack-copy {
  position: sticky;
  top: 112px;
}

.about-factory-stack.is-animated .factory-stack-stage {
  position: relative;
  top: auto;
  height: min(740px, calc(100vh - 132px));
  min-height: 600px;
  display: block;
  overflow: clip;
}

.about-factory-stack.is-animated .factory-stack-card {
  position: absolute;
  inset: 0;
}

.about-cert-section {
  position: relative;
}

.cert-section-head p {
  color: var(--about-muted);
}

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

.engraved-badge {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  color: var(--about-silver-bright);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
    rgba(13, 22, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 86px rgba(0, 0, 0, 0.32);
}

.engraved-badge::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(48, 152, 216, 0.25);
  pointer-events: none;
}

.engraved-badge::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -80%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(18deg);
  transition: transform 0.72s ease;
}

.engraved-badge:hover::after {
  transform: translateX(430%) rotate(18deg);
}

.engraved-badge span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-weight: 800;
  line-height: 0.82;
}

.engraved-badge h3 {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.engraved-badge p {
  position: relative;
  z-index: 2;
  color: var(--about-muted);
}

.about-process-section,
.about-why-section {
  position: relative;
  overflow: hidden;
}

.about-process-section::before,
.about-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(48, 152, 216, 0.08) 52.2%, transparent 63%),
    radial-gradient(circle at 88% 18%, rgba(53, 178, 198, 0.1), transparent 24%);
  opacity: 0.74;
}

.about-process-section > .container,
.about-why-section > .container {
  position: relative;
  z-index: 1;
}

.process-rivet-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.045)),
    rgba(6, 12, 18, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 88px rgba(0, 0, 0, 0.34);
}

.process-rivet-grid::before {
  content: "";
  position: absolute;
  left: clamp(22px, 3vw, 34px);
  right: clamp(22px, 3vw, 34px);
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48, 152, 216, 0.72), rgba(53, 178, 198, 0.42), transparent);
  opacity: 0.8;
}

.process-rivet-card {
  position: relative;
  min-height: 312px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--about-silver-bright);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.014)),
    rgba(13, 22, 31, 0.76);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.process-rivet-card:last-child {
  border-right: 0;
}

.process-rivet-card::before,
.process-rivet-card::after {
  content: "";
  position: absolute;
  top: 43px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.82), transparent 22%),
    #6f5b3e;
  box-shadow: 0 0 0 5px rgba(48, 152, 216, 0.12), 0 10px 24px rgba(0, 0, 0, 0.34);
}

.process-rivet-card::before {
  left: 26px;
}

.process-rivet-card::after {
  right: 26px;
}

.process-rivet-card span,
.why-proof-card span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.82;
}

.process-rivet-card h3,
.why-proof-card h3 {
  margin: 36px 0 14px;
  color: var(--about-silver-bright);
  font-size: clamp(1.25rem, 1.9vw, 1.78rem);
  line-height: 1.18;
  text-wrap: balance;
}

.process-rivet-card p,
.why-proof-card p {
  max-width: 34ch;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.86;
}

.process-rivet-card:nth-child(even) {
  transform: translateY(22px);
}

.why-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-proof-card {
  position: relative;
  min-height: 312px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--about-silver-bright);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.018) 54%, rgba(48, 152, 216, 0.055)),
    rgba(11, 19, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 28px 82px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.why-proof-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(48, 152, 216, 0.16);
}

.why-proof-card::after {
  content: "";
  position: absolute;
  left: -30%;
  top: -60%;
  width: 36%;
  height: 220%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(18deg);
  transition: transform 0.62s ease;
}

.why-proof-card:hover::after {
  transform: translateX(420%) rotate(18deg);
}

.milestone-tunnel {
  min-height: 100vh;
  overflow: visible;
}

.milestone-tunnel > .container {
  min-height: 100%;
}

.milestone-tunnel-head {
  max-width: 920px;
  margin-bottom: 34px;
}

.milestone-perspective {
  position: relative;
  min-height: 580px;
  display: grid;
  gap: 16px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.milestone-perspective::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(48, 152, 216, 0.16), transparent 18%),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.16) 50%, transparent 50.2%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 120px);
  opacity: 0.55;
  transform: perspective(900px) rotateX(62deg) translateY(120px);
  transform-origin: center bottom;
}

.milestone-node {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 28px;
  color: var(--about-silver-bright);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(15, 24, 34, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.milestone-node b {
  display: block;
  margin-bottom: 14px;
  color: var(--about-logo-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.9;
}

.milestone-node p {
  max-width: 48ch;
  color: var(--about-muted);
}

.milestone-tunnel.is-animated .milestone-perspective {
  height: min(620px, calc(100vh - 180px));
  min-height: 520px;
  display: block;
}

.milestone-tunnel.is-animated .milestone-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(590px, calc(100vw - 48px));
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .about-factory-stack,
  .about-cert-section,
  .about-process-section,
  .about-why-section,
  .milestone-tunnel {
    background-size: auto, 58px 58px, 58px 58px, auto;
  }

  .factory-stack-shell {
    grid-template-columns: 1fr;
  }

  .factory-stack-rail {
    min-height: 0;
  }

  .factory-stack-card {
    min-height: 0;
  }

  .factory-stack-card img {
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }

  .engraved-badge-grid {
    grid-template-columns: 1fr;
  }

  .process-rivet-grid,
  .why-proof-grid {
    grid-template-columns: 1fr;
  }

  .process-rivet-grid {
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .process-rivet-grid::before {
    display: none;
  }

  .process-rivet-card {
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
  }

  .process-rivet-card:nth-child(even) {
    transform: none;
  }

  .milestone-perspective {
    min-height: 0;
  }

  .milestone-perspective::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .brushed-metal-title {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .factory-card-body,
  .engraved-badge,
  .process-rivet-card,
  .why-proof-card,
  .milestone-node {
    padding: 22px;
  }

  .industrial-nameplate,
  .factory-proof-line span {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-factory-stack,
  .about-factory-stack > .container,
  .milestone-tunnel,
  .milestone-tunnel > .container {
    min-height: 0;
  }

  .about-factory-stack.is-animated .factory-stack-rail {
    min-height: 0;
  }

  .about-factory-stack.is-animated .factory-stack-copy,
  .about-factory-stack.is-animated .factory-stack-stage {
    position: relative;
    top: auto;
  }

  .about-factory-stack.is-animated .factory-stack-stage,
  .milestone-tunnel.is-animated .milestone-perspective {
    height: auto;
    min-height: 0;
    display: grid;
    overflow: visible;
  }

  .about-factory-stack.is-animated .factory-stack-card,
  .milestone-tunnel.is-animated .milestone-node {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }
}

/* Floating glass capsule header */
.site-header {
  position: fixed;
  top: clamp(10px, 1.5vw, 18px);
  left: 0;
  right: 0;
  z-index: 90;
  height: auto;
  pointer-events: none;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  transition: none;
}

.site-header.is-scrolled {
  height: auto;
  background: transparent;
  box-shadow: none;
}

.site-header .container {
  width: min(calc(100% - clamp(24px, 4vw, 56px)), 1320px);
  min-height: 64px;
  padding: 7px 10px 7px 14px;
  pointer-events: auto;
  color: rgba(245, 242, 232, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    rgba(5, 10, 15, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.site-header .brand {
  min-width: 194px;
}

.site-header .brand-mark {
  width: 42px;
  height: 42px;
  color: #fffaf0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 44%),
    #07121c;
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.site-header .brand-text strong {
  color: #fffaf0;
  font-size: 18px;
}

.site-header .brand-text span {
  color: rgba(192, 192, 192, 0.68);
}

.site-header .desktop-nav {
  gap: clamp(14px, 2vw, 26px);
  color: rgba(245, 242, 232, 0.72);
  font-size: 14px;
}

.site-header .desktop-nav a {
  padding: 17px 0;
  transition: color 0.24s ease;
}

.site-header .desktop-nav a::after {
  left: 50%;
  bottom: 11px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 222, 214, 0.86), transparent);
  transform: translateX(-50%);
  transition: width 0.34s ease;
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a.active {
  color: #fffaf0;
}

.site-header .desktop-nav a:hover::after,
.site-header .desktop-nav a.active::after {
  width: 100%;
}

.site-header .header-actions {
  gap: 10px;
}

.site-header .language-switcher {
  position: relative;
  display: inline-flex;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.lang-current {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px 0 14px;
  color: rgba(245, 242, 232, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lang-current i {
  font-size: 16px;
  transition: transform 0.24s ease;
}

.language-switcher.is-open .lang-current i {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  display: grid;
  gap: 4px;
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.96);
  transform-origin: right top;
  color: rgba(245, 242, 232, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 10, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.language-switcher.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
}

.site-header .lang-option {
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  color: rgba(245, 242, 232, 0.74);
  background: transparent;
  border-radius: 10px;
  text-align: left;
}

.site-header .lang-option.active {
  color: #071013;
  background: #e8f3fa;
}

.site-header .lang-option[disabled] {
  color: rgba(192, 192, 192, 0.42);
  opacity: 1;
}

.site-header .btn-primary-sw {
  position: relative;
  min-height: 42px;
  padding: 10px 18px;
  color: rgba(232, 232, 226, 0.86);
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(192, 192, 192, 0.28);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 26px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform-origin: center;
  will-change: transform;
}

.site-header .btn-primary-sw::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(192, 192, 192, 0.055));
}

.header-cta-fill {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 30%, rgba(255, 255, 255, 0.1) 62%, transparent),
    linear-gradient(135deg, rgba(48, 152, 216, 0.92), rgba(214, 237, 248, 0.84) 48%, rgba(56, 56, 104, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -8px 18px rgba(56, 56, 104, 0.18);
}

.header-cta-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  will-change: transform;
}

.site-header .btn-primary-sw i {
  position: relative;
  z-index: 1;
  color: inherit;
  transform-origin: left center;
  will-change: transform;
}

.site-header .btn-primary-sw:hover {
  color: #120d07;
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(214, 237, 248, 0.54);
  transform: none;
}

.site-header .btn-primary-sw:active {
  transform: scale(0.96);
}

.site-header .nav-toggle {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.mobile-panel {
  inset: calc(var(--sw-header) + 22px) clamp(12px, 4vw, 28px) auto;
  z-index: 89;
  overflow: hidden;
  color: rgba(245, 242, 232, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(5, 10, 15, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-panel nav {
  padding: 18px;
}

.mobile-panel a {
  color: rgba(245, 242, 232, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.mobile-panel a:hover {
  color: #fffaf0;
}

.mobile-lang {
  display: flex;
  gap: 6px;
  padding: 0 18px 18px;
}

.mobile-lang .lang-option {
  flex: 1;
  color: rgba(245, 242, 232, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.mobile-lang .lang-option.active {
  color: #071013;
  background: #e8f3fa;
}

@media (max-width: 1199px) {
  .site-header .container {
    gap: 18px;
  }

  .site-header .brand {
    min-width: 178px;
  }
}

@media (max-width: 991px) {
  :root {
    --sw-header: 74px;
  }

  .site-header {
    top: 10px;
  }

  .site-header .container {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 8px 9px 8px 12px;
    border-radius: 22px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .site-header .brand-text strong {
    font-size: 17px;
  }

  .site-header .brand-text span {
    font-size: 11px;
  }

  .desktop-nav,
  .header-actions .btn-sw,
  .site-header .language-switcher {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }
}

@media (max-width: 420px) {
  .site-header .brand-text strong {
    font-size: 16px;
  }

  .site-header .brand-text span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .desktop-nav a,
  .site-header .desktop-nav a::after,
  .lang-current i,
  .site-header .btn-primary-sw,
  .site-header .btn-primary-sw::after {
    transition: none;
  }
}

/* SanWang v2 light-blue identity layer */
:root {
  --sw-ink: #172131;
  --sw-ink-2: #2f3a56;
  --sw-muted: #596b7c;
  --sw-line: #d4e3ef;
  --sw-soft: #f2f8fc;
  --sw-white: #ffffff;
  --sw-steel: #383868;
  --sw-steel-2: #3098d8;
  --sw-red: #3098d8;
  --sw-red-dark: #276fac;
  --sw-logo-blue: #3098d8;
  --sw-cyan: #00aee8;
  --sw-shadow: 0 18px 48px rgba(48, 105, 154, 0.12);
  --sw-hard-shadow: 0 28px 80px rgba(48, 105, 154, 0.18);
  --v2-bg: #f2f8fc;
  --v2-band: #e8f3fa;
  --v2-card: rgba(255, 255, 255, 0.92);
  --v2-line: rgba(48, 152, 216, 0.2);
  --v2-blue: #3098d8;
  --v2-purple: #383868;
}

html,
body {
  background:
    radial-gradient(circle at 16% 8%, rgba(48, 152, 216, 0.18), transparent 26vw),
    radial-gradient(circle at 86% 18%, rgba(56, 56, 104, 0.12), transparent 28vw),
    linear-gradient(180deg, #f7fbfe 0%, var(--v2-bg) 42%, #ffffff 100%);
  color: var(--sw-ink);
}

body::before {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(48, 152, 216, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 152, 216, 0.09) 1px, transparent 1px);
}

p,
.section-head p,
.hero-copy,
.page-hero p,
.product-copy,
.contact-command-lead,
.faq-answer-inner,
.partners-page p {
  color: var(--sw-muted);
}

.site-header {
  background: transparent;
  border-bottom: 0;
}

.site-header .container {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(48, 152, 216, 0.18);
  box-shadow: 0 18px 48px rgba(48, 105, 154, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.site-header.is-scrolled .container {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 42px rgba(48, 105, 154, 0.16);
}

.brand {
  min-width: auto;
}

.brand-logo {
  width: clamp(154px, 14vw, 196px);
  max-height: 46px;
  height: auto;
  object-fit: contain;
}

.footer-brand-logo {
  width: clamp(168px, 16vw, 220px);
  max-height: 54px;
}

.site-header .desktop-nav a,
.lang-current,
.nav-toggle {
  color: var(--v2-purple);
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a.active {
  color: var(--v2-blue);
}

.site-header .desktop-nav a::after {
  background: var(--v2-blue);
}

.lang-current,
.nav-toggle,
.mobile-lang .lang-option {
  background: rgba(232, 243, 250, 0.74);
  border-color: rgba(48, 152, 216, 0.22);
}

.nav-toggle i {
  color: var(--v2-purple);
}

.lang-menu,
.mobile-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(48, 152, 216, 0.2);
  box-shadow: 0 18px 46px rgba(48, 105, 154, 0.16);
}

.lang-menu a,
.mobile-nav a,
.mobile-panel .small,
.mobile-panel p {
  color: var(--sw-ink);
}

.btn-primary-sw,
.btn-outline-sw,
.metal-button,
.site-header .btn-primary-sw,
.contact-submit,
.faq-page .faq-index a {
  color: var(--v2-purple);
  background: transparent;
  border: 1px solid rgba(56, 56, 104, 0.3);
  box-shadow: none;
}

.btn-primary-sw::before,
.metal-button::before,
.contact-submit::before,
.header-cta-fill {
  background: var(--v2-blue);
}

.btn-primary-sw:hover,
.btn-outline-sw:hover,
.metal-button:hover,
.site-header .btn-primary-sw:hover,
.contact-submit:hover,
.faq-page .faq-index a:hover,
.faq-page .faq-index a.is-active {
  color: #ffffff;
  background: var(--v2-purple);
  border-color: var(--v2-purple);
  box-shadow: 0 12px 26px rgba(56, 56, 104, 0.18);
}

.header-cta:hover,
.header-cta:hover .header-cta-text,
.header-cta:hover .header-cta-icon {
  color: #ffffff;
}

.section-soft,
.process-section,
.artisan-about,
.artisan-products,
.products-range,
.product-model-spec,
.partners-page,
.partners-network,
.faq-page,
.contact-page {
  background:
    radial-gradient(circle at 20% 12%, rgba(48, 152, 216, 0.13), transparent 26vw),
    linear-gradient(180deg, var(--v2-bg), #ffffff 78%);
  color: var(--sw-ink);
}

.section-title,
.page-title,
.products-hero .page-title,
.partners-hero .page-title,
.faq-hero h1,
.contact-command h1,
.product-panel h2,
.spec-group h3,
.partners-page .section-title,
.partners-page h2,
.partners-page h3 {
  color: var(--sw-ink);
}

.mask-rise-title,
.artisan-hero .hero-slogan,
.product-panel .product-index,
.product-model-spec .spec-kicker,
.partners-orbit-head strong,
.partners-network .partner-meta,
.contact-data-card span,
.contact-data-card small,
.contact-promise-rail span,
.faq-entry-number {
  color: var(--v2-blue);
}

.artisan-hero {
  background: #eaf5fb;
}

.artisan-hero .hero-slide::before {
  background:
    linear-gradient(90deg, rgba(242, 248, 252, 0.95), rgba(242, 248, 252, 0.74) 43%, rgba(242, 248, 252, 0.22) 76%),
    linear-gradient(180deg, rgba(247, 251, 254, 0.15), rgba(242, 248, 252, 0.9) 88%);
}

.artisan-hero .hero-slide::after {
  opacity: 0.26;
}

.stack-glass,
.about-snapshot,
.factory-card,
.iso-medal,
.process-card,
.product-card,
.product-panel,
.spec-group,
.partners-orbit,
.partners-network .partner-card,
.partner-logo-card,
.contact-data-card,
.company-coordinate-panel,
.contact-form-deck,
.contact-proof-strip,
.faq-manual,
.faq-entry,
.faq-command {
  background: var(--v2-card);
  border-color: rgba(48, 152, 216, 0.18);
  box-shadow: 0 18px 50px rgba(48, 105, 154, 0.12);
  color: var(--sw-ink);
}

.stack-glass {
  backdrop-filter: blur(16px);
}

.artisan-hero .hero-title,
.artisan-hero .proof-item h3,
.stack-glass h1,
.stack-glass h2 {
  color: var(--sw-ink);
  text-shadow: none;
}

.artisan-hero .hero-copy,
.artisan-hero .hero-subtitle,
.artisan-hero .proof-item p {
  color: var(--sw-muted);
}

.artisan-hero .hero-proof {
  background: rgba(255, 255, 255, 0.9);
  border-top-color: rgba(48, 152, 216, 0.18);
}

.artisan-hero .hero-arrow {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(48, 152, 216, 0.24);
  color: var(--v2-purple);
}

.artisan-hero .hero-arrow:hover {
  background: var(--v2-blue);
  color: #ffffff;
}

.page-hero,
.products-hero,
.partners-hero,
.contact-command,
.faq-hero {
  background:
    radial-gradient(circle at 22% 20%, rgba(48, 152, 216, 0.22), transparent 30vw),
    linear-gradient(135deg, #f7fbfe, #e8f3fa 68%, #ffffff);
  color: var(--sw-ink);
}

.page-hero::before,
.products-hero::before,
.partners-hero::before,
.contact-command::before,
.faq-hero::before {
  background: rgba(255, 255, 255, 0.46);
}

.product-horizontal,
.product-horizontal-sticky,
.product-spec-strip,
.dark-capability,
.procurement-dark,
.partners-crisis {
  background:
    radial-gradient(circle at 16% 18%, rgba(48, 152, 216, 0.16), transparent 28vw),
    linear-gradient(180deg, #f7fbfe, #e8f3fa);
  color: var(--sw-ink);
}

.product-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 243, 250, 0.82));
}

.product-panel .feature-list li,
.spec-group li,
.partners-network .partner-card p,
.partners-crisis p,
.faq-entry-question,
.contact-form-deck label,
.company-coordinate-row strong,
.contact-proof-grid strong {
  color: var(--sw-ink);
}

.product-panel .product-label,
.product-panel p,
.spec-group p,
.partners-network .partner-card small,
.partners-network .tag-list li,
.contact-form-deck p,
.contact-proof-grid span,
.company-coordinate-row span {
  color: var(--sw-muted);
}

.product-photo,
.product-card img,
.partner-card img {
  box-shadow: 0 16px 44px rgba(48, 105, 154, 0.16);
}

.partners-orbit {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(232, 243, 250, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 64px, rgba(48, 152, 216, 0.08) 64px 65px);
}

.partners-marquee-group > span,
.partner-logo-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--v2-purple);
  border-color: rgba(48, 152, 216, 0.2);
}

.partners-network .partner-filter button.is-active,
.partners-network .partner-filter button:hover {
  color: #ffffff;
  background: var(--v2-blue);
  border-color: var(--v2-blue);
}

.partners-crisis {
  border-color: rgba(48, 152, 216, 0.2);
}

.partners-crisis .trust-quote,
.partners-crisis .trust-quote span {
  color: var(--sw-ink);
}

.contact-page {
  --contact-night: #f2f8fc;
  --contact-midnight: #e8f3fa;
  --contact-panel: rgba(255, 255, 255, 0.9);
  --contact-panel-strong: rgba(255, 255, 255, 0.96);
  --contact-line: rgba(48, 152, 216, 0.18);
  --contact-line-strong: rgba(48, 152, 216, 0.38);
  --contact-ink: #172131;
  --contact-muted: #596b7c;
  --contact-cyan: #3098d8;
  --contact-logo-blue: #383868;
}

.contact-priority {
  color: #ffffff;
  background: var(--v2-purple);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  color: var(--sw-ink);
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(48, 152, 216, 0.24);
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-bottom-color: var(--v2-blue);
}

.faq-page {
  --faq-bg: #f2f8fc;
  --faq-panel: rgba(255, 255, 255, 0.92);
  --faq-ink: #172131;
  --faq-muted: #596b7c;
  --faq-line: rgba(48, 152, 216, 0.18);
  --faq-line-strong: rgba(48, 152, 216, 0.42);
  --faq-cyan: #3098d8;
}

.faq-entry-number {
  -webkit-text-stroke-color: rgba(48, 152, 216, 0.34);
  color: transparent;
}

.faq-answer-inner::before,
.faq-page .faq-index a.is-active::after {
  background: var(--v2-blue);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 18%, rgba(48, 152, 216, 0.2), transparent 28vw),
    linear-gradient(135deg, #252546, var(--v2-purple));
  color: #ffffff;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer .footer-links a,
.site-footer .small {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h5,
.site-footer strong {
  color: #ffffff;
}

@media (max-width: 991px) {
  .brand-logo {
    width: 142px;
    max-height: 40px;
  }

  .footer-brand-logo {
    width: 166px;
    max-height: 48px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 132px;
  }
}

/* V2 contrast corrections for inner pages that previously assumed dark heroes. */
.breadcrumb-sw,
.breadcrumb-sw span,
.breadcrumb-sw a,
.products-hero .breadcrumb-sw,
.products-hero .breadcrumb-sw span,
.products-hero .breadcrumb-sw a,
.contact-breadcrumb,
.contact-breadcrumb a {
  color: rgba(47, 58, 86, 0.76);
}

.products-hero {
  color: var(--sw-ink);
}

.products-hero-bg {
  opacity: 0.16;
  mix-blend-mode: multiply;
}

.products-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(242, 248, 252, 0.92), rgba(242, 248, 252, 0.74) 50%, rgba(242, 248, 252, 0.46)),
    linear-gradient(180deg, rgba(247, 251, 254, 0.12), #f2f8fc 94%);
}

.products-hero .page-title {
  color: var(--sw-ink);
  text-shadow: none;
}

.products-hero .hero-copy,
.products-hero-proof strong {
  color: var(--sw-muted);
}

.products-hero-proof {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(48, 152, 216, 0.18);
  box-shadow: 0 18px 54px rgba(48, 105, 154, 0.12);
}

.product-nav-dark,
.product-nav.product-nav-dark {
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(48, 152, 216, 0.14);
  border-bottom: 1px solid rgba(48, 152, 216, 0.18);
  box-shadow: 0 14px 36px rgba(48, 105, 154, 0.08);
}

.product-nav-dark a,
.product-nav.product-nav-dark a {
  color: var(--sw-ink-2);
  background: rgba(232, 243, 250, 0.7);
  border-color: rgba(48, 152, 216, 0.2);
}

.product-nav-dark a:hover,
.product-nav-dark a.is-active,
.product-nav.product-nav-dark a:hover,
.product-nav.product-nav-dark a.is-active {
  color: #ffffff;
  background: var(--v2-blue);
  border-color: var(--v2-blue);
}

.product-spec-strip,
.product-horizontal,
.product-after {
  background:
    radial-gradient(circle at 18% 18%, rgba(48, 152, 216, 0.12), transparent 28vw),
    linear-gradient(180deg, #f7fbfe, #e8f3fa);
  color: var(--sw-ink);
}

.spec-strip-grid {
  border-color: rgba(48, 152, 216, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.spec-strip-grid div {
  border-right-color: rgba(48, 152, 216, 0.15);
}

.spec-strip-grid span,
.capability-plate span,
.procurement-rail span {
  color: rgba(47, 58, 86, 0.62);
}

.spec-strip-grid strong,
.capability-plate strong,
.procurement-rail strong {
  color: var(--sw-ink);
}

.spec-strip-grid small,
.capability-plate small,
.procurement-rail small {
  color: var(--sw-muted);
}

.contact-promise-rail {
  border-color: rgba(48, 152, 216, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.contact-promise-rail div {
  background: rgba(255, 255, 255, 0.86);
}

/* Homepage premium correction: Siemens-inspired restraint, SanWang logo colors. */
body.home-v2-premium {
  --home-navy: #383868;
  --home-accent: #3098d8;
  --home-accent-dark: #247fbd;
  --home-ink: #172131;
  --home-muted: #4f6173;
  --home-line: #e2e8f0;
  --home-soft: #f8fafc;
  --home-card-shadow: 0 8px 30px rgba(48, 152, 216, 0.08);
  --home-card-shadow-hover: 0 18px 42px rgba(48, 152, 216, 0.13);
  color: var(--home-ink);
  background: #ffffff;
}

body.home-v2-premium::before {
  display: none;
}

body.home-v2-premium main {
  background: #ffffff;
}

body.home-v2-premium p,
body.home-v2-premium .section-head p,
body.home-v2-premium .tab-content p,
body.home-v2-premium .metric-en,
body.home-v2-premium .brand-chip span {
  color: var(--home-muted);
}

body.home-v2-premium h1,
body.home-v2-premium h2,
body.home-v2-premium h3,
body.home-v2-premium .section-title,
body.home-v2-premium .metric-number {
  color: var(--home-navy);
}

body.home-v2-premium .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(56, 56, 104, 0.1);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

body.home-v2-premium .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(56, 56, 104, 0.08);
}

body.home-v2-premium .site-header .container,
body.home-v2-premium .site-header.is-scrolled .container {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.home-v2-premium .desktop-nav a,
body.home-v2-premium .lang-current,
body.home-v2-premium .nav-toggle {
  color: var(--home-navy);
}

body.home-v2-premium .desktop-nav a:hover,
body.home-v2-premium .desktop-nav a.active {
  color: var(--home-accent);
}

body.home-v2-premium .desktop-nav a::after {
  background: var(--home-accent);
}

body.home-v2-premium .language-switcher,
body.home-v2-premium .lang-current,
body.home-v2-premium .nav-toggle,
body.home-v2-premium .mobile-lang .lang-option {
  background: #ffffff;
  border-color: var(--home-line);
}

body.home-v2-premium .lang-option.active {
  color: #ffffff;
  background: var(--home-navy);
}

body.home-v2-premium .mobile-panel,
body.home-v2-premium .lang-menu {
  background: #ffffff;
  border-color: var(--home-line);
  box-shadow: 0 18px 46px rgba(56, 56, 104, 0.1);
}

body.home-v2-premium .mobile-panel a,
body.home-v2-premium .mobile-panel .lang-option,
body.home-v2-premium .lang-menu .lang-option {
  color: var(--home-navy);
}

body.home-v2-premium .mobile-panel .lang-option.active,
body.home-v2-premium .lang-menu .lang-option.active {
  color: #ffffff;
}

body.home-v2-premium .btn-sw,
body.home-v2-premium .contact-submit {
  border-radius: 4px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-v2-premium .btn-primary-sw,
body.home-v2-premium .metal-button,
body.home-v2-premium .site-header .btn-primary-sw,
body.home-v2-premium .contact-submit {
  color: #ffffff;
  background: var(--home-accent);
  border-color: var(--home-accent);
  box-shadow: none;
}

body.home-v2-premium .btn-primary-sw::before,
body.home-v2-premium .metal-button::before,
body.home-v2-premium .contact-submit::before {
  background: transparent;
}

body.home-v2-premium .btn-primary-sw:hover,
body.home-v2-premium .metal-button:hover,
body.home-v2-premium .site-header .btn-primary-sw:hover,
body.home-v2-premium .contact-submit:hover {
  color: #ffffff;
  background: var(--home-accent-dark);
  border-color: var(--home-accent-dark);
  box-shadow: 0 12px 26px rgba(48, 152, 216, 0.2);
}

body.home-v2-premium .btn-outline-sw,
body.home-v2-premium .btn-outline-dark-sw {
  color: var(--home-navy);
  background: transparent;
  border-color: var(--home-navy);
  box-shadow: none;
}

body.home-v2-premium .btn-outline-sw:hover,
body.home-v2-premium .btn-outline-dark-sw:hover {
  color: #ffffff;
  background: var(--home-navy);
  border-color: var(--home-navy);
  box-shadow: 0 12px 26px rgba(56, 56, 104, 0.16);
}

body.home-v2-premium .hero.artisan-hero {
  background: var(--home-navy);
}

body.home-v2-premium .artisan-hero::before,
body.home-v2-premium .artisan-hero .hero-slide::after {
  display: none;
}

body.home-v2-premium .artisan-hero .hero-slide {
  background-position: center var(--stack-bg-y, 50%);
}

body.home-v2-premium .artisan-hero .hero-slide::before {
  background:
    linear-gradient(90deg, rgba(56, 56, 104, 0.92), rgba(56, 56, 104, 0.66) 42%, rgba(56, 56, 104, 0.18) 70%, transparent),
    linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.36) 100%);
}

body.home-v2-premium .stack-glass,
body.home-v2-premium .hero-metal-card {
  max-width: min(720px, calc(100vw - 48px));
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.home-v2-premium .stack-glass::after {
  display: none;
}

body.home-v2-premium .hero-content {
  padding-left: clamp(16px, 2vw, 28px);
}

body.home-v2-premium .hero-content::before {
  width: 3px;
  height: 92px;
  background: var(--home-accent);
}

body.home-v2-premium .artisan-hero .hero-title,
body.home-v2-premium .artisan-hero .hero-slogan,
body.home-v2-premium .artisan-hero .hero-copy,
body.home-v2-premium .artisan-hero .hero-subtitle,
body.home-v2-premium .stack-glass h1,
body.home-v2-premium .stack-glass h2 {
  color: #ffffff;
  text-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
}

body.home-v2-premium .artisan-hero .hero-title {
  max-width: 760px;
  font-size: clamp(3rem, 6.8vw, 5.7rem);
  line-height: 1;
}

body.home-v2-premium .artisan-hero .hero-subtitle,
body.home-v2-premium .artisan-hero .hero-copy {
  color: rgba(255, 255, 255, 0.84);
}

body.home-v2-premium .artisan-hero .hero-slogan {
  margin-top: 26px;
}

body.home-v2-premium .artisan-hero .btn-outline-sw {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

body.home-v2-premium .artisan-hero .btn-outline-sw:hover {
  color: #ffffff;
  background: var(--home-navy);
  border-color: var(--home-navy);
}

body.home-v2-premium .artisan-hero .hero-proof {
  background: #ffffff;
  border-top: 1px solid var(--home-line);
  box-shadow: 0 -12px 30px rgba(56, 56, 104, 0.06);
}

body.home-v2-premium .artisan-hero .proof-grid::before {
  background: var(--home-accent);
}

body.home-v2-premium .artisan-hero .proof-item {
  border-right-color: var(--home-line);
}

body.home-v2-premium .artisan-hero .proof-item h3 {
  color: var(--home-navy);
}

body.home-v2-premium .artisan-hero .proof-item p {
  color: var(--home-muted);
}

body.home-v2-premium .hero-progress {
  background: rgba(255, 255, 255, 0.18);
}

body.home-v2-premium .artisan-hero .hero-progress span,
body.home-v2-premium .hero-progress span,
body.home-v2-premium .swiper-pagination-bullet-active {
  background: var(--home-accent);
}

body.home-v2-premium .artisan-hero .hero-arrow,
body.home-v2-premium .hero-arrow {
  color: #ffffff;
  background: rgba(56, 56, 104, 0.56);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

body.home-v2-premium .artisan-hero .hero-arrow:hover,
body.home-v2-premium .hero-arrow:hover {
  background: var(--home-accent);
  border-color: var(--home-accent);
}

body.home-v2-premium .artisan-about,
body.home-v2-premium .artisan-products,
body.home-v2-premium .section-space:not(.trust-band),
body.home-v2-premium .section-space-sm:not(.cta),
body.home-v2-premium .section-soft {
  background: #ffffff;
}

body.home-v2-premium .section-soft,
body.home-v2-premium .push-stack {
  background: var(--home-soft);
}

body.home-v2-premium .section-kicker,
body.home-v2-premium .artisan-products .section-kicker,
body.home-v2-premium .push-stack .section-kicker,
body.home-v2-premium .check-list i,
body.home-v2-premium .mask-rise-title {
  color: var(--home-accent);
}

body.home-v2-premium .section-kicker::before,
body.home-v2-premium .hero-subtitle::before {
  background: currentColor;
}

body.home-v2-premium .mask-rise-text {
  fill: var(--home-navy);
}

body.home-v2-premium .mask-rise-surface {
  stroke: var(--home-accent);
  filter: none;
}

body.home-v2-premium .image-frame {
  background: #ffffff;
  border-color: var(--home-line);
  box-shadow: var(--home-card-shadow);
}

body.home-v2-premium .tabs-sw .nav-link {
  color: var(--home-navy);
  background: #ffffff;
  border-color: var(--home-line);
}

body.home-v2-premium .tabs-sw .nav-link.active,
body.home-v2-premium .artisan-about .tabs-sw .nav-link.active,
body.home-v2-premium .tag-list li,
body.home-v2-premium .artisan-products .tag-list li,
body.home-v2-premium .push-stack .step-number {
  color: #ffffff;
  background: var(--home-accent);
}

body.home-v2-premium .stack-stats {
  background: #ffffff;
  perspective: none;
}

body.home-v2-premium .stack-stats-grid,
body.home-v2-premium .metric-grid {
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  box-shadow: var(--home-card-shadow);
}

body.home-v2-premium .stack-stats .metric,
body.home-v2-premium .metric {
  min-height: 178px;
  padding: 34px 28px;
  color: var(--home-ink);
  background: #ffffff;
  border-right: 1px solid var(--home-line);
  box-shadow: none;
}

body.home-v2-premium .stack-stats .metric::before,
body.home-v2-premium .metric::before {
  display: none;
}

body.home-v2-premium .stack-stats .metric-number,
body.home-v2-premium .metric-number {
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 16px;
  color: var(--home-navy);
  text-shadow: none;
}

body.home-v2-premium .stack-stats .metric-number::after,
body.home-v2-premium .metric-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: var(--home-accent);
}

body.home-v2-premium .metric-number::first-letter {
  color: inherit;
}

body.home-v2-premium .metric-title,
body.home-v2-premium .stack-stats .metric-title {
  color: var(--home-ink);
}

body.home-v2-premium .stack-stats .metric-en {
  color: var(--home-muted);
}

body.home-v2-premium .card-grid {
  gap: 24px;
}

body.home-v2-premium .info-card,
body.home-v2-premium .product-card,
body.home-v2-premium .partner-card,
body.home-v2-premium .brand-chip,
body.home-v2-premium .process-step,
body.home-v2-premium .push-card,
body.home-v2-premium .parallax-product-card {
  position: relative;
  overflow: hidden;
  color: var(--home-ink);
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  box-shadow: var(--home-card-shadow);
  backdrop-filter: none;
  translate: 0 0;
  transition:
    translate 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-v2-premium .info-card::before,
body.home-v2-premium .product-card::before,
body.home-v2-premium .partner-card::before,
body.home-v2-premium .brand-chip::before,
body.home-v2-premium .process-step::before,
body.home-v2-premium .push-card::before,
body.home-v2-premium .parallax-product-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--home-accent);
  transform: translateY(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-v2-premium .info-card:hover,
body.home-v2-premium .product-card:hover,
body.home-v2-premium .partner-card:hover,
body.home-v2-premium .brand-chip:hover,
body.home-v2-premium .process-step:hover,
body.home-v2-premium .push-card:hover,
body.home-v2-premium .parallax-product-card:hover {
  translate: 0 -4px;
  border-color: rgba(48, 152, 216, 0.26);
  box-shadow: var(--home-card-shadow-hover);
}

body.home-v2-premium .info-card:hover::before,
body.home-v2-premium .product-card:hover::before,
body.home-v2-premium .partner-card:hover::before,
body.home-v2-premium .brand-chip:hover::before,
body.home-v2-premium .process-step:hover::before,
body.home-v2-premium .push-card:hover::before,
body.home-v2-premium .parallax-product-card:hover::before {
  transform: translateY(0);
}

body.home-v2-premium .product-card h3,
body.home-v2-premium .parallax-product-card h3,
body.home-v2-premium .process-step h3,
body.home-v2-premium .push-card h3,
body.home-v2-premium .brand-chip {
  color: var(--home-navy);
}

body.home-v2-premium .product-card p,
body.home-v2-premium .parallax-product-card p,
body.home-v2-premium .process-step p,
body.home-v2-premium .push-card p {
  color: var(--home-muted);
}

body.home-v2-premium .product-card img,
body.home-v2-premium .parallax-product-card img,
body.home-v2-premium .factory-card img {
  box-shadow: none;
}

body.home-v2-premium .push-stack {
  min-height: auto;
  color: var(--home-ink);
  perspective: none;
}

body.home-v2-premium .push-stack .section-title,
body.home-v2-premium .push-stack .section-head p,
body.home-v2-premium .process-progress-meta span {
  color: var(--home-navy);
}

body.home-v2-premium .process-progress-panel {
  color: var(--home-navy);
  background: #ffffff;
  border-color: var(--home-line);
  box-shadow: var(--home-card-shadow);
}

body.home-v2-premium .process-progress-track::before {
  background: #e7eef5;
}

body.home-v2-premium .process-progress-fill {
  background: var(--home-accent);
  box-shadow: none;
}

body.home-v2-premium .push-stage {
  background: #ffffff;
  border-color: var(--home-line);
  box-shadow: var(--home-card-shadow);
}

body.home-v2-premium .push-card {
  background: #ffffff;
}

body.home-v2-premium .push-card .step-number {
  min-width: 76px;
  background: var(--home-accent);
}

body.home-v2-premium .trust-band::before {
  background:
    linear-gradient(90deg, rgba(56, 56, 104, 0.92), rgba(56, 56, 104, 0.72) 54%, rgba(56, 56, 104, 0.42)),
    var(--trust-bg);
  background-size: cover;
  background-position: center;
}

body.home-v2-premium .trust-band p {
  color: rgba(255, 255, 255, 0.82);
}

body.home-v2-premium .trust-quote {
  color: #ffffff;
}

body.home-v2-premium .brand-wall {
  gap: 16px;
}

body.home-v2-premium .brand-chip {
  min-height: 96px;
}

body.home-v2-premium .cta {
  color: #ffffff;
  background: var(--home-navy);
}

body.home-v2-premium .cta h2,
body.home-v2-premium .cta p {
  color: #ffffff;
}

body.home-v2-premium .cta .btn-outline-sw {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.78);
}

body.home-v2-premium .cta .btn-outline-sw:hover {
  color: var(--home-navy);
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 991px) {
  body.home-v2-premium .hero,
  body.home-v2-premium .hero .swiper,
  body.home-v2-premium .hero .swiper-wrapper,
  body.home-v2-premium .hero .swiper-slide,
  body.home-v2-premium .hero-slide {
    min-height: clamp(620px, 78vh, 700px);
  }

  body.home-v2-premium .hero-slide {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  body.home-v2-premium .artisan-hero .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(56, 56, 104, 0.94), rgba(56, 56, 104, 0.76) 58%, rgba(56, 56, 104, 0.36)),
      linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.38) 100%);
  }

  body.home-v2-premium .stack-glass {
    background: transparent;
  }

  body.home-v2-premium .hero-progress {
    display: none;
  }

  body.home-v2-premium .artisan-hero .hero-proof {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  body.home-v2-premium .artisan-hero .hero-title,
  body.home-v2-premium .artisan-about .section-title,
  body.home-v2-premium .artisan-products .section-title,
  body.home-v2-premium .push-stack .section-title {
    font-size: clamp(2.35rem, 11vw, 4rem);
    line-height: 1.06;
  }

  body.home-v2-premium .proof-item,
  body.home-v2-premium .metric {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  body.home-v2-premium .proof-item:last-child,
  body.home-v2-premium .metric:last-child {
    border-bottom: 0;
  }

  body.home-v2-premium .push-stage {
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  body.home-v2-premium .hero,
  body.home-v2-premium .hero .swiper,
  body.home-v2-premium .hero .swiper-wrapper,
  body.home-v2-premium .hero .swiper-slide,
  body.home-v2-premium .hero-slide {
    min-height: 620px;
  }

  body.home-v2-premium .artisan-hero .hero-slide {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  body.home-v2-premium .hero-content {
    padding-left: 14px;
  }

  body.home-v2-premium .hero-content::before {
    height: 76px;
  }

  body.home-v2-premium .artisan-hero .hero-title {
    font-size: clamp(2.15rem, 11.5vw, 3rem);
    line-height: 1.08;
  }

  body.home-v2-premium .artisan-hero .hero-copy {
    font-size: 15px;
    line-height: 1.75;
  }

  body.home-v2-premium .stack-stats .metric,
  body.home-v2-premium .metric {
    min-height: 148px;
    padding: 28px 22px;
  }

  body.home-v2-premium .stack-stats .metric::before,
  body.home-v2-premium .metric::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-v2-premium .info-card,
  body.home-v2-premium .product-card,
  body.home-v2-premium .partner-card,
  body.home-v2-premium .brand-chip,
  body.home-v2-premium .process-step,
  body.home-v2-premium .push-card,
  body.home-v2-premium .parallax-product-card {
    transition: none;
  }

  body.home-v2-premium .info-card:hover,
  body.home-v2-premium .product-card:hover,
  body.home-v2-premium .partner-card:hover,
  body.home-v2-premium .brand-chip:hover,
  body.home-v2-premium .process-step:hover,
  body.home-v2-premium .push-card:hover,
  body.home-v2-premium .parallax-product-card:hover {
    transform: none;
  }
}

/* Homepage correction: precision stats and cooperation flow */
body.home-v2-premium .stack-stats {
  padding: clamp(56px, 7vw, 88px) 0;
  background: #ffffff;
}

body.home-v2-premium .stack-stats::before,
body.home-v2-premium .push-stack::before {
  display: none;
}

body.home-v2-premium .stack-stats-grid,
body.home-v2-premium .stack-stats .metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.home-v2-premium .stack-stats .metric {
  min-height: 220px;
  padding: clamp(30px, 3.2vw, 42px);
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 12px 30px rgba(15, 23, 42, 0.045);
  transform: none !important;
  translate: 0 0;
}

body.home-v2-premium .stack-stats .metric::before {
  display: none;
}

body.home-v2-premium .stack-stats .metric-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  color: var(--home-navy);
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: none;
}

body.home-v2-premium .stack-stats .metric-number .metric-value {
  font: inherit;
  color: inherit;
}

body.home-v2-premium .stack-stats .metric-number > span:not(.metric-value):not(.odometer) {
  color: var(--home-navy);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
}

body.home-v2-premium .stack-stats .metric-number::after {
  width: 30px;
  height: 3px;
  background: var(--home-accent);
  border-radius: 0;
}

body.home-v2-premium .stack-stats .metric-title {
  color: var(--home-navy);
  font-size: 1.08rem;
  font-weight: 800;
}

body.home-v2-premium .stack-stats .metric-en {
  margin-top: 8px;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

body.home-v2-premium .push-stack {
  min-height: 0;
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--home-soft);
  color: var(--home-ink);
  perspective: none;
}

body.home-v2-premium .push-stack .section-kicker {
  color: var(--home-navy);
}

body.home-v2-premium .push-stack .section-kicker::before {
  background: var(--home-navy);
}

body.home-v2-premium .push-stack .section-title {
  color: var(--home-navy);
}

body.home-v2-premium .push-stack .section-head p {
  color: var(--home-muted);
}

body.home-v2-premium .process-progress-panel {
  display: none;
}

body.home-v2-premium .push-stage {
  position: static;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  min-height: 0;
  overflow: visible;
  contain: none;
  perspective: none;
  transform-style: flat;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.home-v2-premium .push-card,
body.home-v2-premium .process-step.push-card {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  min-height: 236px;
  padding: clamp(24px, 2.4vw, 32px);
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 28px rgba(15, 23, 42, 0.045);
  color: var(--home-muted);
  filter: none !important;
  transform: none !important;
  transform-style: flat;
  will-change: transform, box-shadow, border-color;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-v2-premium .push-card::before,
body.home-v2-premium .process-step.push-card::before {
  display: none;
}

body.home-v2-premium .push-card:hover,
body.home-v2-premium .process-step.push-card:hover {
  border-color: var(--home-accent);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px) !important;
  translate: none;
}

body.home-v2-premium .push-card .step-number,
body.home-v2-premium .process-step.push-card .step-number {
  display: inline-flex;
  min-width: 0;
  margin-bottom: 22px;
  padding: 0;
  color: var(--home-accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

body.home-v2-premium .push-card h3,
body.home-v2-premium .process-step.push-card h3 {
  margin-bottom: 12px;
  color: var(--home-navy);
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  line-height: 1.35;
  font-weight: 850;
}

body.home-v2-premium .push-card p,
body.home-v2-premium .process-step.push-card p {
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.85;
}

@media (max-width: 1199px) {
  body.home-v2-premium .push-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.home-v2-premium .stack-stats-grid,
  body.home-v2-premium .stack-stats .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-v2-premium .stack-stats .metric {
    min-height: 190px;
    border-bottom: 1px solid #eef2f6;
  }

  body.home-v2-premium .push-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.home-v2-premium .push-stage {
    grid-template-columns: 1fr;
  }

  body.home-v2-premium .stack-stats-grid,
  body.home-v2-premium .stack-stats .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.home-v2-premium .stack-stats .metric,
  body.home-v2-premium .push-card,
  body.home-v2-premium .process-step.push-card {
    min-height: 0;
  }
}

/* V2 precision pages: About + Products */
body.about-v2-precision,
body.products-v2-precision {
  --precision-navy: #383868;
  --precision-ink: #172131;
  --precision-muted: #4b5f73;
  --precision-soft: #f8fafc;
  --precision-line: #e5eaf0;
  --precision-line-soft: #eef2f6;
  --precision-accent: #3098d8;
  --precision-accent-hover: #247fbd;
  --precision-card-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 30px rgba(48, 152, 216, 0.08);
  --precision-hover-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  background: #fff;
  color: var(--precision-muted);
}

body.about-v2-precision::before,
body.products-v2-precision::before {
  display: none;
}

body.about-v2-precision main,
body.products-v2-precision main {
  background: #fff;
  overflow-x: hidden;
}

body.about-v2-precision .site-header,
body.products-v2-precision .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--precision-line);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

body.about-v2-precision .desktop-nav a,
body.products-v2-precision .desktop-nav a,
body.about-v2-precision .lang-current,
body.products-v2-precision .lang-current,
body.about-v2-precision .nav-toggle,
body.products-v2-precision .nav-toggle {
  color: var(--precision-navy);
}

body.about-v2-precision .desktop-nav a::after,
body.products-v2-precision .desktop-nav a::after {
  background: var(--precision-navy);
}

body.about-v2-precision .desktop-nav a.active,
body.products-v2-precision .desktop-nav a.active,
body.about-v2-precision .desktop-nav a:hover,
body.products-v2-precision .desktop-nav a:hover {
  color: var(--precision-navy);
}

body.about-v2-precision .btn-primary-sw,
body.products-v2-precision .btn-primary-sw {
  background: var(--precision-accent);
  border-color: var(--precision-accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(48, 152, 216, 0.22);
}

body.about-v2-precision .btn-primary-sw:hover,
body.products-v2-precision .btn-primary-sw:hover {
  background: var(--precision-accent-hover);
  border-color: var(--precision-accent-hover);
  color: #fff;
}

body.about-v2-precision .btn-outline-sw,
body.products-v2-precision .btn-outline-sw {
  background: transparent;
  border-color: var(--precision-navy);
  color: var(--precision-navy);
}

body.about-v2-precision .btn-outline-sw:hover,
body.products-v2-precision .btn-outline-sw:hover {
  background: var(--precision-navy);
  border-color: var(--precision-navy);
  color: #fff;
}

body.about-v2-precision .section-space,
body.products-v2-precision .section-space,
body.about-v2-precision .section-space-sm,
body.products-v2-precision .section-space-sm,
body.about-v2-precision .product-after,
body.products-v2-precision .product-after {
  background: #fff;
}

body.about-v2-precision .section-soft,
body.products-v2-precision .product-model-spec,
body.products-v2-precision .procurement-dark,
body.products-v2-precision .cta {
  background: var(--precision-soft);
}

body.about-v2-precision .section-title,
body.products-v2-precision .section-title,
body.about-v2-precision .brushed-metal-title,
body.products-v2-precision h1,
body.products-v2-precision h2,
body.products-v2-precision h3 {
  color: var(--precision-navy);
  background: none;
  -webkit-text-fill-color: currentColor;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-wrap: balance;
}

body.about-v2-precision p,
body.products-v2-precision p,
body.about-v2-precision li,
body.products-v2-precision li {
  color: var(--precision-muted);
}

body.about-v2-precision .section-kicker,
body.about-v2-precision .metal-micro-label,
body.products-v2-precision .product-index {
  color: var(--precision-navy);
  background: transparent;
  letter-spacing: 0;
}

body.about-v2-precision .section-head p,
body.products-v2-precision .section-head p,
body.about-v2-precision .cert-section-head p {
  color: var(--precision-muted);
}

body.about-v2-precision .image-frame {
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
}

body.about-v2-precision .image-frame::before,
body.about-v2-precision .image-frame::after {
  display: none;
}

body.about-v2-precision .image-frame img,
body.about-v2-precision .factory-stack-card img,
body.products-v2-precision .metal-product-visual img,
body.products-v2-precision .products-hero-bg img {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

body.about-v2-precision .page-hero {
  min-height: clamp(460px, 54vw, 620px);
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

body.about-v2-precision .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(56, 56, 104, 0.92) 0%, rgba(56, 56, 104, 0.68) 43%, rgba(56, 56, 104, 0.18) 72%, transparent 100%);
}

body.about-v2-precision .page-hero::after {
  display: none;
}

body.about-v2-precision .page-hero .container {
  position: relative;
  z-index: 1;
}

body.about-v2-precision .page-hero .page-title,
body.about-v2-precision .page-hero .hero-copy,
body.about-v2-precision .page-hero .breadcrumb-sw,
body.about-v2-precision .page-hero .breadcrumb-sw a,
body.about-v2-precision .page-hero .breadcrumb-sw span {
  color: #fff;
}

body.about-v2-precision .chain-map,
body.about-v2-precision .engraved-badge-grid,
body.about-v2-precision .process-rivet-grid,
body.about-v2-precision .why-proof-grid {
  gap: 18px;
}

body.about-v2-precision .chain-node,
body.about-v2-precision .engraved-badge,
body.about-v2-precision .process-rivet-card,
body.about-v2-precision .why-proof-card,
body.products-v2-precision .model-spec-card,
body.products-v2-precision .procurement-rail article {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
  color: var(--precision-muted);
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.about-v2-precision .chain-node::before,
body.about-v2-precision .engraved-badge::before,
body.about-v2-precision .process-rivet-card::before,
body.about-v2-precision .why-proof-card::before,
body.products-v2-precision .model-spec-card::before,
body.products-v2-precision .procurement-rail article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--precision-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.about-v2-precision .chain-node:hover,
body.about-v2-precision .engraved-badge:hover,
body.about-v2-precision .process-rivet-card:hover,
body.about-v2-precision .why-proof-card:hover,
body.products-v2-precision .model-spec-card:hover,
body.products-v2-precision .procurement-rail article:hover {
  border-color: var(--precision-line);
  box-shadow: var(--precision-hover-shadow);
  transform: translateY(-4px);
}

body.about-v2-precision .chain-node:hover::before,
body.about-v2-precision .engraved-badge:hover::before,
body.about-v2-precision .process-rivet-card:hover::before,
body.about-v2-precision .why-proof-card:hover::before,
body.products-v2-precision .model-spec-card:hover::before,
body.products-v2-precision .procurement-rail article:hover::before {
  transform: scaleX(1);
}

body.about-v2-precision .chain-node span,
body.about-v2-precision .process-rivet-card span,
body.about-v2-precision .why-proof-card span,
body.products-v2-precision .model-spec-card > span,
body.products-v2-precision .procurement-rail article > span {
  color: var(--precision-navy);
  background: transparent;
}

body.about-v2-precision .chain-node h3,
body.about-v2-precision .engraved-badge h3,
body.about-v2-precision .process-rivet-card h3,
body.about-v2-precision .why-proof-card h3,
body.products-v2-precision .model-spec-card h3,
body.products-v2-precision .procurement-rail article h3 {
  color: var(--precision-navy);
}

body.about-v2-precision .about-factory-stack,
body.about-v2-precision .about-cert-section,
body.about-v2-precision .about-process-section,
body.about-v2-precision .about-why-section {
  background: #fff;
}

body.about-v2-precision .factory-stack-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

body.about-v2-precision .factory-stack-copy {
  position: sticky;
  top: 112px;
  color: var(--precision-muted);
}

body.about-v2-precision .factory-proof-line {
  border-top: 1px solid var(--precision-line);
  border-bottom: 1px solid var(--precision-line);
}

body.about-v2-precision .factory-proof-line span,
body.about-v2-precision .industrial-nameplate {
  background: var(--precision-soft);
  border: 1px solid var(--precision-line);
  color: var(--precision-navy);
}

body.about-v2-precision .factory-stack-rail,
body.about-v2-precision .factory-stack-stage {
  position: static;
  min-height: 0;
  height: auto;
  perspective: none;
  transform-style: flat;
}

body.about-v2-precision .factory-stack-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

body.about-v2-precision .factory-stack-card {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.55fr);
  gap: 0;
  overflow: hidden;
  min-height: 320px;
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
  transform: none;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.about-v2-precision .factory-stack-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 3px;
  background: var(--precision-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.about-v2-precision .factory-stack-card::after {
  display: none;
}

body.about-v2-precision .factory-stack-card:hover {
  box-shadow: var(--precision-hover-shadow);
  transform: translateY(-4px);
}

body.about-v2-precision .factory-stack-card:hover::before {
  transform: scaleX(1);
}

body.about-v2-precision .factory-stack-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

body.about-v2-precision .factory-card-body {
  position: static;
  padding: clamp(26px, 3.2vw, 42px);
  background: #fff;
  color: var(--precision-muted);
}

body.about-v2-precision .factory-index {
  color: var(--precision-navy);
}

body.about-v2-precision .factory-card-body h3 {
  color: var(--precision-navy);
}

body.about-v2-precision .milestone-tunnel {
  background: var(--precision-soft);
  color: var(--precision-muted);
}

body.about-v2-precision .milestone-tunnel::before,
body.about-v2-precision .milestone-tunnel::after,
body.about-v2-precision .milestone-node::before,
body.about-v2-precision .milestone-node::after {
  display: none;
}

body.about-v2-precision .milestone-tunnel-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

body.about-v2-precision .milestone-perspective {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
  min-height: 0;
  perspective: none;
  transform-style: flat;
}

body.about-v2-precision .milestone-node {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 252px;
  padding: clamp(30px, 3vw, 40px) clamp(24px, 3vw, 34px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transform: none;
}

body.about-v2-precision .milestone-node b {
  position: absolute;
  top: clamp(16px, 2vw, 22px);
  left: clamp(20px, 2.8vw, 30px);
  z-index: 0;
  color: #eef2f6;
  font-size: clamp(4.8rem, 7.4vw, 7.2rem);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

body.about-v2-precision .milestone-node h3,
body.about-v2-precision .milestone-node p {
  position: relative;
  z-index: 1;
}

body.about-v2-precision .milestone-node h3 {
  margin-top: clamp(96px, 8vw, 118px);
  margin-bottom: 12px;
  color: var(--precision-navy);
}

body.about-v2-precision .milestone-node p {
  color: var(--precision-muted);
}

body.products-v2-precision .products-hero {
  position: relative;
  min-height: clamp(560px, 58vw, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(140px, 16vw, 190px) 0 clamp(80px, 10vw, 120px);
  background: #fff;
  color: var(--precision-muted);
}

body.products-v2-precision .products-hero::before,
body.products-v2-precision .products-hero::after,
body.products-v2-precision .products-hero-bg::before,
body.products-v2-precision .products-hero-bg::after {
  display: none;
}

body.products-v2-precision .products-hero-bg {
  position: absolute;
  top: clamp(118px, 12vw, 150px);
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: auto;
  left: auto;
  width: min(48vw, 610px);
  height: clamp(320px, 43vw, 520px);
  overflow: hidden;
  border: 1px solid var(--precision-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  opacity: 1;
  mix-blend-mode: normal;
}

body.products-v2-precision .products-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.products-v2-precision .products-hero .container {
  position: relative;
  z-index: 1;
}

body.products-v2-precision .products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(280px, 0.36fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

body.products-v2-precision .products-hero-grid > div:first-child {
  max-width: 680px;
}

body.products-v2-precision .products-hero .page-title,
body.products-v2-precision .products-hero .hero-copy {
  color: var(--precision-navy);
}

body.products-v2-precision .products-hero .hero-copy {
  max-width: 54ch;
  color: var(--precision-muted);
}

body.products-v2-precision .products-hero .breadcrumb-sw,
body.products-v2-precision .products-hero .breadcrumb-sw a,
body.products-v2-precision .products-hero .breadcrumb-sw span {
  color: var(--precision-muted);
}

body.products-v2-precision .products-hero-proof {
  grid-column: 1;
  max-width: 360px;
  margin-left: 0;
  margin-top: 22px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
}

body.products-v2-precision .products-hero-proof span,
body.products-v2-precision .products-hero-proof strong {
  color: var(--precision-navy);
}

body.products-v2-precision .product-nav {
  position: sticky;
  top: 82px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--precision-line);
  border-bottom: 1px solid var(--precision-line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
}

body.products-v2-precision .product-nav-inner a {
  background: #fff;
  border: 1px solid var(--precision-line);
  color: var(--precision-navy);
}

body.products-v2-precision .product-nav-inner a:hover {
  color: var(--precision-ink);
  background: var(--precision-soft);
}

body.products-v2-precision .product-spec-strip {
  background: var(--precision-soft);
  border: 0;
}

body.products-v2-precision .spec-strip-grid {
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
}

body.products-v2-precision .spec-strip-grid > div {
  border-color: var(--precision-line);
}

body.products-v2-precision .spec-strip-grid span,
body.products-v2-precision .spec-strip-grid small {
  color: var(--precision-muted);
}

body.products-v2-precision .spec-strip-grid strong {
  color: var(--precision-navy);
}

body.products-v2-precision .product-horizontal {
  overflow: visible;
  background: #fff;
  color: var(--precision-muted);
  padding: clamp(72px, 9vw, 118px) 0;
}

body.products-v2-precision .product-horizontal-sticky {
  position: static;
  min-height: 0;
  overflow: visible;
}

body.products-v2-precision .product-horizontal-head {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(24px, 4vw, 44px);
  padding: 0;
  color: var(--precision-navy);
}

body.products-v2-precision .product-horizontal-head span {
  color: var(--precision-navy);
}

body.products-v2-precision .product-horizontal-progress {
  max-width: 220px;
  height: 2px;
  background: var(--precision-line);
}

body.products-v2-precision .product-horizontal-progress i {
  width: 100%;
  background: var(--precision-accent);
}

body.products-v2-precision .product-horizontal-track {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  transform: none;
}

body.products-v2-precision .product-panel {
  position: relative;
  width: auto;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 52px);
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
  color: var(--precision-muted);
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.products-v2-precision .product-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 3px;
  background: var(--precision-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

body.products-v2-precision .product-panel:hover {
  box-shadow: var(--precision-hover-shadow);
  transform: translateY(-4px);
}

body.products-v2-precision .product-panel:hover::before {
  transform: scaleX(1);
}

body.products-v2-precision .product-panel-copy {
  max-width: none;
}

body.products-v2-precision .product-panel-copy h2 {
  color: var(--precision-navy);
}

body.products-v2-precision .product-panel-copy p {
  max-width: 66ch;
}

body.products-v2-precision .product-param-grid {
  display: block;
  margin: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid var(--precision-line-soft);
  border-bottom: 1px solid var(--precision-line-soft);
}

body.products-v2-precision .product-param-grid span {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-height: 0;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--precision-line-soft);
  color: var(--precision-ink);
  font-size: 1rem;
  line-height: 1.8;
}

body.products-v2-precision .product-param-grid span:last-child {
  border-bottom: 0;
}

body.products-v2-precision .product-param-grid b {
  min-width: 88px;
  color: var(--precision-navy);
  font-weight: 700;
}

body.products-v2-precision .metal-pill-list li,
body.products-v2-precision .model-chip-list li {
  background: var(--precision-soft);
  border: 1px solid var(--precision-line);
  color: var(--precision-navy);
}

body.products-v2-precision .metal-product-visual {
  min-height: 300px;
  overflow: hidden;
  background: var(--precision-soft);
  border: 1px solid var(--precision-line);
  box-shadow: none;
}

body.products-v2-precision .metal-product-visual::before,
body.products-v2-precision .metal-product-visual::after {
  display: none;
}

body.products-v2-precision .product-model-grid,
body.products-v2-precision .procurement-rail {
  gap: 22px;
}

body.products-v2-precision .product-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: transparent;
  border: 0;
  box-shadow: none;
}

@media (max-width: 991px) {
  body.products-v2-precision .product-model-grid {
    grid-template-columns: 1fr;
  }
}

body.products-v2-precision .model-spec-meta,
body.products-v2-precision .model-spec-stack > div,
body.products-v2-precision .capability-plate {
  background: transparent;
  border-color: var(--precision-line-soft);
  color: var(--precision-muted);
}

body.products-v2-precision .model-spec-meta b,
body.products-v2-precision .model-spec-stack b,
body.products-v2-precision .model-spec-stack span,
body.products-v2-precision .model-spec-meta span {
  color: var(--precision-navy);
}

body.products-v2-precision .dark-capability {
  background: #fff;
  color: var(--precision-muted);
}

body.products-v2-precision .dark-capability-grid {
  align-items: center;
}

body.products-v2-precision .dark-capability h2 {
  color: var(--precision-navy);
}

body.products-v2-precision .capability-plate {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
}

body.products-v2-precision .capability-plate span,
body.products-v2-precision .capability-plate strong {
  display: block;
  min-height: 64px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--precision-line-soft);
  color: var(--precision-muted);
  line-height: 1.65;
}

body.products-v2-precision .capability-plate strong {
  color: var(--precision-navy);
  font-weight: 800;
}

body.products-v2-precision .capability-plate span:nth-last-child(-n+2),
body.products-v2-precision .capability-plate strong:nth-last-child(-n+1) {
  border-bottom: 0;
}

body.products-v2-precision .procurement-dark .section-head,
body.products-v2-precision .procurement-dark .section-title {
  color: var(--precision-navy);
}

body.products-v2-precision .cta {
  border-top: 1px solid var(--precision-line);
}

body.products-v2-precision .cta .container {
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--precision-line);
  box-shadow: var(--precision-card-shadow);
}

@media (max-width: 991px) {
  body.about-v2-precision .factory-stack-shell {
    grid-template-columns: 1fr;
  }

  body.about-v2-precision .factory-stack-copy {
    position: static;
  }

  body.about-v2-precision .milestone-perspective {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-v2-precision .factory-stack-card,
  body.products-v2-precision .product-panel,
  body.products-v2-precision .products-hero-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .products-hero {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 56px;
  }

  body.products-v2-precision .products-hero .container {
    order: 1;
    width: 100%;
  }

  body.products-v2-precision .products-hero-bg {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 680px);
    height: clamp(260px, 54vw, 420px);
    margin: 34px auto 0;
  }

  body.products-v2-precision .products-hero-proof {
    max-width: none;
    margin-left: 0;
  }

  body.products-v2-precision .product-nav {
    top: 72px;
  }
}

@media (max-width: 640px) {
  body.about-v2-precision .page-hero {
    min-height: 480px;
  }

  body.about-v2-precision .page-hero::before {
    background: linear-gradient(90deg, rgba(56, 56, 104, 0.94) 0%, rgba(56, 56, 104, 0.72) 62%, rgba(56, 56, 104, 0.28) 100%);
  }

  body.about-v2-precision .factory-stack-card img {
    min-height: 230px;
  }

  body.about-v2-precision .milestone-perspective {
    grid-template-columns: 1fr;
  }

  body.about-v2-precision .milestone-node {
    min-height: 224px;
  }

  body.about-v2-precision .milestone-node b {
    font-size: clamp(4.2rem, 20vw, 5.8rem);
  }

  body.about-v2-precision .milestone-node h3 {
    margin-top: 86px;
  }

  body.products-v2-precision .product-horizontal-head,
  body.products-v2-precision .product-horizontal-track {
    width: min(100% - 28px, 1180px);
  }

  body.products-v2-precision .product-panel {
    padding: 24px 20px;
  }

  body.products-v2-precision .product-param-grid span {
    display: block;
  }

  body.products-v2-precision .product-param-grid b {
    display: block;
    margin-bottom: 4px;
  }

  body.products-v2-precision .capability-plate {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .capability-plate span,
  body.products-v2-precision .capability-plate strong {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.about-v2-precision .chain-node,
  body.about-v2-precision .engraved-badge,
  body.about-v2-precision .process-rivet-card,
  body.about-v2-precision .why-proof-card,
  body.about-v2-precision .factory-stack-card,
  body.products-v2-precision .product-panel,
  body.products-v2-precision .model-spec-card,
  body.products-v2-precision .procurement-rail article {
    transition: none;
  }

  body.about-v2-precision .chain-node:hover,
  body.about-v2-precision .engraved-badge:hover,
  body.about-v2-precision .process-rivet-card:hover,
  body.about-v2-precision .why-proof-card:hover,
  body.about-v2-precision .factory-stack-card:hover,
  body.products-v2-precision .product-panel:hover,
  body.products-v2-precision .model-spec-card:hover,
  body.products-v2-precision .procurement-rail article:hover {
    transform: none;
  }
}

/* V2 inner pages sweep: remove dark-theme remnants from About and Products. */
body.about-v2-precision {
  background: #ffffff;
}

body.about-v2-precision .about-factory-stack,
body.about-v2-precision .about-process-section,
body.about-v2-precision .milestone-tunnel,
body.about-v2-precision .about-why-section {
  background: #f8fafc;
  color: var(--precision-muted);
}

body.about-v2-precision .about-cert-section {
  background: #ffffff;
  color: var(--precision-muted);
}

body.about-v2-precision .about-factory-stack::before,
body.about-v2-precision .about-cert-section::before,
body.about-v2-precision .about-process-section::before,
body.about-v2-precision .about-why-section::before,
body.about-v2-precision .milestone-tunnel::before,
body.about-v2-precision .about-factory-stack::after,
body.about-v2-precision .about-cert-section::after,
body.about-v2-precision .about-process-section::after,
body.about-v2-precision .about-why-section::after,
body.about-v2-precision .milestone-tunnel::after,
body.products-v2-precision .product-horizontal::before,
body.products-v2-precision .product-model-spec::before,
body.products-v2-precision .dark-capability::before,
body.products-v2-precision .procurement-dark::before,
body.products-v2-precision .product-horizontal::after,
body.products-v2-precision .product-model-spec::after,
body.products-v2-precision .dark-capability::after,
body.products-v2-precision .procurement-dark::after {
  display: none;
}

body.about-v2-precision .about-factory-stack > .container,
body.about-v2-precision .about-process-section > .container,
body.about-v2-precision .about-why-section > .container,
body.about-v2-precision .milestone-tunnel > .container {
  position: relative;
  z-index: 1;
}

body.about-v2-precision .factory-stack-copy,
body.about-v2-precision .milestone-tunnel-head,
body.about-v2-precision .cert-section-head {
  color: var(--precision-muted);
}

body.about-v2-precision .factory-stack-copy p,
body.about-v2-precision .cert-section-head p,
body.about-v2-precision .milestone-tunnel-head p,
body.about-v2-precision .about-why-section .section-head p,
body.about-v2-precision .about-process-section .section-head p {
  color: var(--precision-muted);
}

body.about-v2-precision .brushed-metal-title,
body.about-v2-precision .factory-stack-copy h2,
body.about-v2-precision .cert-section-head h2,
body.about-v2-precision .milestone-tunnel-head h2 {
  color: var(--precision-navy);
  text-shadow: none;
}

body.about-v2-precision .factory-stack-card,
body.about-v2-precision .engraved-badge,
body.about-v2-precision .process-rivet-card,
body.about-v2-precision .milestone-node,
body.about-v2-precision .why-proof-card,
body.about-v2-precision .chain-node {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
  color: var(--precision-muted);
  filter: none;
}

body.about-v2-precision .factory-stack-card::after,
body.about-v2-precision .engraved-badge::after,
body.about-v2-precision .process-rivet-card::after,
body.about-v2-precision .why-proof-card::after {
  display: none;
}

body.about-v2-precision .factory-card-body,
body.about-v2-precision .factory-stack-card .factory-card-body {
  background: #ffffff;
}

body.about-v2-precision .factory-index,
body.about-v2-precision .process-rivet-card span,
body.about-v2-precision .why-proof-card span,
body.about-v2-precision .engraved-badge span {
  color: var(--precision-accent);
  background: transparent;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

body.about-v2-precision .factory-card-body h3,
body.about-v2-precision .engraved-badge h3,
body.about-v2-precision .process-rivet-card h3,
body.about-v2-precision .milestone-node h3,
body.about-v2-precision .why-proof-card h3,
body.about-v2-precision .chain-node h3 {
  color: var(--precision-navy);
  text-shadow: none;
}

body.about-v2-precision .factory-card-body p,
body.about-v2-precision .engraved-badge p,
body.about-v2-precision .process-rivet-card p,
body.about-v2-precision .milestone-node p,
body.about-v2-precision .why-proof-card p,
body.about-v2-precision .chain-node p {
  color: var(--precision-muted);
}

body.about-v2-precision .nameplate-row,
body.about-v2-precision .factory-proof-line {
  gap: 8px;
}

body.about-v2-precision .industrial-nameplate,
body.about-v2-precision .factory-proof-line span {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--precision-navy);
  box-shadow: none;
}

body.about-v2-precision .process-rivet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

body.about-v2-precision .process-rivet-grid::before {
  display: none;
}

body.about-v2-precision .process-rivet-card {
  min-height: 0;
  height: auto;
  margin: 0;
  padding: clamp(24px, 2.5vw, 34px);
  border-right: 1px solid #e2e8f0;
  transform: none;
}

body.about-v2-precision .process-rivet-card:nth-child(even) {
  transform: none;
  margin-top: 0;
}

body.about-v2-precision .milestone-node b {
  color: #e9eef5;
  -webkit-text-stroke: 0 transparent;
}

body.about-v2-precision .about-cert-section .engraved-badge {
  border-color: #e2e8f0;
}

body.about-v2-precision .iso-cert-trigger {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 0;
  color: #64748b;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.24s ease;
}

body.about-v2-precision .iso-cert-trigger:hover,
body.about-v2-precision .iso-cert-trigger:focus-visible {
  color: #2563eb;
}

body.about-v2-precision .iso-cert-trigger:focus-visible {
  outline: 0;
  box-shadow: 0 2px 0 currentColor;
}

body.about-v2-precision .iso-cert-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.24s ease;
}

body.about-v2-precision .iso-cert-trigger:hover svg,
body.about-v2-precision .iso-cert-trigger:focus-visible svg {
  transform: translateX(4px);
}

body.about-v2-precision .iso-modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(16px);
  transition: opacity 0.5s ease-out;
}

body.about-v2-precision .iso-modal-wrapper.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.about-v2-precision .iso-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(95%, 896px);
  max-height: 90vh;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.28);
  transform: scale(0.95);
  transition: transform 0.5s ease-out;
}

body.about-v2-precision .iso-modal-wrapper.is-open .iso-modal-content {
  transform: scale(1);
}

body.about-v2-precision .iso-modal-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 14px;
  background: rgba(248, 250, 252, 0.5);
  border-bottom: 1px solid #f1f5f9;
}

body.about-v2-precision .iso-modal-header h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body.about-v2-precision .iso-modal-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #334155;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

body.about-v2-precision .iso-modal-close:hover,
body.about-v2-precision .iso-modal-close:focus-visible {
  color: #0f172a;
  background: #f1f5f9;
  outline: 0;
}

body.about-v2-precision .iso-modal-body {
  height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  background: #f1f5f9;
}

body.about-v2-precision #isoModalImage {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
  object-fit: contain;
}

@media (max-width: 575px) {
  body.about-v2-precision .iso-modal-wrapper {
    padding: 14px;
  }

  body.about-v2-precision .iso-modal-content {
    width: 95%;
    max-height: 88vh;
    border-radius: 14px;
  }

  body.about-v2-precision .iso-modal-header {
    padding: 8px 10px;
  }

  body.about-v2-precision .iso-modal-close {
    width: 34px;
    height: 34px;
  }

  body.about-v2-precision .iso-modal-body {
    height: 68vh;
    padding: 12px;
  }

  body.about-v2-precision #isoModalImage {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px;
  }
}

body.products-v2-precision {
  background: #ffffff;
}

body.products-v2-precision .products-hero {
  min-height: clamp(520px, 54vw, 660px);
  flex-direction: row;
  padding: clamp(140px, 14vw, 184px) 0 clamp(82px, 10vw, 122px);
  background: #111827;
  color: #ffffff;
}

body.products-v2-precision .products-hero-bg {
  order: initial;
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  box-shadow: none;
  opacity: 1;
  mix-blend-mode: normal;
}

body.products-v2-precision .products-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

body.products-v2-precision .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 48%, rgba(15, 23, 42, 0.08) 74%, transparent 100%);
  pointer-events: none;
}

body.products-v2-precision .products-hero::after,
body.products-v2-precision .products-hero-bg::before,
body.products-v2-precision .products-hero-bg::after {
  display: none;
}

body.products-v2-precision .products-hero .container {
  position: relative;
  z-index: 2;
}

body.products-v2-precision .products-hero-grid {
  display: block;
  max-width: 700px;
}

body.products-v2-precision .products-hero .page-title,
body.products-v2-precision .products-hero .hero-copy,
body.products-v2-precision .products-hero .breadcrumb-sw,
body.products-v2-precision .products-hero .breadcrumb-sw a,
body.products-v2-precision .products-hero .breadcrumb-sw span {
  color: #ffffff;
}

body.products-v2-precision .products-hero .hero-copy {
  color: rgba(255, 255, 255, 0.86);
}

body.products-v2-precision .products-hero-proof {
  max-width: 520px;
  margin-top: 26px;
  padding: 0 0 0 18px;
  background: transparent;
  border: 0;
  border-left: 3px solid var(--precision-accent);
  box-shadow: none;
}

body.products-v2-precision .products-hero-proof span,
body.products-v2-precision .products-hero-proof strong {
  color: #ffffff;
}

body.products-v2-precision .product-nav,
body.products-v2-precision .product-nav.product-nav-dark {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

body.products-v2-precision .product-nav a,
body.products-v2-precision .product-nav.product-nav-dark a {
  color: var(--precision-navy);
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

body.products-v2-precision .product-nav a:hover,
body.products-v2-precision .product-nav a.is-active,
body.products-v2-precision .product-nav.product-nav-dark a:hover,
body.products-v2-precision .product-nav.product-nav-dark a.is-active {
  color: var(--precision-navy);
  background: #f8fafc;
  border-color: var(--precision-accent);
}

body.products-v2-precision .product-horizontal {
  padding: clamp(70px, 8vw, 104px) 0;
  overflow: visible;
  background: #ffffff;
  color: var(--precision-muted);
}

body.products-v2-precision .product-horizontal-sticky {
  position: static;
  min-height: 0;
  overflow: visible;
}

body.products-v2-precision .product-horizontal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding: 0;
}

body.products-v2-precision .product-horizontal-head span {
  color: var(--precision-navy);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

body.products-v2-precision .product-horizontal-progress {
  display: none;
}

body.products-v2-precision .product-horizontal-track {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  transform: none;
}

body.products-v2-precision .product-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
  color: var(--precision-muted);
  transform: none;
}

body.products-v2-precision .product-panel:hover {
  border-color: var(--precision-accent);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

body.products-v2-precision .metal-product-visual {
  order: -1;
  min-height: 0;
  height: clamp(160px, 15vw, 210px);
  margin: 0;
  background: #f8fafc;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
}

body.products-v2-precision .metal-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.products-v2-precision .product-panel-copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(22px, 2vw, 28px);
}

body.products-v2-precision .product-panel-copy h2 {
  color: var(--precision-navy);
  font-size: clamp(1.35rem, 1.6vw, 1.72rem);
  line-height: 1.28;
  font-weight: 900;
}

body.products-v2-precision .product-panel-copy p {
  color: var(--precision-muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

body.products-v2-precision .product-index {
  color: var(--precision-accent);
  font-weight: 900;
}

body.products-v2-precision .product-param-grid {
  margin: 20px 0;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

body.products-v2-precision .product-param-grid span {
  display: block;
  padding: 12px 0;
  color: var(--precision-muted);
  border-bottom: 1px solid #eef2f6;
}

body.products-v2-precision .product-param-grid b {
  display: block;
  min-width: 0;
  color: var(--precision-navy);
}

body.products-v2-precision .metal-pill-list,
body.products-v2-precision .model-chip-list {
  margin-top: auto;
}

body.products-v2-precision .metal-pill-list li,
body.products-v2-precision .model-chip-list li {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--precision-navy);
}

body.products-v2-precision .product-model-spec,
body.products-v2-precision .dark-capability,
body.products-v2-precision .procurement-dark,
body.products-v2-precision .product-after {
  background: #ffffff;
  color: var(--precision-muted);
}

body.products-v2-precision .product-model-spec .section-title,
body.products-v2-precision .dark-capability h2,
body.products-v2-precision .procurement-dark .section-title,
body.products-v2-precision #model-spec-title {
  color: var(--precision-navy);
  font-weight: 900;
  text-shadow: none;
}

body.products-v2-precision .product-model-spec .section-head p,
body.products-v2-precision .dark-capability p,
body.products-v2-precision .procurement-dark .section-head p,
body.products-v2-precision .procurement-rail article p {
  color: var(--precision-muted);
}

body.products-v2-precision .model-spec-card,
body.products-v2-precision .capability-plate,
body.products-v2-precision .procurement-rail article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
  color: var(--precision-muted);
}

body.products-v2-precision .model-spec-meta,
body.products-v2-precision .model-spec-stack > div,
body.products-v2-precision .capability-plate span,
body.products-v2-precision .capability-plate strong {
  border-color: #eef2f6;
}

body.products-v2-precision .model-spec-card h3,
body.products-v2-precision .model-spec-meta b,
body.products-v2-precision .model-spec-stack b,
body.products-v2-precision .capability-plate strong,
body.products-v2-precision .procurement-rail article h3 {
  color: var(--precision-navy);
}

body.products-v2-precision .model-spec-card > span,
body.products-v2-precision .capability-plate span,
body.products-v2-precision .procurement-rail article > span {
  color: var(--precision-accent);
  background: transparent;
}

body.products-v2-precision .cta {
  background: #f8fafc;
}

body.products-v2-precision .cta .container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
}

body.products-v2-precision .cta h2,
body.products-v2-precision .cta p {
  color: var(--precision-navy);
}

@media (max-width: 1199px) {
  body.products-v2-precision .product-horizontal-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.products-v2-precision .product-horizontal-track {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .products-hero {
    min-height: 520px;
  }

  body.products-v2-precision .products-hero::before {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.72) 68%, rgba(15, 23, 42, 0.24) 100%);
  }

  body.products-v2-precision .product-horizontal-head {
    display: block;
    width: min(100% - 28px, 1180px);
  }
}

/* V2 final sweep: Partners, FAQ, Contact light B2B system. */
body.partners-v2-precision,
body.faq-v2-precision,
body.contact-v2-precision {
  --swv2-navy: #383868;
  --swv2-accent: #3098d8;
  --swv2-accent-dark: #247fbd;
  --swv2-text: #475569;
  --swv2-soft: #f8fafc;
  --swv2-line: #e2e8f0;
  --swv2-line-strong: #cbd5e1;
  --swv2-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 12px 30px rgba(48, 152, 216, 0.07);
  background: #ffffff;
  color: var(--swv2-text);
}

body.partners-v2-precision .partners-page,
body.faq-v2-precision .faq-page,
body.contact-v2-precision .contact-page {
  background: #ffffff;
  color: var(--swv2-text);
}

body.partners-v2-precision .section-title,
body.partners-v2-precision h2,
body.partners-v2-precision h3,
body.faq-v2-precision .section-title,
body.faq-v2-precision h2,
body.faq-v2-precision h3,
body.contact-v2-precision .section-title,
body.contact-v2-precision h1,
body.contact-v2-precision h2,
body.contact-v2-precision h3 {
  color: var(--swv2-navy);
  text-shadow: none;
}

body.partners-v2-precision p,
body.faq-v2-precision p,
body.contact-v2-precision p {
  color: var(--swv2-text);
}

body.partners-v2-precision .partners-hero::before,
body.faq-v2-precision .faq-hero.page-hero::before {
  background: linear-gradient(90deg, rgba(56, 56, 104, 0.9) 0%, rgba(56, 56, 104, 0.58) 46%, rgba(56, 56, 104, 0.14) 74%, transparent 100%);
}

body.partners-v2-precision .partners-hero .page-title,
body.partners-v2-precision .partners-hero .hero-copy,
body.partners-v2-precision .partners-hero .breadcrumb-sw,
body.partners-v2-precision .partners-hero .breadcrumb-sw a,
body.partners-v2-precision .partners-hero .breadcrumb-sw span,
body.faq-v2-precision .faq-hero .page-title,
body.faq-v2-precision .faq-hero .hero-copy,
body.faq-v2-precision .faq-hero .breadcrumb-sw,
body.faq-v2-precision .faq-hero .breadcrumb-sw a,
body.faq-v2-precision .faq-hero .breadcrumb-sw span {
  color: #ffffff;
}

body.partners-v2-precision .partners-orbit {
  background: #ffffff;
  color: var(--swv2-text);
  border-block: 1px solid var(--swv2-line);
  box-shadow: none;
}

body.partners-v2-precision .partners-orbit::before {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

body.partners-v2-precision .partners-orbit::after {
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

body.partners-v2-precision .partners-orbit-head {
  color: var(--swv2-text);
}

body.partners-v2-precision .partners-orbit-head strong,
body.partners-v2-precision .partner-market {
  color: var(--swv2-accent);
}

body.partners-v2-precision .partners-marquee-group > span,
body.partners-v2-precision .partner-logo-card {
  min-height: clamp(104px, 9vw, 148px);
  padding: clamp(18px, 1.8vw, 24px) clamp(30px, 2.5vw, 42px);
  background: #ffffff;
  color: var(--swv2-navy);
  border: 1px solid var(--swv2-line);
  box-shadow: var(--swv2-shadow);
}

body.partners-v2-precision .partner-logo-card img {
  width: min(88%, 260px);
  max-height: clamp(54px, 5.8vw, 82px);
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
  opacity: 1;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

body.partners-v2-precision .partner-logo-card-wide img {
  width: min(94%, 300px);
  max-height: clamp(50px, 5.2vw, 72px);
}

body.partners-v2-precision .partner-logo-card-tall img {
  width: min(74%, 220px);
  max-height: clamp(74px, 7vw, 98px);
}

body.partners-v2-precision .partner-logo-card-sm img {
  width: min(82%, 220px);
  max-height: clamp(42px, 4.8vw, 62px);
}

body.partners-v2-precision .partner-logo-card small {
  color: #64748b;
}

body.partners-v2-precision .partner-logo-card:hover {
  border-color: var(--swv2-line-strong);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  filter: none;
  transform: translateY(-2px);
}

body.partners-v2-precision .partner-logo-card:hover img {
  filter: none;
  opacity: 1;
}

body.partners-v2-precision .partners-network {
  background: var(--swv2-soft);
}

body.partners-v2-precision .partners-network::before,
body.partners-v2-precision .partners-network::after,
body.partners-v2-precision .partners-network .partner-card::before,
body.partners-v2-precision .partners-network .partner-card::after {
  display: none;
}

body.partners-v2-precision .partners-page .section-head {
  border-bottom-color: var(--swv2-line);
}

body.partners-v2-precision .partners-page .section-head p,
body.partners-v2-precision .partner-region-heading p {
  color: var(--swv2-text);
}

body.partners-v2-precision .partners-network .partner-filter button {
  color: var(--swv2-navy);
  background: #ffffff;
  border-color: var(--swv2-line);
}

body.partners-v2-precision .partners-network .partner-filter button.is-active,
body.partners-v2-precision .partners-network .partner-filter button:hover {
  color: #ffffff;
  background: var(--swv2-accent);
  border-color: var(--swv2-accent);
}

body.partners-v2-precision .partners-matrix,
body.partners-v2-precision .partners-matrix-compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 20px;
  background: transparent;
  border: 0;
  perspective: none;
}

body.partners-v2-precision .partners-network .partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  color: var(--swv2-text);
  background:
    linear-gradient(145deg, rgba(239, 246, 255, 0.88), rgba(255, 255, 255, 0) 44%),
    #ffffff;
  border: 1px solid var(--swv2-line);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.08);
  opacity: 1 !important;
  transform: none !important;
  transform-style: flat;
  will-change: auto;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

body.partners-v2-precision .partners-network .partner-card:hover,
body.partners-v2-precision .partners-network .partner-card:focus-within {
  border-color: var(--swv2-line-strong);
  box-shadow: 0 26px 68px rgba(15, 23, 42, 0.12);
}

body.partners-v2-precision .partner-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  padding: clamp(28px, 2.5vw, 36px);
  padding-top: clamp(112px, 8vw, 124px);
  will-change: auto;
}

body.partners-v2-precision .partners-network .partner-card-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: calc(100% - 10.5rem);
  min-width: 0;
  margin-bottom: clamp(22px, 3vw, 30px);
}

body.partners-v2-precision .partners-network .partner-market {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0;
  white-space: normal;
  overflow-wrap: normal;
}

body.partners-v2-precision .partners-network .partner-card-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  width: 176px;
  height: 82px;
  padding: 8px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
  border: 1px solid rgba(219, 234, 254, 0.96);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 30px rgba(37, 99, 235, 0.08);
  overflow: hidden;
}

body.partners-v2-precision .partners-network .partner-card-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: grayscale(0);
  opacity: 1;
}

body.partners-v2-precision .partner-card h3 {
  margin: 0;
  max-width: 100%;
  color: var(--swv2-navy);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  line-height: 1.24;
  word-break: normal;
  overflow-wrap: normal;
}

body.partners-v2-precision .partner-card h3 span {
  display: block;
  margin-bottom: 4px;
  color: var(--swv2-navy);
  font-size: clamp(2rem, 2.65vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

body.partners-v2-precision .partner-card p,
body.partners-v2-precision .partners-network .partner-card p {
  margin: 0 0 12px;
  color: var(--swv2-text);
  line-height: 1.78;
}

body.partners-v2-precision .partners-network .tag-list {
  margin-top: auto;
  padding-top: 22px;
}

body.partners-v2-precision .partners-network .tag-list li {
  color: var(--swv2-text);
  background: var(--swv2-soft);
  border-color: var(--swv2-line);
}

body.partners-v2-precision .partners-crisis {
  min-height: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(72px, 9vw, 118px) 0;
  border-top: 1px solid var(--swv2-line);
  border-bottom: 1px solid var(--swv2-line);
}

body.partners-v2-precision .partners-crisis::before {
  display: none;
}

body.partners-v2-precision .partners-crisis::after {
  content: "契约已兑现";
  position: absolute;
  right: clamp(-28px, -2vw, 0px);
  bottom: 0;
  z-index: 0;
  color: #f8fafc;
  -webkit-text-stroke: 0 transparent;
  font-size: clamp(8rem, 16vw, 12rem);
  font-weight: 900;
  line-height: 0.75;
  pointer-events: none;
  user-select: none;
  transform: translateY(25%);
}

body.partners-v2-precision .crisis-frame {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  background: #ffffff;
  border: 1px solid var(--swv2-line);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.06);
  padding: clamp(30px, 5vw, 56px);
}

body.partners-v2-precision .crisis-frame::before {
  display: none;
}

body.partners-v2-precision .crisis-year {
  color: var(--swv2-accent);
}

body.partners-v2-precision .partners-crisis .trust-quote,
body.partners-v2-precision .partners-crisis .trust-quote span {
  color: var(--swv2-navy);
  text-shadow: none;
}

body.partners-v2-precision .partners-crisis .trust-quote.is-typing::after {
  background: var(--swv2-accent);
}

body.partners-v2-precision .partners-crisis p {
  color: var(--swv2-text);
  max-width: 62ch;
}

body.partners-v2-precision .partners-crisis + .cta {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  color: #ffffff;
  padding: clamp(48px, 7vw, 80px) 0;
}

body.partners-v2-precision .partners-crisis + .cta::before,
body.partners-v2-precision .partners-crisis + .cta::after {
  display: none;
  content: none;
}

body.partners-v2-precision .partners-crisis + .cta .container {
  position: relative;
  z-index: 1;
}

body.partners-v2-precision .partners-crisis + .cta .section-title,
body.partners-v2-precision .partners-crisis + .cta h2 {
  color: #ffffff;
}

body.partners-v2-precision .partners-crisis + .cta p {
  color: #cbd5e1;
}

body.partners-v2-precision .partners-crisis + .cta .btn-outline-sw {
  min-height: 56px;
  padding: 16px 32px;
  border: 1px solid #3098d8;
  border-radius: 8px;
  background: #3098d8;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(48, 152, 216, 0.24);
}

body.partners-v2-precision .partners-crisis + .cta .btn-outline-sw i {
  color: currentColor;
}

body.partners-v2-precision .partners-crisis + .cta .btn-outline-sw:hover,
body.partners-v2-precision .partners-crisis + .cta .btn-outline-sw:focus-visible {
  border-color: #41a5e3;
  background: #41a5e3;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(48, 152, 216, 0.28);
}

body.faq-v2-precision .faq-page {
  --faq-ink: var(--swv2-navy);
  --faq-muted: var(--swv2-text);
  --faq-cyan: var(--swv2-accent);
  --faq-line: var(--swv2-line);
  --faq-line-strong: var(--swv2-line-strong);
}

body.faq-v2-precision .faq-manual {
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

body.faq-v2-precision .faq-command {
  border-bottom: 1px solid var(--swv2-line);
}

body.faq-v2-precision .faq-command .section-title,
body.faq-v2-precision .faq-cluster > h2 {
  color: var(--swv2-navy);
}

body.faq-v2-precision .faq-command p {
  color: var(--swv2-text);
}

body.faq-v2-precision .faq-page .faq-index a {
  color: var(--swv2-navy);
  background: #ffffff;
  border-color: var(--swv2-line);
}

body.faq-v2-precision .faq-page .faq-index a:hover,
body.faq-v2-precision .faq-page .faq-index a.is-active {
  color: var(--swv2-accent);
  background: #ffffff;
  border-color: var(--swv2-accent);
  transform: translateY(-1px);
}

body.faq-v2-precision .faq-entry {
  min-height: 88px;
  background: #ffffff;
  border: 1px solid var(--swv2-line);
  border-radius: 6px;
  box-shadow: none;
}

body.faq-v2-precision .faq-entry + .faq-entry {
  margin-top: 12px;
}

body.faq-v2-precision .faq-entry::after {
  display: none;
}

body.faq-v2-precision .faq-entry.is-open,
body.faq-v2-precision .faq-entry:hover {
  border-color: var(--swv2-line-strong);
  box-shadow: var(--swv2-shadow);
}

body.faq-v2-precision .faq-question-no {
  z-index: 0;
  color: #f1f5f9;
  -webkit-text-stroke: 0 transparent;
  text-stroke: 0 transparent;
}

body.faq-v2-precision .faq-question {
  z-index: 1;
  min-height: 88px;
  color: var(--swv2-navy);
  background: transparent;
}

body.faq-v2-precision .faq-question span {
  color: var(--swv2-navy);
  max-width: none;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.35;
}

body.faq-v2-precision .faq-question i {
  color: var(--swv2-navy);
  background: #ffffff;
  border-color: var(--swv2-line);
}

body.faq-v2-precision .faq-entry:hover .faq-question i,
body.faq-v2-precision .faq-entry.is-open .faq-question i {
  color: var(--swv2-accent);
  background: #ffffff;
  border-color: var(--swv2-accent);
}

body.faq-v2-precision .faq-answer-inner {
  max-width: none;
  margin-bottom: 24px;
  padding: 22px 24px 22px 28px;
  background: var(--swv2-soft);
  border-left: 2px solid var(--swv2-accent);
  border-radius: 0 6px 6px 0;
}

body.faq-v2-precision .faq-answer-inner::before {
  display: none;
}

body.faq-v2-precision .faq-answer-inner p {
  color: var(--swv2-text);
}

body.faq-v2-precision .cta {
  background: var(--swv2-soft);
}

body.contact-v2-precision .contact-page {
  --contact-night: #f8fafc;
  --contact-midnight: #ffffff;
  --contact-panel: #ffffff;
  --contact-panel-strong: #ffffff;
  --contact-line: var(--swv2-line);
  --contact-line-strong: var(--swv2-line-strong);
  --contact-ink: var(--swv2-navy);
  --contact-muted: var(--swv2-text);
  --contact-cyan: var(--swv2-accent);
  --contact-logo-blue: var(--swv2-accent);
  background: var(--swv2-soft);
  color: var(--swv2-text);
}

body.contact-v2-precision .contact-command {
  background: var(--swv2-soft);
}

body.contact-v2-precision #inquiry-form {
  scroll-margin-top: calc(var(--chrome-header-h, 80px) + 28px);
}

body.contact-v2-precision .contact-command::before {
  background:
    linear-gradient(90deg, rgba(203, 213, 225, 0.36) 1px, transparent 1px),
    linear-gradient(180deg, rgba(203, 213, 225, 0.28) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 60% 42%, black, transparent 78%);
}

body.contact-v2-precision .contact-command::after,
body.contact-v2-precision .contact-data-card::after,
body.contact-v2-precision .contact-form-deck::before {
  display: none;
}

body.contact-v2-precision .contact-breadcrumb,
body.contact-v2-precision .contact-breadcrumb a,
body.contact-v2-precision .contact-command-lead,
body.contact-v2-precision .contact-form-head p,
body.contact-v2-precision .contact-data-card small,
body.contact-v2-precision .company-coordinate-grid strong,
body.contact-v2-precision .contact-proof-grid span {
  color: var(--swv2-text);
}

body.contact-v2-precision .contact-command h1,
body.contact-v2-precision .contact-form-head h2,
body.contact-v2-precision .company-coordinate-head h2,
body.contact-v2-precision .contact-data-card strong,
body.contact-v2-precision .contact-promise-rail strong,
body.contact-v2-precision .contact-proof-grid strong {
  color: var(--swv2-navy);
}

body.contact-v2-precision .contact-priority,
body.contact-v2-precision .command-submit {
  color: #ffffff;
  background: var(--swv2-accent);
  border: 1px solid var(--swv2-accent);
  box-shadow: 0 10px 24px rgba(48, 152, 216, 0.18);
}

body.contact-v2-precision .command-submit {
  min-height: 54px;
  border-radius: 6px;
  will-change: auto;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.contact-v2-precision .command-submit::before {
  display: none;
}

body.contact-v2-precision .command-submit:hover {
  background: var(--swv2-accent-dark);
  border-color: var(--swv2-accent-dark);
  box-shadow: 0 12px 28px rgba(36, 127, 189, 0.2);
}

body.contact-v2-precision .command-submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none !important;
}

body.contact-v2-precision .contact-promise-rail,
body.contact-v2-precision .company-coordinate-grid,
body.contact-v2-precision .contact-proof-grid {
  gap: 12px;
  background: transparent;
  border: 0;
}

body.contact-v2-precision .contact-promise-rail div,
body.contact-v2-precision .contact-data-card,
body.contact-v2-precision .company-coordinate-panel,
body.contact-v2-precision .company-coordinate-grid div,
body.contact-v2-precision .contact-form-deck,
body.contact-v2-precision .contact-proof-grid div {
  background: #ffffff;
  border: 1px solid var(--swv2-line);
  box-shadow: var(--swv2-shadow);
  color: var(--swv2-text);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.contact-v2-precision .contact-data-card,
body.contact-v2-precision .company-coordinate-panel,
body.contact-v2-precision .contact-form-deck,
body.contact-v2-precision .contact-proof-grid div {
  border-radius: 6px;
}

body.contact-v2-precision .contact-data-card span,
body.contact-v2-precision .contact-promise-rail span,
body.contact-v2-precision .company-coordinate-head span,
body.contact-v2-precision .company-coordinate-grid span {
  color: var(--swv2-accent);
}

body.contact-v2-precision .contact-form-deck label {
  color: #64748b;
}

body.contact-v2-precision .field-unit {
  min-height: 72px;
  padding-top: 10px;
}

body.contact-v2-precision .field-unit input,
body.contact-v2-precision .field-unit textarea {
  width: 100%;
  min-height: 52px;
  padding: 18px 14px 10px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid var(--swv2-line-strong);
  border-radius: 6px;
  box-shadow: none;
}

body.contact-v2-precision .field-unit textarea {
  min-height: 130px;
}

body.contact-v2-precision .field-unit input:focus,
body.contact-v2-precision .field-unit textarea:focus {
  border-color: var(--swv2-accent);
  box-shadow: 0 0 0 1px var(--swv2-accent);
}

body.contact-v2-precision .field-unit label {
  left: 14px;
  top: 27px;
  padding: 0 4px;
  background: #ffffff;
}

body.contact-v2-precision .field-unit:focus-within label,
body.contact-v2-precision .field-unit.is-filled label,
body.contact-v2-precision .field-file label {
  top: 0;
  color: var(--swv2-accent);
  transform: scale(0.78);
}

body.contact-v2-precision .field-unit .field-line {
  display: none;
}

body.contact-v2-precision .field-unit input[type="file"] {
  color: #475569;
}

body.contact-v2-precision .field-unit input[type="file"]::file-selector-button {
  color: var(--swv2-navy);
  background: var(--swv2-soft);
  border: 1px solid var(--swv2-line-strong);
  border-radius: 4px;
}

body.contact-v2-precision .contact-page .form-status {
  color: #475569;
  background: #f8fafc;
  border-color: var(--swv2-line);
}

body.contact-v2-precision .contact-page .form-status.is-success {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

body.contact-v2-precision .contact-page .form-status.is-error {
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}

body.contact-v2-precision .contact-proof-strip {
  background: var(--swv2-soft);
  border: 0;
  box-shadow: none;
}

body.contact-v2-precision .contact-data-card,
body.contact-v2-precision .company-coordinate-panel,
body.contact-v2-precision .contact-form-deck,
body.contact-v2-precision .contact-proof-grid,
body.contact-v2-precision .contact-proof-grid div {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1199px) {
  body.partners-v2-precision .partners-matrix,
  body.partners-v2-precision .partners-matrix-compact {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  }
}

@media (max-width: 640px) {
  body.partners-v2-precision .partners-matrix,
  body.partners-v2-precision .partners-matrix-compact {
    grid-template-columns: 1fr;
  }

  body.partners-v2-precision .partner-card-inner {
    padding: 24px;
    padding-top: 104px;
  }

  body.partners-v2-precision .partners-network .partner-card-heading {
    max-width: calc(100% - 9rem);
    margin-bottom: 22px;
  }

  body.partners-v2-precision .partners-network .partner-card-logo {
    top: 20px;
    right: 20px;
    width: 142px;
    height: 66px;
    padding: 7px 8px;
  }

  body.partners-v2-precision .partner-card h3 span {
    font-size: clamp(1.78rem, 9vw, 2.18rem);
  }

  body.faq-v2-precision .faq-answer-inner {
    margin-left: 68px;
    padding: 18px 18px 18px 20px;
  }

  body.faq-v2-precision .faq-question span {
    font-size: clamp(1.05rem, 5vw, 1.22rem);
  }

  body.contact-v2-precision .contact-form-head {
    display: grid;
  }
}

/* V2 final global chrome: Siemens/GE style header and trust footer. */
:root {
  --chrome-header-h: 72px;
  --chrome-navy: #383868;
  --chrome-ink: #334155;
  --chrome-muted: #94a3b8;
  --chrome-accent: #3098d8;
  --chrome-accent-dark: #247fbd;
  --chrome-button: #2563eb;
  --chrome-button-hover: #1d4ed8;
  --chrome-line: #e2e8f0;
  --chrome-footer: #0b1120;
  --chrome-footer-line: #1e293b;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--chrome-header-h);
  pointer-events: auto;
  color: var(--chrome-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-bottom: 1px solid var(--chrome-line);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled {
  height: var(--chrome-header-h);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.site-header .container,
.site-header.is-scrolled .container {
  width: min(calc(100% - clamp(28px, 5vw, 72px)), 1320px);
  height: 100%;
  min-height: 0;
  padding: 0;
  color: var(--chrome-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
}

.site-header .brand {
  min-width: 0;
}

.site-header .brand-logo {
  width: clamp(150px, 13vw, 190px);
  max-height: 44px;
}

.site-header .desktop-nav {
  gap: clamp(14px, 1.7vw, 24px);
  color: var(--chrome-ink);
  font-size: 15px;
  font-weight: 600;
}

.site-header .desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: var(--chrome-ink);
  transition: color 0.18s ease;
}

.site-header .desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  width: auto;
  height: 2px;
  background: var(--chrome-accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a.active,
body.home-v2-premium .site-header .desktop-nav a:hover,
body.home-v2-premium .site-header .desktop-nav a.active,
body.about-v2-precision .site-header .desktop-nav a:hover,
body.about-v2-precision .site-header .desktop-nav a.active,
body.products-v2-precision .site-header .desktop-nav a:hover,
body.products-v2-precision .site-header .desktop-nav a.active {
  color: var(--chrome-navy);
}

.site-header .desktop-nav a:hover::after,
.site-header .desktop-nav a.active::after {
  width: auto;
  transform: scaleX(1);
}

.site-header .header-actions {
  gap: 12px;
}

.site-header .language-switcher {
  position: relative;
  display: inline-flex;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-header .lang-current {
  min-height: 42px;
  padding: 0 12px 0 14px;
  color: var(--chrome-ink);
  background: #ffffff;
  border: 1px solid var(--chrome-line);
  border-radius: 8px;
  box-shadow: none;
}

.site-header .lang-current:hover,
.site-header .language-switcher.is-open .lang-current {
  color: var(--chrome-navy);
  border-color: #cbd5e1;
}

body.home-v2-premium .site-header .language-switcher {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body.home-v2-premium .site-header .lang-current {
  background: transparent !important;
  border-color: rgba(56, 56, 104, 0.16) !important;
  box-shadow: none !important;
}

body.home-v2-premium .site-header .lang-current:hover,
body.home-v2-premium .site-header .language-switcher.is-open .lang-current {
  background: rgba(48, 152, 216, 0.06) !important;
  border-color: rgba(48, 152, 216, 0.24) !important;
}

.site-header .lang-menu {
  top: calc(100% + 12px);
  min-width: 150px;
  color: var(--chrome-ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--chrome-line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .lang-option {
  color: var(--chrome-ink);
  border-radius: 6px;
}

.site-header .lang-option:hover {
  color: var(--chrome-navy);
  background: #f8fafc;
}

.site-header .lang-option.active {
  color: #ffffff;
  background: var(--chrome-navy);
}

.site-header .lang-option[disabled] {
  color: #94a3b8;
  opacity: 1;
}

.site-header .btn-primary-sw,
body.home-v2-premium .site-header .btn-primary-sw,
body.about-v2-precision .site-header .btn-primary-sw,
body.products-v2-precision .site-header .btn-primary-sw {
  min-height: 44px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--chrome-button);
  border: 1px solid var(--chrome-button);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(48, 152, 216, 0.2);
  overflow: hidden;
  transform: none;
  will-change: auto;
}

.site-header .btn-primary-sw::before,
.site-header .btn-primary-sw::after,
.site-header .header-cta-fill {
  display: none;
  content: none;
}

.site-header .header-cta-label {
  transform: none !important;
}

.site-header .btn-primary-sw i {
  color: currentColor;
  transform: none !important;
}

.site-header .btn-primary-sw:hover,
.site-header .btn-primary-sw:focus-visible,
body.home-v2-premium .site-header .btn-primary-sw:hover,
body.about-v2-precision .site-header .btn-primary-sw:hover,
body.products-v2-precision .site-header .btn-primary-sw:hover {
  color: #ffffff;
  background: var(--chrome-button-hover);
  border-color: var(--chrome-button-hover);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
  transform: none;
}

.site-header .nav-toggle {
  width: 42px;
  height: 42px;
  color: var(--chrome-navy);
  background: #ffffff;
  border: 1px solid var(--chrome-line);
  border-radius: 8px;
  box-shadow: none;
}

.site-header .nav-toggle i {
  color: currentColor;
}

.mobile-panel {
  inset: calc(var(--chrome-header-h) + 10px) clamp(12px, 4vw, 28px) auto;
  z-index: 89;
  overflow: hidden;
  color: var(--chrome-ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--chrome-line);
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-panel a {
  color: var(--chrome-ink);
  border-bottom-color: var(--chrome-line);
}

.mobile-panel a:hover,
body.home-v2-premium .mobile-panel a[href="/"],
body.about-v2-precision .mobile-panel a[href="/about/"],
body.products-v2-precision .mobile-panel a[href="/products/"],
body.partners-v2-precision .mobile-panel a[href="/partners/"],
body.faq-v2-precision .mobile-panel a[href="/faq/"],
body.contact-v2-precision .mobile-panel a[href="/contact/"] {
  color: var(--chrome-accent);
}

.mobile-lang .lang-option {
  color: var(--chrome-ink);
  background: #ffffff;
  border: 1px solid var(--chrome-line);
  border-radius: 8px;
}

.mobile-lang .lang-option.active {
  color: #ffffff;
  background: var(--chrome-navy);
}

.bg-slate-900 {
  background-color: #0f172a;
}

.bg-blue-600 {
  background-color: #2563eb;
}

body.home-v2-premium .artisan-about .tab-content {
  margin-top: 18px;
}

body.home-v2-premium .artisan-about.section-space {
  overflow: visible;
  overflow-x: clip;
}

body.home-v2-premium .artisan-about > .container {
  overflow: visible;
}

body.home-v2-premium .artisan-about .about-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  overflow: visible;
}

body.home-v2-premium .artisan-about .about-journey-left {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 28px);
  align-self: start;
}

body.home-v2-premium .artisan-about .about-journey-kicker {
  display: block;
  margin-bottom: 16px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.home-v2-premium .artisan-about .about-journey-copy .section-title {
  max-width: 640px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
  line-height: 1.05;
}

body.home-v2-premium .artisan-about .about-journey-lead {
  max-width: 620px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #475569;
  border-left: 4px solid #2563eb;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.8;
}

body.home-v2-premium .artisan-about .about-journey-left .mask-rise-title {
  max-width: 620px;
  margin: 0;
}

body.home-v2-premium .artisan-about .about-journey-left .image-pair {
  max-width: 660px;
  margin: 0;
}

body.home-v2-premium .artisan-about .about-journey-left .image-frame {
  margin-bottom: 0;
}

body.home-v2-premium .artisan-about .about-journey-left .image-frame img {
  height: clamp(160px, 18vw, 240px);
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.home-v2-premium .artisan-about .about-journey-panel {
  min-width: 0;
}

body.home-v2-premium .artisan-about .tab-pane {
  min-width: 0;
}

body.home-v2-premium .artisan-about #history {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(24px, 3vw, 34px);
}

body.home-v2-premium .artisan-about .about-history-split {
  display: contents;
}

body.home-v2-premium .artisan-about .about-history-sticky {
  min-width: 0;
}

body.home-v2-premium .artisan-about .about-history-sticky span {
  display: block;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.home-v2-premium .artisan-about .about-history-sticky h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: 0;
}

body.home-v2-premium .artisan-about .about-history-timeline {
  position: relative;
  display: grid;
  min-width: 0;
}

body.home-v2-premium .artisan-about .about-history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 1px;
  background: #bfdbfe;
}

body.home-v2-premium .artisan-about .about-history-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 3vw, 32px);
  min-width: 0;
  margin-bottom: clamp(30px, 4vw, 48px);
}

body.home-v2-premium .artisan-about .about-history-item:last-child {
  margin-bottom: 0;
}

body.home-v2-premium .artisan-about .about-history-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #2563eb;
  background: #ffffff;
  border: 4px solid #eff6ff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

body.home-v2-premium .artisan-about .about-history-card {
  flex: 1 1 auto;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

body.home-v2-premium .artisan-about .about-history-item:hover .about-history-node {
  color: #ffffff;
  background: #2563eb;
  border-color: #dbeafe;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

body.home-v2-premium .artisan-about .about-history-item:hover .about-history-card {
  border-color: #bfdbfe;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

body.home-v2-premium .artisan-about .about-history-item--future .about-history-node {
  color: #0f172a;
  background: #ffffff;
  border-color: #e2e8f0;
}

body.home-v2-premium .artisan-about .about-history-card h3,
body.home-v2-premium .artisan-about .about-tab-pillars h3,
body.home-v2-premium .artisan-about .about-tab-adv-card h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.45;
}

body.home-v2-premium .artisan-about .about-history-card h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

body.home-v2-premium .artisan-about .about-history-card h3 em {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 8px;
  color: #2563eb;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

body.home-v2-premium .artisan-about .about-history-item--future h3 em {
  color: #0f172a;
  background: #e2e8f0;
  border-color: #cbd5e1;
}

body.home-v2-premium .artisan-about .about-history-card p,
body.home-v2-premium .artisan-about .about-tab-pillars p,
body.home-v2-premium .artisan-about .about-tab-adv-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.72;
}

body.home-v2-premium .artisan-about .about-tab-lead {
  margin: 0 0 18px;
  padding: 16px 18px 16px 20px;
  color: #475569;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 0 12px 12px 0;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.75;
}

body.home-v2-premium .artisan-about .about-tab-lead .text-slate-600.leading-relaxed {
  margin: 0;
  color: #475569;
  font: inherit;
  line-height: 1.75;
}

body.home-v2-premium .artisan-about .mission-industry-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}

body.home-v2-premium .artisan-about .mission-industry-bar .font-bold.text-slate-800 {
  color: #1e293b;
  font-weight: 900;
}

body.home-v2-premium .artisan-about .mission-industry-bar .text-blue-600.font-semibold {
  color: #2563eb;
  font-weight: 850;
}

body.home-v2-premium .artisan-about .mission-industry-bar .text-slate-300.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  color: #cbd5e1;
}

body.home-v2-premium .artisan-about .about-tab-pillars,
body.home-v2-premium .artisan-about .about-tab-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.home-v2-premium .artisan-about .about-tab-pillars article,
body.home-v2-premium .artisan-about .about-tab-adv-card {
  min-width: 0;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

body.home-v2-premium .artisan-about .about-tab-pillars article:hover,
body.home-v2-premium .artisan-about .about-tab-adv-card:hover {
  background: #ffffff;
  border-color: #bfdbfe;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

body.home-v2-premium .artisan-about .about-tab-pillars article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
  color: #2563eb;
  background: #eff6ff;
  border-radius: 11px;
  font-size: 1.14rem;
}

body.home-v2-premium .artisan-about .about-tab-adv-card strong {
  display: block;
  margin-bottom: 9px;
  color: #0f172a;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

body.home-v2-premium .artisan-about .about-tab-adv-card strong span {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 850;
}

body.home-v2-premium .artisan-about .about-tab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

body.home-v2-premium .artisan-about .about-tab-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

@media (min-width: 992px) {
  body.home-v2-premium .artisan-about .about-journey-layout {
    grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr);
    column-gap: clamp(48px, 6vw, 96px);
  }

  body.home-v2-premium .artisan-about .about-journey-left {
    position: sticky;
    top: 96px;
    align-self: start;
  }

  body.home-v2-premium .artisan-about .about-journey-left .image-pair {
    gap: 14px;
  }

  body.home-v2-premium .artisan-about .about-journey-left .image-frame img {
    height: clamp(150px, 17vw, 210px);
    aspect-ratio: 1 / 0.78;
  }

  body.home-v2-premium .artisan-about .about-history-timeline::before {
    left: 40px;
  }

  body.home-v2-premium .artisan-about .about-history-node {
    width: 80px;
    height: 80px;
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  body.home-v2-premium .artisan-about #history {
    padding: 18px;
  }

  body.home-v2-premium .artisan-about .about-journey-layout {
    gap: 30px;
  }

  body.home-v2-premium .artisan-about .about-journey-copy .section-title {
    font-size: 2.25rem;
  }

  body.home-v2-premium .artisan-about .about-journey-lead {
    padding-left: 16px;
    font-size: 0.96rem;
  }

  body.home-v2-premium .artisan-about .about-journey-left .image-pair {
    grid-template-columns: 1fr;
  }

  body.home-v2-premium .artisan-about .about-history-timeline::before {
    left: 28px;
  }

  body.home-v2-premium .artisan-about .about-history-item {
    gap: 14px;
    margin-bottom: 26px;
  }

  body.home-v2-premium .artisan-about .about-history-node {
    width: 56px;
    height: 56px;
    border-width: 3px;
    font-size: 0.92rem;
  }

  body.home-v2-premium .artisan-about .about-history-card {
    padding: 18px;
    border-radius: 14px;
  }

  body.home-v2-premium .artisan-about .about-history-card h3 {
    font-size: 1rem;
  }

  body.home-v2-premium .artisan-about .about-tab-pillars,
  body.home-v2-premium .artisan-about .about-tab-adv-grid {
    grid-template-columns: 1fr;
  }

  body.home-v2-premium .artisan-about .about-tab-pillars article,
  body.home-v2-premium .artisan-about .about-tab-adv-card {
    padding: 16px;
  }

  body.home-v2-premium .artisan-about .about-tab-adv-card strong {
    font-size: 1.85rem;
  }
}

body.home-v2-premium .home-industry-bento {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

body.home-v2-premium .home-industry-bento::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(59, 130, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

body.home-v2-premium .home-industry-bento .container {
  position: relative;
  z-index: 1;
}

body.home-v2-premium .home-industry-head {
  max-width: 780px;
  margin-bottom: 42px;
}

body.home-v2-premium .home-industry-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home-v2-premium .home-industry-head span::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #2563eb;
}

body.home-v2-premium .home-industry-head h2 {
  max-width: 860px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

body.home-v2-premium .home-industry-head p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #475569;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.85;
}

body.home-v2-premium .home-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.home-v2-premium .home-industry-card {
  position: relative;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

body.home-v2-premium .home-industry-card--wide {
  grid-column: span 2;
}

body.home-v2-premium .home-industry-card:nth-child(3) {
  grid-column: span 3;
  min-height: 380px;
}

body.home-v2-premium .home-industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms ease;
}

body.home-v2-premium .home-industry-card:hover img,
body.home-v2-premium .home-industry-card:focus-within img {
  transform: scale(1.05);
}

body.home-v2-premium .home-industry-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.82) 44%, rgba(15, 23, 42, 0.16) 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.32), transparent 62%);
}

body.home-v2-premium .home-industry-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  color: #ffffff;
}

body.home-v2-premium .home-industry-card:nth-child(3) .home-industry-card__content {
  max-width: 720px;
}

body.home-v2-premium .home-industry-card__content > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #93c5fd;
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.home-v2-premium .home-industry-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 950;
  line-height: 1.2;
}

body.home-v2-premium .home-industry-card p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.78;
}

body.home-v2-premium .home-industry-card p strong {
  color: #ffffff;
  font-weight: 950;
}

body.home-v2-premium .home-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

body.home-v2-premium .home-industry-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(14px);
}

body.home-v2-premium .home-industry-note {
  margin-top: 28px;
  padding: 20px 24px;
  color: #475569;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-left: 4px solid #2563eb;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.075);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.8;
}

body.home-v2-premium .home-industry-note strong {
  color: #0f172a;
  font-weight: 950;
}

@media (max-width: 991px) {
  body.home-v2-premium .home-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-v2-premium .home-industry-card,
  body.home-v2-premium .home-industry-card--wide,
  body.home-v2-premium .home-industry-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  body.home-v2-premium .home-industry-bento {
    padding: 68px 0;
  }

  body.home-v2-premium .home-industry-head {
    margin-bottom: 28px;
  }

  body.home-v2-premium .home-industry-head h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  body.home-v2-premium .home-industry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.home-v2-premium .home-industry-card,
  body.home-v2-premium .home-industry-card--wide,
  body.home-v2-premium .home-industry-card:nth-child(3) {
    grid-column: span 1;
    min-height: 520px;
  }

  body.home-v2-premium .home-industry-card__content {
    padding: 24px;
  }

  body.home-v2-premium .home-industry-card p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  body.home-v2-premium .home-industry-tags span {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.72rem;
  }

  body.home-v2-premium .home-industry-note {
    padding: 18px;
  }
}

.global-prefooter-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.global-prefooter-cta::before {
  position: absolute;
  inset: -45% -10% auto auto;
  width: min(680px, 60vw);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32), rgba(37, 99, 235, 0) 66%);
}

.global-prefooter-cta::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.38), transparent);
}

.global-prefooter-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.global-prefooter-cta__copy {
  max-width: 780px;
}

.global-prefooter-cta__kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  color: #93c5fd;
  letter-spacing: 0;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 999px;
}

.global-prefooter-cta h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  font-weight: 950;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 0;
}

.global-prefooter-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 650;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.78);
  letter-spacing: 0;
}

body .global-prefooter-cta .global-prefooter-cta__copy h2 {
  color: #ffffff;
  text-shadow: none;
  -webkit-text-fill-color: #ffffff;
}

body .global-prefooter-cta .global-prefooter-cta__copy p {
  color: rgba(226, 232, 240, 0.8);
  -webkit-text-fill-color: rgba(226, 232, 240, 0.8);
}

body .global-prefooter-cta .global-prefooter-cta__kicker {
  color: #93c5fd;
  -webkit-text-fill-color: #93c5fd;
}

.global-prefooter-cta__button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 56px;
  padding: 0 26px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid rgba(147, 197, 253, 0.32);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.global-prefooter-cta__button:hover,
.global-prefooter-cta__button:focus-visible {
  color: #ffffff;
  background-color: #1d4ed8;
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.42);
  transform: translateY(-2px);
}

.global-prefooter-cta__button i {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.global-prefooter-cta__button:hover i,
.global-prefooter-cta__button:focus-visible i {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .global-prefooter-cta {
    padding: 48px 0 52px;
  }

  .global-prefooter-cta__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .global-prefooter-cta h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .global-prefooter-cta__button {
    width: 100%;
    max-width: 280px;
  }
}

.site-footer {
  color: var(--chrome-muted);
  background: var(--chrome-footer);
}

.site-footer::before,
.site-footer::after {
  display: none;
  content: none;
}

.footer-top {
  padding: clamp(56px, 7vw, 84px) 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.footer-brand {
  min-width: 0;
  margin-bottom: 20px;
}

.footer-brand-logo {
  width: clamp(168px, 16vw, 220px);
  max-height: 54px;
}

.site-footer p {
  margin: 0;
  color: var(--chrome-muted);
  line-height: 1.8;
}

.footer-heading {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

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

.site-footer a,
.site-footer .footer-links a {
  color: #cbd5e1;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer a:hover,
.site-footer .footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-contact i {
  margin-top: 4px;
  color: var(--chrome-accent);
  font-size: 18px;
  line-height: 1;
}

.footer-cert-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-cert-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--chrome-footer-line);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
}

html[lang="zh-CN"] .footer-trust {
  min-width: 248px;
}

html[lang="zh-CN"] .footer-trust > p {
  white-space: nowrap;
}

.footer-bottom {
  padding: 18px clamp(16px, 4vw, 32px);
  color: var(--chrome-muted);
  background: var(--chrome-footer);
  border-top: 1px solid var(--chrome-footer-line);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  .site-header .desktop-nav {
    gap: 12px;
    font-size: 14px;
  }

  .site-header .brand-logo {
    width: 148px;
  }

  .footer-grid {
    grid-template-columns: minmax(250px, 1.25fr) minmax(112px, 0.58fr) minmax(238px, 1fr) minmax(150px, 0.72fr);
    gap: clamp(22px, 2.5vw, 34px);
  }
}

@media (max-width: 991px) {
  :root {
    --chrome-header-h: 66px;
    --sw-header: 66px;
  }

  .site-header {
    height: var(--chrome-header-h);
  }

  .site-header .container,
  .site-header.is-scrolled .container {
    width: calc(100% - 28px);
  }

  .site-header .brand-logo {
    width: 142px;
    max-height: 40px;
  }

  .desktop-nav,
  .header-actions .btn-sw,
  .site-header .language-switcher {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  html[lang="zh-CN"] .footer-trust {
    min-width: 0;
  }

  .footer-top {
    padding-top: 48px;
  }

  .footer-brand-logo {
    width: 174px;
  }
}

@media (max-width: 420px) {
  .site-header .brand-logo {
    width: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .desktop-nav a,
  .site-header .desktop-nav a::after,
  .site-header .btn-primary-sw,
  .site-footer a {
    transition: none;
  }
}

body.home-v2-premium .site-header,
body.about-v2-precision .site-header,
body.products-v2-precision .site-header,
body.partners-v2-precision .site-header,
body.faq-v2-precision .site-header,
body.contact-v2-precision .site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--chrome-line);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.home-v2-premium .site-header.is-scrolled,
body.about-v2-precision .site-header.is-scrolled,
body.products-v2-precision .site-header.is-scrolled,
body.partners-v2-precision .site-header.is-scrolled,
body.faq-v2-precision .site-header.is-scrolled,
body.contact-v2-precision .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

body.home-v2-premium .site-header .container,
body.home-v2-premium .site-header.is-scrolled .container,
body.about-v2-precision .site-header .container,
body.about-v2-precision .site-header.is-scrolled .container,
body.products-v2-precision .site-header .container,
body.products-v2-precision .site-header.is-scrolled .container,
body.partners-v2-precision .site-header .container,
body.partners-v2-precision .site-header.is-scrolled .container,
body.faq-v2-precision .site-header .container,
body.faq-v2-precision .site-header.is-scrolled .container,
body.contact-v2-precision .site-header .container,
body.contact-v2-precision .site-header.is-scrolled .container {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.home-v2-premium .site-header .desktop-nav a::after,
body.about-v2-precision .site-header .desktop-nav a::after,
body.products-v2-precision .site-header .desktop-nav a::after,
body.partners-v2-precision .site-header .desktop-nav a::after,
body.faq-v2-precision .site-header .desktop-nav a::after,
body.contact-v2-precision .site-header .desktop-nav a::after {
  background: var(--chrome-accent);
}

body.home-v2-premium .site-footer p,
body.about-v2-precision .site-footer p,
body.products-v2-precision .site-footer p,
body.partners-v2-precision .site-footer p,
body.faq-v2-precision .site-footer p,
body.contact-v2-precision .site-footer p,
body.home-v2-premium .site-footer a,
body.about-v2-precision .site-footer a,
body.products-v2-precision .site-footer a,
body.partners-v2-precision .site-footer a,
body.faq-v2-precision .site-footer a,
body.contact-v2-precision .site-footer a {
  color: var(--chrome-muted);
}

body.home-v2-premium .site-footer .footer-heading,
body.about-v2-precision .site-footer .footer-heading,
body.products-v2-precision .site-footer .footer-heading,
body.partners-v2-precision .site-footer .footer-heading,
body.faq-v2-precision .site-footer .footer-heading,
body.contact-v2-precision .site-footer .footer-heading {
  color: #ffffff;
}

body.home-v2-premium .site-footer .footer-links a,
body.about-v2-precision .site-footer .footer-links a,
body.products-v2-precision .site-footer .footer-links a,
body.partners-v2-precision .site-footer .footer-links a,
body.faq-v2-precision .site-footer .footer-links a,
body.contact-v2-precision .site-footer .footer-links a,
body.home-v2-premium .site-footer .footer-contact a,
body.about-v2-precision .site-footer .footer-contact a,
body.products-v2-precision .site-footer .footer-contact a,
body.partners-v2-precision .site-footer .footer-contact a,
body.faq-v2-precision .site-footer .footer-contact a,
body.contact-v2-precision .site-footer .footer-contact a {
  color: #cbd5e1;
}

body.home-v2-premium .site-footer a:hover,
body.about-v2-precision .site-footer a:hover,
body.products-v2-precision .site-footer a:hover,
body.partners-v2-precision .site-footer a:hover,
body.faq-v2-precision .site-footer a:hover,
body.contact-v2-precision .site-footer a:hover {
  color: #ffffff;
}

/* V2 FAQ command header layout repair. */
body.faq-v2-precision .faq-manual {
  padding: clamp(64px, 8vw, 96px) 0;
}

body.faq-v2-precision .faq-command {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 4.4vw, 58px);
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(30px, 4.8vw, 52px);
  background: #ffffff;
  border: 1px solid var(--swv2-line);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

body.faq-v2-precision .faq-command .section-title {
  max-width: 620px;
  margin: 0;
  color: var(--swv2-navy);
  font-size: clamp(2.35rem, 3.8vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

body.faq-v2-precision .faq-command p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--swv2-text);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.85;
  text-wrap: pretty;
}

body.faq-v2-precision .faq-page .faq-index {
  align-self: center;
  justify-content: flex-start;
  gap: 10px;
  max-width: 480px;
}

body.faq-v2-precision .faq-page .faq-index a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  body.faq-v2-precision .faq-command {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.faq-v2-precision .faq-page .faq-index {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  body.faq-v2-precision .faq-manual {
    padding: 54px 0 64px;
  }

  body.faq-v2-precision .faq-command {
    padding: 24px 20px;
    margin-bottom: 34px;
  }

  body.faq-v2-precision .faq-command .section-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body.faq-v2-precision .faq-page .faq-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.faq-v2-precision .faq-page .faq-index a {
    min-width: 0;
    padding: 9px 8px;
    font-size: 12px;
    white-space: normal;
  }
}

/* V2 hero bitmap repeat guard for ultra-wide viewports. */
body.partners-v2-precision .partners-hero {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

body.partners-v2-precision .partners-hero {
  background-position: center 46% !important;
}

body.faq-v2-precision .faq-hero.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 500px;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: #0f172a;
  background: #f9f9f9 !important;
  background-image: none !important;
}

body.faq-v2-precision .global-brand-slogan + .faq-page .faq-hero.page-hero {
  margin-top: 0;
}

body.faq-v2-precision .faq-hero.page-hero::before,
body.faq-v2-precision .faq-hero.page-hero::after {
  display: none;
}

body.faq-v2-precision .faq-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 clamp(24px, 24vw, 520px);
  background: transparent;
  pointer-events: none;
}

body.faq-v2-precision .faq-hero__copy {
  width: min(100%, 620px);
  transform: translateY(-4px);
}

body.faq-v2-precision .faq-hero__media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100%, calc(500px * 1672 / 941));
  height: 100%;
  overflow: hidden;
  background: transparent;
}

body.faq-v2-precision .faq-hero__media img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: right center;
}

body.faq-v2-precision .faq-hero__blend {
  position: absolute;
  inset-block: 0;
  left: 0;
  z-index: 2;
  width: 8rem;
  pointer-events: none;
  background: linear-gradient(90deg, #f9f9f9 0%, rgba(249, 249, 249, 0) 100%);
}

body.faq-v2-precision .faq-hero .page-title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(3.4rem, 4.9vw, 5.25rem) !important;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: none;
}

body.faq-v2-precision .faq-hero .breadcrumb-sw {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  color: #2563eb;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: none;
}

body.faq-v2-precision .faq-hero .breadcrumb-sw a,
body.faq-v2-precision .faq-hero .breadcrumb-sw span {
  color: inherit;
  text-shadow: none;
}

body.faq-v2-precision .faq-hero .hero-copy {
  max-width: 46rem;
  margin: 18px 0 0;
  color: #334155;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 650;
  line-height: 1.65;
  text-shadow: none;
}

@media (max-width: 767px) {
  body.faq-v2-precision .faq-hero.page-hero {
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  body.faq-v2-precision .faq-hero__content {
    position: relative;
    flex-basis: auto;
    width: 100%;
    justify-content: flex-start;
    min-height: 0;
    padding: 34px 24px 26px;
    pointer-events: auto;
  }

  body.faq-v2-precision .faq-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 0 18px;
    justify-content: center;
    overflow: hidden;
  }

  body.faq-v2-precision .faq-hero__media img {
    width: 100%;
    height: auto;
    max-height: 100%;
  }

  body.faq-v2-precision .faq-hero__blend {
    inset-block: auto;
    inset-inline: 0;
    top: 0;
    width: auto;
    height: 6rem;
    background: linear-gradient(
      180deg,
      #f9f9f9 0%,
      rgba(249, 249, 249, 0.82) 52%,
      rgba(249, 249, 249, 0) 100%
    );
  }

  body.faq-v2-precision .faq-hero .page-title {
    font-size: clamp(2.55rem, 12vw, 3.55rem) !important;
  }

  body.faq-v2-precision .faq-hero .hero-copy {
    max-width: 24rem;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  body.faq-v2-precision .faq-hero .breadcrumb-sw {
    font-size: 0.76rem;
  }
}

/* V2 content completion: brand slogan, hard proof strip, and trust assets. */
.global-brand-slogan {
  position: relative;
  z-index: 2;
  margin-top: var(--chrome-header-h);
  padding: 14px clamp(18px, 4vw, 48px);
  color: #31395b;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(48, 152, 216, 0.14);
  text-align: center;
}

.global-brand-slogan p {
  margin: 0;
}

.global-brand-slogan-cn,
.footer-slogan-cn {
  font-family: "Noto Serif SC", "Songti SC", "STSong", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.global-brand-slogan-cn {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.45;
}

.global-brand-slogan-en {
  margin-top: 4px !important;
  color: #64748b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 0.86vw, 0.92rem);
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.home-core-assets {
  padding: 24px 0;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-bottom: 1px solid rgba(48, 152, 216, 0.12);
}

.home-core-assets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(48, 152, 216, 0.16);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(49, 57, 91, 0.06);
}

.home-core-assets-grid div {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  justify-items: center;
  padding: 18px 16px;
  text-align: center;
}

.home-core-assets-grid div + div {
  border-left: 1px solid rgba(48, 152, 216, 0.16);
}

.home-core-assets-grid strong {
  color: #31395b;
  font-size: clamp(1.7rem, 2.8vw, 2.65rem);
  font-weight: 900;
  line-height: 1;
}

.home-core-assets-grid span {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 700;
}

body.about-v2-precision .about-trust-assets {
  background: #ffffff;
}

.about-trust-assets-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.about-trust-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.about-trust-asset {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(49, 57, 91, 0.08);
}

.about-trust-asset::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #3098d8, #31395b);
}

.about-trust-asset img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-trust-asset figcaption {
  padding: clamp(18px, 2.4vw, 26px);
}

.about-trust-asset figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #3098d8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-trust-asset figcaption strong {
  display: block;
  margin-bottom: 10px;
  color: #31395b;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.3;
}

.about-trust-asset figcaption p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.footer-brand-slogan {
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.footer-brand-slogan p {
  margin: 0;
}

.footer-slogan-cn {
  color: #ffffff !important;
  font-size: 1.02rem;
  line-height: 1.55;
}

.footer-slogan-en {
  margin-top: 5px !important;
  color: #94a3b8 !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .home-core-assets-grid,
  .about-trust-assets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-core-assets-grid div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(48, 152, 216, 0.16);
  }

  .home-core-assets-grid div:nth-child(4) {
    border-top: 1px solid rgba(48, 152, 216, 0.16);
  }
}

@media (max-width: 640px) {
  .global-brand-slogan {
    padding: 11px 18px 12px;
  }

  .global-brand-slogan-cn {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }

  .global-brand-slogan-en {
    font-size: 0.72rem;
  }

  .home-core-assets {
    padding: 18px 0;
  }

  .home-core-assets-grid,
  .about-trust-assets-grid {
    grid-template-columns: 1fr;
  }

  .home-core-assets-grid div {
    min-height: 82px;
  }

  .home-core-assets-grid div + div,
  .home-core-assets-grid div:nth-child(3),
  .home-core-assets-grid div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(48, 152, 216, 0.16);
  }
}

body.about-v2-precision .about-product-capability {
  padding: clamp(70px, 8vw, 104px) 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

body.about-v2-precision .about-product-capability .dark-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

body.about-v2-precision .about-product-capability .product-index,
body.about-v2-precision .about-procurement-sourcing .procurement-sourcing-head > span,
body.about-v2-precision .about-procurement-sourcing .sourcing-section-heading > span,
body.about-v2-precision .about-procurement-sourcing .sourcing-tier-num,
body.about-v2-precision .about-procurement-sourcing .sourcing-precision-left > span {
  display: block;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

body.about-v2-precision .about-product-capability h2,
body.about-v2-precision .about-procurement-sourcing h2,
body.about-v2-precision .about-procurement-sourcing h3,
body.about-v2-precision .about-procurement-sourcing h4 {
  color: #0f172a;
}

body.about-v2-precision .about-product-capability h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 1.05;
}

body.about-v2-precision .about-product-capability p,
body.about-v2-precision .about-procurement-sourcing p {
  color: #64748b;
}

body.about-v2-precision .about-product-capability p {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.85;
}

body.about-v2-precision .about-product-capability .capability-plate {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
}

body.about-v2-precision .about-product-capability .capability-plate span,
body.about-v2-precision .about-product-capability .capability-plate strong {
  display: block;
  min-height: 64px;
  padding: 18px 22px;
  border-bottom: 1px solid #eef2f6;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.65;
}

body.about-v2-precision .about-product-capability .capability-plate span {
  color: #2563eb;
}

body.about-v2-precision .about-product-capability .capability-plate strong {
  color: #0f172a;
  text-align: right;
}

body.about-v2-precision .about-product-capability .capability-plate span:nth-last-child(-n+2),
body.about-v2-precision .about-product-capability .capability-plate strong:nth-last-child(-n+1) {
  border-bottom: 0;
}

body.about-v2-precision .about-procurement-sourcing {
  padding: clamp(72px, 9vw, 112px) 0 clamp(84px, 10vw, 124px);
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

body.about-v2-precision .about-procurement-sourcing .procurement-sourcing-head {
  max-width: 820px;
}

body.about-v2-precision .about-procurement-sourcing .procurement-sourcing-head h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 4.3rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

body.about-v2-precision .about-procurement-sourcing .procurement-sourcing-head h2 small {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 850;
  line-height: 1.25;
}

body.about-v2-precision .about-procurement-sourcing .procurement-sourcing-head strong {
  display: block;
  margin-top: 26px;
  color: #2563eb;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 950;
}

body.about-v2-precision .about-procurement-sourcing .procurement-sourcing-head p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.85;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-grid,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-grid,
body.about-v2-precision .about-procurement-sourcing .sourcing-case-grid,
body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid {
  display: grid;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: 58px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.06);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-card,
body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card {
  min-height: 100%;
  padding: 32px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--oem {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  border-radius: 12px 0 0 12px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--alternative {
  border-right: 1px solid #e2e8f0;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse {
  z-index: 2;
  margin-top: -16px;
  padding: 40px;
  background: #0f172a;
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
  transform: scale(1.05);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 950;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card small {
  display: block;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card p {
  margin: 20px 0 0;
  font-size: 0.94rem;
  line-height: 1.75;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse h3,
body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse small,
body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse .sourcing-tier-num {
  color: #ffffff;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse p {
  color: rgba(226, 232, 240, 0.78);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-brand-tags,
body.about-v2-precision .about-procurement-sourcing .sourcing-chip-list,
body.about-v2-precision .about-procurement-sourcing .sourcing-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-brand-tags {
  margin-top: 24px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-brand-tags span,
body.about-v2-precision .about-procurement-sourcing .sourcing-chip-list span,
body.about-v2-precision .about-procurement-sourcing .sourcing-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  background: #f1f5f9;
  border-radius: 999px;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 850;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-brand-tags span {
  min-height: 30px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse .sourcing-brand-tags span {
  background: rgba(96, 165, 250, 0.16);
  border-color: rgba(147, 197, 253, 0.2);
  color: #bfdbfe;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.65;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse .sourcing-note {
  border-top-color: rgba(226, 232, 240, 0.16);
  color: rgba(226, 232, 240, 0.72);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-section-heading {
  max-width: 760px;
  margin-top: clamp(68px, 8vw, 96px);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-section-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 950;
  line-height: 1.1;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-section-heading p {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 24px;
  align-items: stretch;
  margin-top: 36px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card {
  min-height: 290px;
  padding: 28px;
  border-radius: 18px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--wide {
  grid-column: span 2;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--dark {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--soft {
  background: #f8fafc;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--blue {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.2);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-top i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #eff6ff;
  border-radius: 14px;
  color: #2563eb;
  font-size: 1.35rem;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-top h4 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1.35;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-top span {
  display: inline-flex;
  margin-top: 6px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 850;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--dark h4,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--dark .sourcing-category-top span,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--blue h4,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--blue .sourcing-category-top span {
  color: #ffffff;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--dark .sourcing-category-top i,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--blue .sourcing-category-top i {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-chip-list {
  margin-top: 24px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--dark .sourcing-chip-list span,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--blue .sourcing-chip-list span {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card p {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.86rem;
  line-height: 1.72;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--dark p,
body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--blue p {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-grid {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(34px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(135deg, #f1f5f9 0%, #e0f2fe 100%);
  border: 1px solid #dbeafe;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature::before {
  content: "Ra 0.8";
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(37, 99, 235, 0.09);
  font-size: clamp(4.8rem, 10vw, 8.8rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature > span,
body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item > span {
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature h4 {
  position: relative;
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1.03;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature p {
  position: relative;
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.82;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-tags {
  margin-top: 20px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature .sourcing-case-tags {
  position: relative;
  margin-top: 26px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature .sourcing-case-tags span {
  background: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item:last-child {
  margin-bottom: 0;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item > span {
  width: 108px;
  flex: 0 0 auto;
  line-height: 1.45;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item h4 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.35;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item p {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.72;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item .sourcing-case-tags {
  margin-top: 14px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(60px, 7vw, 88px);
  padding: clamp(32px, 5vw, 56px);
  background: #0f172a;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-left h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.6vw, 3.3rem);
  font-weight: 950;
  line-height: 1.05;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-left p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.98rem;
  line-height: 1.8;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-left strong {
  display: block;
  margin-top: 30px;
  color: #60a5fa;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-left strong em {
  color: #ffffff;
  font-style: normal;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-left small {
  display: block;
  margin-top: 12px;
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.82rem;
  line-height: 1.6;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-list {
  display: grid;
  gap: 14px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-list article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-list span {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-precision-list p {
  margin: 8px 0 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.86rem;
  line-height: 1.65;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
  padding-top: 72px;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  border-top: 2px dashed #bfdbfe;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article {
  position: relative;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article > span {
  position: absolute;
  top: -72px;
  left: 0;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border: 6px solid #f8fafc;
  border-radius: 999px;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
}

body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid h4 {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 950;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid p {
  max-width: 260px;
  margin: 12px 0 0;
  font-size: 0.86rem;
  line-height: 1.72;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-notice {
  margin-top: 48px;
  padding: 22px 24px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.8;
}

body.about-v2-precision .about-procurement-sourcing .sourcing-notice strong {
  color: #0f172a;
  font-weight: 950;
}

@media (max-width: 1180px) {
  body.about-v2-precision .about-procurement-sourcing .sourcing-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-case-grid {
    grid-template-columns: 1fr;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature {
    min-height: 360px;
  }
}

@media (max-width: 991px) {
  body.about-v2-precision .about-product-capability .dark-capability-grid,
  body.about-v2-precision .about-procurement-sourcing .sourcing-precision-banner {
    grid-template-columns: 1fr;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-tier-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card,
  body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--oem,
  body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--alternative,
  body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse {
    margin-top: 0;
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px;
    transform: none;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-category-grid,
  body.about-v2-precision .about-procurement-sourcing .sourcing-category-card--wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
    padding-left: 30px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed #bfdbfe;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article {
    min-height: 88px;
    padding-left: 36px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article > span {
    top: 0;
    left: -30px;
  }
}

@media (max-width: 575px) {
  body.about-v2-precision .about-product-capability {
    padding: 54px 0;
  }

  body.about-v2-precision .about-product-capability .capability-plate {
    grid-template-columns: 1fr;
  }

  body.about-v2-precision .about-product-capability .capability-plate strong {
    text-align: left;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-tier-grid {
    margin-top: 38px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse {
    padding: 28px 22px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 20px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature h4 {
    font-size: 2rem;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item {
    display: block;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-case-list-item > span {
    display: block;
    width: auto;
    margin-bottom: 12px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid {
    padding-left: 24px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid::before {
    left: 20px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article {
    padding-left: 32px;
  }

  body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article > span {
    left: -28px;
    width: 42px;
    height: 42px;
    border-width: 5px;
  }
}

/* Local preview: restore original pinned horizontal product gallery on V2 products. */
body.products-v2-precision .product-horizontal[data-product-horizontal] {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #07121d;
  color: #f5f2ea;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-sticky {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--chrome-header-h) + 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(48, 152, 216, 0.16), transparent 30vw),
    linear-gradient(180deg, #07121d, #050b12);
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto 22px;
  padding: 0;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-head span {
  color: #3098d8;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-progress {
  display: block;
  height: 2px;
  background: rgba(192, 192, 192, 0.13);
  overflow: hidden;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-progress i {
  display: block;
  width: var(--product-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, #3098d8, #f5f2ea);
  box-shadow: 0 0 18px rgba(48, 152, 216, 0.32);
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-track {
  display: flex;
  grid-template-columns: none;
  gap: 0;
  width: max-content;
  margin: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1fr);
  align-items: center;
  gap: clamp(24px, 3.2vw, 56px);
  flex: 0 0 100vw;
  width: 100vw;
  min-width: 100vw;
  min-height: calc(100vh - var(--chrome-header-h) - 72px);
  padding: clamp(28px, 4vw, 58px) max(5vw, calc((100vw - 1280px) / 2));
  overflow: hidden;
  color: #f5f2ea;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
  scroll-margin-top: calc(var(--chrome-header-h) + 80px);
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel::before {
  content: attr(data-depth);
  position: absolute;
  right: 4vw;
  top: 3vh;
  color: rgba(192, 192, 192, 0.035);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none !important;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel-copy {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #f5f2ea;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.86;
  font-weight: 950;
  text-wrap: balance;
  text-shadow: 0 20px 64px rgba(0, 0, 0, 0.42);
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel-copy p {
  max-width: 620px;
  color: rgba(245, 242, 234, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.92;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-index {
  color: #3098d8;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 22px;
  border: 0;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid span,
body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-pill-list li {
  color: #f5f2ea;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(192, 192, 192, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid span {
  min-height: 84px;
  padding: 16px;
  font-weight: 900;
  line-height: 1.35;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid b {
  display: block;
  margin-bottom: 8px;
  color: rgba(192, 192, 192, 0.58);
  font-size: 0.72rem;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-pill-list li {
  padding: 9px 13px;
  color: rgba(245, 242, 234, 0.82);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 900;
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-product-visual {
  position: relative;
  z-index: 1;
  order: initial;
  height: auto;
  min-height: 0;
  margin: 0;
  aspect-ratio: 1.36 / 1;
  padding: clamp(8px, 0.8vw, 12px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.09), transparent 56%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 6px;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.42), 0 18px 70px rgba(48, 152, 216, 0.11);
}

body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(0.98);
}

@media (max-width: 991px) {
  body.products-v2-precision .product-horizontal[data-product-horizontal] {
    padding: clamp(70px, 8vw, 104px) 0;
    overflow: visible;
    background: #07121d;
    color: #ffffff;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-sticky {
    min-height: 0;
    padding-top: 0;
    overflow: visible;
    background:
      radial-gradient(circle at 16% 4%, rgba(37, 99, 235, 0.2), transparent 42vw),
      linear-gradient(180deg, #07121d, #050b12);
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-head {
    display: flex;
    width: min(1180px, calc(100% - 28px));
    margin-bottom: clamp(28px, 4vw, 48px);
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-head span {
    color: #ffffff;
    font-size: clamp(1.875rem, 8vw, 2.45rem);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.05;
    text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-progress {
    display: none;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-horizontal-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    transform: none !important;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel {
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    color: var(--precision-muted);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel::before {
    content: none;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel-copy {
    padding: clamp(24px, 6vw, 32px);
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel-copy h2 {
    color: var(--precision-navy);
    font-size: clamp(1.35rem, 6vw, 1.72rem);
    line-height: 1.28;
    text-shadow: none;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel-copy p {
    color: var(--precision-muted);
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px 0 24px;
    border: 0;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid span {
    min-height: 0;
    padding: 16px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: none;
    font-size: 0.875rem;
    font-weight: 950;
    line-height: 1.45;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid b {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-pill-list {
    gap: 8px;
    margin-top: 0;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-pill-list li {
    padding: 6px 12px;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 999px;
    box-shadow: none;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-pill-list li:first-child {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #dbeafe;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-product-visual {
    order: -1;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.5 / 1;
    padding: 0;
    overflow: hidden;
    background: #f8fafc;
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 16px 16px 0 0;
    box-shadow: none;
  }

  body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

body.products-v2-precision .adapter-selection {
  background: #ffffff;
  color: var(--precision-muted);
}

body.products-v2-precision .adapter-selection .section-head {
  align-items: end;
}

body.products-v2-precision .adapter-selection-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

body.products-v2-precision .adapter-selection-stats article,
body.products-v2-precision .adapter-selection-card,
body.products-v2-precision .adapter-jp-note {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
}

body.products-v2-precision .adapter-selection-stats article {
  min-height: 142px;
  padding: 20px;
}

body.products-v2-precision .adapter-selection-stats span,
body.products-v2-precision .adapter-selection-card > span,
body.products-v2-precision .adapter-jp-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--precision-accent);
  font-size: 0.78rem;
  font-weight: 900;
}

body.products-v2-precision .adapter-selection-stats strong {
  display: block;
  color: var(--precision-navy);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}

body.products-v2-precision .adapter-selection-stats small {
  display: block;
  margin-top: 10px;
  color: var(--precision-muted);
  font-weight: 700;
  line-height: 1.55;
}

body.products-v2-precision .adapter-jp-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 30px);
  background: #f8fafc;
}

body.products-v2-precision .adapter-jp-note i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--precision-accent);
  border-radius: 999px;
  font-size: 1.35rem;
}

body.products-v2-precision .adapter-jp-note p {
  margin: 0;
  color: var(--precision-muted);
  line-height: 1.8;
}

body.products-v2-precision .adapter-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.products-v2-precision .adapter-selection-card {
  padding: clamp(24px, 3vw, 34px);
}

body.products-v2-precision .adapter-selection-card h3 {
  margin-bottom: 18px;
  color: var(--precision-navy);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.18;
}

body.products-v2-precision .adapter-selection-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.products-v2-precision .adapter-selection-card li {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 0.66fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid #eef2f6;
}

body.products-v2-precision .adapter-selection-card b {
  color: var(--precision-navy);
}

body.products-v2-precision .adapter-selection-card li span {
  color: var(--precision-muted);
  line-height: 1.7;
}

body.products-v2-precision .adapter-standard-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

body.products-v2-precision .adapter-standard-list span {
  padding: 9px 13px;
  color: var(--precision-navy);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 900;
}

@media (max-width: 991px) {
  body.products-v2-precision .adapter-selection-stats,
  body.products-v2-precision .adapter-selection-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .adapter-selection-card li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 575px) {
  body.products-v2-precision .adapter-jp-note {
    grid-template-columns: 1fr;
  }
}

body.products-v2-precision .hose-valve-capability {
  background: #f8fafc;
  color: var(--precision-muted);
}

body.products-v2-precision .hose-valve-capability .section-head {
  align-items: end;
}

body.products-v2-precision .hose-valve-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

body.products-v2-precision .hose-valve-stats article,
body.products-v2-precision .hose-valve-card,
body.products-v2-precision .hose-valve-applications {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.055), 0 10px 26px rgba(15, 23, 42, 0.045);
}

body.products-v2-precision .hose-valve-stats article {
  min-height: 142px;
  padding: 20px;
}

body.products-v2-precision .hose-valve-stats span,
body.products-v2-precision .hose-valve-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--precision-accent);
  font-size: 0.78rem;
  font-weight: 900;
}

body.products-v2-precision .hose-valve-stats strong {
  display: block;
  color: var(--precision-navy);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}

body.products-v2-precision .hose-valve-stats small {
  display: block;
  margin-top: 10px;
  color: var(--precision-muted);
  font-weight: 700;
  line-height: 1.55;
}

body.products-v2-precision .hose-valve-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.products-v2-precision .hose-valve-card {
  padding: clamp(24px, 3vw, 34px);
}

body.products-v2-precision .hose-valve-card h3,
body.products-v2-precision .hose-valve-applications h3 {
  margin-bottom: 14px;
  color: var(--precision-navy);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.18;
}

body.products-v2-precision .hose-valve-card p {
  margin-bottom: 20px;
  color: var(--precision-muted);
  line-height: 1.8;
}

body.products-v2-precision .hose-valve-card ul,
body.products-v2-precision .hose-valve-applications ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.products-v2-precision .hose-valve-card li {
  position: relative;
  padding-left: 18px;
  color: var(--precision-navy);
  font-weight: 800;
  line-height: 1.65;
}

body.products-v2-precision .hose-valve-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--precision-accent);
}

body.products-v2-precision .hose-valve-applications {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  margin-top: 22px;
  padding: clamp(24px, 3vw, 34px);
}

body.products-v2-precision .hose-valve-applications li {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 0.66fr);
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef2f6;
}

body.products-v2-precision .hose-valve-applications b {
  color: var(--precision-navy);
}

body.products-v2-precision .hose-valve-applications span {
  color: var(--precision-muted);
  line-height: 1.72;
}

body.products-v2-precision .hose-valve-standard-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

body.products-v2-precision .hose-valve-standard-list span {
  padding: 9px 13px;
  color: var(--precision-navy);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 900;
}

@media (max-width: 991px) {
  body.products-v2-precision .hose-valve-stats,
  body.products-v2-precision .hose-valve-detail-grid,
  body.products-v2-precision .hose-valve-applications {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .hose-valve-applications li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

body.products-v2-precision.shimizu-v2-catalog {
  background: #f8fafc;
}

body.products-v2-precision.shimizu-v2-catalog .shimizu-catalog-section,
body.products-v2-precision.shimizu-v2-catalog .shimizu-hero {
  background: #f8fafc;
}

body.products-v2-precision .digital-spec-showroom {
  position: relative;
  overflow: visible;
  background:
    linear-gradient(rgba(14, 165, 233, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px),
    #f8fafc;
  background-size: 42px 42px, 42px 42px, auto;
}

body.products-v2-precision .digital-spec-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.27fr) minmax(0, 0.73fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

body.products-v2-precision .digital-spec-nav {
  grid-column: 1;
  position: sticky;
  top: 118px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

body.products-v2-precision .digital-spec-showroom.is-spec-nav-fixed:not(.is-flange-scroll) .digital-spec-nav {
  position: fixed;
  top: 118px;
  left: var(--spec-nav-left, auto);
  width: var(--spec-nav-width, 240px);
  z-index: 25;
}

body.products-v2-precision .digital-spec-showroom.is-flange-scroll .digital-spec-nav {
  position: absolute;
  top: var(--spec-nav-release-top, 0);
  left: 0;
  width: var(--spec-nav-width, 240px);
}

body.products-v2-precision .digital-spec-nav-title {
  padding: 8px 10px 10px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 900;
}

body.products-v2-precision .digital-spec-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px;
  color: #334155;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

body.products-v2-precision .digital-spec-nav a i {
  color: #0ea5e9;
  font-size: 1.05rem;
}

body.products-v2-precision .digital-spec-nav a:hover,
body.products-v2-precision .digital-spec-nav a.is-active {
  color: #0f172a;
  background: #eff6ff;
  border-color: #bfdbfe;
  transform: translateX(2px);
}

body.products-v2-precision .digital-spec-main {
  grid-column: 2;
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  min-width: 0;
}

body.products-v2-precision .digital-spec-intro {
  max-width: 780px;
}

body.products-v2-precision .digital-spec-intro .section-title {
  margin: 10px 0 14px;
  color: #0f172a;
}

body.products-v2-precision .digital-spec-intro p {
  max-width: 62ch;
  color: #475569;
  line-height: 1.75;
}

body.products-v2-precision .spec-stream-section {
  scroll-margin-top: 120px;
}

body.products-v2-precision .spec-stream-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

body.products-v2-precision .spec-stream-head > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  font-weight: 950;
}

body.products-v2-precision .spec-stream-head h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 950;
  line-height: 1.12;
}

body.products-v2-precision .spec-stream-head p {
  max-width: 66ch;
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

body.products-v2-precision .spec-subsection-title {
  margin: clamp(26px, 4vw, 44px) 0 16px;
}

body.products-v2-precision .spec-subsection-title:first-of-type {
  margin-top: 0;
}

body.products-v2-precision .spec-subsection-title span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

body.products-v2-precision .spec-subsection-title h4 {
  max-width: 780px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  font-weight: 950;
  line-height: 1.25;
}

body.products-v2-precision .spec-subsection-title p {
  max-width: 76ch;
  margin: 10px 0 0;
  color: #475569;
  line-height: 1.72;
}

body.products-v2-precision .spec-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 4px;
}

body.products-v2-precision .spec-overview-card {
  min-width: 0;
  min-height: 132px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

body.products-v2-precision .spec-overview-card span {
  display: block;
  margin-bottom: 10px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
}

body.products-v2-precision .spec-overview-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.45;
}

body.products-v2-precision .spec-overview-card small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  line-height: 1.45;
}

body.products-v2-precision .spec-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

body.products-v2-precision .spec-drawer-card {
  position: relative;
  align-self: start;
  min-height: 250px;
  padding: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 36px rgba(15, 23, 42, 0.055);
  cursor: default;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

body.products-v2-precision .spec-drawer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #0ea5e9, rgba(14, 165, 233, 0.06));
  opacity: 0.55;
}

body.products-v2-precision .spec-drawer-card:hover,
body.products-v2-precision .spec-drawer-card:focus-visible,
body.products-v2-precision .spec-drawer-card.is-open {
  border-color: #93c5fd;
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.12);
  transform: translateY(-2px);
  outline: none;
}

body.products-v2-precision .spec-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  color: #0369a1;
  font-size: 0.82rem;
  font-weight: 950;
}

body.products-v2-precision .spec-card-top i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #0284c7;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  font-size: 1.12rem;
}

body.products-v2-precision .spec-drawer-card h4 {
  max-width: 16ch;
  margin: 0 0 12px;
  color: #0f172a;
  font-size: clamp(1.28rem, 1.6vw, 1.78rem);
  font-weight: 950;
  line-height: 1.15;
}

body.products-v2-precision .spec-drawer-card > p {
  min-height: 3.4em;
  margin: 0 0 22px;
  color: #475569;
  line-height: 1.68;
}

body.products-v2-precision .spec-card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #0284c7;
  background: transparent;
  border: 0;
  font-size: 0.92rem;
  font-weight: 950;
  pointer-events: none;
}

body.products-v2-precision .spec-card-toggle i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

body.products-v2-precision .spec-drawer-card.is-open .spec-card-toggle i {
  transform: rotate(45deg);
}

body.products-v2-precision .spec-card-detail {
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

body.products-v2-precision .spec-kv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

body.products-v2-precision .spec-kv-grid div {
  min-width: 0;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

body.products-v2-precision .spec-kv-grid dt {
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 850;
}

body.products-v2-precision .spec-kv-grid dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.5;
}

body.products-v2-precision .spec-step-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

body.products-v2-precision .spec-step-list li {
  display: grid;
  grid-template-columns: minmax(108px, 0.28fr) minmax(0, 0.72fr);
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

body.products-v2-precision .spec-step-list b {
  color: #0f172a;
  font-weight: 900;
}

body.products-v2-precision .spec-step-list span {
  color: #475569;
  line-height: 1.58;
}

body.products-v2-precision .spec-card-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  color: #334155;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.62;
}

body.products-v2-precision .spec-wide-kv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

body.products-v2-precision .spec-wide-kv div {
  min-width: 0;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

body.products-v2-precision .spec-wide-kv dt {
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 900;
}

body.products-v2-precision .spec-wide-kv dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.55;
}

body.products-v2-precision .spec-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

body.products-v2-precision .spec-tag-list li {
  padding: 8px 11px;
  color: #075985;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 900;
}

body.products-v2-precision .spec-standard-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.products-v2-precision .spec-standard-list li {
  padding: 10px 13px;
  color: #075985;
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.08);
  font-size: 0.86rem;
  font-weight: 950;
}

body.products-v2-precision .spec-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.products-v2-precision .spec-application-grid article {
  min-width: 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

body.products-v2-precision .spec-application-grid i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: #0284c7;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  font-size: 1.08rem;
}

body.products-v2-precision .spec-application-grid h5 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.25;
}

body.products-v2-precision .spec-application-grid p {
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.65;
}

body.products-v2-precision .spec-application-grid span {
  display: inline-flex;
  color: #0369a1;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.45;
}

body.products-v2-precision .spec-section-note {
  margin: 14px 0 0;
  padding: 16px 18px;
  color: #334155;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
  line-height: 1.72;
}

@media (max-width: 991px) {
  body.products-v2-precision .digital-spec-layout {
    display: block;
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .digital-spec-showroom.is-spec-nav-fixed:not(.is-flange-scroll) .digital-spec-nav,
  body.products-v2-precision .digital-spec-showroom.is-flange-scroll .digital-spec-nav,
  body.products-v2-precision .digital-spec-nav {
    grid-column: auto;
    position: static;
    display: flex;
    gap: 8px;
    width: auto;
    margin: 0 0 22px;
    overflow-x: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    scroll-snap-type: x mandatory;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transform: none;
  }

  body.products-v2-precision .digital-spec-nav-title {
    display: none;
  }

  body.products-v2-precision .digital-spec-nav a {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
    white-space: nowrap;
    scroll-snap-align: start;
    transform: none;
  }

  body.products-v2-precision .digital-spec-main {
    grid-column: auto;
    gap: 34px;
  }

  body.products-v2-precision .spec-card-grid,
  body.products-v2-precision .spec-kv-grid,
  body.products-v2-precision .spec-overview-grid,
  body.products-v2-precision .spec-wide-kv,
  body.products-v2-precision .spec-application-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .spec-subsection-title {
    margin-top: 28px;
  }

  body.products-v2-precision .spec-drawer-card {
    min-height: 0;
  }

  body.products-v2-precision .spec-card-toggle {
    display: none;
  }

  body.products-v2-precision .spec-card-detail {
    height: auto !important;
    margin-top: 18px;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 575px) {
  body.products-v2-precision .spec-stream-head,
  body.products-v2-precision .spec-step-list li {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .spec-drawer-card {
    padding: 24px;
    min-height: 0;
  }

  body.products-v2-precision .spec-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  body.products-v2-precision .spec-card-top span {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  body.products-v2-precision .spec-drawer-card h4 {
    font-size: clamp(1.55rem, 9vw, 2rem);
    line-height: 1.08;
  }

  body.products-v2-precision .spec-drawer-card p {
    font-size: 0.98rem;
    line-height: 1.72;
  }
}

@media (hover: none), (pointer: coarse) {
  body.products-v2-precision .spec-card-toggle {
    display: none;
  }

  body.products-v2-precision .spec-card-detail {
    height: auto !important;
    margin-top: 18px;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.products-v2-precision .spec-drawer-card,
  body.products-v2-precision .digital-spec-nav a,
  body.products-v2-precision .spec-card-toggle i {
    transition: none;
  }
}

body.products-v2-precision.products1-spec-tabs .digital-spec-showroom {
  padding-top: clamp(40px, 6vw, 76px);
}

body.products-v2-precision.products1-spec-tabs .spec-tab-sticky {
  position: sticky;
  top: 60px;
  z-index: 40;
  display: grid;
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 40px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(18px);
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  background: rgba(241, 245, 249, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.84);
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button,
body.products-v2-precision.products1-spec-tabs .spec-pill-row button {
  appearance: none;
  min-width: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  color: #64748b;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button i {
  color: currentColor;
  font-size: 1.18rem;
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button:hover {
  color: #1e293b;
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button:focus {
  outline: 0;
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button:focus-visible {
  color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button.is-active {
  color: #2563eb;
  background: #ffffff;
  border-color: rgba(226, 232, 240, 0.72);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08), 0 3px 8px rgba(15, 23, 42, 0.06);
  font-weight: 800;
}

body.products-v2-precision.products1-spec-tabs .spec-master-switch button.is-active:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14), 0 10px 20px rgba(15, 23, 42, 0.08), 0 3px 8px rgba(15, 23, 42, 0.06);
}

body.products-v2-precision.products1-spec-tabs .spec-pill-row {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
  overflow: visible;
  padding: 2px 0 4px;
}

body.products-v2-precision.products1-spec-tabs .spec-pill-row.is-active {
  display: flex;
}

body.products-v2-precision.products1-spec-tabs .spec-pill-row button {
  flex: 0 1 auto;
  min-height: 40px;
  padding: 0 14px;
  color: #334155;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: normal;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

body.products-v2-precision.products1-spec-tabs .spec-pill-row button:hover,
body.products-v2-precision.products1-spec-tabs .spec-pill-row button.is-active {
  color: #0369a1;
  background: #eff6ff;
  border-color: #38bdf8;
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.12);
}

body.products-v2-precision.products1-spec-tabs .digital-spec-layout {
  display: block;
}

body.products-v2-precision.products1-spec-tabs .digital-spec-nav {
  display: none;
}

body.products-v2-precision.products1-spec-tabs .digital-spec-main {
  display: block;
}

body.products-v2-precision.products1-spec-tabs .spec-stream-section[hidden],
body.products-v2-precision.products1-spec-tabs [data-spec-panel-group][hidden],
body.products-v2-precision.products1-spec-tabs .spec-pill-row[hidden] {
  display: none !important;
}

body.products-v2-precision.products1-spec-tabs .spec-stream-section {
  max-width: 1120px;
  margin-inline: auto;
  scroll-margin-top: 164px;
}

body.products-v2-precision.products1-spec-tabs .spec-stream-head {
  margin-bottom: 24px;
  padding: clamp(22px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
}

body.products-v2-precision.products1-spec-tabs .spec-subsection-title {
  margin-top: 0;
  margin-bottom: 16px;
  padding: clamp(20px, 2.6vw, 28px);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.78), rgba(255, 255, 255, 0.94));
  border: 1px solid #dbeafe;
  border-radius: 8px;
}

body.products-v2-precision.products1-spec-tabs .spec-subsection-title + .spec-card-grid,
body.products-v2-precision.products1-spec-tabs .spec-subsection-title + .spec-overview-grid,
body.products-v2-precision.products1-spec-tabs .spec-subsection-title + .spec-wide-kv,
body.products-v2-precision.products1-spec-tabs .spec-subsection-title + .spec-standard-list,
body.products-v2-precision.products1-spec-tabs .spec-subsection-title + .spec-application-grid {
  margin-top: 0;
}

body.products-v2-precision.products1-spec-tabs .spec-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
  overflow: visible;
}

body.products-v2-precision.products1-spec-tabs .spec-drawer-card {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 360px;
  min-height: 360px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  transition: z-index 0s linear 0.3s;
}

body.products-v2-precision.products1-spec-tabs .spec-drawer-card::before {
  content: none;
}

body.products-v2-precision.products1-spec-tabs .spec-drawer-card:hover,
body.products-v2-precision.products1-spec-tabs .spec-drawer-card:focus-within {
  z-index: 50;
  border-color: transparent;
  box-shadow: none;
  transform: none;
  transition-delay: 0s;
}

body.products-v2-precision.products1-spec-tabs .spec-card-shell {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 360px;
  padding: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 36px rgba(15, 23, 42, 0.055);
  transition: top 0.3s ease-out, left 0.3s ease-out, width 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
}

body.products-v2-precision.products1-spec-tabs .spec-drawer-card:hover .spec-card-shell,
body.products-v2-precision.products1-spec-tabs .spec-drawer-card:focus-within .spec-card-shell {
  top: -16px;
  left: -16px;
  width: calc(100% + 32px);
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(30, 41, 59, 0.15), 0 18px 40px rgba(37, 99, 235, 0.1);
}

body.products-v2-precision.products1-spec-tabs .spec-card-shell > p {
  min-height: 3.4em;
  margin: 0 0 22px;
  color: #475569;
  line-height: 1.68;
}

body.products-v2-precision.products1-spec-tabs .hose-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.products-v2-precision.products1-spec-tabs .hose-model-card h4 {
  margin-bottom: 22px;
}

body.products-v2-precision.products1-spec-tabs .hose-model-card .spec-card-toggle {
  margin-top: auto;
}

body.products-v2-precision.products1-spec-tabs .spec-card-toggle {
  color: #0284c7;
}

body.products-v2-precision.products1-spec-tabs .spec-drawer-card:hover .spec-card-toggle i,
body.products-v2-precision.products1-spec-tabs .spec-drawer-card:focus-within .spec-card-toggle i {
  transform: rotate(45deg);
}

body.products-v2-precision.products1-spec-tabs .spec-card-detail {
  flex: 0 0 auto;
  display: grid;
  grid-template-rows: 0fr;
  background: rgba(255, 255, 255, 0.92);
  height: auto !important;
  margin-top: 0;
  overflow: hidden;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out, margin-top 0.3s ease-out;
}

body.products-v2-precision.products1-spec-tabs .spec-drawer-card:hover .spec-card-detail,
body.products-v2-precision.products1-spec-tabs .spec-drawer-card:focus-within .spec-card-detail {
  grid-template-rows: 1fr;
  margin-top: 18px;
  opacity: 1 !important;
  visibility: visible !important;
}

body.products-v2-precision.products1-spec-tabs .spec-card-detail-inner {
  min-height: 0;
  overflow: hidden;
}

body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-kv-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-step-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.products-v2-precision.products1-spec-tabs .spec-hose-brand-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 32px;
  padding: 16px;
  color: #334155;
  background: rgba(241, 245, 249, 0.92);
  border: 1px solid #dbeafe;
  border-radius: 12px;
}

body.products-v2-precision.products1-spec-tabs .spec-hose-brand-strip p {
  margin: 0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (min-width: 768px) {
  body.products-v2-precision.products1-spec-tabs .spec-hose-brand-strip {
    flex-direction: row;
    align-items: center;
  }

  body.products-v2-precision.products1-spec-tabs .spec-pill-row {
    gap: 12px;
  }
}

body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-kv-grid div {
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px 12px;
}

body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-step-list li {
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 10px 12px;
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid,
body.products-v2-precision.products1-spec-tabs .spec-wide-kv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid {
  margin-top: 20px;
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid div,
body.products-v2-precision.products1-spec-tabs .spec-wide-kv div {
  display: grid;
  grid-template-columns: minmax(118px, 0.32fr) minmax(0, 0.68fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  padding: 14px 16px;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.22s ease;
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid div:nth-child(even),
body.products-v2-precision.products1-spec-tabs .spec-wide-kv div:nth-child(even) {
  background: rgba(248, 250, 252, 0.62);
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid div:hover,
body.products-v2-precision.products1-spec-tabs .spec-wide-kv div:hover {
  background: #f8fafc;
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid div:last-child,
body.products-v2-precision.products1-spec-tabs .spec-wide-kv div:last-child {
  border-bottom: 0;
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid dt,
body.products-v2-precision.products1-spec-tabs .spec-wide-kv dt {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.45;
}

body.products-v2-precision.products1-spec-tabs .spec-kv-grid dd,
body.products-v2-precision.products1-spec-tabs .spec-wide-kv dd {
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.55;
}

body.products-v2-precision.products1-spec-tabs .spec-step-list {
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

body.products-v2-precision.products1-spec-tabs .spec-step-list li {
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 0.7fr);
  padding: 14px 16px;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 0;
}

body.products-v2-precision.products1-spec-tabs .spec-step-list li:last-child {
  border-bottom: 0;
}

body.products-v2-precision.products1-spec-tabs .oring-showdown {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

body.products-v2-precision.products1-spec-tabs .oring-showdown article {
  position: relative;
  min-width: 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

body.products-v2-precision.products1-spec-tabs .oring-showdown article.is-recommended {
  background: rgba(239, 246, 255, 0.82);
  border: 2px solid #3b82f6;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.16);
}

body.products-v2-precision.products1-spec-tabs .oring-showdown b {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: #ffffff;
  background: #2563eb;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .oring-showdown span {
  display: block;
  margin-bottom: 8px;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .oring-showdown h5 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .oring-showdown p {
  margin: 0 0 14px;
  color: #334155;
  line-height: 1.65;
}

body.products-v2-precision.products1-spec-tabs .oring-showdown small {
  color: #0f172a;
  font-weight: 850;
  line-height: 1.55;
}

body.products-v2-precision.products1-spec-tabs .spec-manufacturing-footer {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid #e2e8f0;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  padding: 34px;
  color: #ffffff;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner > div:first-child > span,
body.products-v2-precision.products1-spec-tabs .manufacturing-info-card > span,
body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article > span {
  display: inline-flex;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner h4 {
  margin: 10px 0 14px;
  color: #ffffff;
  font-size: clamp(1.72rem, 2.4vw, 2.35rem);
  line-height: 1.18;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner p {
  max-width: 680px;
  margin: 0;
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.82;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-stats div {
  padding: 18px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 14px;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-stats strong {
  display: block;
  color: #38bdf8;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-capability-stats span {
  display: block;
  margin-top: 8px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 900;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card {
  min-width: 0;
  padding: 26px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card h5,
body.products-v2-precision.products1-spec-tabs .delivery-spec-grid h5 {
  margin: 8px 0 18px;
  color: #0f172a;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card li {
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card strong,
body.products-v2-precision.products1-spec-tabs .manufacturing-info-card em {
  display: block;
  font-style: normal;
  line-height: 1.45;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card strong {
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card em {
  margin-top: 6px;
  color: #2563eb;
  font-size: 1.02rem;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .manufacturing-info-card p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.65;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: none;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article:hover,
body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article:focus-within {
  border-color: #bfdbfe;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: #2563eb;
  background: #eff6ff;
  border: 0;
  border-radius: 12px;
  font-size: 1.5rem;
  line-height: 1;
  transform-origin: center;
  transition: color 500ms ease-out, background-color 500ms ease-out, transform 500ms ease-out;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article:hover i,
body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article:focus-within i {
  color: #ffffff;
  background: #2563eb;
  transform: scale(1.1);
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid h5 {
  margin: 0;
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid .delivery-policy-subtitle {
  display: block;
  margin-top: 0.375rem;
  color: #94a3b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid p {
  margin: 20px 0 0;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid .text-slate-900 {
  color: #0f172a;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid .text-blue-600 {
  color: #2563eb;
}

body.products-v2-precision.products1-spec-tabs .delivery-spec-grid .font-black {
  font-weight: 950;
}

body.products-v2-precision.products1-spec-tabs .spec-global-footer {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #e2e8f0;
}

body.products-v2-precision.products1-spec-tabs .spec-global-footer .spec-subsection-title {
  margin-bottom: 18px;
}

body.products-v2-precision.products1-spec-tabs .spec-standard-list {
  gap: 10px;
  margin-bottom: 34px;
}

body.products-v2-precision.products1-spec-tabs .spec-standard-list li {
  padding: 8px 16px;
  color: #334155;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: none;
  font-weight: 900;
  transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

body.products-v2-precision.products1-spec-tabs .spec-standard-list li:hover {
  color: #2563eb;
  border-color: #3b82f6;
  background: #ffffff;
}

body.products-v2-precision.products1-spec-tabs .spec-application-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

body.products-v2-precision.products1-spec-tabs .spec-application-grid article {
  position: relative;
  overflow: hidden;
  padding-left: 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

body.products-v2-precision.products1-spec-tabs .spec-application-grid article::before {
  content: none;
}

body.products-v2-precision.products1-spec-tabs .spec-application-grid article:hover {
  border-color: #bfdbfe;
  border-left-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.11);
}

body.products-v2-precision.products1-spec-tabs .spec-application-grid h5 {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 10px;
  vertical-align: top;
}

body.products-v2-precision.products1-spec-tabs .spec-application-grid span {
  display: inline-flex;
  padding: 4px 8px;
  color: #0369a1;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

body.products-v2-precision.products1-spec-tabs .spec-section-note {
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  body.products-v2-precision.products1-spec-tabs .spec-tab-sticky {
    top: 58px;
    margin-inline: -2px;
    padding: 10px;
  }

  body.products-v2-precision.products1-spec-tabs .spec-master-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.products-v2-precision.products1-spec-tabs .spec-master-switch button {
    min-height: 46px;
    padding: 8px 10px;
    font-size: 0.86rem;
    line-height: 1.25;
    white-space: normal;
  }

  body.products-v2-precision.products1-spec-tabs .oring-showdown {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner,
  body.products-v2-precision.products1-spec-tabs .manufacturing-info-grid,
  body.products-v2-precision.products1-spec-tabs .delivery-spec-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision.products1-spec-tabs .hose-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.products-v2-precision.products1-spec-tabs .spec-drawer-card {
    height: auto;
    min-height: 0;
    overflow: visible;
    transition: none;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-shell {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    overflow: hidden;
  }

  body.products-v2-precision.products1-spec-tabs .spec-drawer-card:hover .spec-card-shell,
  body.products-v2-precision.products1-spec-tabs .spec-drawer-card:focus-within .spec-card-shell {
    top: auto;
    left: auto;
    width: 100%;
    border-color: #dbeafe;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 36px rgba(15, 23, 42, 0.055);
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-toggle {
    display: none;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-detail {
    grid-template-rows: 1fr;
    margin-top: 18px;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-kv-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-step-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  body.products-v2-precision,
  body.products-v2-precision main {
    overflow-x: hidden;
  }

  body.products-v2-precision.products1-spec-tabs .spec-tab-sticky {
    margin-inline: 0;
    padding: 8px;
    border-radius: 12px;
  }

  body.products-v2-precision.products1-spec-tabs .spec-master-switch {
    gap: 6px;
    padding: 4px;
    border-radius: 14px;
  }

  body.products-v2-precision.products1-spec-tabs .spec-master-switch button {
    min-height: 42px;
    padding: 7px 8px;
    gap: 5px;
    font-size: 11px;
    line-height: 1.25;
  }

  body.products-v2-precision.products1-spec-tabs .spec-master-switch button i {
    font-size: 0.95rem;
  }

  body.products-v2-precision.products1-spec-tabs .spec-pill-row {
    gap: 8px;
    margin-bottom: 12px;
  }

  body.products-v2-precision.products1-spec-tabs .spec-pill-row button {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  body.products-v2-precision.products1-spec-tabs .spec-hose-brand-strip {
    padding: 16px;
    margin-bottom: 32px;
    font-size: 0.875rem;
    line-height: 1.72;
  }

  body.products-v2-precision.products1-spec-tabs .spec-stream-head,
  body.products-v2-precision.products1-spec-tabs .spec-kv-grid div,
  body.products-v2-precision.products1-spec-tabs .spec-wide-kv div,
  body.products-v2-precision.products1-spec-tabs .spec-step-list li {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision.products1-spec-tabs .spec-stream-head {
    padding: 20px;
  }

  body.products-v2-precision.products1-spec-tabs .spec-subsection-title {
    padding: 18px;
  }

  body.products-v2-precision.products1-spec-tabs .hose-catalog-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-grid {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  body.products-v2-precision.products1-spec-tabs .spec-drawer-card {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-shell > p {
    min-height: 0;
  }

  body.products-v2-precision.products1-spec-tabs .spec-manufacturing-footer {
    margin-top: 60px;
    padding-top: 44px;
  }

  body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner,
  body.products-v2-precision.products1-spec-tabs .manufacturing-info-card {
    padding: 22px;
  }
}

body.products-v2-precision .procurement-sourcing {
  margin-top: clamp(96px, 12vw, 128px);
  padding: clamp(80px, 9vw, 112px) 0 clamp(96px, 10vw, 132px);
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

body.products-v2-precision .procurement-sourcing-head {
  max-width: 820px;
}

body.products-v2-precision .procurement-sourcing-head > span,
body.products-v2-precision .sourcing-section-heading > span,
body.products-v2-precision .sourcing-tier-num,
body.products-v2-precision .sourcing-precision-left > span {
  display: block;
  margin-bottom: 12px;
  color: #2563eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.products-v2-precision .procurement-sourcing-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

body.products-v2-precision .procurement-sourcing-head h2 small {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

body.products-v2-precision .procurement-sourcing-head strong {
  display: block;
  margin-top: 28px;
  color: #2563eb;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 950;
}

body.products-v2-precision .procurement-sourcing-head p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.85;
}

body.products-v2-precision .sourcing-tier-grid,
body.products-v2-precision .sourcing-category-grid,
body.products-v2-precision .sourcing-case-grid,
body.products-v2-precision .sourcing-flow-grid {
  display: grid;
  gap: 24px;
}

body.products-v2-precision .sourcing-tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
}

body.products-v2-precision .sourcing-tier-card,
body.products-v2-precision .sourcing-category-card,
body.products-v2-precision .sourcing-case-card,
body.products-v2-precision .sourcing-flow-grid article {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

body.products-v2-precision .sourcing-tier-card:hover,
body.products-v2-precision .sourcing-category-card:hover,
body.products-v2-precision .sourcing-case-card:hover,
body.products-v2-precision .sourcing-flow-grid article:hover {
  border-color: #2563eb;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

body.products-v2-precision .sourcing-tier-card {
  min-height: 100%;
  padding: 32px;
}

body.products-v2-precision .sourcing-tier-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 950;
}

body.products-v2-precision .sourcing-tier-card small {
  display: block;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.products-v2-precision .sourcing-tier-card p {
  margin: 20px 0 0;
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.75;
}

body.products-v2-precision .sourcing-brand-tags,
body.products-v2-precision .sourcing-chip-list,
body.products-v2-precision .sourcing-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.products-v2-precision .sourcing-brand-tags {
  margin-top: 24px;
}

body.products-v2-precision .sourcing-brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: #1d4ed8;
  font-size: 0.76rem;
  font-weight: 850;
}

body.products-v2-precision .sourcing-tier-card .sourcing-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.65;
}

body.products-v2-precision .sourcing-section-heading {
  max-width: 760px;
  margin-top: clamp(68px, 8vw, 96px);
}

body.products-v2-precision .sourcing-section-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 950;
  line-height: 1.1;
}

body.products-v2-precision .sourcing-section-heading p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
}

body.products-v2-precision .sourcing-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

body.products-v2-precision .sourcing-category-card {
  padding: 28px;
}

body.products-v2-precision .sourcing-category-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

body.products-v2-precision .sourcing-category-top i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #eff6ff;
  border-radius: 14px;
  color: #2563eb;
  font-size: 1.35rem;
}

body.products-v2-precision .sourcing-category-top h4 {
  margin: 0;
  color: #0f172a;
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-v2-precision .sourcing-category-top span {
  display: inline-flex;
  margin-top: 6px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 850;
}

body.products-v2-precision .sourcing-chip-list {
  margin-top: 24px;
}

body.products-v2-precision .sourcing-chip-list span,
body.products-v2-precision .sourcing-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  background: #f1f5f9;
  border-radius: 999px;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 800;
}

body.products-v2-precision .sourcing-category-card p {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.72;
}

body.products-v2-precision .sourcing-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

body.products-v2-precision .sourcing-case-card {
  padding: 28px;
}

body.products-v2-precision .sourcing-case-card > span {
  display: block;
  color: #2563eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.products-v2-precision .sourcing-case-card h4 {
  margin: 14px 0 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.45;
}

body.products-v2-precision .sourcing-case-card p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.78;
}

body.products-v2-precision .sourcing-case-tags {
  margin-top: 20px;
}

body.products-v2-precision .sourcing-case-tags span:first-child {
  background: #eff6ff;
  color: #1d4ed8;
}

body.products-v2-precision .sourcing-precision-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(60px, 7vw, 88px);
  padding: clamp(32px, 5vw, 56px);
  background: #0f172a;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

body.products-v2-precision .sourcing-precision-left h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 3.3rem);
  font-weight: 950;
  line-height: 1.05;
}

body.products-v2-precision .sourcing-precision-left p {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.98rem;
  line-height: 1.8;
}

body.products-v2-precision .sourcing-precision-left strong {
  display: block;
  margin-top: 30px;
  color: #60a5fa;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

body.products-v2-precision .sourcing-precision-left strong em {
  color: #fff;
  font-style: normal;
}

body.products-v2-precision .sourcing-precision-left small {
  display: block;
  margin-top: 12px;
  color: rgba(226, 232, 240, 0.66);
  font-size: 0.82rem;
  line-height: 1.6;
}

body.products-v2-precision .sourcing-precision-list {
  display: grid;
  gap: 14px;
}

body.products-v2-precision .sourcing-precision-list article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
}

body.products-v2-precision .sourcing-precision-list span {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

body.products-v2-precision .sourcing-precision-list p {
  margin: 8px 0 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.86rem;
  line-height: 1.65;
}

body.products-v2-precision .sourcing-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

body.products-v2-precision .sourcing-flow-grid article {
  padding: 28px;
}

body.products-v2-precision .sourcing-flow-grid article > span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  color: #2563eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 950;
}

body.products-v2-precision .sourcing-flow-grid h4 {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 950;
}

body.products-v2-precision .sourcing-flow-grid p {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.72;
}

body.products-v2-precision .sourcing-notice {
  margin-top: 48px;
  padding: 24px;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 0 12px 12px 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.8;
}

body.products-v2-precision .sourcing-notice strong {
  color: #0f172a;
  font-weight: 950;
}

@media (max-width: 1180px) {
  body.products-v2-precision .sourcing-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.products-v2-precision .procurement-sourcing {
    margin-top: 72px;
    padding: 64px 0 82px;
  }

  body.products-v2-precision .sourcing-tier-grid,
  body.products-v2-precision .sourcing-category-grid,
  body.products-v2-precision .sourcing-precision-banner,
  body.products-v2-precision .sourcing-flow-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .sourcing-tier-grid {
    gap: 22px;
    margin-top: 40px;
  }

  body.products-v2-precision .sourcing-section-heading {
    margin-top: 58px;
  }
}

@media (max-width: 575px) {
  body.products-v2-precision .procurement-sourcing-head h2 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  body.products-v2-precision .sourcing-tier-card,
  body.products-v2-precision .sourcing-category-card,
  body.products-v2-precision .sourcing-case-card,
  body.products-v2-precision .sourcing-flow-grid article,
  body.products-v2-precision .sourcing-precision-banner {
    padding: 22px;
  }

  body.products-v2-precision .sourcing-case-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .sourcing-brand-tags span,
  body.products-v2-precision .sourcing-chip-list span,
  body.products-v2-precision .sourcing-case-tags span {
    max-width: 100%;
    white-space: normal;
  }

  body.products-v2-precision .sourcing-notice {
    padding: 20px;
  }
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: 64px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.06);
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card {
  min-height: 100%;
  padding: 32px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--oem {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  border-radius: 12px 0 0 12px;
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--alternative {
  background: #fff;
  border-right: 1px solid #e2e8f0;
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse {
  z-index: 2;
  margin-top: -16px;
  padding: 40px;
  background: #0f172a;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
  transform: scale(1.05);
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.32);
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse h3,
body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse small,
body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse .sourcing-tier-num {
  color: #fff;
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse p {
  color: rgba(226, 232, 240, 0.78);
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse .sourcing-brand-tags span {
  background: rgba(96, 165, 250, 0.16);
  border-color: rgba(147, 197, 253, 0.2);
  color: #bfdbfe;
}

body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse .sourcing-note {
  border-top-color: rgba(226, 232, 240, 0.16);
  color: rgba(226, 232, 240, 0.72);
}

body.products-v2-precision .procurement-sourcing .sourcing-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 24px;
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card {
  min-height: 290px;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--wide {
  grid-column: span 2;
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--dark {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--soft {
  background: #f8fafc;
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--blue {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.2);
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--dark h4,
body.products-v2-precision .procurement-sourcing .sourcing-category-card--dark .sourcing-category-top span,
body.products-v2-precision .procurement-sourcing .sourcing-category-card--blue h4,
body.products-v2-precision .procurement-sourcing .sourcing-category-card--blue .sourcing-category-top span {
  color: #fff;
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--dark p,
body.products-v2-precision .procurement-sourcing .sourcing-category-card--blue p {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--dark .sourcing-category-top i,
body.products-v2-precision .procurement-sourcing .sourcing-category-card--blue .sourcing-category-top i {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.products-v2-precision .procurement-sourcing .sourcing-category-card--dark .sourcing-chip-list span,
body.products-v2-precision .procurement-sourcing .sourcing-category-card--blue .sourcing-chip-list span {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

body.products-v2-precision .procurement-sourcing .sourcing-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 36px;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-feature {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(34px, 4.8vw, 56px);
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(135deg, #f1f5f9 0%, #e0f2fe 100%);
  border: 1px solid #dbeafe;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

body.products-v2-precision .procurement-sourcing .sourcing-case-feature::before {
  content: "Ra 0.8";
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(37, 99, 235, 0.09);
  font-size: clamp(4.8rem, 10vw, 8.8rem);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-feature > span,
body.products-v2-precision .procurement-sourcing .sourcing-case-list-item > span {
  color: #2563eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-feature h4 {
  position: relative;
  max-width: 620px;
  margin: 18px 0 0;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1.03;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-feature p {
  position: relative;
  max-width: 680px;
  margin: 22px 0 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.82;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-feature .sourcing-case-tags {
  position: relative;
  margin-top: 26px;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-feature .sourcing-case-tags span {
  background: #fff;
  color: #1d4ed8;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

body.products-v2-precision .procurement-sourcing .sourcing-case-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: transparent;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-list-item:last-child {
  margin-bottom: 0;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-list-item > span {
  width: 108px;
  flex: 0 0 auto;
  line-height: 1.45;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-list-item h4 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-list-item p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.72;
}

body.products-v2-precision .procurement-sourcing .sourcing-case-list-item .sourcing-case-tags {
  margin-top: 14px;
}

body.products-v2-precision .procurement-sourcing .sourcing-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
  padding-top: 72px;
}

body.products-v2-precision .procurement-sourcing .sourcing-flow-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  border-top: 2px dashed #bfdbfe;
}

body.products-v2-precision .procurement-sourcing .sourcing-flow-grid article {
  position: relative;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

body.products-v2-precision .procurement-sourcing .sourcing-flow-grid article:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

body.products-v2-precision .procurement-sourcing .sourcing-flow-grid article > span {
  position: absolute;
  top: -72px;
  left: 0;
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border: 6px solid #f8fafc;
  color: #1d4ed8;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
}

body.products-v2-precision .procurement-sourcing .sourcing-flow-grid h4 {
  margin-top: 0;
  color: #0f172a;
  font-size: 1.04rem;
  font-weight: 950;
}

body.products-v2-precision .procurement-sourcing .sourcing-flow-grid p {
  max-width: 260px;
  color: #64748b;
}

@media (max-width: 1180px) {
  body.products-v2-precision .procurement-sourcing .sourcing-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.products-v2-precision .procurement-sourcing .sourcing-case-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-case-feature {
    min-height: 360px;
  }
}

@media (max-width: 991px) {
  body.products-v2-precision .procurement-sourcing .sourcing-tier-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-tier-card,
  body.products-v2-precision .procurement-sourcing .sourcing-tier-card--oem,
  body.products-v2-precision .procurement-sourcing .sourcing-tier-card--alternative,
  body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse {
    margin-top: 0;
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px;
    transform: none;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse:hover {
    transform: none;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-category-grid,
  body.products-v2-precision .procurement-sourcing .sourcing-category-card--wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
    padding-left: 30px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid::before {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed #bfdbfe;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid article > span {
    top: 0;
    left: -30px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid article {
    padding-left: 36px;
    min-height: 88px;
  }
}

@media (max-width: 575px) {
  body.products-v2-precision .procurement-sourcing .sourcing-tier-grid {
    margin-top: 38px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse {
    padding: 28px 22px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-case-feature {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 20px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-case-feature h4 {
    font-size: 2rem;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-case-list-item {
    display: block;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-case-list-item > span {
    display: block;
    width: auto;
    margin-bottom: 12px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid {
    padding-left: 24px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid::before {
    left: 20px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid article {
    padding-left: 32px;
  }

  body.products-v2-precision .procurement-sourcing .sourcing-flow-grid article > span {
    left: -28px;
    width: 42px;
    height: 42px;
    border-width: 5px;
  }
}

@media (hover: none), (pointer: coarse) {
  body.products-v2-precision.products1-spec-tabs .spec-drawer-card {
    height: auto;
    min-height: 0;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-shell {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
  }

  body.products-v2-precision.products1-spec-tabs .spec-drawer-card:hover .spec-card-shell,
  body.products-v2-precision.products1-spec-tabs .spec-drawer-card:focus-within .spec-card-shell {
    top: auto;
    left: auto;
    width: 100%;
    border-color: #dbeafe;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 36px rgba(15, 23, 42, 0.055);
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-toggle {
    display: none;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-detail {
    grid-template-rows: 1fr;
    margin-top: 18px;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-kv-grid {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision.products1-spec-tabs .spec-card-detail .spec-step-list {
    grid-template-columns: 1fr;
  }
}

/* Products hub and spoke refresh */
body.products-v2-precision {
  overflow: visible;
}

body.products-v2-precision main {
  overflow: visible;
}

body.products-v2-precision .product-hub-hero,
body.products-v2-precision .fluid-mega,
body.products-v2-precision .product-bento-card {
  isolation: isolate;
}

body.products-v2-precision .product-hub-hero {
  position: relative;
  padding: clamp(86px, 11vw, 136px) 0 clamp(46px, 6vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #eef6ff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

body.products-v2-precision .product-hub-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000);
  z-index: -1;
}

body.products-v2-precision .product-hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

body.products-v2-precision .product-hub-copy {
  max-width: 760px;
}

body.products-v2-precision .product-hub-hero .breadcrumb-sw,
body.products-v2-precision .product-hub-hero .breadcrumb-sw a,
body.products-v2-precision .product-hub-hero .breadcrumb-sw span {
  color: #64748b;
}

body.products-v2-precision .product-hub-hero .page-title {
  margin: 18px 0 12px;
  color: #172554;
  letter-spacing: 0;
}

body.products-v2-precision .product-hub-hero .hero-copy {
  color: #2563eb;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 900;
}

body.products-v2-precision .product-hub-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #475569;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.86;
}

body.products-v2-precision .product-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

body.products-v2-precision .product-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  color: #1d4ed8;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.products-v2-precision .product-hub-link:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.16);
}

body.products-v2-precision .product-hub-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.products-v2-precision .product-hub-proof div {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(30, 64, 175, 0.1);
  backdrop-filter: blur(16px);
}

body.products-v2-precision .product-hub-proof span {
  display: block;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 900;
}

body.products-v2-precision .product-hub-proof strong {
  display: block;
  margin-top: 18px;
  color: #172554;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1;
}

body.products-v2-precision .product-hub-nav {
  position: sticky;
  top: var(--sw-visible-header-offset, var(--chrome-header-h, 72px));
  z-index: 42;
  padding: 10px 0;
  background: rgba(248, 251, 255, 0.88);
  border-bottom: 1px solid rgba(191, 219, 254, 0.78);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
  transition: top 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

body.products-v2-precision .product-hub-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

body.products-v2-precision .product-hub-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 9px;
  color: #475569;
  font-size: 0.93rem;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

body.products-v2-precision .product-hub-nav a:hover,
body.products-v2-precision .product-hub-nav a.is-active {
  color: #1d4ed8;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px #bfdbfe;
}

body.products-v2-precision .fluid-mega,
body.products-v2-precision #valve-block,
body.products-v2-precision #coupler,
body.products-v2-precision #oring,
body.products-v2-precision #hose-assembly,
body.products-v2-precision #adapter {
  scroll-margin-top: 190px;
}

body.products-v2-precision .fluid-mega {
  position: relative;
  padding: clamp(70px, 8vw, 108px) 0;
  overflow: hidden;
  color: #f8fafc;
  background:
    radial-gradient(circle at 86% 12%, rgba(96, 165, 250, 0.36), transparent 30%),
    radial-gradient(circle at 12% 74%, rgba(14, 165, 233, 0.2), transparent 26%),
    linear-gradient(135deg, #07111f 0%, #0f1f38 46%, #eaf5ff 100%);
}

body.products-v2-precision .fluid-mega::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(110deg, rgba(0, 0, 0, 0.85), transparent 72%);
}

body.products-v2-precision .fluid-mega .container {
  position: relative;
  z-index: 1;
}

body.products-v2-precision .fluid-mega-head {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 30px;
}

body.products-v2-precision .fluid-mega-head > span {
  color: #93c5fd;
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.products-v2-precision .fluid-mega-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

body.products-v2-precision .fluid-mega-head p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: 1.04rem;
  line-height: 1.82;
}

body.products-v2-precision .fluid-mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

body.products-v2-precision .fluid-module {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(191, 219, 254, 0.22);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.1);
  box-shadow: 0 24px 80px rgba(2, 8, 23, 0.28);
  backdrop-filter: blur(18px);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

body.products-v2-precision .fluid-module:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 197, 253, 0.68);
  box-shadow: 0 34px 100px rgba(2, 8, 23, 0.36);
}

body.products-v2-precision .fluid-module--sr {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.72fr);
  gap: 20px;
  border-color: rgba(96, 165, 250, 0.5);
  background:
    linear-gradient(135deg, rgba(30, 64, 175, 0.78), rgba(15, 23, 42, 0.82)),
    rgba(15, 23, 42, 0.9);
}

body.products-v2-precision .fluid-module-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 234, 254, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

body.products-v2-precision .fluid-module-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.36s ease;
}

body.products-v2-precision .fluid-module:hover .fluid-module-visual img {
  transform: scale(1.035);
}

body.products-v2-precision .fluid-module-visual--sr {
  align-self: stretch;
}

body.products-v2-precision .fluid-module-visual--sr img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

body.products-v2-precision .fluid-module-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 22px;
}

body.products-v2-precision .fluid-module-copy--sr {
  padding-top: 0;
}

body.products-v2-precision .fluid-module .product-index {
  color: #93c5fd;
}

body.products-v2-precision .fluid-module h3 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

body.products-v2-precision .fluid-module p {
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.82;
}

body.products-v2-precision .fluid-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

body.products-v2-precision .fluid-chip-list li,
body.products-v2-precision .fluid-data-grid div {
  border: 1px solid rgba(191, 219, 254, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

body.products-v2-precision .fluid-chip-list li {
  padding: 8px 11px;
  color: #dbeafe;
  font-size: 0.86rem;
  font-weight: 900;
}

body.products-v2-precision .fluid-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

body.products-v2-precision .fluid-data-grid div {
  padding: 14px;
}

body.products-v2-precision .fluid-data-grid b,
body.products-v2-precision .fluid-data-grid span {
  display: block;
}

body.products-v2-precision .fluid-data-grid b {
  color: #ffffff;
  font-size: 0.95rem;
}

body.products-v2-precision .fluid-data-grid span {
  margin-top: 6px;
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 800;
}

body.products-v2-precision .fluid-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 1000;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

body.products-v2-precision .fluid-cta-soft {
  margin-top: 26px;
  color: #eff6ff;
  border: 1px solid rgba(147, 197, 253, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

body.products-v2-precision .fluid-cta-primary {
  margin-top: 26px;
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.42);
}

body.products-v2-precision .fluid-cta:hover {
  transform: translateY(-2px);
}

body.products-v2-precision .fluid-cta-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.52);
}

body.products-v2-precision .product-bento {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 62%),
    #ffffff;
}

body.products-v2-precision .product-bento-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: 18px 48px;
  align-items: end;
}

body.products-v2-precision .product-bento-head .section-title {
  margin: 0;
}

body.products-v2-precision .product-bento-head p {
  max-width: 760px;
}

body.products-v2-precision .product-bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-areas:
    "valve coupler"
    "valve oring";
  gap: 20px;
  margin-top: 34px;
}

body.products-v2-precision .product-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(26px, 3.2vw, 42px);
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

body.products-v2-precision .product-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 44%);
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

body.products-v2-precision .product-bento-card:hover {
  transform: translateY(-5px);
  border-color: #93c5fd;
  box-shadow: 0 30px 88px rgba(30, 64, 175, 0.14);
}

body.products-v2-precision .product-bento-card:hover::before {
  opacity: 1;
}

body.products-v2-precision .product-bento-card--valve {
  grid-area: valve;
  min-height: 680px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.84)),
    #ffffff;
}

body.products-v2-precision .product-bento-card--coupler {
  grid-area: coupler;
}

body.products-v2-precision .product-bento-card--oring {
  grid-area: oring;
}

body.products-v2-precision .product-bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  color: #2563eb;
  background: #eff6ff;
  font-size: 1.45rem;
}

body.products-v2-precision .product-bento-card h2,
body.products-v2-precision .product-bento-card h3 {
  margin: 10px 0 14px;
  color: #172554;
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

body.products-v2-precision .product-bento-card p {
  max-width: 660px;
  color: #475569;
  line-height: 1.82;
}

body.products-v2-precision .product-bento-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 26px;
}

body.products-v2-precision .product-bento-card--coupler .product-bento-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.products-v2-precision .product-bento-specs--compact {
  grid-template-columns: 1fr;
}

body.products-v2-precision .product-bento-specs span {
  display: block;
  min-height: 78px;
  padding: 14px;
  border: 1px solid #e0edff;
  border-radius: 8px;
  color: #475569;
  background: #f8fbff;
  font-weight: 800;
}

body.products-v2-precision .product-bento-specs b {
  display: block;
  margin-bottom: 8px;
  color: #1e3a8a;
}

body.products-v2-precision .product-bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: #1d4ed8;
  font-weight: 1000;
}

body.products-v2-precision .product-bento-link:hover {
  color: #0f172a;
}

@media (max-width: 1199px) {
  body.products-v2-precision .product-hub-hero-grid,
  body.products-v2-precision .fluid-mega-grid,
  body.products-v2-precision .fluid-module--sr,
  body.products-v2-precision .product-bento-grid,
  body.products-v2-precision .product-bento-head {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .product-bento-grid {
    grid-template-areas:
      "valve"
      "coupler"
      "oring";
  }

  body.products-v2-precision .product-bento-card--valve {
    min-height: 0;
  }

  body.products-v2-precision .fluid-module--sr {
    order: -1;
  }

  body.products-v2-precision .fluid-module-visual--sr img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 991px) {
  body.products-v2-precision .product-hub-nav {
    top: var(--sw-visible-header-offset, var(--chrome-header-h, 66px));
  }

  body.products-v2-precision .product-hub-nav .container {
    max-width: none;
    padding-right: 0;
  }

  body.products-v2-precision .product-hub-nav-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    border-right: 0;
    border-radius: 14px 0 0 14px;
  }

  body.products-v2-precision .product-hub-nav-inner::-webkit-scrollbar {
    display: none;
  }

  body.products-v2-precision .product-hub-nav a {
    flex: 0 0 auto;
  }

  body.products-v2-precision .fluid-mega-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.products-v2-precision .product-hub-hero {
    padding-top: 72px;
  }

  body.products-v2-precision .product-hub-proof,
  body.products-v2-precision .fluid-data-grid,
  body.products-v2-precision .product-bento-specs,
  body.products-v2-precision .product-bento-card--coupler .product-bento-specs {
    grid-template-columns: 1fr;
  }

  body.products-v2-precision .fluid-module,
  body.products-v2-precision .product-bento-card {
    border-radius: 12px;
  }

  body.products-v2-precision .fluid-cta,
  body.products-v2-precision .product-hub-actions .btn-sw,
  body.products-v2-precision .product-hub-link {
    width: 100%;
  }

  body.products-v2-precision .fluid-cta-primary {
    min-height: 56px;
  }
}

@media (max-width: 575px) {
  body.products-v2-precision .product-hub-hero .page-title,
  body.products-v2-precision .fluid-mega-head h2 {
    font-size: clamp(2.45rem, 16vw, 4.2rem);
  }

  body.products-v2-precision .product-hub-proof div {
    min-height: 112px;
    padding: 20px;
  }

  body.products-v2-precision .fluid-module,
  body.products-v2-precision .product-bento-card {
    padding: 22px;
  }
}

/* Stage 2: cross-page premium parameter components */
body.products-v2-precision .sw-spec-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0 22px;
}

body.products-v2-precision .sw-spec-card--compact {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(191, 219, 254, 0.76);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
}

body.products-v2-precision .sw-spec-card--compact .sw-spec-card__media {
  min-height: 72px;
  height: 72px;
  padding: 10px;
  border-radius: 10px;
  cursor: default;
}

body.products-v2-precision .sw-spec-card--compact .sw-spec-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

body.products-v2-precision .sw-spec-card--compact .sw-spec-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

body.products-v2-precision .sw-spec-card--compact .sw-spec-card__model {
  margin: 0;
  color: #1d4ed8;
}

body.products-v2-precision .sw-spec-card--compact .sw-spec-card__catalog {
  flex: 0 0 auto;
  padding: 3px 6px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: #2563eb;
  background: #eff6ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.62rem;
  font-weight: 900;
}

body.products-v2-precision .sw-spec-card--compact h3,
body.products-v2-precision .sw-spec-card--compact h4 {
  margin: 0;
  color: #172554;
  font-size: 0.96rem;
  line-height: 1.22;
}

body.products-v2-precision .sw-spec-card--compact p {
  margin: 3px 0 0;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.45;
}

body.products-v2-precision .sw-spec-card--compact .sw-spec-card__tags {
  gap: 5px;
}

body.products-v2-precision .sw-spec-card--compact .sw-spec-card__tags span {
  font-size: 0.64rem;
  padding: 4px 6px;
}

body.shimizu-v2-catalog .sw-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

body.shimizu-v2-catalog .shimizu-category,
body.shimizu-v2-catalog .sw-spec-card {
  scroll-margin-top: calc(var(--chrome-header-h) + 230px);
}

body.products-v2-precision .sw-spec-card,
body.shimizu-v2-catalog .sw-spec-card {
  min-width: 0;
  max-width: 100%;
}

body.shimizu-v2-catalog .sw-spec-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 20px 58px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.shimizu-v2-catalog .sw-spec-card:hover,
body.shimizu-v2-catalog .sw-spec-card:focus-within {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 28px 78px rgba(30, 64, 175, 0.12);
}

body.products-v2-precision .sw-spec-card__media,
body.shimizu-v2-catalog .sw-spec-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

body.shimizu-v2-catalog .sw-spec-card__media {
  width: 100%;
  min-height: 168px;
  padding: 18px;
  border-width: 0 0 1px;
  border-radius: 0;
  cursor: zoom-in;
}

body.products-v2-precision .sw-spec-card__media img,
body.shimizu-v2-catalog .sw-spec-card__media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.shimizu-v2-catalog .sw-spec-card__media img {
  max-height: 132px;
}

body.shimizu-v2-catalog .sw-spec-card.has-product-crop .sw-spec-card__media img {
  max-height: 138px;
}

body.shimizu-v2-catalog .sw-spec-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  color: #1d4ed8;
  background: rgba(239, 246, 255, 0.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

body.shimizu-v2-catalog .sw-spec-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 20px;
}

body.shimizu-v2-catalog .sw-spec-card__summary {
  min-width: 0;
}

body.products-v2-precision .sw-spec-card__model,
body.shimizu-v2-catalog .sw-spec-card__model {
  max-width: 100%;
  margin-bottom: 6px;
  color: #2563eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.products-v2-precision .sw-spec-card h3,
body.products-v2-precision .sw-spec-card h4,
body.shimizu-v2-catalog .sw-spec-card h3,
body.shimizu-v2-catalog .sw-spec-card h4 {
  max-width: 100%;
  margin: 0;
  color: #172554;
  font-size: clamp(1.18rem, 1.4vw, 1.48rem);
  line-height: 1.18;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

body.products-v2-precision .sw-spec-card--compact h3,
body.products-v2-precision .sw-spec-card--compact h4 {
  font-size: 0.96rem;
  line-height: 1.22;
}

body.shimizu-v2-catalog .sw-spec-card__details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

body.shimizu-v2-catalog .sw-spec-card__en,
body.shimizu-v2-catalog .sw-spec-card__ja {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

body.products-v2-precision .sw-spec-card__tags,
body.shimizu-v2-catalog .sw-spec-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

body.products-v2-precision .sw-spec-card__tags span,
body.shimizu-v2-catalog .sw-spec-card__tags span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  color: #1d4ed8;
  background: #eff6ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.shimizu-v2-catalog .sw-spec-card__facts {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.62;
}

body.shimizu-v2-catalog .sw-spec-card__facts span {
  overflow-wrap: anywhere;
}

body.shimizu-v2-catalog .sw-spec-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: #1d4ed8;
  background: #ffffff;
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.shimizu-v2-catalog .sw-spec-card__cta:hover {
  transform: translateY(-1px);
  border-color: #2563eb;
  color: #ffffff;
  background: #2563eb;
}

body.shimizu-v2-catalog .sw-data-table-panel {
  margin: 28px 0 34px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.06);
}

body.shimizu-v2-catalog .sw-data-table-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

body.shimizu-v2-catalog .sw-data-table-kicker {
  display: block;
  margin-bottom: 6px;
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

body.shimizu-v2-catalog .sw-data-table-head h3 {
  margin: 0;
  color: #172554;
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: 0;
}

body.shimizu-v2-catalog .sw-data-table-head p {
  max-width: 430px;
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

body.shimizu-v2-catalog .sw-data-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  scrollbar-width: none;
}

body.shimizu-v2-catalog .sw-data-table-wrap::-webkit-scrollbar {
  display: none;
}

body.shimizu-v2-catalog .sw-data-table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
}

body.shimizu-v2-catalog .sw-data-table th,
body.shimizu-v2-catalog .sw-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
  max-width: 280px;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.shimizu-v2-catalog .sw-data-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #64748b;
  background: #f8fafc;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.shimizu-v2-catalog .sw-data-table tbody tr {
  transition: background 0.18s ease;
}

body.shimizu-v2-catalog .sw-data-table tbody tr:hover {
  background: rgba(239, 246, 255, 0.72);
}

body.shimizu-v2-catalog .sw-data-table tbody tr:last-child td {
  border-bottom: 0;
}

body.shimizu-v2-catalog .sw-data-table__model {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 190px;
  min-width: 190px;
  background: inherit;
  box-shadow: 1px 0 0 #e2e8f0;
}

body.shimizu-v2-catalog th.sw-data-table__model {
  background: #f8fafc;
}

body.shimizu-v2-catalog td.sw-data-table__model {
  background: #ffffff;
}

body.shimizu-v2-catalog .sw-data-table tbody tr:hover td.sw-data-table__model {
  background: #eff6ff;
}

body.shimizu-v2-catalog .sw-data-table__model strong,
body.shimizu-v2-catalog .sw-data-table__model span {
  display: block;
}

body.shimizu-v2-catalog .sw-data-table__model strong {
  color: #1d4ed8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
}

body.shimizu-v2-catalog .sw-data-table__model span {
  margin-top: 4px;
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.35;
}

body.shimizu-v2-catalog .sw-data-table__link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  color: #1d4ed8;
  background: #eff6ff;
  font-weight: 900;
}

body.shimizu-v2-catalog .sw-data-table__link:hover {
  color: #ffffff;
  background: #2563eb;
  border-color: #2563eb;
}

body.shimizu-v2-catalog .sw-data-table-empty {
  padding: 28px;
  color: #64748b;
  text-align: center;
}

body.products-v2-precision .sw-cta-section,
body.shimizu-v2-catalog .sw-cta-section {
  padding: clamp(64px, 8vw, 108px) 0;
}

body.products-v2-precision .sw-cta,
body.shimizu-v2-catalog .sw-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 54px);
  min-height: 260px;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.46), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #0b2c67 100%);
  box-shadow: 0 38px 110px rgba(15, 23, 42, 0.3);
  overflow: hidden;
}

body.products-v2-precision .sw-cta::before,
body.shimizu-v2-catalog .sw-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
  pointer-events: none;
}

body.products-v2-precision .sw-cta::after,
body.shimizu-v2-catalog .sw-cta::after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 86px);
  bottom: -58px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 26px;
  transform: rotate(18deg);
  pointer-events: none;
}

body.products-v2-precision .sw-cta__copy,
body.shimizu-v2-catalog .sw-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

body.products-v2-precision .sw-cta__kicker,
body.shimizu-v2-catalog .sw-cta__kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(15, 23, 42, 0.4);
  font-size: 0.8rem;
  font-weight: 900;
}

body.products-v2-precision .sw-cta h2,
body.products-v2-precision .sw-cta__title,
body.shimizu-v2-catalog .sw-cta h2,
body.shimizu-v2-catalog .sw-cta__title {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

body.products-v2-precision .sw-cta p,
body.shimizu-v2-catalog .sw-cta p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.78;
}

body.products-v2-precision .sw-cta__button,
body.shimizu-v2-catalog .sw-cta__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 12px;
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 22px 58px rgba(37, 99, 235, 0.36);
  font-weight: 1000;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

body.products-v2-precision .sw-cta__button:hover,
body.shimizu-v2-catalog .sw-cta__button:hover {
  transform: translateY(-2px);
  background: #3b82f6;
  box-shadow: 0 26px 68px rgba(37, 99, 235, 0.48);
}

body.products-v2-precision .sw-cta--inline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 0;
  margin-top: 22px;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 14px;
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.22);
}

body.products-v2-precision .sw-cta--inline .sw-cta__copy {
  max-width: none;
  min-width: 0;
}

body.products-v2-precision .sw-cta--inline .sw-cta__kicker {
  margin-bottom: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.76rem;
}

body.products-v2-precision .sw-cta--inline .sw-cta__title {
  font-size: clamp(1.02rem, 1.5vw, 1.34rem);
  line-height: 1.28;
}

body.products-v2-precision .sw-cta--inline p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.62;
}

body.products-v2-precision .sw-cta__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(191, 219, 254, 0.34);
  border-radius: 12px;
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.48);
  font-size: 1.36rem;
}

body.products-v2-precision .sw-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

body.products-v2-precision .sw-cta--inline .sw-cta__button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  white-space: normal;
  text-align: center;
}

body.products-v2-precision .sw-cta--hose-download {
  background:
    radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.44), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0f172a 52%, #075985 100%);
}

body.products-v2-precision .sw-cta--hose-download .sw-cta__button {
  background: #0284c7;
  box-shadow: 0 18px 42px rgba(2, 132, 199, 0.35);
}

body.products-v2-precision .sw-cta--hose-download .sw-cta__button:hover {
  background: #0ea5e9;
  box-shadow: 0 22px 54px rgba(14, 165, 233, 0.42);
}

body.products-v2-precision .sw-cta--sr-selector .sw-cta__button {
  background: #2563eb;
}

body.products-v2-precision .sw-cta--custom-quote {
  margin-top: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(20, 184, 166, 0.42), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0f172a 52%, #134e4a 100%);
}

body.products-v2-precision .sw-cta--custom-quote .sw-cta__button {
  background: #0f766e;
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.36);
}

body.products-v2-precision .sw-cta--custom-quote .sw-cta__button:hover {
  background: #14b8a6;
  box-shadow: 0 22px 54px rgba(20, 184, 166, 0.42);
}

@media (max-width: 1199px) {
  body.shimizu-v2-catalog .sw-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.shimizu-v2-catalog .sw-spec-grid {
    grid-template-columns: 1fr;
  }

  body.shimizu-v2-catalog .sw-data-table-head,
  body.products-v2-precision .sw-cta,
  body.shimizu-v2-catalog .sw-cta {
    align-items: stretch;
    flex-direction: column;
  }

  body.products-v2-precision .sw-cta__button,
  body.shimizu-v2-catalog .sw-cta__button {
    width: 100%;
  }

  body.products-v2-precision .sw-cta--inline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.products-v2-precision .sw-cta__actions {
    justify-content: stretch;
  }

  body.products-v2-precision .sw-cta--inline .sw-cta__button {
    width: 100%;
  }

  body.shimizu-v2-catalog .sw-data-table {
    min-width: 820px;
  }

  body.shimizu-v2-catalog .sw-data-table th,
  body.shimizu-v2-catalog .sw-data-table td {
    padding: 12px;
  }

  body.shimizu-v2-catalog .sw-data-table__model {
    width: 156px;
    min-width: 156px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.shimizu-v2-catalog .sw-spec-card,
  body.shimizu-v2-catalog .sw-spec-card__cta,
  body.products-v2-precision .sw-cta__button,
  body.shimizu-v2-catalog .sw-cta__button {
    transition: none;
  }
}

/* Stage 3: industrial micro-interactions and SR quick navigation */
body.shimizu-v2-catalog .shimizu-catalog-shell {
  display: grid;
  grid-template-columns: minmax(184px, 224px) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

body.shimizu-v2-catalog .shimizu-catalog-content {
  min-width: 0;
}

body.shimizu-v2-catalog .shimizu-quick-toc {
  position: sticky;
  top: calc(var(--sw-visible-header-offset, var(--chrome-header-h, 72px)) + 24px);
  z-index: 28;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(16px);
}

body.shimizu-v2-catalog .shimizu-quick-toc__head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid #e2e8f0;
}

body.shimizu-v2-catalog .shimizu-quick-toc__head span {
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.shimizu-v2-catalog .shimizu-quick-toc__head strong {
  color: #172554;
  font-size: 1.02rem;
  font-weight: 1000;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list {
  display: grid;
  gap: 4px;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 2px 8px;
  align-items: center;
  padding: 10px 10px 10px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #475569;
  background: transparent;
  box-shadow: inset 0 0 0 0 #2563eb;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a[hidden] {
  display: none;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a span {
  grid-row: span 2;
  color: #2563eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a strong {
  min-width: 0;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.25;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a small {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a:hover,
body.shimizu-v2-catalog .shimizu-quick-toc__list a.is-active {
  color: #1d4ed8;
  border-color: #bfdbfe;
  background: #eff6ff;
  box-shadow: inset 2px 0 0 #2563eb;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a.is-active strong {
  font-weight: 1000;
}

body.shimizu-v2-catalog .shimizu-quick-toc__list a.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

body.shimizu-v2-catalog .shimizu-mobile-jump {
  display: none;
}

body.products-v2-precision .product-bento-card,
body.products-v2-precision .sw-spec-card,
body.shimizu-v2-catalog .sw-spec-card {
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

body.products-v2-precision .product-bento-card:hover,
body.products-v2-precision .product-bento-card:focus-within,
body.products-v2-precision .sw-spec-card:hover,
body.products-v2-precision .sw-spec-card:focus-within,
body.shimizu-v2-catalog .sw-spec-card:hover,
body.shimizu-v2-catalog .sw-spec-card:focus-within {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 10px 40px -10px rgba(30, 64, 138, 0.1);
}

body.products-v2-precision .sw-spec-card__media,
body.shimizu-v2-catalog .sw-spec-card__media {
  overflow: hidden;
}

body.products-v2-precision .sw-spec-card__media img,
body.shimizu-v2-catalog .sw-spec-card__media img {
  transform-origin: center;
  transition: transform 700ms ease-out;
}

body.products-v2-precision .sw-spec-card:hover .sw-spec-card__media img,
body.products-v2-precision .sw-spec-card:focus-within .sw-spec-card__media img,
body.shimizu-v2-catalog .sw-spec-card:hover .sw-spec-card__media img,
body.shimizu-v2-catalog .sw-spec-card:focus-within .sw-spec-card__media img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  body.shimizu-v2-catalog .shimizu-catalog-shell {
    display: block;
  }

  body.shimizu-v2-catalog .shimizu-quick-toc {
    display: none;
  }

  body.shimizu-v2-catalog .shimizu-mobile-jump {
    position: sticky;
    top: calc(var(--sw-visible-header-offset, var(--chrome-header-h, 66px)) + 8px);
    z-index: 36;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    padding: 10px 12px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
  }

  body.shimizu-v2-catalog .shimizu-mobile-jump span {
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 950;
    white-space: nowrap;
  }

  body.shimizu-v2-catalog .shimizu-mobile-jump select {
    width: 100%;
    min-height: 38px;
    border: 1px solid #bfdbfe;
    border-radius: 9px;
    color: #172554;
    background: #eff6ff;
    font-size: 0.88rem;
    font-weight: 900;
    outline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.products-v2-precision .product-bento-card,
  body.products-v2-precision .sw-spec-card,
  body.products-v2-precision .sw-spec-card__media img,
  body.shimizu-v2-catalog .sw-spec-card,
  body.shimizu-v2-catalog .sw-spec-card__media img,
  body.shimizu-v2-catalog .shimizu-quick-toc__list a {
    transition: none;
  }
}

/* productsNew classic catalog rollback */
body.products-new-classic {
  background: #f8fafc;
}

body.products-new-classic .classic-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(58px, 7vw, 88px) 0 clamp(54px, 6vw, 78px);
  color: #ffffff;
  background: #020713;
  min-height: clamp(420px, 35vw, 520px);
}

body.products-new-classic .classic-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 5, 16, 0.98) 0%, rgba(3, 12, 31, 0.94) 26%, rgba(8, 28, 64, 0.78) 52%, rgba(9, 33, 82, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.34) 0%, rgba(2, 6, 23, 0.74) 100%),
    radial-gradient(circle at 72% 28%, rgba(37, 99, 235, 0.28), transparent 34%);
}

body.products-new-classic .classic-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 34%, rgba(255, 255, 255, 0.04) 100%),
    repeating-linear-gradient(90deg, rgba(191, 219, 254, 0.065) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

body.products-new-classic .classic-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(18px, 3vw, 36px) clamp(18px, 4vw, 72px) clamp(18px, 3vw, 36px) 31%;
}

body.products-new-classic .classic-page-hero__bg img {
  width: min(1020px, 66vw);
  max-width: none;
  height: auto;
  max-height: 112%;
  object-fit: contain;
  object-position: right center;
  opacity: 0.62;
  filter: invert(1) grayscale(1) contrast(1.08) brightness(1.24);
  mix-blend-mode: screen;
}

body.products-new-classic .classic-page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: clamp(24px, 5vw, 88px);
  padding-left: clamp(28px, 8vw, 180px);
}

body.products-new-classic .classic-page-hero .breadcrumb-sw a,
body.products-new-classic .classic-page-hero .breadcrumb-sw span {
  color: rgba(241, 245, 249, 0.84);
}

body.products-new-classic .classic-page-hero .page-title {
  max-width: 820px;
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(3.5rem, 6.2vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

body.products-new-classic .classic-page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(241, 245, 249, 0.9);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  font-weight: 750;
  line-height: 1.72;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

@media (max-width: 767px) {
  body.products-new-classic .classic-page-hero {
    min-height: 460px;
    padding: 54px 0 48px;
  }

  body.products-new-classic .classic-page-hero::before {
    background:
      linear-gradient(90deg, rgba(1, 5, 16, 0.98) 0%, rgba(3, 12, 31, 0.94) 62%, rgba(9, 33, 82, 0.58) 100%),
      radial-gradient(circle at 82% 12%, rgba(37, 99, 235, 0.24), transparent 38%);
  }

  body.products-new-classic .classic-page-hero .container {
    padding-right: 24px;
    padding-left: 24px;
  }

  body.products-new-classic .classic-page-hero__bg {
    align-items: flex-end;
    padding: 0 0 20px 18%;
  }

  body.products-new-classic .classic-page-hero__bg img {
    width: 128vw;
    max-width: none;
    opacity: 0.24;
    transform: translateX(26%);
  }

  body.products-new-classic .classic-page-hero .page-title {
    font-size: clamp(3.15rem, 16vw, 4.4rem);
  }

  body.products-new-classic .classic-page-hero p {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.68;
  }

}

body.products-new-classic .classic-products-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 40px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px) 24px clamp(70px, 8vw, 112px);
  align-items: start;
}

body.products-new-classic .classic-sidebar {
  position: sticky;
  top: calc(var(--sw-visible-header-offset, var(--chrome-header-h, 72px)) + 24px);
  border-radius: 14px;
  background: transparent;
}

body.products-new-classic .classic-sidebar__head {
  margin-bottom: 10px;
  color: #172554;
  font-size: 0.86rem;
  font-weight: 1000;
}

body.products-new-classic .classic-sidebar__nav {
  display: grid;
  gap: 4px;
}

body.products-new-classic .classic-sidebar__link,
body.products-new-classic .classic-sidebar__sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  border-radius: 10px;
  color: #475569;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

body.products-new-classic .classic-sidebar__link {
  justify-content: space-between;
  padding: 11px 12px;
  font-size: 0.9rem;
  font-weight: 900;
}

body.products-new-classic .classic-sidebar__link:hover,
body.products-new-classic .classic-sidebar__link.is-active,
body.products-new-classic .classic-sidebar__sub a:hover,
body.products-new-classic .classic-sidebar__sub a.is-active {
  color: #1d4ed8;
  background: #eff6ff;
}

body.products-new-classic .classic-sidebar__sub {
  display: grid;
  gap: 3px;
  margin: 3px 0 7px;
  padding-left: 10px;
}

body.products-new-classic .classic-sidebar__sub a {
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

body.products-new-classic .classic-sidebar__sub a span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

body.products-new-classic .classic-sidebar__inquiry {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: #eff6ff;
}

body.products-new-classic .classic-sidebar__inquiry strong {
  color: #1d4ed8;
  font-size: 0.84rem;
}

body.products-new-classic .classic-sidebar__inquiry p {
  margin: 7px 0 12px;
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.65;
}

body.products-new-classic .classic-sidebar__inquiry a,
body.products-new-classic .classic-intro-actions a,
body.products-new-classic .classic-cta-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  color: #ffffff;
  background: #2563eb;
  font-weight: 950;
  text-decoration: none;
}

body.products-new-classic .classic-sidebar__inquiry a {
  width: 100%;
  min-height: 38px;
}

body.products-new-classic .classic-main {
  min-width: 0;
}

body.products-new-classic .classic-section-head {
  margin-bottom: 22px;
}

body.products-new-classic .classic-section-head span,
body.products-new-classic .classic-category-title small {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

body.products-new-classic .classic-section-head h2 {
  margin: 6px 0 4px;
  color: #172554;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.15;
}

body.products-new-classic .classic-section-head p {
  margin: 0;
  color: #64748b;
}

body.products-new-classic .classic-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

body.products-new-classic .classic-cat-card,
body.products-new-classic .classic-sub-section,
body.products-new-classic .classic-intro-card {
  min-width: 0;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.05);
}

body.products-new-classic .classic-cat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.products-new-classic .classic-cat-card:hover,
body.products-new-classic .classic-product-row:hover,
body.products-new-classic .classic-intro-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 20px 56px rgba(30, 64, 138, 0.1);
}

body.products-new-classic .classic-cat-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 178px;
  gap: 8px;
  overflow: hidden;
  color: #94a3b8;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
  border-bottom: 1px solid #eef2f7;
}

body.products-new-classic .classic-cat-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.3s ease;
}

body.products-new-classic .classic-cat-card:hover .classic-cat-card__media img {
  transform: scale(1.05);
}

body.products-new-classic .classic-cat-card__media span {
  position: relative;
  z-index: 1;
  margin: 0 14px 14px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
}

body.products-new-classic .classic-cat-card__media b,
body.products-new-classic .classic-cat-card__media em {
  position: absolute;
  top: 12px;
  z-index: 1;
  font-style: normal;
}

body.products-new-classic .classic-cat-card__media b {
  left: 12px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: #172554;
  font-size: 0.72rem;
}

body.products-new-classic .classic-cat-card__media em {
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: #2563eb;
  font-size: 0.68rem;
  font-weight: 900;
}

body.products-new-classic .classic-cat-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
}

body.products-new-classic .classic-cat-card h3,
body.products-new-classic .classic-product-row h4,
body.products-new-classic .classic-intro-card h3 {
  margin: 0;
  color: #172554;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

body.products-new-classic .classic-cat-card h3 {
  font-size: 1.08rem;
}

body.products-new-classic .classic-cat-card small {
  display: block;
  margin: 5px 0 11px;
  color: #94a3b8;
  font-weight: 800;
}

body.products-new-classic .classic-cat-card p,
body.products-new-classic .classic-sub-section__body > p,
body.products-new-classic .classic-product-row p,
body.products-new-classic .classic-intro-card p,
body.products-new-classic .classic-cta-strip p {
  color: #475569;
  line-height: 1.78;
}

body.products-new-classic .classic-cat-card p {
  margin: 0 0 14px;
  font-size: 0.86rem;
}

body.products-new-classic .classic-chip-list,
body.products-new-classic .classic-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

body.products-new-classic .classic-chip-list span,
body.products-new-classic .classic-tag-list span {
  max-width: 100%;
  border: 1px solid #bfdbfe;
  border-radius: 7px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

body.products-new-classic .classic-chip-list span {
  padding: 5px 9px;
}

body.products-new-classic .classic-chip-list--plain span {
  color: #475569;
  border-color: #e2e8f0;
  background: #f8fafc;
}

body.products-new-classic .classic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

body.products-new-classic .classic-card-footer span {
  color: #94a3b8;
  font-size: 0.78rem;
}

body.products-new-classic .classic-card-footer strong,
body.products-new-classic .classic-section-link a,
body.products-new-classic .classic-product-row strong {
  color: #1d4ed8;
  font-weight: 950;
}

body.products-new-classic .classic-category-section {
  scroll-margin-top: calc(var(--sw-visible-header-offset, var(--chrome-header-h, 72px)) + 24px);
  margin-top: clamp(34px, 5vw, 54px);
}

body.products-new-classic .classic-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dbeafe;
}

body.products-new-classic .classic-category-title > span {
  width: 4px;
  height: 24px;
  border-radius: 99px;
  background: #2563eb;
}

body.products-new-classic .classic-category-title h2 {
  margin: 2px 0 0;
  color: #172554;
  font-size: 1.2rem;
}

body.products-new-classic .classic-category-title em {
  margin-left: auto;
  color: #94a3b8;
  font-style: normal;
  font-size: 0.84rem;
}

body.products-new-classic .classic-sub-section {
  scroll-margin-top: calc(var(--sw-visible-header-offset, var(--chrome-header-h, 72px)) + 24px);
  overflow: hidden;
  margin-bottom: 18px;
}

body.products-new-classic .classic-sub-section__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid #eef2f7;
  background: #f8fbff;
}

body.products-new-classic .classic-sub-section__head i {
  color: #2563eb;
  font-size: 1.2rem;
}

body.products-new-classic .classic-sub-section__head h3 {
  margin: 0;
  color: #172554;
  font-size: 0.98rem;
}

body.products-new-classic .classic-sub-section__head span {
  margin-left: auto;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 800;
}

body.products-new-classic .classic-sub-section__body {
  padding: 20px;
}

body.products-new-classic .classic-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

body.products-new-classic .classic-product-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  color: inherit;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.products-new-classic .classic-product-row__media,
body.products-new-classic .classic-intro-card__media {
  display: grid;
  place-items: center;
  gap: 7px;
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  color: #2563eb;
  background: #f1f7ff;
}

body.products-new-classic .classic-product-row__media {
  min-height: 108px;
}

body.products-new-classic .classic-product-row__media i,
body.products-new-classic .classic-intro-card__media i {
  font-size: 1.75rem;
}

body.products-new-classic .classic-intro-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: #ffffff;
}

body.products-new-classic .classic-product-row__media span,
body.products-new-classic .classic-intro-card__media span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

body.products-new-classic .classic-product-row h4 {
  font-size: 0.96rem;
}

body.products-new-classic .classic-product-row p {
  margin: 6px 0 9px;
  font-size: 0.82rem;
}

body.products-new-classic .classic-product-row strong {
  grid-column: 2;
  font-size: 0.78rem;
}

body.products-new-classic .classic-tag-list span {
  padding: 4px 8px;
}

body.products-new-classic .classic-section-link {
  margin-top: 14px;
  text-align: right;
}

body.products-new-classic .classic-intro-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.products-new-classic .classic-intro-card__media {
  min-height: 240px;
  border-radius: 0;
  border-right: 1px solid #eef2f7;
}

body.products-new-classic .classic-intro-card__body {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
}

body.products-new-classic .classic-intro-card__body > small {
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 950;
}

body.products-new-classic .classic-intro-card h3 {
  margin-top: 7px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

body.products-new-classic .classic-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

body.products-new-classic .classic-spec-grid span {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  color: #475569;
  background: #f8fafc;
  font-weight: 800;
  overflow-wrap: anywhere;
}

body.products-new-classic .classic-spec-grid b {
  display: block;
  margin-bottom: 4px;
  color: #1e3a8a;
}

body.products-new-classic .classic-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

body.products-new-classic .classic-intro-actions a {
  min-height: 42px;
  padding: 0 18px;
}

body.products-new-classic .classic-intro-actions span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #64748b;
  background: #f1f5f9;
  font-size: 0.78rem;
  font-weight: 850;
}

body.products-new-classic .classic-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(22px, 3vw, 30px);
  border-radius: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 16%, rgba(37, 99, 235, 0.44), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0f172a 52%, #0b2c67 100%);
}

body.products-new-classic .classic-cta-strip h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 1.12rem;
}

body.products-new-classic .classic-cta-strip p {
  margin: 0;
  color: #cbd5e1;
}

body.products-new-classic .classic-cta-strip a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 20px;
}

body.products-new-classic .classic-cat-grid--seven {
  grid-auto-rows: 1fr;
}

body.products-new-classic .classic-ghost-link {
  color: #1d4ed8;
  background: #eff6ff;
}

body.products-new-classic .classic-product-wide-section {
  scroll-margin-top: calc(var(--sw-visible-header-offset, var(--chrome-header-h, 72px)) + 24px);
  margin: clamp(34px, 5vw, 56px) 0 0;
}

body.products-new-classic .classic-main > .classic-product-wide-section .container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

body.products-new-classic .classic-main > .featured-series-rail,
body.products-new-classic .classic-main > .digital-spec-showroom,
body.products-new-classic .classic-main > .product-after,
body.products-new-classic .classic-main > .procurement-sourcing,
body.products-new-classic .classic-main > .global-prefooter-cta {
  border-radius: 16px;
  overflow: hidden;
}

body.products-new-classic .classic-main > .featured-series-rail {
  padding: 0;
  background: transparent;
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy action"
    "meta meta";
  gap: 22px 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-copy {
  grid-area: copy;
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-copy h2 {
  max-width: 420px;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.08;
  text-wrap: balance;
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-copy p {
  max-width: 520px;
  font-size: 0.95rem;
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-meta {
  grid-area: meta;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-meta div {
  min-height: 92px;
  padding: 14px 16px;
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-meta strong {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

body.products-new-classic .classic-main > .featured-series-rail .featured-series-card > .btn-sw {
  grid-area: action;
  min-width: 190px;
  justify-self: end;
}

body.products-new-classic .classic-main > .digital-spec-showroom {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid #dbeafe;
  background:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    #f8fafc;
  background-size: 34px 34px, 34px 34px, auto;
}

body.products-new-classic .classic-main .spec-tab-sticky {
  position: static;
  top: auto;
  z-index: auto;
  margin-bottom: 22px;
}

body.products-new-classic .classic-main .digital-spec-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

body.products-new-classic .classic-main .digital-spec-nav {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

body.products-new-classic .classic-main .digital-spec-nav-title {
  flex: 0 0 100%;
}

body.products-new-classic .classic-main .digital-spec-showroom.is-spec-nav-fixed:not(.is-flange-scroll) .digital-spec-nav,
body.products-new-classic .classic-main .digital-spec-showroom.is-flange-scroll .digital-spec-nav {
  position: static;
  width: 100%;
}

body.products-new-classic .classic-main .digital-spec-main,
body.products-new-classic .classic-main .spec-stream-section,
body.products-new-classic .classic-main .spec-tab-panel,
body.products-new-classic .classic-main .spec-drawer-card,
body.products-new-classic .classic-main .spec-table-card,
body.products-new-classic .classic-main .procurement-sourcing,
body.products-new-classic .classic-main .procurement-sourcing * {
  min-width: 0;
}

body.products-new-classic .classic-main .product-after.dark-capability {
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(28px, 4vw, 44px);
}

body.products-new-classic .classic-main .dark-capability-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

body.products-new-classic .classic-main .procurement-sourcing {
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #e2e8f0;
}

body.products-new-classic .classic-main .procurement-sourcing-head h2 {
  font-size: clamp(1.85rem, 4vw, 3.3rem);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card,
body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--oem,
body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--alternative,
body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--inhouse {
  min-height: 0;
  margin: 0;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: none;
  transform: none;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--oem,
body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--alternative {
  background: #f8fbff;
  border-right: 1px solid #e2e8f0;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--inhouse {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.28), transparent 34%),
    #0f172a;
  color: #ffffff;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--inhouse:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.2);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(30, 64, 138, 0.08);
}

body.products-new-classic .classic-main .sourcing-tier-grid,
body.products-new-classic .classic-main .sourcing-category-grid,
body.products-new-classic .classic-main .sourcing-case-grid,
body.products-new-classic .classic-main .sourcing-flow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.products-new-classic .classic-main .sourcing-category-card--wide,
body.products-new-classic .classic-main .sourcing-case-feature,
body.products-new-classic .classic-main .sourcing-precision-banner {
  grid-column: 1 / -1;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-feature {
  min-height: 0;
  padding: clamp(24px, 3.2vw, 34px);
  border-radius: 14px;
  box-shadow: none;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-feature::before {
  top: 16px;
  right: 20px;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-feature h4 {
  max-width: 560px;
  margin-top: 14px;
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  line-height: 1.08;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-feature p {
  max-width: 640px;
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 20px;
  background: #f8fbff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: none;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item > span {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  padding: 6px 10px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  line-height: 1.3;
  white-space: normal;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item h4 {
  font-size: 1rem;
  line-height: 1.42;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item p {
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.72;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item .sourcing-case-tags {
  margin-top: auto;
  padding-top: 16px;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-tags span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 7px 10px;
  background: #eef6ff;
  color: #1e40af;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  padding: 0;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid::before {
  content: none;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid article:hover {
  border-color: #93c5fd;
  box-shadow: 0 18px 42px rgba(30, 64, 138, 0.09);
  transform: translateY(-2px);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid article > span {
  position: static;
  display: inline-flex;
  width: 48px;
  height: 48px;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 34%),
    #dbeafe;
  border: 6px solid #f1f7ff;
  border-radius: 999px;
  color: #1d4ed8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid h4 {
  margin: 2px 0 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid p {
  max-width: none;
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.72;
}

body.products-new-classic .classic-main .procurement-sourcing .sourcing-notice {
  margin-top: 22px;
  padding: 18px 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.76;
}

body.products-new-classic .classic-main .global-prefooter-cta {
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(24px, 4vw, 40px);
}

body.products-new-classic .classic-main .global-prefooter-cta__inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 991px) {
  body.products-new-classic .classic-products-shell,
  body.products-new-classic .classic-cat-grid,
  body.products-new-classic .classic-product-list,
  body.products-new-classic .classic-intro-card {
    grid-template-columns: 1fr;
  }

  body.products-new-classic .classic-sidebar {
    position: static;
  }

  body.products-new-classic .classic-main .sourcing-tier-grid,
  body.products-new-classic .classic-main .sourcing-category-grid,
  body.products-new-classic .classic-main .sourcing-case-grid,
  body.products-new-classic .classic-main .sourcing-flow-grid,
  body.products-new-classic .classic-main .global-prefooter-cta__inner {
    grid-template-columns: 1fr;
  }

  body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-grid {
    grid-template-columns: 1fr;
  }

  body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list {
    grid-template-columns: 1fr;
  }

  body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid {
    grid-template-columns: 1fr;
  }

  body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--inhouse {
    grid-column: auto;
  }

  body.products-new-classic .classic-main > .featured-series-rail .featured-series-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "meta"
      "action";
  }

  body.products-new-classic .classic-main > .featured-series-rail .featured-series-card > .btn-sw {
    justify-self: start;
  }

  body.products-new-classic .classic-intro-card__media {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid #eef2f7;
  }
}

@media (max-width: 575px) {
  body.products-new-classic .classic-products-shell {
    padding-inline: 14px;
  }

  body.products-new-classic .classic-product-row,
  body.products-new-classic .classic-spec-grid,
  body.products-new-classic .classic-cta-strip,
  body.products-new-classic .classic-main > .featured-series-rail .featured-series-meta {
    grid-template-columns: 1fr;
  }

  body.products-new-classic .classic-product-row strong {
    grid-column: 1;
  }

  body.products-new-classic .classic-category-title,
  body.products-new-classic .classic-sub-section__head,
  body.products-new-classic .classic-card-footer,
  body.products-new-classic .classic-cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  body.products-new-classic .classic-category-title em,
  body.products-new-classic .classic-sub-section__head span {
    margin-left: 0;
  }
}

body.products-tree-page {
  background: #f5f7fb;
  color: #102033;
}

body.products-tree-page main {
  overflow: hidden;
}

body.products-tree-page .product-tree-hero {
  position: relative;
  min-height: clamp(360px, 45vw, 520px);
  display: flex;
  align-items: center;
  padding: clamp(92px, 12vw, 150px) 0 clamp(48px, 7vw, 82px);
  background:
    linear-gradient(90deg, rgba(2, 10, 24, 0.94) 0%, rgba(5, 23, 52, 0.88) 42%, rgba(10, 43, 82, 0.62) 100%),
    #071528;
  color: #fff;
}

body.products-tree-page .product-tree-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
  pointer-events: none;
}

body.products-tree-page .product-tree-hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58vw, 920px);
  opacity: 0.24;
  pointer-events: none;
}

body.products-tree-page .product-tree-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: grayscale(1) contrast(1.15);
}

body.products-tree-page .product-tree-hero .container {
  position: relative;
  z-index: 1;
}

body.products-tree-page .product-tree-hero .breadcrumb-sw,
body.products-tree-page .product-tree-hero .breadcrumb-sw a,
body.products-tree-page .product-tree-hero .breadcrumb-sw span {
  color: rgba(234, 242, 255, 0.82);
}

body.products-tree-page .product-tree-hero__copy {
  max-width: 720px;
}

body.products-tree-page .product-tree-hero__copy h1 {
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(2.75rem, 7vw, 5.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

body.products-tree-page .product-tree-hero__copy p {
  max-width: 58ch;
  margin: 0;
  color: rgba(235, 244, 255, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.9;
}

body.products-tree-page .product-tree-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 680px);
  margin-top: clamp(28px, 4vw, 42px);
  padding: 10px 10px 10px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.45);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

body.products-tree-page .product-tree-search i {
  color: #21598f;
  font-size: 1.25rem;
}

body.products-tree-page .product-tree-search input {
  min-width: 0;
  height: 46px;
  background: transparent;
  border: 0;
  color: #0f172a;
  font-size: 0.96rem;
  outline: 0;
}

body.products-tree-page .product-tree-search input::placeholder {
  color: #475569;
  opacity: 1;
}

body.products-tree-page .product-tree-search button {
  height: 46px;
  padding: 0 20px;
  background: #0f3768;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
}

body.products-tree-page .product-tree-map-section,
body.products-tree-page .product-category-index,
body.products-tree-page .product-level-page {
  padding: clamp(62px, 8vw, 104px) 0;
}

body.products-tree-page .product-tree-section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

body.products-tree-page .product-tree-section-head--center {
  margin-inline: auto;
  text-align: center;
}

body.products-tree-page .product-tree-section-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #14537d;
  font-size: 0.9rem;
  font-weight: 900;
}

body.products-tree-page .product-tree-section-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 1.14;
  text-wrap: balance;
}

body.products-tree-page .product-tree-section-head p {
  max-width: 66ch;
  margin: 14px 0 0;
  color: #42526a;
  font-size: 1rem;
  line-height: 1.82;
}

body.products-tree-page .product-tree-section-head--center p {
  margin-inline: auto;
}

body.products-tree-page .product-range-tree {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(8px, 2vw, 24px) 12px;
}

body.products-tree-page .product-range-tree__root,
body.products-tree-page .product-range-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
}

body.products-tree-page .product-range-tree__root {
  width: min(300px, 82vw);
  min-height: 78px;
  margin: 0 auto 104px;
  background: #020617;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

body.products-tree-page .product-range-tree__root strong {
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.25;
}

body.products-tree-page .product-range-tree__root span,
body.products-tree-page .product-range-node small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.25;
}

body.products-tree-page .product-range-tree__branches {
  position: absolute;
  top: 78px;
  left: 50%;
  width: min(780px, calc(100% - 180px));
  height: 104px;
  transform: translateX(-50%);
  border: solid #d9e1ea;
  border-width: 0 1px 1px;
}

body.products-tree-page .product-range-tree__branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 104px;
  background: #d9e1ea;
}

body.products-tree-page .product-range-tree__level {
  display: grid;
  gap: clamp(14px, 2vw, 28px);
}

body.products-tree-page .product-range-tree__level--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.products-tree-page .product-range-node {
  min-height: 86px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  color: #103257;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.products-tree-page .product-range-node:hover,
body.products-tree-page .product-range-node:focus-visible {
  border-color: #2f76ad;
  box-shadow: 0 22px 46px rgba(20, 83, 125, 0.12);
  transform: translateY(-3px);
}

body.products-tree-page .product-range-node span {
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 950;
  line-height: 1.35;
}

body.products-tree-page .product-range-node small {
  color: #475569;
}

body.products-tree-page .product-range-node--fluid {
  background: #edf6ff;
  border-color: #7db5e7;
  color: #0f4b85;
}

body.products-tree-page .product-range-node--valve {
  background: #eaf8f3;
  border-color: #78bba3;
  color: #0d684d;
}

body.products-tree-page .product-range-node--coupler {
  background: #fff1ed;
  border-color: #df9278;
  color: #8b341c;
}

body.products-tree-page .product-range-node--oring {
  background: #f7f5f1;
  border-color: #b9a17a;
  color: #60461a;
}

body.products-tree-page .product-range-tree__level--children {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 110px));
  justify-content: start;
  gap: 12px;
  width: min(320px, 100%);
  margin-top: 112px;
  margin-left: 0;
}

body.products-tree-page .product-range-tree__level--children::before {
  content: "";
  position: absolute;
  top: -76px;
  left: 80px;
  width: 120px;
  height: 56px;
  border: solid #d9e1ea;
  border-width: 0 1px 1px;
}

body.products-tree-page .product-range-tree__level--children::after {
  content: "";
  position: absolute;
  top: -112px;
  left: 112px;
  width: 1px;
  height: 112px;
  background: #d9e1ea;
}

body.products-tree-page .product-range-node--child {
  min-height: 86px;
  padding: 14px 10px;
  background: #f3f4ff;
  border-color: #a5a9ee;
  color: #3d48a5;
}

body.products-tree-page .product-range-node--child span {
  font-size: 0.96rem;
}

body.products-tree-page .product-category-index {
  background: #fff;
}

body.products-tree-page .product-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.products-tree-page .product-category-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.products-tree-page .product-category-card:hover,
body.products-tree-page .product-category-card:focus-visible {
  border-color: #2f76ad;
  box-shadow: 0 24px 54px rgba(15, 50, 87, 0.14);
  transform: translateY(-4px);
}

body.products-tree-page .product-category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.9)),
    #f6f9fc;
}

body.products-tree-page .product-category-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

body.products-tree-page .product-category-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.14rem;
  font-weight: 950;
  line-height: 1.36;
}

body.products-tree-page .product-category-card small {
  margin-top: 4px;
  color: #336889;
  font-size: 0.88rem;
  font-weight: 800;
}

body.products-tree-page .product-category-card p {
  margin: 14px 0 18px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.72;
}

body.products-tree-page .product-category-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #0f4b85;
  font-size: 0.92rem;
  font-weight: 900;
}

body.products-tree-page .product-level-page {
  background: #eef3f8;
}

body.products-tree-page .product-level-page > .container {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

body.products-tree-page .product-level-sidebar {
  position: sticky;
  top: 108px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e2ed;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

body.products-tree-page .product-level-sidebar__title {
  padding: 22px;
  background: #071528;
  color: #fff;
}

body.products-tree-page .product-level-sidebar__title strong,
body.products-tree-page .product-level-sidebar__title span {
  display: block;
}

body.products-tree-page .product-level-sidebar__title strong {
  font-size: 1.18rem;
  font-weight: 950;
}

body.products-tree-page .product-level-sidebar__title span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

body.products-tree-page .product-level-sidebar nav {
  display: grid;
  padding: 10px;
}

body.products-tree-page .product-level-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 6px;
  color: #26384d;
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
}

body.products-tree-page .product-level-sidebar a:hover,
body.products-tree-page .product-level-sidebar a:focus-visible,
body.products-tree-page .product-level-sidebar a.is-active {
  background: #edf6ff;
  color: #0f4b85;
}

body.products-tree-page .product-level-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

body.products-tree-page .product-level-panel {
  scroll-margin-top: 120px;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid #d7e2ed;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

body.products-tree-page .product-level-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #e4ebf2;
}

body.products-tree-page .product-level-panel__head span {
  color: #14537d;
  font-size: 0.9rem;
  font-weight: 900;
}

body.products-tree-page .product-level-panel h2,
body.products-tree-page .product-level-panel__head h2 {
  margin: 8px 0 12px;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1.18;
}

body.products-tree-page .product-level-panel p,
body.products-tree-page .product-level-panel__head p {
  max-width: 68ch;
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.8;
}

body.products-tree-page .product-level-panel__head img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  padding: 14px;
  background: #f5f8fc;
  border: 1px solid #e1e9f2;
  border-radius: 8px;
}

body.products-tree-page .product-filter-placeholder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

body.products-tree-page .product-filter-placeholder div {
  padding: 16px;
  background: #f6f9fc;
  border: 1px solid #e1e9f2;
  border-radius: 8px;
}

body.products-tree-page .product-filter-placeholder strong,
body.products-tree-page .product-filter-placeholder span {
  display: block;
}

body.products-tree-page .product-filter-placeholder strong {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 950;
}

body.products-tree-page .product-filter-placeholder span {
  margin-top: 5px;
  color: #52657d;
  font-size: 0.86rem;
}

body.products-tree-page .product-subcategory-grid,
body.products-tree-page .product-list-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

body.products-tree-page .product-subcategory-card,
body.products-tree-page .product-list-placeholder article {
  min-width: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #dfe8f1;
  border-radius: 8px;
}

body.products-tree-page .product-subcategory-card i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: #e9f5ff;
  border-radius: 8px;
  color: #0f4b85;
  font-size: 1.35rem;
}

body.products-tree-page .product-subcategory-card h3,
body.products-tree-page .product-list-placeholder h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-tree-page .product-subcategory-card p,
body.products-tree-page .product-list-placeholder p {
  margin: 0;
  color: #52657d;
  font-size: 0.9rem;
  line-height: 1.7;
}

body.products-tree-page .product-subcategory-card span,
body.products-tree-page .product-panel-status {
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 10px;
  background: #f1f5f9;
  border: 1px solid #d8e2ee;
  border-radius: 6px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 900;
}

body.products-tree-page .product-list-placeholder article > span {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(226, 232, 240, 0.55), rgba(248, 250, 252, 0.95)),
    #f8fafc;
  border: 1px dashed #b9c7d7;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 850;
}

@media (max-width: 1199px) {
  body.products-tree-page .product-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.products-tree-page .product-range-tree__branches,
  body.products-tree-page .product-range-tree__level--children::before,
  body.products-tree-page .product-range-tree__level--children::after {
    content: none;
    display: none;
  }

  body.products-tree-page .product-range-tree__root {
    margin-bottom: 22px;
  }

  body.products-tree-page .product-range-tree__level--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.products-tree-page .product-range-tree__level--children {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 14px;
  }

  body.products-tree-page .product-level-page > .container {
    grid-template-columns: 1fr;
  }

  body.products-tree-page .product-level-sidebar {
    position: static;
  }

  body.products-tree-page .product-level-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.products-tree-page .product-tree-hero {
    min-height: auto;
    padding-top: 108px;
  }

  body.products-tree-page .product-tree-hero__image {
    width: 100%;
    opacity: 0.16;
  }

  body.products-tree-page .product-tree-search {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  body.products-tree-page .product-tree-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.products-tree-page .product-category-grid,
  body.products-tree-page .product-filter-placeholder,
  body.products-tree-page .product-level-panel__head {
    grid-template-columns: 1fr;
  }

  body.products-tree-page .product-level-panel__head img {
    max-height: 170px;
  }
}

@media (max-width: 575px) {
  body.products-tree-page .product-range-tree__level--top,
  body.products-tree-page .product-range-tree__level--children,
  body.products-tree-page .product-level-sidebar nav {
    grid-template-columns: 1fr;
  }

  body.products-tree-page .product-tree-map-section,
  body.products-tree-page .product-category-index,
  body.products-tree-page .product-level-page {
    padding: 54px 0;
  }

  body.products-tree-page .product-category-card div,
  body.products-tree-page .product-level-panel {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.products-tree-page .product-range-node,
  body.products-tree-page .product-category-card {
    transition: none;
  }

  body.products-tree-page .product-range-node:hover,
  body.products-tree-page .product-range-node:focus-visible,
  body.products-tree-page .product-category-card:hover,
  body.products-tree-page .product-category-card:focus-visible {
    transform: none;
  }
}

body.products-catalog-page,
body.products-category-page {
  background: #f4f7fb;
  color: #102033;
}

body.products-catalog-page main,
body.products-category-page main {
  overflow: hidden;
}

body.products-catalog-page .sw-catalog-head {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(420px, 35vw, 520px);
  align-items: center;
  overflow: hidden;
  padding: clamp(58px, 7vw, 88px) 0 clamp(54px, 6vw, 78px);
  background: #020713;
  color: #ffffff;
}

body.products-catalog-page .sw-catalog-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 5, 16, 0.88) 0%, rgba(3, 12, 31, 0.76) 31%, rgba(8, 28, 64, 0.46) 58%, rgba(9, 33, 82, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.12) 0%, rgba(2, 6, 23, 0.34) 100%),
    radial-gradient(circle at 74% 30%, rgba(37, 99, 235, 0.12), transparent 38%);
  pointer-events: none;
}

body.products-catalog-page .sw-catalog-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 30%, rgba(255, 255, 255, 0.03) 100%),
    repeating-linear-gradient(90deg, rgba(191, 219, 254, 0.055) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

body.products-catalog-page .sw-catalog-head__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  padding: 0;
  background: #f5f7fa;
}

body.products-catalog-page .sw-catalog-head__bg img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: 100% center;
  opacity: 0.82;
  filter: saturate(0.96) contrast(1.02) brightness(0.9);
  mix-blend-mode: normal;
}

body.products-catalog-page .sw-catalog-head .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: clamp(24px, 5vw, 88px);
  padding-left: clamp(28px, 8vw, 180px);
}

body.products-catalog-page .sw-catalog-head__copy {
  max-width: 430px;
}

body.products-catalog-page .sw-catalog-head .breadcrumb-sw,
body.products-category-page .sw-category-hero .breadcrumb-sw {
  margin-bottom: 20px;
}

body.products-catalog-page .sw-catalog-head h1,
body.products-category-page .sw-product-index__head h2 {
  margin: 0;
  color: #071528;
  font-size: clamp(2.45rem, 5.4vw, 4.65rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

body.products-catalog-page .sw-catalog-head h1 {
  max-width: 430px;
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(3.5rem, 6.2vw, 6rem);
  line-height: 0.95;
}

body.products-catalog-page .sw-catalog-head p {
  max-width: 430px;
  margin: 0;
  color: rgba(241, 245, 249, 0.9);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  font-weight: 750;
  line-height: 1.72;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

body.products-catalog-page .sw-catalog-head .breadcrumb-sw a,
body.products-catalog-page .sw-catalog-head .breadcrumb-sw span {
  color: rgba(241, 245, 249, 0.84);
}

body.products-catalog-page .sw-catalog-search,
body.products-category-page .sw-catalog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8e4f0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

body.products-catalog-page .sw-catalog-search input,
body.products-category-page .sw-catalog-search input {
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  background: transparent;
  border: 0;
  color: #0f172a;
  font-size: 0.96rem;
  outline: 0;
}

body.products-catalog-page .sw-catalog-search input::placeholder,
body.products-category-page .sw-catalog-search input::placeholder {
  color: #475569;
  opacity: 1;
}

body.products-catalog-page .sw-catalog-search button,
body.products-category-page .sw-catalog-search button {
  display: inline-flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0;
  color: #183b64;
  font-size: 1.35rem;
}

body.products-catalog-page .sw-catalog-index {
  padding: clamp(42px, 6vw, 72px) 0 clamp(38px, 5vw, 62px);
  background: #eef2f7;
}

body.products-catalog-page #surface-treatment.dark-capability {
  padding: clamp(28px, 3.2vw, 42px) 0;
}

body.products-catalog-page #surface-treatment .dark-capability-grid {
  align-items: center;
}

body.products-catalog-page .procurement-sourcing.classic-product-wide-section {
  margin-top: 0;
}

body.products-catalog-page .sw-catalog-index .sw-catalog-search {
  width: min(100%, 460px);
  margin: 0 0 clamp(24px, 4vw, 38px) auto;
}

body.products-catalog-page .sw-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.products-catalog-page .sw-catalog-card {
  display: grid;
  grid-template-columns: minmax(170px, 40%) minmax(0, 1fr);
  min-height: 180px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce6f0;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.products-catalog-page .sw-catalog-card:hover,
body.products-catalog-page .sw-catalog-card:focus-visible {
  border-color: #3b82c4;
  box-shadow: 0 24px 56px rgba(15, 50, 87, 0.14);
  transform: translateY(-4px);
}

body.products-catalog-page .sw-catalog-card figure {
  display: flex;
  min-width: 0;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.72)),
    #f8fafc;
}

body.products-catalog-page .sw-catalog-card img {
  width: 100%;
  max-height: 142px;
  object-fit: contain;
  transition: transform 180ms ease;
}

body.products-catalog-page .sw-catalog-card:hover img,
body.products-catalog-page .sw-catalog-card:focus-visible img {
  transform: scale(1.04);
}

body.products-catalog-page .sw-catalog-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
}

body.products-catalog-page .sw-catalog-card h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 16px;
  color: #071528;
  font-size: clamp(1.32rem, 2.2vw, 1.88rem);
  font-weight: 950;
  line-height: 1.25;
}

body.products-catalog-page .sw-catalog-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 190px);
  height: 1px;
  background: #d6e0ea;
}

body.products-catalog-page .sw-catalog-card p {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.72;
}

body.products-catalog-page .sw-catalog-card span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: #172f4f;
  font-size: 0.94rem;
  font-weight: 900;
}

body.products-catalog-page .sw-catalog-card span::before {
  content: "";
  width: 70px;
  height: 2px;
  background: #172f4f;
}

body.products-category-page .sw-category-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 35vw, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(58px, 7vw, 88px) 0 clamp(54px, 6vw, 78px);
  background: #020713;
  color: #ffffff;
}

body.products-category-page .sw-category-hero > img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: min(1040px, 58vw);
  max-width: none;
  height: auto;
  max-height: 112%;
  margin: auto clamp(18px, 4vw, 72px) auto auto;
  object-fit: contain;
  object-position: right center;
  opacity: 0.9;
  filter: invert(1) grayscale(1) contrast(1.12) brightness(1.32);
  mix-blend-mode: screen;
}

body.products-category-page .sw-category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 5, 16, 0.98) 0%, rgba(3, 12, 31, 0.92) 24%, rgba(8, 28, 64, 0.5) 42%, rgba(9, 33, 82, 0.14) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.18) 0%, rgba(2, 6, 23, 0.38) 100%),
    radial-gradient(circle at 74% 30%, rgba(37, 99, 235, 0.2), transparent 36%);
  pointer-events: none;
}

body.products-category-page .sw-category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 27%, rgba(255, 255, 255, 0.04) 100%),
    repeating-linear-gradient(90deg, rgba(191, 219, 254, 0.055) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

body.products-category-page .sw-category-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: clamp(24px, 5vw, 88px);
  padding-left: clamp(28px, 8vw, 180px);
}

body.products-category-page .sw-category-hero h1 {
  position: relative;
  max-width: 430px;
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(3.5rem, 6.2vw, 6rem);
  font-weight: 950;
  line-height: 0.95;
}

body.products-category-page .sw-category-hero p {
  max-width: 430px;
  margin: 0;
  color: rgba(241, 245, 249, 0.9);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  font-weight: 750;
  line-height: 1.72;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

body.products-category-page .sw-category-hero .breadcrumb-sw,
body.products-category-page .sw-category-hero .breadcrumb-sw a,
body.products-category-page .sw-category-hero .breadcrumb-sw span {
  color: rgba(255, 255, 255, 0.82);
}

body.products-category-page .sw-product-index {
  padding: clamp(46px, 7vw, 76px) 0 clamp(72px, 9vw, 112px);
  background: #ffffff;
}

body.products-category-page .sw-product-index__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 450px);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-bottom: clamp(26px, 4vw, 42px);
}

body.products-category-page .sw-product-index__head h2 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
}

body.products-category-page .sw-catalog-search--light {
  background: #f1f4f8;
  border-color: #e2e8f0;
  box-shadow: none;
}

body.products-category-page .sw-catalog-search--light button {
  background: #f1f4f8;
}

body.products-category-page .sw-product-index__layout {
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

body.products-category-page .sw-product-sidebar {
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid #dbe6f0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

body.products-category-page .sw-product-sidebar__head {
  padding: 32px 30px 40px;
  background:
    linear-gradient(135deg, rgba(12, 72, 157, 0.98), rgba(23, 88, 167, 0.92)),
    #144fa3;
  color: #ffffff;
}

body.products-category-page .sw-product-sidebar__head strong,
body.products-category-page .sw-product-sidebar__head span {
  display: block;
}

body.products-category-page .sw-product-sidebar__head strong {
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.22;
}

body.products-category-page .sw-product-sidebar__head span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.products-category-page .sw-product-sidebar nav,
body.products-category-page .sw-product-sidebar__children {
  display: grid;
}

body.products-category-page .sw-product-sidebar__group {
  display: grid;
}

body.products-category-page .sw-product-sidebar button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 24px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e1e8f0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, padding-left 160ms ease;
}

body.products-category-page .sw-product-sidebar nav > button:last-child {
  border-bottom: 0;
}

body.products-category-page .sw-product-sidebar button:hover,
body.products-category-page .sw-product-sidebar button:focus-visible,
body.products-category-page .sw-product-sidebar button.is-active {
  background: #eef6ff;
  color: #0f4b85;
}

body.products-category-page .sw-product-sidebar__group > button {
  color: #0f4b85;
  font-weight: 950;
}

body.products-category-page .sw-product-sidebar__parent {
  justify-content: space-between;
  gap: 12px;
}

body.products-category-page .sw-product-sidebar__parent i {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: currentColor;
  font-size: 1.18rem;
  line-height: 1;
}

body.products-category-page .sw-product-sidebar__children {
  background: #f6f9fd;
}

body.products-category-page .sw-product-sidebar__children button {
  min-height: 54px;
  padding-left: 44px;
  color: #334155;
  font-weight: 820;
}

body.products-category-page .sw-product-sidebar__children button:hover,
body.products-category-page .sw-product-sidebar__children button:focus-visible,
body.products-category-page .sw-product-sidebar__children button.is-active {
  padding-left: 50px;
}

body.products-category-page .sw-product-content {
  min-width: 0;
}

body.products-category-page .sw-product-list-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

body.products-category-page .sw-product-list-title h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 950;
  line-height: 1.2;
}

body.products-category-page .sw-product-list-title span {
  color: #52657d;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

body.products-category-page .sw-product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

body.products-category-page .sw-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.products-category-page .sw-product-card:hover,
body.products-category-page .sw-product-card:focus-visible {
  border-color: #3b82c4;
  box-shadow: 0 22px 52px rgba(15, 50, 87, 0.14);
  transform: translateY(-4px);
}

body.products-category-page .sw-product-card figure {
  display: flex;
  aspect-ratio: 1.25 / 1;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(247, 250, 253, 0.96), rgba(232, 239, 248, 0.88)),
    #f8fafc;
}

body.products-category-page .sw-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

body.products-category-page .sw-product-card:hover img,
body.products-category-page .sw-product-card:focus-visible img {
  transform: scale(1.04);
}

body.products-category-page .sw-product-card div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  padding: 18px 18px 20px;
}

body.products-category-page .sw-product-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

body.products-category-page .sw-product-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: #edf6ff;
  border: 1px solid #d7e8f8;
  border-radius: 999px;
  color: #0f4b85;
  font-size: 1.2rem;
}

body.products-category-page .sw-product-longform {
  background: #f4f7fb;
}

body.products-category-page .sw-product-index__head--stacked {
  display: block;
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

body.products-category-page .sw-product-index__head--stacked > span,
body.products-category-page .sw-product-section-title > span,
body.products-category-page .sw-intro-card > div > span {
  display: block;
  color: #0f66b2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.products-category-page .sw-product-index__head--stacked h2 {
  margin: 6px 0 8px;
}

body.products-category-page .sw-product-index__head--stacked p {
  max-width: 560px;
  margin: 0;
  color: #52657d;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.8;
}

body.products-category-page .sw-product-sidebar {
  position: sticky;
  top: 104px;
}

body.products-category-page .sw-product-sidebar a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 24px;
  background: transparent;
  border-bottom: 1px solid #e1e8f0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, padding-left 160ms ease;
}

body.products-category-page .sw-product-sidebar nav > a:last-child {
  border-bottom: 0;
}

body.products-category-page .sw-product-sidebar a:hover,
body.products-category-page .sw-product-sidebar a:focus-visible,
body.products-category-page .sw-product-sidebar a.is-active {
  background: #eef6ff;
  color: #0f4b85;
}

body.products-category-page .sw-product-sidebar__parent {
  color: #0f4b85;
  font-weight: 950;
  justify-content: space-between;
  gap: 12px;
}

body.products-category-page .sw-product-sidebar__parent i {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: currentColor;
  font-size: 1.18rem;
  line-height: 1;
}

body.products-category-page .sw-product-sidebar__children a {
  min-height: 54px;
  padding-left: 44px;
  color: #334155;
  font-weight: 820;
}

body.products-category-page .sw-product-sidebar__children a:hover,
body.products-category-page .sw-product-sidebar__children a:focus-visible {
  padding-left: 50px;
}

body.products-category-page .sw-sidebar-inquiry {
  padding: 18px 20px 20px;
  background: #eef6ff;
  border-top: 1px solid #d7e8f8;
}

body.products-category-page .sw-sidebar-inquiry strong {
  display: block;
  color: #0f66b2;
  font-size: 0.82rem;
  font-weight: 950;
}

body.products-category-page .sw-sidebar-inquiry p {
  margin: 8px 0 12px;
  color: #52657d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.7;
}

body.products-category-page .sw-sidebar-inquiry a {
  display: inline-flex;
  width: auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  background: #1f6fce;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

body.products-category-page .sw-sidebar-inquiry a:hover,
body.products-category-page .sw-sidebar-inquiry a:focus-visible {
  background: #0f4b85;
  color: #ffffff;
}

body.products-category-page .sw-category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.products-category-page .sw-category-overview-card,
body.products-category-page .sw-sub-section,
body.products-category-page .sw-intro-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dde7f1;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

body.products-category-page .sw-category-overview-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.products-category-page .sw-category-overview-card:hover,
body.products-category-page .sw-category-overview-card:focus-visible {
  border-color: #3b82c4;
  box-shadow: 0 24px 58px rgba(15, 50, 87, 0.14);
  transform: translateY(-4px);
}

body.products-category-page .sw-category-overview-card figure {
  position: relative;
  display: flex;
  aspect-ratio: 1.55 / 1;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 250, 253, 0.96), rgba(232, 239, 248, 0.88)),
    #f8fafc;
  border-bottom: 1px solid #e1e8f0;
}

body.products-category-page .sw-category-overview-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

body.products-category-page .sw-category-overview-card:nth-child(2) figure img,
body.products-category-page .sw-category-overview-card:nth-child(3) figure img,
body.products-category-page .sw-category-overview-card:nth-child(4) figure img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

body.products-category-page .sw-category-overview-card:hover figure img,
body.products-category-page .sw-category-overview-card:focus-visible figure img {
  transform: scale(1.04);
}

body.products-category-page .sw-category-overview-card figure span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: #0f234a;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 950;
}

body.products-category-page .sw-category-overview-card figure em {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  padding: 5px 10px;
  background: #1f6fce;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

body.products-category-page .sw-category-overview-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}

body.products-category-page .sw-category-overview-card h3 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1.3;
}

body.products-category-page .sw-category-overview-card small {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
}

body.products-category-page .sw-category-overview-card p {
  margin: 12px 0 14px;
  color: #52657d;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.75;
}

body.products-category-page .sw-category-overview-card ul,
body.products-category-page .sw-sub-product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 16px;
  padding: 0;
  list-style: none;
}

body.products-category-page .sw-category-overview-card li,
body.products-category-page .sw-sub-product-card li {
  padding: 4px 9px;
  background: #eef6ff;
  border: 1px solid #d7e8f8;
  border-radius: 7px;
  color: #0f66b2;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.3;
}

body.products-category-page .sw-category-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid #e6edf5;
}

body.products-category-page .sw-category-card-footer span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
}

body.products-category-page .sw-category-card-footer strong,
body.products-category-page .sw-section-more a,
body.products-category-page .sw-sub-product-card strong,
body.products-category-page .sw-intro-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f66b2;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.35;
  text-decoration: none;
}

body.products-category-page .sw-product-section {
  margin-top: clamp(36px, 6vw, 58px);
  scroll-margin-top: 110px;
}

body.products-category-page .sw-product-section-title {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr) auto;
  align-items: end;
  gap: 6px 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e6f1fb;
}

body.products-category-page .sw-product-section-title::before {
  content: "";
  grid-row: 1 / span 2;
  width: 4px;
  height: 40px;
  align-self: center;
  background: #1f6fce;
  border-radius: 999px;
}

body.products-category-page .sw-product-section-title > span,
body.products-category-page .sw-product-section-title h3 {
  grid-column: 2;
}

body.products-category-page .sw-product-section-title h3 {
  margin: 0;
  color: #0f234a;
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.28;
}

body.products-category-page .sw-product-section-title small {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

body.products-category-page .sw-sub-section {
  margin-bottom: 22px;
}

body.products-category-page .sw-sub-section__head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 16px 22px;
  background: #f8fbff;
  border-bottom: 1px solid #dde7f1;
}

body.products-category-page .sw-sub-section__head i {
  color: #1f6fce;
  font-size: 1.25rem;
}

body.products-category-page .sw-sub-section__head h4 {
  margin: 0;
  color: #0f234a;
  font-size: 1rem;
  font-weight: 950;
}

body.products-category-page .sw-sub-section__head span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
}

body.products-category-page .sw-sub-section__body {
  padding: 22px;
}

body.products-category-page .sw-sub-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

body.products-category-page .sw-sub-intro img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  border-radius: 8px;
}

body.products-category-page .sw-sub-intro p {
  margin: 0;
  color: #52657d;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.85;
}

body.products-category-page .sw-hose-catalog {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #dde7f1;
}

body.products-category-page .sw-hose-catalog__head {
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(237, 246, 255, 0.92)),
    #f8fbff;
  border: 1px solid #dde7f1;
  border-radius: 8px;
}

body.products-category-page .sw-hose-catalog__head > span {
  display: block;
  color: #0f66b2;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.products-category-page .sw-hose-catalog__head h5 {
  margin: 6px 0 8px;
  color: #0f234a;
  font-size: clamp(1.22rem, 2.1vw, 1.65rem);
  font-weight: 950;
  line-height: 1.3;
}

body.products-category-page .sw-hose-catalog__head p {
  max-width: 760px;
  margin: 0;
  color: #52657d;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.78;
}

body.products-category-page .sw-hose-catalog__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

body.products-category-page .sw-hose-catalog__stats div {
  padding: 13px 14px;
  background: #ffffff;
  border: 1px solid #dce8f4;
  border-radius: 8px;
}

body.products-category-page .sw-hose-catalog__stats strong,
body.products-category-page .sw-hose-catalog__stats span {
  display: block;
}

body.products-category-page .sw-hose-catalog__stats strong {
  color: #0f234a;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-category-page .sw-hose-catalog__stats span {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 820;
  line-height: 1.35;
}

body.products-category-page .sw-hose-catalog .legend-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #dde7f1;
  border-radius: 8px;
}

body.products-category-page .sw-hose-catalog .leg-title {
  color: #0f234a;
  font-size: 0.82rem;
  font-weight: 950;
}

body.products-category-page .sw-hose-catalog .leg-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #52657d;
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.45;
}

body.products-category-page .sw-hose-catalog .leg-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
}

body.products-category-page .sw-hose-catalog .low {
  background: #22c55e;
}

body.products-category-page .sw-hose-catalog .mid {
  background: #f59e0b;
}

body.products-category-page .sw-hose-catalog .high {
  background: #ef4444;
}

body.products-category-page .sw-hose-catalog .ultra {
  background: #7c3aed;
}

body.products-category-page .sw-hose-catalog .filter-wrap {
  margin-top: 14px;
}

body.products-category-page .sw-hose-catalog .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

body.products-category-page .sw-hose-catalog .fl {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 850;
}

body.products-category-page .sw-hose-catalog .fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  background: #ffffff;
  border: 1px solid #d7e8f8;
  border-radius: 999px;
  color: #0f66b2;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

body.products-category-page .sw-hose-catalog .fb:hover,
body.products-category-page .sw-hose-catalog .fb:focus-visible,
body.products-category-page .sw-hose-catalog .fb.is-active {
  background: #eef6ff;
  border-color: #3b82c4;
  color: #0f4b85;
}

body.products-category-page .sw-hose-catalog .sec-break {
  margin-top: 26px;
  scroll-margin-top: 120px;
}

body.products-category-page .sw-hose-catalog .sec-label {
  color: #0f66b2;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.products-category-page .sw-hose-catalog .sec-title {
  margin-top: 4px;
  color: #0f234a;
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-category-page .sw-hose-catalog .sec-sub {
  max-width: 820px;
  margin-top: 4px;
  color: #52657d;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.68;
}

body.products-category-page .sw-hose-catalog .sec-div {
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: #dde7f1;
}

body.products-category-page .sw-hose-catalog .catalog-wrap {
  margin-top: 16px;
}

body.products-category-page .sw-hose-catalog .catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.products-category-page .sw-hose-catalog .pc {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dde7f1;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.products-category-page .sw-hose-catalog .pc:hover {
  border-color: #3b82c4;
  box-shadow: 0 20px 46px rgba(15, 50, 87, 0.12);
  transform: translateY(-2px);
}

body.products-category-page .sw-hose-catalog .pc-stripe {
  height: 4px;
}

body.products-category-page .sw-hose-catalog .stripe-low {
  background: linear-gradient(90deg, #22c55e, #86efac);
}

body.products-category-page .sw-hose-catalog .stripe-mid {
  background: linear-gradient(90deg, #f59e0b, #fcd34d);
}

body.products-category-page .sw-hose-catalog .stripe-high {
  background: linear-gradient(90deg, #ef4444, #fca5a5);
}

body.products-category-page .sw-hose-catalog .stripe-ultra {
  background: linear-gradient(90deg, #7c3aed, #c4b5fd);
}

body.products-category-page .sw-hose-catalog .pc-visual {
  position: relative;
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fbff;
  border-bottom: 1px solid #e6edf5;
}

body.products-category-page .sw-hose-catalog .pc-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

body.products-category-page .sw-hose-catalog .badge-std,
body.products-category-page .sw-hose-catalog .badge-pres {
  position: absolute;
  top: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.25;
}

body.products-category-page .sw-hose-catalog .badge-std {
  left: 10px;
  background: #0f234a;
  color: #ffffff;
}

body.products-category-page .sw-hose-catalog .badge-pres {
  right: 10px;
}

body.products-category-page .sw-hose-catalog .bp-low {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

body.products-category-page .sw-hose-catalog .bp-mid {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
}

body.products-category-page .sw-hose-catalog .bp-high {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

body.products-category-page .sw-hose-catalog .bp-ultra {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  color: #6d28d9;
}

body.products-category-page .sw-hose-catalog .pc-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

body.products-category-page .sw-hose-catalog .pc-no {
  margin-bottom: 4px;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

body.products-category-page .sw-hose-catalog .pc-name {
  margin-bottom: 6px;
  color: #0f234a;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.38;
}

body.products-category-page .sw-hose-catalog .pc-app {
  margin-bottom: 10px;
  color: #0f66b2;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.55;
}

body.products-category-page .sw-hose-catalog .pc-desc {
  margin-bottom: 13px;
  color: #52657d;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.72;
}

body.products-category-page .sw-hose-catalog .pc-struct,
body.products-category-page .sw-hose-catalog .pc-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 13px;
}

body.products-category-page .sw-hose-catalog .struct-pill,
body.products-category-page .sw-hose-catalog .brand-t {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.25;
}

body.products-category-page .sw-hose-catalog .struct-pill {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
}

body.products-category-page .sw-hose-catalog .brand-t {
  background: #eef6ff;
  border: 1px solid #d7e8f8;
  color: #0f66b2;
}

body.products-category-page .sw-hose-catalog .pc-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 13px;
}

body.products-category-page .sw-hose-catalog .sp {
  padding: 8px 9px;
  background: #f8fbff;
  border: 1px solid #e6edf5;
  border-radius: 8px;
}

body.products-category-page .sw-hose-catalog .sp .sk {
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.35;
}

body.products-category-page .sw-hose-catalog .sp .sv {
  margin-top: 2px;
  color: #0f234a;
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-category-page .sw-hose-catalog .pc-tbl-toggle {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin: 0 0 11px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #0f66b2;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.35;
  cursor: pointer;
}

body.products-category-page .sw-hose-catalog .pc-tbl-toggle::before {
  content: "+";
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  background: #eef6ff;
  border: 1px solid #d7e8f8;
  border-radius: 999px;
  color: #0f66b2;
  font-size: 0.8rem;
  line-height: 1;
}

body.products-category-page .sw-hose-catalog .pc-tbl-toggle[aria-expanded="true"]::before {
  content: "-";
}

body.products-category-page .sw-hose-catalog .tbl-wrap {
  display: none;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 13px;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
}

body.products-category-page .sw-hose-catalog .tbl-wrap.open {
  display: block;
}

body.products-category-page .sw-hose-catalog .stbl {
  width: 100%;
  min-width: 440px;
  border-collapse: collapse;
  font-size: 0.72rem;
}

body.products-category-page .sw-hose-catalog .stbl th,
body.products-category-page .sw-hose-catalog .stbl td {
  padding: 7px 8px;
  text-align: center;
  white-space: nowrap;
}

body.products-category-page .sw-hose-catalog .stbl th {
  background: #0f234a;
  color: #ffffff;
  font-weight: 900;
}

body.products-category-page .sw-hose-catalog .stbl td {
  border-bottom: 1px solid #edf2f7;
  color: #334155;
  font-weight: 720;
}

body.products-category-page .sw-hose-catalog .stbl tr:nth-child(even) td {
  background: #f8fbff;
}

body.products-category-page .sw-hose-catalog .pc-btn,
body.products-category-page .sw-hose-catalog .pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 14px;
  background: #1f6fce;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

body.products-category-page .sw-hose-catalog .pc-btn:hover,
body.products-category-page .sw-hose-catalog .pc-btn:focus-visible {
  background: #0f4b85;
  color: #ffffff;
  transform: translateY(-2px);
}

body.products-category-page .sw-sub-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.products-category-page .sw-sub-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dde7f1;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.products-category-page .sw-sub-product-card:hover,
body.products-category-page .sw-sub-product-card:focus-visible {
  border-color: #3b82c4;
  box-shadow: 0 18px 42px rgba(15, 50, 87, 0.12);
  transform: translateY(-2px);
}

body.products-category-page .sw-sub-product-card > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 9px;
  background: #0f234a;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.3;
}

body.products-category-page .sw-sub-product-card h5 {
  margin: 0 0 7px;
  color: #0f234a;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-category-page .sw-sub-product-card p {
  margin: 0 0 12px;
  color: #52657d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.72;
}

body.products-category-page .sw-section-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

body.products-category-page .sw-intro-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  min-height: 250px;
}

body.products-category-page .sw-intro-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 28px;
  background: #f8fbff;
  border-right: 1px solid #dde7f1;
}

body.products-category-page .sw-intro-card figure img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
}

body.products-category-page .sw-intro-card > div {
  padding: 26px 30px 28px;
}

body.products-category-page .sw-intro-card h4 {
  margin: 6px 0 2px;
  color: #0f234a;
  font-size: 1.22rem;
  font-weight: 950;
}

body.products-category-page .sw-intro-card small {
  display: block;
  margin-bottom: 13px;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 800;
}

body.products-category-page .sw-intro-card p {
  margin: 0 0 18px;
  color: #52657d;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.85;
}

body.products-category-page .sw-intro-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

body.products-category-page .sw-intro-card dl div {
  padding: 10px 12px;
  background: #f8fbff;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
}

body.products-category-page .sw-intro-card dt {
  margin: 0 0 2px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 850;
}

body.products-category-page .sw-intro-card dd {
  margin: 0;
  color: #0f234a;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.45;
}

body.products-category-page .sw-product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(32px, 5vw, 52px);
  padding: 28px 32px;
  background:
    linear-gradient(135deg, rgba(15, 35, 74, 0.98), rgba(22, 71, 135, 0.94)),
    #0f234a;
  border-radius: 8px;
  color: #ffffff;
}

body.products-category-page .sw-product-cta h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.35;
}

body.products-category-page .sw-product-cta p {
  margin: 0;
  color: rgba(241, 245, 249, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.7;
}

body.products-category-page .sw-product-cta a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: #2f80ed;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 950;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

body.products-category-page .sw-product-cta a:hover,
body.products-category-page .sw-product-cta a:focus-visible {
  background: #1f6fce;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  body.products-category-page .sw-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.products-category-page .sw-hose-catalog .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.products-category-page .sw-category-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  body.products-catalog-page .sw-catalog-head .container,
  body.products-category-page .sw-product-index__head,
  body.products-category-page .sw-product-index__layout {
    grid-template-columns: 1fr;
  }

  body.products-catalog-page .sw-catalog-grid {
    grid-template-columns: 1fr;
  }

  body.products-category-page .sw-product-sidebar {
    position: static;
  }

  body.products-category-page .sw-product-longform .sw-product-sidebar nav,
  body.products-category-page .sw-sub-intro,
  body.products-category-page .sw-intro-card {
    grid-template-columns: 1fr;
  }

  body.products-category-page .sw-intro-card figure {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid #dde7f1;
  }

  body.products-category-page .sw-product-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  body.products-category-page .sw-hose-catalog__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.products-category-page .sw-product-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.products-category-page .sw-product-sidebar__group {
    grid-row: span 3;
  }

  body.products-category-page .sw-product-sidebar nav > button:nth-last-child(2) {
    border-bottom: 0;
  }

  body.products-category-page .sw-product-longform .sw-product-sidebar nav {
    grid-template-columns: 1fr;
  }

  body.products-category-page .sw-product-longform .sw-product-sidebar__group {
    grid-row: auto;
  }

  body.products-category-page .sw-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.products-catalog-page .sw-catalog-head,
  body.products-category-page .sw-category-hero {
    padding-top: 58px;
  }

  body.products-catalog-page .sw-catalog-card {
    grid-template-columns: 1fr;
  }

  body.products-catalog-page .sw-catalog-card figure {
    min-height: 160px;
  }

}

@media (max-width: 575px) {
  body.products-catalog-page .sw-catalog-search,
  body.products-category-page .sw-catalog-search {
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 52px;
  }

  body.products-catalog-page .sw-catalog-search input,
  body.products-catalog-page .sw-catalog-search button,
  body.products-category-page .sw-catalog-search input,
  body.products-category-page .sw-catalog-search button {
    height: 52px;
  }

  body.products-category-page .sw-product-sidebar nav,
  body.products-category-page .sw-product-list,
  body.products-category-page .sw-sub-product-grid,
  body.products-category-page .sw-hose-catalog .catalog-grid,
  body.products-category-page .sw-hose-catalog .pc-specs,
  body.products-category-page .sw-intro-card dl {
    grid-template-columns: 1fr;
  }

  body.products-category-page .sw-product-sidebar nav > button:nth-last-child(2) {
    border-bottom: 1px solid #e1e8f0;
  }

  body.products-category-page .sw-product-sidebar__group {
    grid-row: auto;
  }

  body.products-category-page .sw-product-list-title {
    align-items: flex-start;
    flex-direction: column;
  }

  body.products-category-page .sw-category-overview-card > div,
  body.products-category-page .sw-sub-section__body,
  body.products-category-page .sw-intro-card > div,
  body.products-category-page .sw-product-cta {
    padding: 20px;
  }

  body.products-category-page .sw-hose-catalog__head {
    padding: 20px;
  }

  body.products-category-page .sw-hose-catalog__stats {
    grid-template-columns: 1fr;
  }

  body.products-category-page .sw-hose-catalog .legend-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  body.products-category-page .sw-sub-section__head {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  body.products-category-page .sw-sub-section__head span {
    grid-column: 2;
  }

  body.products-category-page .sw-product-section-title {
    grid-template-columns: 4px minmax(0, 1fr);
  }

  body.products-category-page .sw-product-section-title small {
    grid-column: 2;
    grid-row: auto;
  }

  body.products-category-page .sw-product-cta a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.products-catalog-page .sw-catalog-card,
  body.products-catalog-page .sw-catalog-card img,
  body.products-category-page .sw-product-card,
  body.products-category-page .sw-product-card img,
  body.products-category-page .sw-hose-catalog .pc,
  body.products-category-page .sw-hose-catalog .pc-btn {
    transition: none;
  }

  body.products-catalog-page .sw-catalog-card:hover,
  body.products-catalog-page .sw-catalog-card:focus-visible,
  body.products-category-page .sw-product-card:hover,
  body.products-category-page .sw-product-card:focus-visible,
  body.products-category-page .sw-hose-catalog .pc:hover,
  body.products-category-page .sw-hose-catalog .pc-btn:hover {
    transform: none;
  }
}

/* Customer-provided homepage structure, scoped to the rebuilt homepage only. */
body.home-customer-page {
  background: #f5f8fb;
  --home-hero-screen-h: 100svh;
}

body.home-customer-page .home-customer-main {
  background: #fff;
}

body.home-customer-page .global-brand-slogan {
  display: none;
}

body.home-customer-page .home-customer-hero {
  position: relative;
  min-height: clamp(720px, 82vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  background: #071423;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

body.home-customer-page .home-customer-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

body.home-customer-page .home-customer-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
  filter: none;
  transform: none;
}

body.home-customer-page .home-customer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 48%, rgba(15, 23, 42, 0) 100%);
  opacity: 1;
  pointer-events: none;
}

body.home-customer-page .home-customer-hero::after {
  display: none;
}

body.home-customer-page .home-customer-hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: inherit;
  width: 100%;
  max-width: 1320px;
  padding: clamp(72px, 7vw, 104px) clamp(24px, 4vw, 48px);
}

body.home-customer-page .home-customer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 15px;
  border: 1px solid rgba(214, 157, 69, 0.34);
  background: rgba(214, 157, 69, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  color: #efbd62;
  font-weight: 800;
  letter-spacing: 0;
}

body.home-customer-page .home-customer-hero__copy,
body.home-customer-page .home-customer-stat-grid {
  min-width: 0;
}

body.home-customer-page .home-customer-hero__brand-copy {
  width: 100%;
  max-width: 672px;
}

body.home-customer-page .home-customer-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #d7a347;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(215, 163, 71, 0.15);
}

body.home-customer-page .home-customer-hero h1 {
  color: #fff;
  max-width: 100%;
  margin: 0 0 24px;
  font-size: clamp(3rem, 6.4vw, 7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 22px 58px rgba(2, 8, 23, 0.44);
}

body.home-customer-page .home-customer-hero h1 span {
  color: #ffffff;
}

body.home-customer-page .home-customer-hero__copy > p {
  max-width: 672px;
  margin: 0 0 40px;
  color: rgb(203, 213, 225);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.65;
  font-weight: 300;
  text-wrap: pretty;
  text-shadow: 0 10px 30px rgba(2, 8, 23, 0.42);
}

body.home-customer-page .home-customer-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

body.home-customer-page .home-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-customer-page .home-hero-button:hover,
body.home-customer-page .home-hero-button:focus-visible {
  transform: translateY(-2px);
}

body.home-customer-page .home-hero-button--primary {
  color: #fff;
  background: #2563eb;
  border: 1px solid #2563eb;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
  font-weight: 700;
}

body.home-customer-page .home-hero-button--primary:hover,
body.home-customer-page .home-hero-button--primary:focus-visible {
  color: #fff;
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.34);
}

body.home-customer-page .home-hero-button--outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  font-weight: 500;
}

body.home-customer-page .home-hero-button--outline:hover,
body.home-customer-page .home-hero-button--outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

body.home-customer-page .home-customer-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  padding-top: 18px;
  max-width: 760px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body.home-customer-page .home-customer-trust span {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
}

body.home-customer-page .home-customer-trust strong {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

body.home-customer-page .home-customer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 34px;
  margin: 0;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  border-radius: 4px;
}

body.home-customer-page .home-customer-logo--wide {
  width: 102px;
}

body.home-customer-page .home-customer-logo--tall {
  padding-top: 5px;
  padding-bottom: 5px;
}

body.home-customer-page .home-customer-logo--sm {
  width: 74px;
}

body.home-customer-page .home-customer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
}

body.home-customer-page .home-customer-stat-grid,
body.home-customer-page .home-proof-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.home-customer-page .home-customer-stat-grid {
  align-self: center;
}

body.home-customer-page .home-customer-stat-grid article {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.24);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.25));
  box-shadow: 0 28px 90px rgba(2, 8, 23, 0.22), inset 0 -3px 0 rgba(56, 189, 248, 0.36);
  backdrop-filter: blur(12px);
  border-radius: 8px;
}

body.home-customer-page .home-customer-stat-grid strong,
body.home-customer-page .home-factory-strip strong,
body.home-customer-page .home-proof-panel strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

body.home-customer-page .home-customer-stat-grid strong span,
body.home-customer-page .home-factory-strip strong span,
body.home-customer-page .home-proof-panel strong span {
  margin-left: 3px;
  color: #63bdf3;
  font-size: 0.48em;
}

body.home-customer-page .home-customer-stat-grid p,
body.home-customer-page .home-factory-strip p,
body.home-customer-page .home-proof-panel p {
  margin: 12px 0 2px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

body.home-customer-page .home-customer-stat-grid small,
body.home-customer-page .home-factory-strip small,
body.home-customer-page .home-proof-panel small {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

body.home-customer-page .home-factory-strip {
  position: relative;
  z-index: 20;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px) 24px 0;
  overflow: visible;
  background: transparent;
  border-top: 0;
}

body.home-customer-page .home-factory-strip::before {
  display: none;
}

body.home-customer-page .home-factory-strip__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  background-color: rgba(11, 44, 74, 0.9);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(2, 8, 23, 0.26);
  backdrop-filter: blur(18px);
}

body.home-customer-page .home-factory-strip__grid > div {
  min-height: 0;
  padding: 24px 18px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

body.home-customer-page .home-factory-strip__grid > div:last-child {
  border-right: 0;
}

body.home-customer-page .home-factory-strip strong {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
}

body.home-customer-page .home-factory-strip strong span {
  color: #fff;
}

body.home-customer-page .home-factory-strip p {
  margin-top: 8px;
  color: rgb(148, 163, 184);
  font-size: 0.75rem;
}

body.home-customer-page .home-factory-strip small {
  display: block;
  margin-top: 3px;
  color: rgba(148, 163, 184, 0.76);
  font-size: 0.72rem;
}

body.home-customer-page .home-customer-section {
  padding: clamp(72px, 8vw, 112px) 0;
}

body.home-customer-page .home-why-section,
body.home-customer-page .home-industries-section {
  background: #f4f7fa;
}

body.home-customer-page .home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.72fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 38px;
}

body.home-customer-page .home-section-head > p {
  max-width: 560px;
  margin: 0;
  color: #526174;
  font-weight: 600;
}

body.home-customer-page .home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  color: #1768b4;
  font-weight: 800;
  white-space: nowrap;
}

body.home-customer-page .home-product-cards,
body.home-customer-page .home-process-grid,
body.home-customer-page .home-industry-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.home-customer-page .home-product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 42, 63, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.home-customer-page .home-product-card:hover,
body.home-customer-page .home-product-card:focus-visible {
  transform: translateY(-4px);
  border-color: #58a6da;
  box-shadow: 0 26px 58px rgba(15, 42, 63, 0.13);
}

body.home-customer-page .home-product-card figure {
  aspect-ratio: 1.32;
  margin: 0;
  background: #edf3f8;
  overflow: hidden;
}

body.home-customer-page .home-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

body.home-customer-page .home-product-card:hover img {
  transform: scale(1.04);
}

body.home-customer-page .home-product-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 20px;
}

body.home-customer-page .home-product-card span,
body.home-customer-page .home-inquiry-copy > span {
  color: #1681ca;
  font-size: 13px;
  font-weight: 900;
}

body.home-customer-page .home-product-card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
}

body.home-customer-page .home-product-card p {
  flex: 1;
  margin-bottom: 0;
  color: #58677a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

body.home-customer-page .home-product-card small,
body.home-customer-page .home-industry-grid-v2 span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  border: 1px solid #cce3f7;
  border-radius: 5px;
  background: #eff7ff;
  color: #1768b4;
  font-weight: 800;
}

body.home-customer-page .home-product-card small {
  margin-top: auto;
}

body.home-customer-page .home-why-grid,
body.home-customer-page .home-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

body.home-customer-page .home-proof-panel {
  min-height: 520px;
  overflow: hidden;
  gap: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 24, 43, 0.94), rgba(13, 53, 87, 0.78)),
    url("/assets/images/sanwang/tianhu-forging-production.webp") center / cover;
  box-shadow: var(--sw-shadow);
}

body.home-customer-page .home-proof-panel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  text-align: center;
}

body.home-customer-page .home-why-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

body.home-customer-page .home-why-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid #dce4ec;
}

body.home-customer-page .home-why-list i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #e6f3ff;
  color: #1768b4;
  font-size: 24px;
}

body.home-customer-page .home-why-list h3,
body.home-customer-page .home-process-grid h3,
body.home-customer-page .home-industry-grid-v2 h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

body.home-customer-page .home-why-list p,
body.home-customer-page .home-process-grid p,
body.home-customer-page .home-industry-grid-v2 p {
  margin: 0;
  color: #5d6a7a;
  font-size: 14px;
  font-weight: 600;
}

body.home-customer-page .home-process-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
}

body.home-customer-page .home-process-grid article {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  border-right: 1px solid #dfe8f0;
  transform: translateZ(0);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
  will-change: transform, filter;
}

body.home-customer-page .home-process-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 72%);
  opacity: 0;
  transform: translateX(-18%);
  transition:
    opacity 0.36s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-customer-page .home-process-grid article > * {
  position: relative;
  z-index: 1;
}

body.home-customer-page .home-process-grid article.is-hovered,
body.home-customer-page .home-process-grid article:hover,
body.home-customer-page .home-process-grid article:focus-within {
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 26px 54px rgba(2, 8, 23, 0.22);
}

body.home-customer-page .home-process-grid article.is-hovered::before,
body.home-customer-page .home-process-grid article:hover::before,
body.home-customer-page .home-process-grid article:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

body.home-customer-page .home-process-grid .home-process-card--forging {
  background:
    linear-gradient(90deg, rgba(7, 24, 43, 0.88), rgba(7, 24, 43, 0.64)),
    url("/assets/images/sanwang/forging-sparks-bg.png") center / cover;
}

body.home-customer-page .home-process-grid .home-process-card--cnc {
  background:
    linear-gradient(90deg, rgba(7, 24, 43, 0.86), rgba(7, 24, 43, 0.58)),
    url("/assets/images/sanwang/cnc-machining-bg.jpg") center / cover;
}

body.home-customer-page .home-process-grid .home-process-card--surface {
  background:
    linear-gradient(90deg, rgba(7, 24, 43, 0.86), rgba(7, 24, 43, 0.56)),
    url("/assets/images/sanwang/surface-treatment-bg.jpg") center / cover;
}

body.home-customer-page .home-process-grid .home-process-card--quality {
  background:
    linear-gradient(90deg, rgba(7, 24, 43, 0.86), rgba(7, 24, 43, 0.58)),
    url("/assets/images/sanwang/quality-shipping-bg.jpg") center / cover;
}

body.home-customer-page .home-process-grid .home-process-card--forging span,
body.home-customer-page .home-process-grid .home-process-card--forging i,
body.home-customer-page .home-process-grid .home-process-card--forging h3,
body.home-customer-page .home-process-grid .home-process-card--forging p,
body.home-customer-page .home-process-grid .home-process-card--cnc span,
body.home-customer-page .home-process-grid .home-process-card--cnc i,
body.home-customer-page .home-process-grid .home-process-card--cnc h3,
body.home-customer-page .home-process-grid .home-process-card--cnc p,
body.home-customer-page .home-process-grid .home-process-card--surface span,
body.home-customer-page .home-process-grid .home-process-card--surface i,
body.home-customer-page .home-process-grid .home-process-card--surface h3,
body.home-customer-page .home-process-grid .home-process-card--surface p,
body.home-customer-page .home-process-grid .home-process-card--quality span,
body.home-customer-page .home-process-grid .home-process-card--quality i,
body.home-customer-page .home-process-grid .home-process-card--quality h3,
body.home-customer-page .home-process-grid .home-process-card--quality p {
  color: #fff;
}

body.home-customer-page .home-process-grid .home-process-card--forging p,
body.home-customer-page .home-process-grid .home-process-card--cnc p,
body.home-customer-page .home-process-grid .home-process-card--surface p,
body.home-customer-page .home-process-grid .home-process-card--quality p {
  color: rgba(255, 255, 255, 0.86);
}

body.home-customer-page .home-process-grid article:last-child {
  border-right: 0;
}

body.home-customer-page .home-process-grid article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #dfe8f0;
  border-right: 1px solid #dfe8f0;
  background: #fff;
  transform: rotate(45deg) translateY(-50%);
}

body.home-customer-page .home-process-grid article:last-child::after {
  display: none;
}

body.home-customer-page .home-process-grid span {
  color: #1768b4;
  font-size: 13px;
  font-weight: 900;
}

body.home-customer-page .home-process-grid i {
  display: block;
  margin: 16px 0 12px;
  color: #1768b4;
  font-size: 30px;
}

body.home-customer-page .home-process-grid small {
  display: inline-flex;
  margin-top: 14px;
  padding: 4px 9px;
  border-radius: 5px;
  background: #0f2a3f;
  color: #fff;
  font-weight: 800;
}

body.home-customer-page .home-clients-section {
  padding: clamp(72px, 8vw, 104px) 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 28, 0.95), rgba(12, 43, 76, 0.9)),
    url("/assets/images/sanwang/huashan-factory-aerial.webp") center / cover;
}

body.home-customer-page .home-client-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

body.home-customer-page .home-client-head .section-kicker {
  justify-content: center;
}

body.home-customer-page .home-client-head .section-title,
body.home-customer-page .home-inquiry-copy h2 {
  color: #fff;
}

body.home-customer-page .home-client-head p,
body.home-customer-page .home-client-note,
body.home-customer-page .home-inquiry-copy p {
  color: rgba(255, 255, 255, 0.72);
}

body.home-customer-page .home-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}

body.home-customer-page .home-client-grid div {
  min-height: 106px;
  display: grid;
  place-items: center;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.065));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(2, 8, 23, 0.12);
  text-align: center;
}

body.home-customer-page .home-client-grid strong {
  color: #fff;
  font-size: 18px;
}

body.home-customer-page .home-client-grid span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

body.home-customer-page .home-client-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
}

body.home-customer-page .home-industry-grid-v2 article {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #dfe8f0;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 42, 63, 0.08);
}

body.home-customer-page .home-industry-grid-v2 img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

body.home-customer-page .home-industry-grid-v2 article > div {
  padding: 22px;
}

body.home-customer-page .home-industry-grid-v2 span {
  margin: 10px 5px 0 0;
  font-size: 12px;
}

body.home-customer-page .home-industries-section {
  padding: clamp(72px, 7vw, 96px) 0;
  background: #f4f8fc;
}

body.home-customer-page .home-industries-section .home-industry-card {
  min-height: 390px;
  border-radius: 12px;
  box-shadow: 0 22px 54px rgba(13, 31, 52, 0.12);
}

body.home-customer-page .home-industries-section .home-industry-card:nth-child(3) {
  min-height: 360px;
}

body.home-customer-page .home-industries-section .home-industry-card__shade {
  background:
    linear-gradient(to top, rgba(10, 18, 34, 0.95), rgba(10, 18, 34, 0.78) 44%, rgba(10, 18, 34, 0.22) 100%),
    linear-gradient(90deg, rgba(10, 18, 34, 0.58), rgba(10, 18, 34, 0.2) 64%, rgba(10, 18, 34, 0.08));
}

body.home-customer-page .home-industries-section .home-industry-card__content {
  padding: 32px;
}

body.home-customer-page .home-industries-section .home-industry-card h3 {
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
}

body.home-customer-page .home-industries-section .home-industry-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

body.home-customer-page .home-inquiry-section {
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(48, 152, 216, 0.22), transparent 34%),
    linear-gradient(135deg, #07182b, #102b47);
}

body.home-customer-page .home-inquiry-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

body.home-customer-page .home-inquiry-copy,
body.home-customer-page .home-contact-form-deck {
  grid-area: auto;
}

body.home-customer-page .home-inquiry-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

body.home-customer-page .home-inquiry-copy li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

body.home-customer-page .home-inquiry-copy li::before {
  content: "✓";
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(48, 152, 216, 0.28);
  color: #9bd8ff;
  font-size: 12px;
  font-weight: 900;
}

body.home-customer-page .home-contact-form-deck {
  --contact-ink: #172131;
  --contact-cyan: #3098d8;
  --contact-logo-blue: #383868;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid #d8e3ed;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  color: #172131;
}

body.home-customer-page .home-contact-form-deck .contact-form-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3ebf2;
}

body.home-customer-page .home-contact-form-deck .contact-form-head h2 {
  color: #172131;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

body.home-customer-page .home-contact-form-deck .contact-form-head p {
  margin: 8px 0 0;
  color: #596b7c;
  font-weight: 600;
}

body.home-customer-page .home-contact-form-deck .field-unit {
  min-height: 72px;
  padding-top: 10px;
}

body.home-customer-page .home-contact-form-deck .field-unit input,
body.home-customer-page .home-contact-form-deck .field-unit textarea {
  width: 100%;
  min-height: 52px;
  padding: 18px 14px 10px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #c8d6e2;
  border-radius: 6px;
  box-shadow: none;
}

body.home-customer-page .home-contact-form-deck .field-unit textarea {
  min-height: 130px;
}

body.home-customer-page .home-contact-form-deck .field-unit input:focus,
body.home-customer-page .home-contact-form-deck .field-unit textarea:focus {
  border-color: #3098d8;
  box-shadow: 0 0 0 1px #3098d8;
}

body.home-customer-page .home-contact-form-deck .field-unit label {
  left: 14px;
  top: 27px;
  padding: 0 4px;
  color: #64748b;
  background: #ffffff;
}

body.home-customer-page .home-contact-form-deck .field-unit:focus-within label,
body.home-customer-page .home-contact-form-deck .field-unit.is-filled label {
  top: 0;
  color: #3098d8;
  transform: scale(0.78);
}

body.home-customer-page .home-contact-form-deck .field-unit .field-line {
  display: none;
}

body.home-customer-page .home-contact-form-deck .command-submit {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  margin-top: 16px;
  color: #ffffff;
  background: #3098d8;
  border: 1px solid #3098d8;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(48, 152, 216, 0.18);
}

body.home-customer-page .home-contact-form-deck .command-submit::before {
  display: none;
}

body.home-customer-page .home-contact-form-deck .command-submit:hover,
body.home-customer-page .home-contact-form-deck .command-submit:focus-visible {
  background: #247fbd;
  border-color: #247fbd;
  box-shadow: 0 12px 28px rgba(36, 127, 189, 0.2);
}

body.home-customer-page .home-contact-form-deck .form-status {
  margin-top: 14px;
  color: #475569;
  background: #f8fafc;
  border-color: #d8e3ed;
}

body.home-customer-page .home-contact-form-deck .form-status.is-success {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

body.home-customer-page .home-contact-form-deck .form-status.is-error {
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}

@media (max-width: 1199px) {
  body.home-customer-page .home-factory-strip__grid,
  body.home-customer-page .home-product-cards,
  body.home-customer-page .home-process-grid,
  body.home-customer-page .home-industry-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-customer-page .home-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.home-customer-page .home-text-link {
    justify-self: start;
  }
}

@media (max-width: 991px) {
  body.home-customer-page .home-customer-hero {
    min-height: auto;
  }

  body.home-customer-page .home-customer-hero::after {
    width: 70vw;
    opacity: 0.14;
  }

  body.home-customer-page .home-customer-hero__inner,
  body.home-customer-page .home-why-grid,
  body.home-customer-page .home-inquiry-grid {
    grid-template-columns: 1fr;
  }

  body.home-customer-page .home-factory-strip {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.home-customer-page .home-factory-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-customer-page .home-factory-strip__grid > div:nth-child(3n) {
    border-right: 0;
  }

  body.home-customer-page .home-factory-strip__grid > div:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.home-customer-page .home-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }

  body.home-customer-page .home-proof-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body.home-customer-page .home-customer-hero {
    max-width: 100vw;
    min-height: clamp(620px, 82vh, 760px);
  }

  body.home-customer-page .home-customer-hero .container {
    max-width: 100%;
    overflow: visible;
  }

  body.home-customer-page .home-customer-hero__media img {
    object-position: 50% 58%;
  }

  body.home-customer-page .home-customer-hero__inner {
    padding-top: 58px;
    padding-bottom: 58px;
    width: min(100%, 100vw);
    max-width: 100%;
    min-width: 0;
  }

  body.home-customer-page .home-customer-hero__copy {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    inline-size: calc(100vw - 24px);
    overflow: visible;
  }

  body.home-customer-page .home-customer-hero__brand-copy {
    max-width: calc(100vw - 48px);
  }

  body.home-customer-page .home-factory-strip__grid,
  body.home-customer-page .home-product-cards,
  body.home-customer-page .home-process-grid,
  body.home-customer-page .home-client-grid,
  body.home-customer-page .home-industry-grid-v2,
  body.home-customer-page .home-proof-panel {
    grid-template-columns: 1fr;
  }

  body.home-customer-page .home-factory-strip {
    padding-right: 12px;
    padding-left: 12px;
  }

  body.home-customer-page .home-factory-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-customer-page .home-factory-strip__grid > div {
    min-width: 0;
    padding: 18px 8px;
  }

  body.home-customer-page .home-customer-hero h1 {
    width: 100%;
    inline-size: 100%;
    max-width: 100%;
    font-size: clamp(2.9rem, 15vw, 4.2rem);
    line-height: 1.05;
    text-wrap: nowrap;
    white-space: normal !important;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  body.home-customer-page .home-customer-hero h1 span {
    display: block;
    max-width: 100%;
  }

  body.home-customer-page .home-customer-hero__copy > p {
    width: 100%;
    inline-size: 100%;
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(1.05rem, 4.6vw, 1.32rem);
    line-height: 1.55;
    text-wrap: auto;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  body.home-customer-page .home-customer-hero__actions {
    gap: 10px;
    margin-top: 20px;
  }

  body.home-customer-page .home-customer-hero__actions .btn-sw {
    min-height: 48px;
    padding: 0 16px;
  }

  body.home-customer-page .home-customer-trust {
    display: none;
  }

  body.home-customer-page .home-customer-trust span {
    flex: 0 0 auto;
    margin-right: 0;
  }

  body.home-customer-page .home-customer-trust .home-customer-logo {
    flex: 0 0 auto;
  }

  body.home-customer-page .home-customer-logo {
    width: 76px;
    height: 32px;
    padding: 6px 8px;
  }

  body.home-customer-page .home-customer-logo--wide {
    width: 88px;
  }

  body.home-customer-page .home-customer-logo--sm {
    width: 70px;
  }

  body.home-customer-page .home-customer-stat-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.home-customer-page .home-customer-stat-grid article {
    min-width: 0;
    min-height: 112px;
    padding: 16px 14px;
  }

  body.home-customer-page .home-customer-stat-grid strong {
    font-size: clamp(1.72rem, 8vw, 2.12rem);
  }

  body.home-customer-page .home-customer-stat-grid p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  body.home-customer-page .home-customer-stat-grid small {
    display: block;
    margin-top: 2px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  body.home-customer-page .home-customer-logo {
    width: 76px;
    height: 32px;
    padding: 6px 8px;
  }

  body.home-customer-page .home-customer-logo--wide {
    width: 92px;
  }

  body.home-customer-page .home-customer-logo--sm {
    width: 70px;
  }

  body.home-customer-page .home-factory-strip__grid > div,
  body.home-customer-page .home-process-grid article,
  body.home-customer-page .home-process-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 42, 63, 0.12);
  }

  body.home-customer-page .home-factory-strip__grid > div {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  body.home-customer-page .home-process-grid article::after {
    display: none;
  }

  body.home-customer-page .home-customer-section,
  body.home-customer-page .home-clients-section,
  body.home-customer-page .home-inquiry-section {
    padding: 58px 0;
  }

  body.home-customer-page .home-inquiry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.home-customer-page .home-inquiry-copy,
  body.home-customer-page .home-contact-form-deck {
    width: 100%;
    min-width: 0;
  }

  body.home-customer-page .home-inquiry-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  body.home-customer-page .home-inquiry-copy li {
    align-items: flex-start;
    line-height: 1.65;
  }

  body.home-customer-page .home-contact-form-deck {
    padding: 22px;
  }

  body.home-customer-page .home-contact-form-deck .contact-form-head {
    display: block;
  }

  body.home-customer-page .home-contact-form-deck .contact-form-head h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }

  body.home-customer-page .home-contact-form-deck .command-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  body.home-customer-page .home-factory-strip__grid > div {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  body.home-customer-page .home-factory-strip__grid > div:nth-child(3n) {
    border-right: 0;
  }

  body.home-customer-page .home-factory-strip__grid > div:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 640px) {
  body.home-customer-page .home-factory-strip strong {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  body.home-customer-page .home-factory-strip p {
    margin-top: 7px;
    font-size: 0.68rem;
    line-height: 1.3;
  }

  body.home-customer-page .home-factory-strip small {
    margin-top: 5px;
    font-size: 0.64rem;
    line-height: 1.35;
  }
}

/* Factory page: four owned facilities. */
body.factory-page {
  background: #f6f8fb;
  color: #0f172a;
}

body.factory-page .site-header {
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
}

.factory-hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: #09111d;
}

.factory-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.factory-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08);
}

.factory-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 14, 26, 0.96) 0%, rgba(6, 14, 26, 0.82) 38%, rgba(6, 14, 26, 0.36) 72%, rgba(6, 14, 26, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 14, 26, 0.12), rgba(6, 14, 26, 0.64));
}

.factory-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.34;
}

.factory-hero__inner {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(64px, 10vh, 120px);
  padding-bottom: clamp(44px, 8vh, 92px);
}

.factory-breadcrumb {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.factory-breadcrumb a,
.factory-breadcrumb span {
  color: inherit;
}

.factory-hero__copy {
  max-width: 780px;
}

.factory-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.factory-hero__copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(226, 232, 240, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.85;
}

.factory-hero__proof {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(42px, 7vh, 76px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 30, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.factory-hero__proof div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.factory-hero__proof strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 0.95;
}

.factory-hero__proof strong span {
  margin-left: 3px;
  color: #60a5fa;
  font-size: 0.36em;
}

.factory-hero__proof p {
  margin: 10px 0 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.factory-chain-nav {
  position: sticky;
  top: var(--sw-visible-header-offset, var(--sw-header));
  z-index: 30;
  background: rgba(9, 17, 29, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.factory-chain-nav .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
  padding-bottom: 0;
}

.factory-chain-nav a {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.factory-chain-nav a:last-child {
  border-right: 0;
}

.factory-chain-nav a:hover {
  color: #fff;
  background: rgba(37, 99, 235, 0.18);
}

.factory-chain-nav span,
.factory-index {
  color: #60a5fa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.factory-intro {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: clamp(230px, 24vw, 310px);
  display: flex;
  align-items: center;
}

.factory-intro::before {
  content: "FULL IN-HOUSE CHAIN";
  position: absolute;
  left: 50%;
  top: clamp(56px, 6.2vw, 86px);
  z-index: 0;
  transform: translateX(-50%);
  width: max-content;
  max-width: 96vw;
  color: rgba(148, 163, 184, 0.14);
  -webkit-text-stroke: 1px rgba(100, 116, 139, 0.16);
  font-size: clamp(3.1rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.95;
  white-space: nowrap;
  pointer-events: none;
}

.factory-intro__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  position: relative;
  z-index: 1;
}

.factory-intro__grid p {
  max-width: 70ch;
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
}

.factory-detail-section {
  padding: clamp(86px, 11vw, 140px) 0;
  scroll-margin-top: calc(var(--sw-visible-header-offset, 76px) + 96px);
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.08), transparent 26%),
    #f6f8fb;
}

.factory-detail-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 88% 12%, rgba(15, 23, 42, 0.08), transparent 26%),
    #eef3f8;
}

.factory-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: clamp(32px, 4.8vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border-radius: clamp(28px, 4vw, 40px);
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04),
    0 24px 80px rgba(15, 23, 42, 0.06);
}

.factory-detail-section--reverse .factory-visual-frame {
  order: 2;
}

.factory-visual-frame {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 4 / 3;
  margin: 0;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
  transition:
    box-shadow 0.34s ease,
    filter 0.34s ease;
  will-change: transform, filter;
}

.factory-visual-frame::before {
  content: "";
  position: absolute;
  inset: auto 14px -16px -16px;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 12%, rgba(96, 165, 250, 0.22), transparent 34%),
    radial-gradient(circle at 78% 86%, rgba(14, 165, 233, 0.18), transparent 38%),
    #f1f5f9;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.12);
}

.factory-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, 0.52), transparent 17%, transparent 78%, rgba(15, 23, 42, 0.1)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 36%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.factory-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  filter: saturate(1.02) contrast(1.02);
  transform: none;
}

.factory-visual-frame:hover,
.factory-visual-frame:focus-within,
.factory-visual-frame.is-hovered {
  filter: saturate(1.05) contrast(1.03);
  box-shadow: 0 30px 70px -18px rgba(37, 99, 235, 0.28);
}

.factory-detail-copy {
  color: #0f172a;
}

.factory-detail-copy h2 {
  max-width: 16ch;
  margin: 16px 0 24px;
  color: #0f172a;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.8vw, 5.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.factory-detail-copy p {
  max-width: 66ch;
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.92;
}

.factory-spec-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  border: 0;
  background: transparent;
}

.factory-spec-list div {
  display: grid;
  grid-template-columns: minmax(104px, 0.28fr) minmax(0, 0.72fr);
  gap: 20px;
  align-items: start;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: #f8fafc;
}

.factory-spec-list dt,
.factory-spec-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.factory-spec-list dt {
  color: #94a3b8;
  font-weight: 500;
  background: transparent;
}

.factory-spec-list dd {
  color: #0f172a;
  font-weight: 700;
  justify-self: end;
  text-align: right;
  word-break: break-word;
}

.factory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.factory-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 16px;
  color: #475569;
  background: #f1f5f9;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: default;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.factory-tags span:hover {
  color: #fff;
  background: #2563eb;
  transform: translateY(-1px);
}

.factory-quality {
  background: #09111d;
  color: #fff;
}

.factory-quality .section-title,
.factory-quality h3 {
  color: #fff;
}

.factory-quality .section-kicker {
  color: #60a5fa;
}

.factory-quality__head p {
  color: rgba(226, 232, 240, 0.74);
}

.factory-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: transparent;
  border: 0;
}

.factory-quality-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.022)),
    #0d1724;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 46px rgba(2, 8, 23, 0.18);
  transform: translateZ(0);
  transition:
    border-color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
  will-change: transform;
}

.factory-quality-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(96, 165, 250, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.factory-quality-grid article > * {
  position: relative;
  z-index: 1;
}

.factory-quality-grid article:hover,
.factory-quality-grid article:focus-within,
.factory-quality-grid article.is-hovered {
  border-color: rgba(96, 165, 250, 0.38);
  box-shadow: 0 26px 66px rgba(2, 8, 23, 0.28);
}

.factory-quality-grid article:hover::before,
.factory-quality-grid article:focus-within::before,
.factory-quality-grid article.is-hovered::before {
  opacity: 1;
}

.factory-quality-grid i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.26);
  border-radius: 50%;
  font-size: 22px;
}

.factory-quality-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.factory-quality-grid p {
  margin: 0;
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.78;
}

body.factory-page .factory-cta {
  margin-top: 0;
}

@media (min-width: 992px) and (max-width: 1280px) {
  .desktop-nav {
    gap: 16px;
    font-size: 14px;
  }

  .brand {
    min-width: 178px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-sw {
    padding-inline: 16px;
  }
}

@media (max-width: 991px) {
  .factory-hero {
    min-height: 640px;
  }

  .factory-hero__copy h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

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

  .factory-hero__proof div:nth-child(2n) {
    border-right: 0;
  }

  .factory-hero__proof div:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .factory-chain-nav {
    position: relative;
    top: auto;
  }

  .factory-chain-nav .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-chain-nav a {
    min-height: 62px;
    justify-content: flex-start;
    padding-inline: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .factory-intro__grid,
  .factory-detail-grid {
    grid-template-columns: 1fr;
  }

  .factory-intro {
    min-height: 380px;
    align-items: flex-end;
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .factory-intro__grid {
    gap: 28px;
  }

  .factory-intro::before {
    content: "FULL IN-HOUSE\A CHAIN";
    top: 24px;
    transform: translateX(-50%);
    width: min(92vw, 420px);
    max-width: 92vw;
    font-size: clamp(2.75rem, 15vw, 4.9rem);
    line-height: 0.9;
    white-space: pre-line;
    text-align: center;
  }

  .factory-detail-section--reverse .factory-visual-frame {
    order: 0;
  }

  .factory-detail-copy h2 {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .factory-hero {
    min-height: 700px;
  }

  .factory-hero__proof,
  .factory-chain-nav .container,
  .factory-quality-grid {
    grid-template-columns: 1fr;
  }

  .factory-hero__proof div {
    min-height: 92px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .factory-hero__proof div:first-child {
    border-top: 0;
  }

  .factory-chain-nav a {
    border-right: 0;
  }

  .factory-spec-list div {
    grid-template-columns: 1fr;
  }

  .factory-spec-list dt {
    padding-bottom: 4px;
  }

  .factory-spec-list dd {
    justify-self: start;
    padding-top: 4px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .factory-visual-frame img,
  .factory-chain-nav a,
  .factory-tags span {
    transition: none;
  }
}

/* V2 compact density pass: reduce oversized titles, numbers, and section scale. */
body.home-v2-premium,
body.about-v2-precision,
body.products-v2-precision,
body.products-category-page,
body.products-new-classic,
body.products-tree-page,
body.products-catalog-page,
body.shimizu-v2-catalog,
body.partners-v2-precision,
body.faq-v2-precision,
body.contact-v2-precision,
body.factory-page {
  --sw-compact-container: 1140px;
  --sw-compact-container-wide: 1180px;
  --sw-compact-h1: clamp(2.05rem, 3.7vw, 3.85rem);
  --sw-compact-h2: clamp(1.55rem, 2.35vw, 2.45rem);
  --sw-compact-h3: clamp(1.08rem, 1.4vw, 1.42rem);
  --sw-compact-number-xl: clamp(1.65rem, 2.55vw, 2.45rem);
  --sw-compact-number-lg: clamp(1.35rem, 2vw, 1.95rem);
  --sw-compact-section-y: clamp(56px, 6.5vw, 88px);
  --sw-compact-section-y-sm: clamp(42px, 5vw, 64px);
  --sw-compact-card-pad: clamp(18px, 2.2vw, 28px);
  --sw-compact-gap: clamp(18px, 3vw, 42px);
}

body.home-v2-premium main > .container,
body.about-v2-precision main > .container,
body.products-v2-precision main > .container,
body.products-category-page main > .container,
body.products-new-classic main > .container,
body.products-tree-page main > .container,
body.products-catalog-page main > .container,
body.shimizu-v2-catalog main > .container,
body.partners-v2-precision main > .container,
body.faq-v2-precision main > .container,
body.contact-v2-precision main > .container,
body.factory-page main > .container,
body.home-v2-premium main section > .container,
body.about-v2-precision main section > .container,
body.products-v2-precision main section > .container,
body.products-category-page main section > .container,
body.products-new-classic main section > .container,
body.products-tree-page main section > .container,
body.products-catalog-page main section > .container,
body.shimizu-v2-catalog main section > .container,
body.partners-v2-precision main section > .container,
body.faq-v2-precision main section > .container,
body.contact-v2-precision main section > .container,
body.factory-page main section > .container {
  max-width: var(--sw-compact-container);
}

body.home-v2-premium .section-space,
body.about-v2-precision .section-space,
body.products-v2-precision .section-space,
body.products-category-page .section-space,
body.products-new-classic .section-space,
body.products-tree-page .section-space,
body.products-catalog-page .section-space,
body.shimizu-v2-catalog .section-space,
body.partners-v2-precision .section-space,
body.faq-v2-precision .section-space,
body.contact-v2-precision .section-space,
body.factory-page .section-space {
  padding-top: var(--sw-compact-section-y) !important;
  padding-bottom: var(--sw-compact-section-y) !important;
}

body.home-v2-premium .section-space-sm,
body.about-v2-precision .section-space-sm,
body.products-v2-precision .section-space-sm,
body.products-category-page .section-space-sm,
body.products-new-classic .section-space-sm,
body.products-tree-page .section-space-sm,
body.products-catalog-page .section-space-sm,
body.shimizu-v2-catalog .section-space-sm,
body.partners-v2-precision .section-space-sm,
body.faq-v2-precision .section-space-sm,
body.contact-v2-precision .section-space-sm,
body.factory-page .section-space-sm {
  padding-top: var(--sw-compact-section-y-sm) !important;
  padding-bottom: var(--sw-compact-section-y-sm) !important;
}

body.home-v2-premium main h1,
body.about-v2-precision main h1,
body.products-v2-precision main h1,
body.products-category-page main h1,
body.products-new-classic main h1,
body.products-tree-page main h1,
body.products-catalog-page main h1,
body.shimizu-v2-catalog main h1,
body.partners-v2-precision main .page-title,
body.faq-v2-precision main .page-title,
body.contact-v2-precision main h1,
body.factory-page main h1 {
  font-size: var(--sw-compact-h1) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body.home-v2-premium .section-title,
body.home-v2-premium .apple-section-title,
body.home-customer-page .home-inquiry-copy h2,
body.home-customer-page .home-contact-form-deck .contact-form-head h2,
body.about-v2-precision .section-title,
body.products-v2-precision .section-title,
body.products-category-page .section-title,
body.products-category-page .sw-product-section-title h3,
body.products-category-page .sw-product-index__head h2,
body.products-new-classic .section-title,
body.products-tree-page .section-title,
body.products-catalog-page .section-title,
body.shimizu-v2-catalog .section-title,
body.partners-v2-precision .section-title,
body.faq-v2-precision .section-title,
body.contact-v2-precision .section-title,
body.factory-page .section-title,
body.factory-page .factory-detail-copy h2 {
  font-size: var(--sw-compact-h2) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

body.home-customer-page .home-product-card h3,
body.home-customer-page .home-why-list h3,
body.home-customer-page .home-process-grid h3,
body.home-customer-page .home-industry-grid-v2 h3,
body.products-catalog-page .sw-catalog-card h2,
body.products-category-page .sw-product-list-title h3,
body.products-category-page .sw-product-card h3,
body.products-category-page .sw-sub-product-card h5,
body.products-category-page .sw-intro-card h4,
body.products-category-page .sw-hose-catalog .sec-title,
body.products-category-page .sw-hose-catalog .pc-name,
body.shimizu-v2-catalog .sw-spec-card h3,
body.shimizu-v2-catalog .shimizu-quick-toc__head strong,
body.partners-v2-precision .partner-region-heading h2,
body.partners-v2-precision .partner-card h3 span,
body.faq-v2-precision .faq-question,
body.contact-v2-precision .contact-card h3,
body.contact-v2-precision .contact-form-head h2,
body.factory-page .factory-quality-grid h3 {
  font-size: var(--sw-compact-h3) !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
}

body.home-customer-page .home-customer-hero {
  min-height: clamp(600px, 70vh, 760px) !important;
}

body.home-customer-page .home-customer-hero__inner {
  max-width: var(--sw-compact-container-wide) !important;
  padding-top: clamp(56px, 6vw, 82px) !important;
  padding-bottom: clamp(56px, 6vw, 82px) !important;
}

body.home-customer-page .home-customer-hero__brand-copy,
body.home-customer-page .home-customer-hero__copy > p {
  max-width: 600px !important;
}

body.home-customer-page .home-customer-hero__copy > p,
body.products-catalog-page .sw-catalog-head p,
body.products-category-page .sw-category-hero p,
body.products-tree-page .product-tree-hero__copy p,
body.shimizu-v2-catalog .shimizu-hero-copy p,
body.partners-v2-precision .hero-copy,
body.faq-v2-precision .hero-copy,
body.contact-v2-precision .contact-command-lead,
body.factory-page .factory-hero__copy p {
  font-size: clamp(0.98rem, 1.25vw, 1.12rem) !important;
  line-height: 1.68 !important;
}

body.home-customer-page .home-customer-section,
body.home-customer-page .home-clients-section,
body.home-customer-page .home-industries-section,
body.home-customer-page .home-inquiry-section {
  padding-top: var(--sw-compact-section-y) !important;
  padding-bottom: var(--sw-compact-section-y) !important;
}

body.home-customer-page .home-factory-strip {
  max-width: var(--sw-compact-container-wide) !important;
}

body.home-customer-page .home-factory-strip__grid > div {
  padding: 20px 14px 22px !important;
}

body.home-customer-page .home-customer-stat-grid strong,
body.home-customer-page .home-factory-strip strong,
body.home-customer-page .home-proof-panel strong,
body.about-v2-precision .about-client-stat strong,
body.about-v2-precision .about-client-data-card strong,
body.contact-v2-precision .contact-proof strong,
body.factory-page .factory-hero__proof strong,
body.shimizu-v2-catalog .shimizu-hero-panel strong,
body.shimizu-v2-catalog .shimizu-result-meta strong {
  font-size: var(--sw-compact-number-xl) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  font-variant-numeric: tabular-nums;
}

body.home-customer-page .home-product-cards,
body.home-customer-page .home-process-grid,
body.home-customer-page .home-industry-grid-v2,
body.home-customer-page .home-client-grid,
body.products-catalog-page .sw-catalog-grid,
body.products-category-page .sw-product-list,
body.products-category-page .sw-category-overview-grid,
body.products-category-page .sw-hose-catalog .catalog-grid,
body.shimizu-v2-catalog .sw-spec-grid,
body.partners-v2-precision .partner-grid,
body.contact-v2-precision .contact-card-grid,
body.factory-page .factory-quality-grid {
  gap: clamp(14px, 2vw, 22px) !important;
}

body.home-customer-page .home-product-card > div,
body.home-customer-page .home-process-grid article,
body.home-customer-page .home-industry-grid-v2 article > div,
body.products-catalog-page .sw-catalog-card__copy,
body.products-category-page .sw-category-overview-card > div,
body.products-category-page .sw-sub-section__body,
body.products-category-page .sw-intro-card > div,
body.products-category-page .sw-product-cta,
body.shimizu-v2-catalog .sw-spec-card,
body.partners-v2-precision .partner-card,
body.contact-v2-precision .contact-card,
body.factory-page .factory-quality-grid article {
  padding: var(--sw-compact-card-pad) !important;
}

body.home-customer-page .home-proof-panel {
  min-height: 430px !important;
}

body.home-customer-page .home-proof-panel > div {
  min-height: 180px !important;
  padding: 22px !important;
}

body.products-catalog-page .sw-catalog-head,
body.products-category-page .sw-category-hero,
body.products-tree-page .product-tree-hero,
body.products-new-classic .classic-page-hero {
  min-height: clamp(340px, 30vw, 430px) !important;
  padding-top: clamp(44px, 5.5vw, 68px) !important;
  padding-bottom: clamp(42px, 5vw, 62px) !important;
}

body.products-catalog-page .sw-catalog-head .container,
body.products-category-page .sw-category-hero .container {
  padding-left: clamp(24px, 6vw, 128px) !important;
}

body.products-catalog-page .sw-catalog-head__copy,
body.products-catalog-page .sw-catalog-head h1,
body.products-catalog-page .sw-catalog-head p,
body.products-category-page .sw-category-hero h1,
body.products-category-page .sw-category-hero p,
body.products-tree-page .product-tree-hero__copy {
  max-width: 390px !important;
}

body.products-catalog-page .sw-catalog-index,
body.products-category-page .sw-product-index,
body.shimizu-v2-catalog .shimizu-catalog-section {
  padding-top: var(--sw-compact-section-y-sm) !important;
  padding-bottom: var(--sw-compact-section-y) !important;
}

body.products-catalog-page .sw-catalog-card {
  min-height: 158px !important;
}

body.products-category-page .sw-product-index__layout {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) !important;
  gap: var(--sw-compact-gap) !important;
}

body.products-category-page .sw-product-sidebar__head {
  padding: 24px 24px 30px !important;
}

body.products-category-page .sw-product-sidebar button,
body.products-category-page .sw-product-sidebar a {
  min-height: 50px !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
}

body.shimizu-v2-catalog .shimizu-hero {
  padding-top: clamp(48px, 6vw, 72px) !important;
  padding-bottom: clamp(44px, 5.5vw, 68px) !important;
}

body.shimizu-v2-catalog .shimizu-hero-grid,
body.shimizu-v2-catalog .shimizu-catalog-shell {
  gap: var(--sw-compact-gap) !important;
}

body.shimizu-v2-catalog .shimizu-hero-panel {
  padding: var(--sw-compact-card-pad) !important;
}

body.factory-page .factory-hero {
  min-height: clamp(520px, 66vh, 680px) !important;
}

body.factory-page .factory-hero__inner {
  max-width: var(--sw-compact-container-wide) !important;
  gap: var(--sw-compact-gap) !important;
}

body.factory-page .factory-hero__proof div {
  min-height: 110px !important;
  padding: 20px 16px !important;
}

body.factory-page .factory-intro {
  min-height: 330px !important;
  padding-top: clamp(132px, 11vw, 158px) !important;
  padding-bottom: clamp(42px, 5vw, 64px) !important;
}

body.factory-page .factory-intro::before {
  top: clamp(48px, 5.4vw, 76px) !important;
  transform: translateX(-50%) !important;
  color: rgba(15, 23, 42, 0.055) !important;
  -webkit-text-stroke: 1px rgba(15, 23, 42, 0.08);
  font-size: clamp(3.4rem, 8.5vw, 7.2rem) !important;
  line-height: 0.86 !important;
}

body.factory-page .factory-intro__grid,
body.factory-page .factory-detail-grid {
  gap: var(--sw-compact-gap) !important;
}

body.factory-page .factory-detail-section {
  padding-top: var(--sw-compact-section-y) !important;
  padding-bottom: var(--sw-compact-section-y) !important;
}

body.factory-page .factory-detail-copy p {
  font-size: 0.98rem !important;
  line-height: 1.78 !important;
}

body.partners-v2-precision .partners-hero {
  min-height: clamp(360px, 36vw, 460px) !important;
}

body.partners-v2-precision .partner-region,
body.partners-v2-precision .partner-proof,
body.partners-v2-precision .partner-cta {
  padding-top: var(--sw-compact-section-y-sm) !important;
  padding-bottom: var(--sw-compact-section-y) !important;
}

body.partners-v2-precision .partner-card h3 {
  font-size: clamp(0.86rem, 0.95vw, 0.98rem) !important;
  line-height: 1.2 !important;
}

body.partners-v2-precision .partner-card h3 span {
  display: block;
  font-size: clamp(1.2rem, 1.55vw, 1.72rem) !important;
  line-height: 1.08 !important;
}

body.faq-v2-precision .faq-hero {
  height: clamp(390px, 34vw, 450px) !important;
}

body.faq-v2-precision main .faq-hero .page-title {
  font-size: var(--sw-compact-h1) !important;
  line-height: 1.08 !important;
}

body.faq-v2-precision .faq-hero__copy {
  transform: translateY(-2px) !important;
}

body.faq-v2-precision .faq-manual {
  padding-top: var(--sw-compact-section-y-sm) !important;
}

body.faq-v2-precision .faq-manual::before {
  content: none !important;
}

body.faq-v2-precision .faq-grid {
  gap: clamp(16px, 2.2vw, 24px) !important;
}

body.faq-v2-precision .faq-card {
  padding: var(--sw-compact-card-pad) !important;
}

body.faq-v2-precision .faq-question-no {
  left: clamp(28px, 3.2vw, 42px) !important;
  top: 50% !important;
  width: clamp(128px, 13vw, 176px) !important;
  color: rgba(48, 152, 216, 0.14) !important;
  -webkit-text-stroke: 0 transparent !important;
  text-stroke: 0 transparent !important;
  font-size: clamp(3.2rem, 6.6vw, 5.8rem) !important;
  line-height: 0.88 !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  overflow: visible !important;
}

body.contact-v2-precision .contact-command {
  padding-top: clamp(58px, 7vw, 88px) !important;
  padding-bottom: clamp(58px, 7vw, 88px) !important;
}

body.contact-v2-precision .contact-command-shell,
body.contact-v2-precision .contact-content-grid {
  gap: var(--sw-compact-gap) !important;
}

body.contact-v2-precision .contact-proof {
  gap: clamp(14px, 2vw, 22px) !important;
}

body.contact-v2-precision .contact-form-shell {
  padding: var(--sw-compact-card-pad) !important;
}

@media (max-width: 991px) {
  body.products-category-page .sw-product-index__layout {
    grid-template-columns: 1fr !important;
  }

  body.factory-page .factory-hero {
    min-height: 560px !important;
  }

  body.factory-page .factory-intro {
    min-height: 340px !important;
    padding-top: 116px !important;
  }
}

@media (max-width: 640px) {
  body.home-v2-premium,
  body.about-v2-precision,
  body.products-v2-precision,
  body.products-category-page,
  body.products-new-classic,
  body.products-tree-page,
  body.products-catalog-page,
  body.shimizu-v2-catalog,
  body.partners-v2-precision,
  body.faq-v2-precision,
  body.contact-v2-precision,
  body.factory-page {
    --sw-compact-h1: clamp(1.75rem, 7.8vw, 2.35rem);
    --sw-compact-h2: clamp(1.42rem, 6.5vw, 2.05rem);
    --sw-compact-h3: clamp(1rem, 4.2vw, 1.22rem);
    --sw-compact-number-xl: clamp(1.42rem, 6.2vw, 2rem);
    --sw-compact-section-y: clamp(40px, 11vw, 58px);
    --sw-compact-section-y-sm: clamp(32px, 9vw, 46px);
    --sw-compact-card-pad: clamp(16px, 5vw, 22px);
  }

  body.home-customer-page .home-customer-hero {
    min-height: clamp(540px, 74vh, 660px) !important;
  }

  body.home-customer-page .home-customer-hero h1 {
    font-size: clamp(1.95rem, 9.5vw, 2.75rem) !important;
    text-wrap: balance !important;
  }

  body.home-customer-page .home-customer-hero__copy > p {
    font-size: clamp(0.96rem, 4.1vw, 1.12rem) !important;
  }

  body.home-customer-page .home-factory-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.products-catalog-page .sw-catalog-head,
  body.products-category-page .sw-category-hero,
  body.products-tree-page .product-tree-hero,
  body.products-new-classic .classic-page-hero {
    min-height: clamp(300px, 82vw, 380px) !important;
  }

  body.products-catalog-page .sw-catalog-head .container,
  body.products-category-page .sw-category-hero .container {
    padding-left: 24px !important;
  }

  body.faq-v2-precision .faq-hero {
    height: auto !important;
    min-height: 0 !important;
  }

  body.faq-v2-precision .faq-question-no {
    font-size: clamp(2.4rem, 15vw, 4.6rem) !important;
  }

  body.factory-page .factory-hero {
    min-height: 620px !important;
  }

  body.factory-page .factory-intro {
    min-height: 360px !important;
    padding-top: 148px !important;
  }

  body.factory-page .factory-intro::before {
    top: 34px !important;
    width: min(92vw, 360px) !important;
    font-size: clamp(2.7rem, 13vw, 4.2rem) !important;
    white-space: pre-line !important;
  }
}

/* V2 hero home-layout alignment pass. */
body.products-v2-precision,
body.products-category-page,
body.products-new-classic,
body.products-tree-page,
body.products-catalog-page,
body.shimizu-v2-catalog,
body.partners-v2-precision,
body.faq-v2-precision,
body.contact-v2-precision,
body.factory-page,
body.about-v2-precision,
body.home-v2-premium {
  --sw-hero-home-height: clamp(500px, 62vh, 560px);
  --sw-hero-home-container: 1180px;
  --sw-hero-home-pad: clamp(24px, 4vw, 48px);
  --sw-hero-home-title: clamp(1.58rem, 2.2vw, 2.38rem);
  --sw-hero-home-copy-width: 560px;
  --sw-hero-home-copy-size: clamp(0.84rem, 0.96vw, 0.96rem);
  --sw-hero-home-kicker-size: clamp(0.66rem, 0.72vw, 0.74rem);
  --sw-hero-home-small-size: clamp(0.72rem, 0.82vw, 0.84rem);
  --sw-hero-home-stat-size: clamp(1.22rem, 1.7vw, 1.78rem);
  --sw-hero-home-button-size: clamp(0.78rem, 0.88vw, 0.9rem);
}

body.home-v2-premium {
  --sw-hero-home-title: clamp(1.95rem, 3.25vw, 3.35rem);
  --sw-hero-home-copy-width: 520px;
}

body.products-catalog-page .sw-catalog-head,
body.products-category-page .sw-category-hero,
body.products-tree-page .product-tree-hero,
body.products-new-classic .classic-page-hero,
body.partners-v2-precision .partners-hero,
body.faq-v2-precision .faq-hero.page-hero,
body.shimizu-v2-catalog .shimizu-hero,
body.about-v2-precision .about-client-hero {
  min-height: var(--sw-hero-home-height) !important;
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}

body.products-catalog-page .sw-catalog-head .container,
body.products-category-page .sw-category-hero .container,
body.products-tree-page .product-tree-hero .container,
body.products-new-classic .classic-page-hero .container,
body.partners-v2-precision .partners-hero .container,
body.about-v2-precision .about-client-hero__inner {
  width: 100% !important;
  max-width: var(--sw-hero-home-container) !important;
  min-height: inherit !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: var(--sw-hero-home-pad) !important;
  padding-left: var(--sw-hero-home-pad) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding-top: clamp(160px, 23.3vh, 210px) !important;
  padding-bottom: var(--sw-hero-home-pad) !important;
}

body.faq-v2-precision .faq-hero__content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: var(--sw-hero-home-container) !important;
  min-height: var(--sw-hero-home-height) !important;
  height: auto !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: var(--sw-hero-home-pad) !important;
  padding-left: var(--sw-hero-home-pad) !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding-top: clamp(160px, 23.3vh, 210px) !important;
  padding-bottom: var(--sw-hero-home-pad) !important;
}

body.products-catalog-page .sw-catalog-head .breadcrumb-sw,
body.products-category-page .sw-category-hero .breadcrumb-sw,
body.products-tree-page .product-tree-hero .breadcrumb-sw,
body.products-new-classic .classic-page-hero .breadcrumb-sw,
body.partners-v2-precision .partners-hero .breadcrumb-sw,
body.faq-v2-precision .faq-hero .breadcrumb-sw {
  order: 3 !important;
}

body.products-catalog-page .sw-catalog-head h1,
body.products-category-page .sw-category-hero h1,
body.products-tree-page .product-tree-hero__copy h1,
body.products-new-classic .classic-page-hero .page-title,
body.partners-v2-precision .partners-hero .page-title,
body.faq-v2-precision .faq-hero .page-title {
  order: 1 !important;
}

body.products-catalog-page .sw-catalog-head p,
body.products-category-page .sw-category-hero p,
body.products-tree-page .product-tree-hero__copy p,
body.products-new-classic .classic-page-hero p,
body.partners-v2-precision .partners-hero .hero-copy,
body.faq-v2-precision .faq-hero .hero-copy {
  order: 2 !important;
}

body.products-catalog-page .sw-catalog-head__copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

body.products-catalog-page .sw-catalog-head__copy .breadcrumb-sw {
  order: 3 !important;
}

body.products-catalog-page .sw-catalog-head__copy h1 {
  order: 1 !important;
}

body.products-catalog-page .sw-catalog-head__copy p {
  order: 2 !important;
}

body.products-catalog-page .sw-catalog-head__copy,
body.products-catalog-page .sw-catalog-head h1,
body.products-catalog-page .sw-catalog-head p,
body.products-category-page .sw-category-hero h1,
body.products-category-page .sw-category-hero p,
body.products-tree-page .product-tree-hero__copy,
body.products-tree-page .product-tree-hero__copy p,
body.products-new-classic .classic-page-hero p,
body.partners-v2-precision .partners-hero .page-title,
body.partners-v2-precision .partners-hero .hero-copy,
body.faq-v2-precision .faq-hero__copy,
body.faq-v2-precision .faq-hero .page-title,
body.faq-v2-precision .faq-hero .hero-copy,
body.about-v2-precision .about-client-hero__copy,
body.about-v2-precision .about-client-hero__copy h1,
body.about-v2-precision .about-client-hero__copy p {
  max-width: var(--sw-hero-home-copy-width) !important;
}

body.products-catalog-page .sw-catalog-head h1,
body.products-category-page .sw-category-hero h1,
body.products-tree-page .product-tree-hero__copy h1,
body.products-new-classic .classic-page-hero .page-title,
body.partners-v2-precision .partners-hero .page-title,
body.faq-v2-precision main .faq-hero .page-title,
body.shimizu-v2-catalog .shimizu-hero-copy h1,
body.factory-page .factory-hero__copy h1,
body.about-v2-precision .about-client-hero__copy h1,
body.contact-v2-precision .contact-command h1 {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  font-size: var(--sw-hero-home-title) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

body.products-catalog-page .sw-catalog-head p,
body.products-category-page .sw-category-hero p,
body.products-tree-page .product-tree-hero__copy p,
body.products-new-classic .classic-page-hero p,
body.partners-v2-precision .partners-hero .hero-copy,
body.faq-v2-precision .faq-hero .hero-copy,
body.shimizu-v2-catalog .shimizu-hero-copy p,
body.factory-page .factory-hero__copy p,
body.about-v2-precision .about-client-hero__copy p,
body.contact-v2-precision .contact-command-lead {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: var(--sw-hero-home-copy-width) !important;
  font-size: var(--sw-hero-home-copy-size) !important;
  line-height: 1.62 !important;
}

body.products-catalog-page .sw-catalog-head .breadcrumb-sw,
body.products-category-page .sw-category-hero .breadcrumb-sw,
body.products-tree-page .product-tree-hero .breadcrumb-sw,
body.products-new-classic .classic-page-hero .breadcrumb-sw,
body.partners-v2-precision .partners-hero .breadcrumb-sw,
body.faq-v2-precision .faq-hero .breadcrumb-sw {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: var(--sw-hero-home-small-size) !important;
  line-height: 1.4 !important;
}

body.home-customer-page .home-customer-hero h1 {
  margin-bottom: 16px !important;
  font-size: var(--sw-hero-home-title) !important;
  line-height: 1.08 !important;
}

body.home-customer-page .home-customer-hero__copy > p {
  max-width: var(--sw-hero-home-copy-width) !important;
  margin-bottom: 26px !important;
  font-size: var(--sw-hero-home-copy-size) !important;
  line-height: 1.62 !important;
}

body.home-customer-page .home-hero-button,
body.shimizu-v2-catalog .shimizu-hero-actions .btn-sw {
  min-height: 44px !important;
  padding: 11px 24px !important;
  font-size: var(--sw-hero-home-button-size) !important;
  line-height: 1.2 !important;
}

body.about-v2-precision .about-client-hero__eyebrow,
body.shimizu-v2-catalog .shimizu-kicker {
  margin-bottom: 10px !important;
  font-size: var(--sw-hero-home-kicker-size) !important;
  line-height: 1.1 !important;
}

body.factory-page .factory-breadcrumb,
body.contact-v2-precision .contact-breadcrumb,
body.contact-v2-precision .contact-breadcrumb a,
body.contact-v2-precision .contact-breadcrumb span,
body.shimizu-v2-catalog .shimizu-hero .breadcrumb-sw,
body.shimizu-v2-catalog .shimizu-hero .breadcrumb-sw a,
body.shimizu-v2-catalog .shimizu-hero .breadcrumb-sw span {
  font-size: var(--sw-hero-home-small-size) !important;
  line-height: 1.4 !important;
}

body.about-v2-precision .about-client-stat strong,
body.factory-page .factory-hero__proof strong,
body.shimizu-v2-catalog .shimizu-hero-panel strong {
  font-size: var(--sw-hero-home-stat-size) !important;
  line-height: 1.06 !important;
}

body.about-v2-precision .about-client-stat span,
body.factory-page .factory-hero__proof p,
body.shimizu-v2-catalog .shimizu-hero-panel span {
  font-size: var(--sw-hero-home-small-size) !important;
  line-height: 1.35 !important;
}

body.contact-v2-precision .contact-priority {
  font-size: var(--sw-hero-home-small-size) !important;
  line-height: 1.3 !important;
}

body.contact-v2-precision .contact-promise-rail span,
body.contact-v2-precision .contact-data-card span,
body.contact-v2-precision .contact-data-card small {
  font-size: var(--sw-hero-home-small-size) !important;
  line-height: 1.35 !important;
}

body.contact-v2-precision .contact-promise-rail strong,
body.contact-v2-precision .contact-data-card strong {
  font-size: clamp(0.82rem, 0.95vw, 0.98rem) !important;
  line-height: 1.35 !important;
}

body.about-v2-precision .about-client-hero__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: clamp(24px, 5vw, 64px) !important;
  align-items: center !important;
  justify-content: normal !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.about-v2-precision .about-client-hero__copy,
body.about-v2-precision .about-client-hero__stats {
  align-self: center !important;
}

body.faq-v2-precision .faq-hero.page-hero {
  background: #f9f9f9 !important;
  min-height: clamp(460px, 52vh, 520px) !important;
}

body.faq-v2-precision .faq-hero__copy {
  width: var(--sw-hero-home-copy-width) !important;
  transform: none !important;
}

body.faq-v2-precision .faq-hero__content {
  min-height: clamp(460px, 52vh, 520px) !important;
  padding-top: clamp(128px, 17vh, 160px) !important;
}

body.faq-v2-precision .faq-hero__media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

body.faq-v2-precision .faq-hero__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center bottom !important;
}

body.faq-v2-precision .faq-hero__blend {
  inset-block: 0 !important;
  left: 0 !important;
  width: min(62vw, 920px) !important;
  background: linear-gradient(90deg, rgba(249, 249, 249, 0.97) 0%, rgba(249, 249, 249, 0.9) 42%, rgba(249, 249, 249, 0) 100%) !important;
}

body.partners-v2-precision .partners-hero {
  background-size: cover !important;
  background-position: center center !important;
}

body.partners-v2-precision .partners-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 20, 44, 0.84) 0%, rgba(8, 20, 44, 0.58) 36%, rgba(8, 20, 44, 0.1) 72%, rgba(8, 20, 44, 0.02) 100%),
    linear-gradient(180deg, rgba(4, 12, 28, 0.18), rgba(4, 12, 28, 0.22)) !important;
}

body.contact-v2-precision .contact-command {
  min-height: var(--sw-hero-home-height) !important;
  height: auto !important;
  padding-top: clamp(72px, 8vw, 104px) !important;
  padding-bottom: clamp(72px, 8vw, 104px) !important;
}

body.factory-page .factory-hero {
  min-height: var(--sw-hero-home-height) !important;
  height: auto !important;
  align-items: center !important;
}

body.factory-page .factory-hero__inner {
  min-height: var(--sw-hero-home-height) !important;
  justify-content: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.factory-page .factory-breadcrumb {
  margin-bottom: 18px !important;
}

body.factory-page .factory-hero__copy p {
  margin-top: 18px !important;
}

body.factory-page .factory-hero__proof {
  margin-top: 28px !important;
}

body.factory-page .factory-hero__proof div {
  min-height: 76px !important;
  padding: 14px 16px !important;
}

body.factory-page .factory-hero__proof p {
  margin-top: 7px !important;
}

body.contact-v2-precision .contact-command-shell {
  max-width: var(--sw-hero-home-container) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: var(--sw-hero-home-pad) !important;
  padding-left: var(--sw-hero-home-pad) !important;
}

/* Precise content title normalization for inline and dynamic modules. */
body.about-v2-precision .about-client-sidebar h2,
body.about-v2-precision .about-client-culture-content h3,
body.about-v2-precision .about-client-value h3,
body.about-v2-precision .about-client-cert-card h3,
body.shimizu-v2-catalog .shimizu-category-head h3,
body.shimizu-v2-catalog .sw-data-table-head h3,
body.shimizu-v2-catalog .sw-cta h2,
body.shimizu-v2-catalog .sw-cta__title {
  font-family: var(--font-display) !important;
  font-size: var(--sw-content-h3) !important;
  font-weight: 700 !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body.about-v2-precision .about-client-culture-content h3,
body.shimizu-v2-catalog .shimizu-category-head h3,
body.shimizu-v2-catalog .sw-data-table-head h3,
body.shimizu-v2-catalog .sw-cta h2,
body.shimizu-v2-catalog .sw-cta__title {
  font-size: var(--sw-content-h2) !important;
  line-height: 1.18 !important;
}

html[lang="ja"] body.about-v2-precision .about-client-sidebar h2,
html[lang="ja"] body.about-v2-precision .about-client-culture-content h3,
html[lang="ja"] body.about-v2-precision .about-client-value h3,
html[lang="ja"] body.about-v2-precision .about-client-cert-card h3,
html[lang="ja"] body.shimizu-v2-catalog .shimizu-category-head h3,
html[lang="ja"] body.shimizu-v2-catalog .sw-data-table-head h3,
html[lang="ja"] body.shimizu-v2-catalog .sw-cta h2,
html[lang="ja"] body.shimizu-v2-catalog .sw-cta__title {
  font-family: var(--font-display-ja) !important;
}

body.shimizu-v2-catalog .shimizu-quick-toc__head strong,
body.shimizu-v2-catalog .shimizu-quick-toc__list a strong,
body.shimizu-v2-catalog .shimizu-quick-toc__list a.is-active strong,
body.shimizu-v2-catalog .sw-spec-card__model,
body.shimizu-v2-catalog .sw-spec-card__badge {
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 767px) {
  body.products-v2-precision,
  body.products-category-page,
  body.products-new-classic,
  body.products-tree-page,
  body.products-catalog-page,
  body.shimizu-v2-catalog,
  body.partners-v2-precision,
  body.faq-v2-precision,
  body.contact-v2-precision,
  body.factory-page,
  body.about-v2-precision {
    --sw-hero-home-height: clamp(460px, 62vh, 540px);
    --sw-hero-home-pad: 24px;
    --sw-hero-home-copy-width: 100%;
  }

  body.products-catalog-page {
    --sw-hero-home-height: clamp(400px, 102vw, 460px);
  }

  body.products-catalog-page .sw-catalog-head,
  body.products-category-page .sw-category-hero,
  body.products-tree-page .product-tree-hero,
  body.products-new-classic .classic-page-hero,
  body.partners-v2-precision .partners-hero,
  body.shimizu-v2-catalog .shimizu-hero,
  body.about-v2-precision .about-client-hero {
    min-height: var(--sw-hero-home-height) !important;
  }

  body.products-catalog-page .sw-catalog-head .container {
    padding-top: clamp(96px, 25vw, 128px) !important;
    padding-bottom: 36px !important;
  }

  body.products-catalog-page .sw-catalog-head__bg img {
    object-fit: cover !important;
    object-position: 68% center !important;
    opacity: 0.62 !important;
    filter: saturate(0.98) contrast(1.04) brightness(0.82) !important;
  }

  body.products-catalog-page .sw-catalog-head::before {
    background:
      linear-gradient(90deg, rgba(1, 5, 16, 0.9) 0%, rgba(3, 12, 31, 0.78) 46%, rgba(8, 28, 64, 0.42) 75%, rgba(9, 33, 82, 0.24) 100%),
      linear-gradient(180deg, rgba(2, 6, 23, 0.06) 0%, rgba(2, 6, 23, 0.32) 100%) !important;
  }

  body.faq-v2-precision .faq-hero.page-hero {
    min-height: 430px !important;
    height: auto !important;
  }

  body.faq-v2-precision .faq-hero__content {
    min-height: 430px !important;
    padding-top: 124px !important;
    padding-bottom: var(--sw-hero-home-pad) !important;
  }

  body.faq-v2-precision .faq-hero__media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.faq-v2-precision .faq-hero__media img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center bottom !important;
  }

  body.faq-v2-precision .faq-hero__blend {
    inset-block: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    background: linear-gradient(90deg, rgba(249, 249, 249, 0.98) 0%, rgba(249, 249, 249, 0.9) 46%, rgba(249, 249, 249, 0.12) 100%) !important;
  }

  body.contact-v2-precision .contact-command {
    min-height: 0 !important;
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  body.about-v2-precision .about-client-hero__inner {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 24px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* V2 wide-screen hero image correction. */
@media (min-width: 768px) {
  body.faq-v2-precision .faq-hero.page-hero {
    height: clamp(440px, 23.5vw, 500px) !important;
    min-height: clamp(440px, 23.5vw, 500px) !important;
  }

  body.faq-v2-precision .faq-hero__content {
    height: 100% !important;
    min-height: 100% !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.faq-v2-precision .faq-hero__media {
    position: absolute !important;
    inset: 0 0 0 auto !important;
    width: min(100%, 1600px) !important;
    height: 100% !important;
    justify-content: flex-end !important;
    overflow: hidden !important;
  }

  body.faq-v2-precision .faq-hero__media img {
    width: auto !important;
    max-width: none !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: right center !important;
  }

  body.faq-v2-precision .faq-hero__blend {
    inset-block: 0 !important;
    left: 0 !important;
    width: min(48vw, 820px) !important;
    height: auto !important;
    background: linear-gradient(90deg, rgba(249, 249, 249, 0.99) 0%, rgba(249, 249, 249, 0.92) 45%, rgba(249, 249, 249, 0) 100%) !important;
  }
}

/* Typography stabilization: local Latin numerals, system CJK, calmer content headings. */
html[lang="zh-CN"] body,
html[lang="en"] body {
  font-family: var(--font-body) !important;
}

html[lang="ja"] body {
  font-family: var(--font-body-ja) !important;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
.font-en,
.brand-text strong,
.hero-title,
.page-title,
.section-title,
.apple-section-title,
.home-section-head h2,
.home-client-head h2,
.sw-product-section-title h3,
.sw-product-index__head h2,
.factory-detail-copy h2,
.contact-form-head h2 {
  font-family: var(--font-display) !important;
  font-synthesis-weight: none;
}

html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] h4,
html[lang="ja"] h5,
html[lang="ja"] .page-title,
html[lang="ja"] .section-title,
html[lang="ja"] .apple-section-title {
  font-family: var(--font-display-ja) !important;
}

body.home-v2-premium,
body.about-v2-precision,
body.products-v2-precision,
body.products-category-page,
body.products-new-classic,
body.products-tree-page,
body.products-catalog-page,
body.shimizu-v2-catalog,
body.partners-v2-precision,
body.faq-v2-precision,
body.contact-v2-precision,
body.factory-page {
  --sw-compact-h2: clamp(1.42rem, 2vw, 2.12rem);
  --sw-compact-h3: clamp(1.02rem, 1.22vw, 1.26rem);
}

body.home-v2-premium .section-title,
body.home-v2-premium .apple-section-title,
body.home-customer-page .home-inquiry-copy h2,
body.home-customer-page .home-contact-form-deck .contact-form-head h2,
body.about-v2-precision .section-title,
body.products-v2-precision .section-title,
body.products-category-page .section-title,
body.products-category-page .sw-product-section-title h3,
body.products-category-page .sw-product-index__head h2,
body.products-new-classic .section-title,
body.products-tree-page .section-title,
body.products-catalog-page .section-title,
body.shimizu-v2-catalog .section-title,
body.partners-v2-precision .section-title,
body.faq-v2-precision .section-title,
body.contact-v2-precision .section-title,
body.factory-page .section-title,
body.factory-page .factory-detail-copy h2 {
  font-size: var(--sw-compact-h2) !important;
  font-weight: 700 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body.home-customer-page .home-product-card h3,
body.home-customer-page .home-why-list h3,
body.home-customer-page .home-process-grid h3,
body.home-customer-page .home-industry-grid-v2 h3,
body.products-catalog-page .sw-catalog-card h2,
body.products-category-page .sw-product-list-title h3,
body.products-category-page .sw-product-card h3,
body.products-category-page .sw-sub-product-card h5,
body.products-category-page .sw-intro-card h4,
body.products-category-page .sw-hose-catalog .sec-title,
body.products-category-page .sw-hose-catalog .pc-name,
body.shimizu-v2-catalog .sw-spec-card h3,
body.shimizu-v2-catalog .shimizu-quick-toc__head strong,
body.partners-v2-precision .partner-region-heading h2,
body.partners-v2-precision .partner-card h3 span,
body.faq-v2-precision .faq-question,
body.contact-v2-precision .contact-card h3,
body.contact-v2-precision .contact-form-head h2,
body.factory-page .factory-quality-grid h3 {
  font-size: var(--sw-compact-h3) !important;
  font-weight: 700 !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
}

.metric-number,
.odometer,
body.home-customer-page .home-customer-stat-grid strong,
body.home-customer-page .home-factory-strip strong,
body.home-customer-page .home-proof-panel strong,
body.about-v2-precision .about-client-stat strong,
body.about-v2-precision .about-client-data-card strong,
body.contact-v2-precision .contact-proof strong,
body.contact-v2-precision .contact-proof-grid strong,
body.contact-v2-precision .contact-promise-rail strong,
body.contact-v2-precision .contact-data-card strong,
body.factory-page .factory-hero__proof strong,
body.shimizu-v2-catalog .shimizu-hero-panel strong,
body.shimizu-v2-catalog .shimizu-result-meta strong {
  font-family: var(--font-number) !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

html[lang="ja"] .metric-number,
html[lang="ja"] .odometer,
html[lang="ja"] body.home-customer-page .home-customer-stat-grid strong,
html[lang="ja"] body.home-customer-page .home-factory-strip strong,
html[lang="ja"] body.home-customer-page .home-proof-panel strong,
html[lang="ja"] body.about-v2-precision .about-client-stat strong,
html[lang="ja"] body.about-v2-precision .about-client-data-card strong,
html[lang="ja"] body.contact-v2-precision .contact-proof strong,
html[lang="ja"] body.contact-v2-precision .contact-proof-grid strong,
html[lang="ja"] body.contact-v2-precision .contact-promise-rail strong,
html[lang="ja"] body.contact-v2-precision .contact-data-card strong,
html[lang="ja"] body.factory-page .factory-hero__proof strong,
html[lang="ja"] body.shimizu-v2-catalog .shimizu-hero-panel strong,
html[lang="ja"] body.shimizu-v2-catalog .shimizu-result-meta strong {
  font-family: var(--font-number-ja) !important;
}

html[lang="pt"] body.contact-v2-precision .contact-proof-grid strong {
  white-space: nowrap !important;
  font-size: clamp(1.75rem, 3.15vw, 3rem) !important;
}

html[lang="de"] body.contact-v2-precision .contact-proof-grid strong {
  white-space: nowrap !important;
  font-size: clamp(1.65rem, 2.95vw, 2.82rem) !important;
}

html[lang="ru"] body.contact-v2-precision .contact-proof-grid strong {
  white-space: nowrap !important;
  font-size: clamp(1.58rem, 2.85vw, 2.72rem) !important;
}

body.home-customer-page .home-factory-strip strong span,
body.home-customer-page .home-proof-panel strong span,
body.about-v2-precision .about-client-stat strong em,
body.factory-page .factory-hero__proof strong span {
  font-family: var(--font-zh) !important;
  font-weight: 700 !important;
}

html[lang="ja"] body.home-customer-page .home-factory-strip strong span,
html[lang="ja"] body.home-customer-page .home-proof-panel strong span,
html[lang="ja"] body.about-v2-precision .about-client-stat strong em,
html[lang="ja"] body.factory-page .factory-hero__proof strong span {
  font-family: var(--font-ja) !important;
}

@media (max-width: 640px) {
  body.home-v2-premium,
  body.about-v2-precision,
  body.products-v2-precision,
  body.products-category-page,
  body.products-new-classic,
  body.products-tree-page,
  body.products-catalog-page,
  body.shimizu-v2-catalog,
  body.partners-v2-precision,
  body.faq-v2-precision,
  body.contact-v2-precision,
  body.factory-page {
    --sw-compact-h2: clamp(1.34rem, 5.8vw, 1.86rem);
    --sw-compact-h3: clamp(0.98rem, 4vw, 1.16rem);
  }
}

/* Content typography pass: reduce non-hero title weight and keep multilingual text stable. */
body.home-v2-premium,
body.about-v2-precision,
body.products-v2-precision,
body.products-category-page,
body.products-new-classic,
body.products-tree-page,
body.products-catalog-page,
body.shimizu-v2-catalog,
body.partners-v2-precision,
body.faq-v2-precision,
body.contact-v2-precision,
body.factory-page {
  --sw-content-h1: clamp(1.36rem, 1.84vw, 1.96rem);
  --sw-content-h2: clamp(1.3rem, 1.72vw, 1.84rem);
  --sw-content-h3: clamp(1rem, 1.12vw, 1.18rem);
  --sw-content-label: clamp(0.74rem, 0.78vw, 0.82rem);
  --sw-content-body: 1rem;
}

body.home-v2-premium main section:not(.home-customer-hero) h1,
body.about-v2-precision main section:not(.about-client-hero) h1,
body.products-v2-precision main section:not(.products-hero):not(.product-hub-hero):not(.classic-page-hero) h1,
body.products-category-page main section:not(.sw-category-hero) h1,
body.products-new-classic main section:not(.classic-page-hero) h1,
body.products-tree-page main section:not(.product-tree-hero) h1,
body.products-catalog-page main section:not(.sw-catalog-head) h1,
body.shimizu-v2-catalog main section:not(.shimizu-hero) h1,
body.partners-v2-precision main section:not(.partners-hero) h1,
body.faq-v2-precision main section:not(.faq-hero) h1,
body.contact-v2-precision main section:not(.contact-command) h1,
body.factory-page main section:not(.factory-hero) h1 {
  font-size: var(--sw-content-h1) !important;
  font-weight: 700 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body.home-v2-premium .home-industry-head h2,
body.home-v2-premium .home-inquiry-copy h2,
body.home-v2-premium .home-contact-form-deck .contact-form-head h2,
body.about-v2-precision .section-title,
body.about-v2-precision .about-factory-title,
body.about-v2-precision .about-client-proof h2,
body.about-v2-precision .about-client-quote h2,
body.about-v2-precision .about-client-head h2,
body.about-v2-precision .about-client-data h2,
body.about-v2-precision .about-client-path h2,
body.products-v2-precision .section-title,
body.products-category-page .sw-product-section-title h3,
body.products-category-page .sw-product-index__head h2,
body.products-new-classic .section-title,
body.products-tree-page .section-title,
body.products-catalog-page .section-title,
body.shimizu-v2-catalog .section-title,
body.partners-v2-precision .section-title,
body.partners-v2-precision .partner-region-heading h2,
body.faq-v2-precision .section-title,
body.faq-v2-precision .faq-command .section-title,
body.contact-v2-precision .company-coordinate-head h2,
body.contact-v2-precision .contact-form-head h2,
body.factory-page .factory-detail-copy h2,
body.factory-page .factory-quality .section-title {
  font-size: var(--sw-content-h2) !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body.home-v2-premium .home-product-card h3,
body.home-v2-premium .home-why-list h3,
body.home-v2-premium .home-process-grid h3,
body.home-v2-premium .home-industry-grid-v2 h3,
body.about-v2-precision .about-client-timeline h3,
body.about-v2-precision .about-client-system-card h3,
body.about-v2-precision .about-client-data-card h3,
body.products-catalog-page .sw-catalog-card h2,
body.products-category-page .sw-product-list-title h3,
body.products-category-page .sw-product-card h3,
body.products-category-page .sw-sub-product-card h5,
body.products-category-page .sw-intro-card h4,
body.products-category-page .sw-hose-catalog .sec-title,
body.products-category-page .sw-hose-catalog .pc-name,
body.shimizu-v2-catalog .sw-spec-card h3,
body.partners-v2-precision .partner-card h3 span,
body.faq-v2-precision .faq-question,
body.contact-v2-precision .contact-card h3,
body.factory-page .factory-quality-grid h3 {
  font-size: var(--sw-content-h3) !important;
  font-weight: 700 !important;
  line-height: 1.26 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.desktop-nav a,
.mobile-nav a,
.btn-sw,
.home-hero-button,
.command-submit,
.lang-current,
.lang-option,
.breadcrumb-sw,
.factory-breadcrumb,
.contact-breadcrumb,
.section-kicker,
.home-product-card span,
.home-process-grid article > span,
.contact-priority,
.sw-product-sidebar button,
.sw-product-sidebar a,
.footer-heading {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

html[lang="ja"] .desktop-nav a,
html[lang="ja"] .mobile-nav a,
html[lang="ja"] .btn-sw,
html[lang="ja"] .home-hero-button,
html[lang="ja"] .command-submit,
html[lang="ja"] .lang-current,
html[lang="ja"] .lang-option,
html[lang="ja"] .breadcrumb-sw,
html[lang="ja"] .factory-breadcrumb,
html[lang="ja"] .contact-breadcrumb,
html[lang="ja"] .section-kicker,
html[lang="ja"] .home-product-card span,
html[lang="ja"] .home-process-grid article > span,
html[lang="ja"] .contact-priority,
html[lang="ja"] .sw-product-sidebar button,
html[lang="ja"] .sw-product-sidebar a,
html[lang="ja"] .footer-heading {
  font-family: var(--font-body-ja) !important;
}

main p,
main li,
.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: pretty;
}

body.about-v2-precision .about-client-stat span,
body.about-v2-precision .about-client-data-card span,
body.home-v2-premium .home-product-card small,
body.home-v2-premium .home-process-grid small,
body.products-category-page .sw-product-card small,
body.products-catalog-page .sw-catalog-card small,
body.shimizu-v2-catalog .shimizu-hero-panel span,
body.factory-page .factory-hero__proof p,
body.contact-v2-precision .contact-data-card small,
body.contact-v2-precision .contact-promise-rail span {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

html[lang="ja"] body.about-v2-precision .about-client-stat span,
html[lang="ja"] body.about-v2-precision .about-client-data-card span,
html[lang="ja"] body.home-v2-premium .home-product-card small,
html[lang="ja"] body.home-v2-premium .home-process-grid small,
html[lang="ja"] body.products-category-page .sw-product-card small,
html[lang="ja"] body.products-catalog-page .sw-catalog-card small,
html[lang="ja"] body.shimizu-v2-catalog .shimizu-hero-panel span,
html[lang="ja"] body.factory-page .factory-hero__proof p,
html[lang="ja"] body.contact-v2-precision .contact-data-card small,
html[lang="ja"] body.contact-v2-precision .contact-promise-rail span {
  font-family: var(--font-body-ja) !important;
}

body.about-v2-precision .about-client-giant,
body.faq-v2-precision .faq-question-no,
body.factory-page .factory-intro::before {
  font-family: var(--font-number) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 640px) {
  body.home-v2-premium,
  body.about-v2-precision,
  body.products-v2-precision,
  body.products-category-page,
  body.products-new-classic,
  body.products-tree-page,
  body.products-catalog-page,
  body.shimizu-v2-catalog,
  body.partners-v2-precision,
  body.faq-v2-precision,
  body.contact-v2-precision,
  body.factory-page {
    --sw-content-h1: clamp(1.26rem, 5.4vw, 1.72rem);
    --sw-content-h2: clamp(1.22rem, 5.2vw, 1.62rem);
    --sw-content-h3: clamp(0.96rem, 3.8vw, 1.12rem);
  }
}

/* Subtitle rhythm pass: stable non-hero subcopy across Chinese, English and Japanese. */
body.home-v2-premium,
body.about-v2-precision,
body.products-v2-precision,
body.products-category-page,
body.products-new-classic,
body.products-tree-page,
body.products-catalog-page,
body.shimizu-v2-catalog,
body.partners-v2-precision,
body.faq-v2-precision,
body.contact-v2-precision,
body.factory-page {
  --sw-subtitle-size: clamp(0.92rem, 0.96vw, 1rem);
  --sw-subtitle-line: 1.64;
  --sw-subtitle-weight: 400;
  --sw-subtitle-strong-weight: 500;
  --sw-subtitle-measure: 58ch;
  --sw-subtitle-measure-wide: 68ch;
  --sw-kicker-size: clamp(0.78rem, 0.82vw, 0.86rem);
}

body.home-v2-premium .section-kicker,
body.about-v2-precision .section-kicker,
body.products-v2-precision .section-kicker,
body.products-category-page .section-kicker,
body.products-new-classic .section-kicker,
body.products-tree-page .section-kicker,
body.products-catalog-page .section-kicker,
body.shimizu-v2-catalog .section-kicker,
body.partners-v2-precision .section-kicker,
body.faq-v2-precision .section-kicker,
body.contact-v2-precision .section-kicker,
body.factory-page .section-kicker {
  width: fit-content !important;
  max-width: 100% !important;
  font-size: var(--sw-kicker-size) !important;
  font-weight: 600 !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

body.home-customer-page .home-client-head .section-kicker {
  margin-right: auto !important;
  margin-left: auto !important;
  justify-content: center !important;
}

body.home-customer-page .home-section-head {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 52ch) auto !important;
  align-items: end !important;
  gap: clamp(22px, 3vw, 34px) !important;
}

body.home-customer-page .home-section-head > p,
body.home-customer-page .home-client-head p,
body.home-customer-page .home-inquiry-copy p,
body.about-v2-precision .about-client-head p,
body.products-v2-precision .section-head > p,
body.products-category-page .sw-product-index__head p,
body.products-category-page .sw-product-index__head--stacked p,
body.products-category-page .sw-product-section-title small,
body.products-category-page .sw-hose-catalog__head p,
body.products-new-classic .classic-section-head p,
body.products-tree-page .product-tree-section-head p,
body.products-tree-page .product-level-panel__head p,
body.products-catalog-page .section-head > p,
body.shimizu-v2-catalog .section-head > p,
body.shimizu-v2-catalog .sw-data-table-head p,
body.shimizu-v2-catalog .sw-cta p,
body.partners-v2-precision .section-head > p,
body.partners-v2-precision .partner-region-heading p,
body.faq-v2-precision .faq-command p,
body.contact-v2-precision .contact-form-head p,
body.factory-page .factory-quality__head p,
body.factory-page .factory-detail-copy p {
  max-width: var(--sw-subtitle-measure) !important;
  color: inherit;
  font-size: var(--sw-subtitle-size) !important;
  font-weight: var(--sw-subtitle-weight) !important;
  line-height: var(--sw-subtitle-line) !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: pretty !important;
}

html[lang="en"] body.home-customer-page .home-section-head > p,
html[lang="en"] body.home-customer-page .home-client-head p,
html[lang="en"] body.home-customer-page .home-inquiry-copy p,
html[lang="en"] body.about-v2-precision .about-client-head p,
html[lang="en"] body.products-v2-precision .section-head > p,
html[lang="en"] body.products-category-page .sw-product-index__head p,
html[lang="en"] body.products-category-page .sw-product-index__head--stacked p,
html[lang="en"] body.products-category-page .sw-product-section-title small,
html[lang="en"] body.products-category-page .sw-hose-catalog__head p,
html[lang="en"] body.products-new-classic .classic-section-head p,
html[lang="en"] body.products-tree-page .product-tree-section-head p,
html[lang="en"] body.products-tree-page .product-level-panel__head p,
html[lang="en"] body.products-catalog-page .section-head > p,
html[lang="en"] body.shimizu-v2-catalog .section-head > p,
html[lang="en"] body.shimizu-v2-catalog .sw-data-table-head p,
html[lang="en"] body.shimizu-v2-catalog .sw-cta p,
html[lang="en"] body.partners-v2-precision .section-head > p,
html[lang="en"] body.partners-v2-precision .partner-region-heading p,
html[lang="en"] body.faq-v2-precision .faq-command p,
html[lang="en"] body.contact-v2-precision .contact-form-head p,
html[lang="en"] body.factory-page .factory-quality__head p,
html[lang="en"] body.factory-page .factory-detail-copy p {
  hyphens: auto !important;
}

html[lang="zh-CN"] body.home-customer-page .home-section-head > p,
html[lang="zh-CN"] body.home-customer-page .home-client-head p,
html[lang="zh-CN"] body.about-v2-precision .about-client-head p,
html[lang="zh-CN"] body.partners-v2-precision .section-head > p,
html[lang="zh-CN"] body.partners-v2-precision .partner-region-heading p,
html[lang="ja"] body.home-customer-page .home-section-head > p,
html[lang="ja"] body.home-customer-page .home-client-head p,
html[lang="ja"] body.about-v2-precision .about-client-head p,
html[lang="ja"] body.partners-v2-precision .section-head > p,
html[lang="ja"] body.partners-v2-precision .partner-region-heading p {
  word-break: keep-all !important;
  line-break: loose;
}

body.home-customer-page .home-section-head > p {
  justify-self: stretch !important;
  width: 100% !important;
  max-width: 52ch !important;
  color: #526174 !important;
  font-weight: var(--sw-subtitle-strong-weight) !important;
}

body.home-customer-page .home-client-head p {
  max-width: 62ch !important;
  margin-right: auto !important;
  margin-left: auto !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-align: center !important;
}

body.about-v2-precision .about-client-head {
  grid-template-columns: minmax(210px, 0.54fr) minmax(420px, 1fr) !important;
  gap: clamp(24px, 4vw, 58px) !important;
  align-items: start !important;
}

body.about-v2-precision .about-client-head p {
  width: 100% !important;
  max-width: var(--sw-subtitle-measure-wide) !important;
  padding-top: 0 !important;
  color: #334155 !important;
  font-weight: var(--sw-subtitle-strong-weight) !important;
}

html[lang="en"] body.about-v2-precision .about-client-head p {
  max-width: 76ch !important;
  font-size: clamp(0.9rem, 0.92vw, 0.96rem) !important;
  line-height: 1.58 !important;
}

@media (min-width: 768px) {
  body.about-v2-precision .about-client-head {
    grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr) !important;
    gap: clamp(22px, 3.2vw, 42px) !important;
  }
}

body.partners-v2-precision .section-head {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1fr) !important;
  align-items: end !important;
  gap: clamp(22px, 3vw, 34px) !important;
}

body.partners-v2-precision .section-head > p {
  justify-self: end !important;
  width: 100% !important;
  max-width: 64ch !important;
  color: #526174 !important;
}

body.partners-v2-precision .partner-region-heading {
  grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1fr) !important;
  align-items: start !important;
  gap: clamp(22px, 3vw, 34px) !important;
}

body.partners-v2-precision .partner-region-heading p {
  justify-self: end !important;
  width: 100% !important;
  max-width: 62ch !important;
  margin-top: 3px !important;
  color: #526174 !important;
}

body.partners-v2-precision .partners-orbit-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: clamp(18px, 3vw, 36px) !important;
  line-height: 1.45 !important;
}

body.partners-v2-precision .partners-orbit-head span,
body.partners-v2-precision .partners-orbit-head strong {
  max-width: min(48ch, 48%) !important;
  font-size: clamp(0.78rem, 0.82vw, 0.84rem) !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: pretty !important;
}

body.partners-v2-precision .partners-orbit-head strong {
  text-align: right !important;
}

@media (max-width: 1100px) {
  body.home-customer-page .home-section-head,
  body.partners-v2-precision .section-head,
  body.partners-v2-precision .partner-region-heading {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 46ch) !important;
  }

  body.home-customer-page .home-section-head .home-text-link {
    grid-column: 1 / -1;
    justify-self: start !important;
  }
}

@media (max-width: 767px) {
  body.home-v2-premium,
  body.about-v2-precision,
  body.products-v2-precision,
  body.products-category-page,
  body.products-new-classic,
  body.products-tree-page,
  body.products-catalog-page,
  body.shimizu-v2-catalog,
  body.partners-v2-precision,
  body.faq-v2-precision,
  body.contact-v2-precision,
  body.factory-page {
    --sw-subtitle-size: 0.92rem;
    --sw-subtitle-line: 1.58;
    --sw-subtitle-measure: 100%;
    --sw-subtitle-measure-wide: 100%;
    --sw-kicker-size: 0.78rem;
  }

  body.home-customer-page .home-section-head,
  body.about-v2-precision .about-client-head,
  body.partners-v2-precision .section-head,
  body.partners-v2-precision .partner-region-heading {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: start !important;
    text-align: left !important;
  }

  body.home-customer-page .home-section-head > p,
  body.about-v2-precision .about-client-head p,
  body.partners-v2-precision .section-head > p,
  body.partners-v2-precision .partner-region-heading p {
    justify-self: start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    text-align: left !important;
  }

  body.home-customer-page .home-client-head p {
    max-width: 100% !important;
  }

  body.partners-v2-precision .partners-orbit-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 4px !important;
  }

  body.partners-v2-precision .partners-orbit-head span,
  body.partners-v2-precision .partners-orbit-head strong {
    max-width: 100% !important;
    text-align: left !important;
  }
}

/* Heading rule removal pass: remove decorative title bars while preserving functional blue UI states. */
.section-kicker::before,
.hero-subtitle::before,
.shimizu-kicker::before,
.partner-region h2::after,
.partner-region-heading h2::after,
body.home-v2-premium .home-industry-head span::before,
body.products-category-page .sw-product-section-title::before,
body.products-catalog-page .sw-catalog-card h2::after {
  display: none !important;
  content: none !important;
}

.section-kicker,
.hero-subtitle,
.shimizu-kicker,
body.home-v2-premium .home-industry-head span {
  gap: 0 !important;
}

body.products-category-page .sw-product-section-title {
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 5px clamp(14px, 2.2vw, 24px) !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #eef2f7 !important;
}

body.products-category-page .sw-product-section-title > span,
body.products-category-page .sw-product-section-title h3 {
  grid-column: 1 !important;
}

body.products-category-page .sw-product-section-title small {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  align-self: end !important;
}

body.products-catalog-page .sw-catalog-card h2 {
  margin-bottom: 14px !important;
  padding-bottom: 0 !important;
}

body.partners-v2-precision .partner-region h2,
body.partners-v2-precision .partner-region-heading h2 {
  gap: 0 !important;
}

@media (max-width: 767px) {
  body.products-category-page .sw-product-section-title {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.products-category-page .sw-product-section-title small {
    grid-column: 1 !important;
    grid-row: auto !important;
    align-self: start !important;
  }
}

/* Section heading alignment pass: flex-based left title / right subtitle rhythm. */
.section-head-side {
  display: flex !important;
  width: fit-content !important;
  min-width: min-content !important;
  max-width: 100% !important;
  flex: 0 1 auto !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  margin-left: auto !important;
  text-align: right !important;
}

.section-head-side > p,
body.home-customer-page .home-section-head .section-head-side > p,
body.about-v2-precision .about-client-head .section-head-side > p,
body.partners-v2-precision .section-head .section-head-side > p,
body.partners-v2-precision .partner-region-heading .section-head-side > p,
body.factory-page .factory-quality__head .section-head-side > p,
body.shimizu-v2-catalog .shimizu-section-head .section-head-side > p {
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-top: 0 !important;
  color: #526174 !important;
  font-size: clamp(0.82rem, 0.88vw, 0.94rem) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-align: right !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
  text-wrap: nowrap !important;
}

body.home-customer-page .home-section-head,
body.about-v2-precision .about-client-head,
body.partners-v2-precision .partners-page .section-head,
body.partners-v2-precision .partner-region-heading,
body.factory-page .factory-quality__head,
body.shimizu-v2-catalog .shimizu-section-head {
  display: flex !important;
  flex-wrap: wrap !important;
  grid-template-columns: none !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: clamp(24px, 4vw, 64px) !important;
  text-align: left !important;
}

body.home-customer-page .home-section-head > div,
body.about-v2-precision .about-client-head > div,
body.partners-v2-precision .section-head > div,
body.partners-v2-precision .partner-region-heading > h2,
body.factory-page .factory-quality__head > div,
body.shimizu-v2-catalog .shimizu-section-head > div {
  min-width: 0 !important;
  flex: 0 1 auto !important;
}

body.home-customer-page .home-section-head .section-title,
body.about-v2-precision .about-client-head h2,
body.partners-v2-precision .section-head .section-title,
body.partners-v2-precision .partner-region-heading h2,
body.factory-page .factory-quality__head .section-title,
body.shimizu-v2-catalog .shimizu-section-head .section-title {
  margin-bottom: 0 !important;
}

body.about-v2-precision .about-client-head h2::after {
  display: none !important;
  content: none !important;
}

body.home-customer-page .home-section-head .home-text-link,
.section-head-side .home-text-link {
  align-self: flex-end !important;
  justify-self: auto !important;
  margin-top: 0 !important;
  white-space: nowrap !important;
}

body.home-customer-page .home-section-head:has(.home-text-link) .section-head-side {
  gap: 9px !important;
}

body.partners-v2-precision .partner-region-heading .section-head-side {
  max-width: min(100%, 72ch) !important;
}

body.about-v2-precision .about-client-head .section-head-side {
  max-width: min(100%, 86ch) !important;
}

body.about-v2-precision .about-client-head .section-head-side > p,
body.partners-v2-precision .section-head .section-head-side > p,
body.partners-v2-precision .partner-region-heading .section-head-side > p,
body.shimizu-v2-catalog .shimizu-section-head .section-head-side > p {
  max-width: 100% !important;
  line-height: 1.56 !important;
  white-space: normal !important;
  text-wrap: pretty !important;
}

body.partners-v2-precision .partners-page .section-head .section-head-side {
  max-width: min(100%, 88ch) !important;
}

@media (max-width: 1100px) and (min-width: 768px) {
  .section-head-side {
    max-width: 100% !important;
  }

  .section-head-side > p,
  body.home-customer-page .home-section-head .section-head-side > p,
  body.about-v2-precision .about-client-head .section-head-side > p,
  body.partners-v2-precision .section-head .section-head-side > p,
  body.partners-v2-precision .partner-region-heading .section-head-side > p,
  body.factory-page .factory-quality__head .section-head-side > p,
  body.shimizu-v2-catalog .shimizu-section-head .section-head-side > p {
    font-size: 0.82rem !important;
  }
}

@media (max-width: 767px) {
  .section-head-side,
  body.partners-v2-precision .partner-region-heading .section-head-side,
  body.about-v2-precision .about-client-head .section-head-side {
    width: 100% !important;
    max-width: 100% !important;
    align-items: flex-start !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  body.home-customer-page .home-section-head,
  body.about-v2-precision .about-client-head,
  body.partners-v2-precision .partners-page .section-head,
  body.partners-v2-precision .partner-region-heading,
  body.factory-page .factory-quality__head,
  body.shimizu-v2-catalog .shimizu-section-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .section-head-side > p,
  body.home-customer-page .home-section-head .section-head-side > p,
  body.about-v2-precision .about-client-head .section-head-side > p,
  body.partners-v2-precision .section-head .section-head-side > p,
  body.partners-v2-precision .partner-region-heading .section-head-side > p,
  body.factory-page .factory-quality__head .section-head-side > p,
  body.shimizu-v2-catalog .shimizu-section-head .section-head-side > p {
    width: 100% !important;
    max-width: 100% !important;
    color: #526174 !important;
    font-size: 0.92rem !important;
    line-height: 1.58 !important;
    text-align: left !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: pretty !important;
  }

  html[lang="zh-CN"] .section-head-side > p,
  html[lang="ja"] .section-head-side > p {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    line-break: loose;
  }

  body.about-v2-precision .about-client-main,
  body.about-v2-precision .about-client-section,
  body.partners-v2-precision .partner-region,
  body.partners-v2-precision .partners-page .section-head,
  body.partners-v2-precision .partner-region-heading {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  html[lang="zh-CN"] body.about-v2-precision .about-client-head .section-head-side > p,
  html[lang="zh-CN"] body.partners-v2-precision .section-head .section-head-side > p,
  html[lang="zh-CN"] body.partners-v2-precision .partner-region-heading .section-head-side > p,
  html[lang="ja"] body.about-v2-precision .about-client-head .section-head-side > p,
  html[lang="ja"] body.partners-v2-precision .section-head .section-head-side > p,
  html[lang="ja"] body.partners-v2-precision .partner-region-heading .section-head-side > p {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    line-break: loose;
  }

  body.home-customer-page .home-section-head .home-text-link,
  .section-head-side .home-text-link {
    align-self: flex-start !important;
  }
}

/* Requested heading refinement pass: preserve readable copy while tightening section rhythm. */
@media (min-width: 992px) {
  body.home-v2-premium .home-industry-head {
    max-width: none !important;
  }

  body.home-v2-premium .home-industry-head p {
    width: 100% !important;
    max-width: none !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
  }
}

@media (max-width: 991px) {
  body.home-v2-premium .home-industry-head p {
    white-space: normal !important;
    text-wrap: pretty !important;
  }
}

@media (min-width: 1200px) {
  body.about-v2-precision .about-client-layout {
    grid-template-columns: 248px minmax(0, 1fr) !important;
    gap: clamp(22px, 3vw, 40px) !important;
  }

  body.about-v2-precision .about-client-sidebar {
    width: 248px !important;
  }

  body.about-v2-precision .about-client-contact a[href^="mailto:"] {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
}

@media (min-width: 768px) {
  body.about-v2-precision .about-client-head {
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: clamp(20px, 3vw, 44px) !important;
  }

  body.about-v2-precision .about-client-head > div:first-child {
    flex: 0 0 auto !important;
  }

  body.about-v2-precision .about-client-head .section-head-side {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 auto !important;
    margin-left: auto !important;
  }

  body.about-v2-precision .about-client-head .section-head-side > p {
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: pretty !important;
  }
}

body.factory-page .factory-intro__grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: clamp(14px, 2vw, 20px) !important;
}

body.factory-page .container.factory-intro__grid {
  width: 100% !important;
  max-width: 1140px !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.factory-page .factory-intro__grid > div,
body.factory-page .factory-intro__grid > p {
  width: 100% !important;
  max-width: 100% !important;
}

body.factory-page .factory-intro__grid > p {
  text-align: left !important;
}

body.partners-v2-precision .partners-page .section-head {
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 14px !important;
}

body.partners-v2-precision .partners-page .section-head .section-head-side {
  width: 100% !important;
  max-width: min(100%, 92ch) !important;
  align-items: flex-start !important;
  margin-left: 0 !important;
  text-align: left !important;
}

body.partners-v2-precision .partners-page .section-head .section-head-side > p {
  width: 100% !important;
  text-align: left !important;
}

body.partners-v2-precision .partners-network .partner-card {
  min-height: 330px !important;
}

body.partners-v2-precision .partner-card-inner {
  padding: clamp(22px, 2vw, 28px) !important;
  padding-top: clamp(88px, 6.2vw, 102px) !important;
}

body.partners-v2-precision .partners-network .partner-card-heading {
  max-width: 100% !important;
  gap: 6px !important;
  margin-bottom: clamp(16px, 2.1vw, 22px) !important;
}

body.partners-v2-precision .partners-network .partner-card-logo {
  top: 20px !important;
  right: 20px !important;
  width: 148px !important;
  height: 68px !important;
  padding: 7px 9px !important;
}

body.partners-v2-precision .partners-network .tag-list {
  padding-top: 16px !important;
}

@media (max-width: 640px) {
  body.partners-v2-precision .partner-card-inner {
    padding: 20px !important;
    padding-top: 88px !important;
  }

  body.partners-v2-precision .partners-network .partner-card-heading {
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }

  body.partners-v2-precision .partners-network .partner-card-logo {
    top: 18px !important;
    right: 18px !important;
    width: 122px !important;
    height: 58px !important;
  }
}

/* Dense customer-card pass for Japan and Korea regions. */
body.partners-v2-precision .partner-region[data-region="japan"] .partners-matrix,
body.partners-v2-precision .partner-region[data-region="korea"] .partners-matrix {
  gap: 14px !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-card,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card {
  min-height: 0 !important;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07) !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-inner,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-inner {
  padding: 18px 20px !important;
  padding-top: 64px !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-logo,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-logo {
  top: 16px !important;
  right: 16px !important;
  width: 116px !important;
  height: 48px !important;
  padding: 5px 7px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 18px rgba(37, 99, 235, 0.06) !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-heading,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-heading {
  gap: 5px !important;
  margin-bottom: 14px !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-market,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-market {
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-card h3,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card h3 {
  font-size: 1rem !important;
  line-height: 1.22 !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-card h3 span,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card h3 span {
  margin-bottom: 3px !important;
  font-size: clamp(1.55rem, 2vw, 2.05rem) !important;
  line-height: 1.02 !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .partner-card p,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card p {
  margin-bottom: 8px !important;
  line-height: 1.58 !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .tag-list,
body.partners-v2-precision .partner-region[data-region="korea"] .tag-list {
  gap: 7px !important;
  padding-top: 10px !important;
}

body.partners-v2-precision .partner-region[data-region="japan"] .tag-list li,
body.partners-v2-precision .partner-region[data-region="korea"] .tag-list li {
  padding: 6px 9px !important;
  line-height: 1.15 !important;
}

@media (max-width: 640px) {
  body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-inner,
  body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-inner {
    padding: 17px 18px !important;
    padding-top: 62px !important;
  }

  body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-logo,
  body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-logo {
    top: 14px !important;
    right: 14px !important;
    width: 106px !important;
    height: 46px !important;
  }
}

/* Final partners-card vertical density pass: all markets. */
body.partners-v2-precision .partners-matrix,
body.partners-v2-precision .partners-matrix-compact {
  align-items: start !important;
  gap: 14px !important;
}

body.partners-v2-precision .partners-network .partner-card {
  min-height: 0 !important;
}

body.partners-v2-precision .partners-network .partner-card-inner {
  min-height: 0 !important;
  padding: 18px 20px !important;
  padding-top: 64px !important;
}

body.partners-v2-precision .partners-network .partner-card-logo {
  top: 14px !important;
  right: 16px !important;
  width: 116px !important;
  height: 46px !important;
  padding: 5px 7px !important;
}

body.partners-v2-precision .partners-network .partner-card-heading {
  gap: 5px !important;
  margin-bottom: 12px !important;
}

body.partners-v2-precision .partners-network .partner-card p {
  margin-bottom: 7px !important;
  line-height: 1.56 !important;
}

body.partners-v2-precision .partners-network .tag-list {
  margin-top: 6px !important;
  padding-top: 6px !important;
}

body.partners-v2-precision .partners-network .tag-list li {
  padding: 6px 9px !important;
  line-height: 1.15 !important;
}

@media (max-width: 640px) {
  body.partners-v2-precision .partners-network .partner-card-inner {
    padding: 17px 18px !important;
    padding-top: 62px !important;
  }

  body.partners-v2-precision .partners-network .partner-card-logo {
    top: 13px !important;
    right: 14px !important;
    width: 104px !important;
    height: 44px !important;
  }
}

/* Partner card row alignment and logo scale pass. */
body.partners-v2-precision .partners-matrix,
body.partners-v2-precision .partners-matrix-compact {
  align-items: stretch !important;
}

body.partners-v2-precision .partners-network .partner-card {
  height: 100% !important;
}

body.partners-v2-precision .partners-network .partner-card-inner,
body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-inner,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-inner {
  padding-top: 74px !important;
}

body.partners-v2-precision .partners-network .partner-card-logo,
body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-logo,
body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-logo {
  top: 14px !important;
  right: 16px !important;
  width: 138px !important;
  height: 56px !important;
  padding: 6px 8px !important;
}

@media (max-width: 640px) {
  body.partners-v2-precision .partners-network .partner-card-inner,
  body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-inner,
  body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-inner {
    padding-top: 68px !important;
  }

body.partners-v2-precision .partners-network .partner-card-logo,
  body.partners-v2-precision .partner-region[data-region="japan"] .partner-card-logo,
  body.partners-v2-precision .partner-region[data-region="korea"] .partner-card-logo {
    top: 13px !important;
    right: 14px !important;
    width: 120px !important;
    height: 50px !important;
  }
}

/* Contact page hierarchy pass: lighter inquiry information and stable form heading. */
body.contact-v2-precision .contact-command-shell {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr) !important;
  align-items: start !important;
  gap: clamp(28px, 4vw, 52px) !important;
}

body.contact-v2-precision .contact-command-copy {
  min-width: 0 !important;
}

body.contact-v2-precision .contact-promise-rail,
body.contact-v2-precision .contact-data-grid,
body.contact-v2-precision .company-coordinate-panel {
  width: 100% !important;
  max-width: none !important;
}

body.contact-v2-precision .contact-promise-rail {
  gap: 8px !important;
  margin-top: 18px !important;
}

body.contact-v2-precision .contact-promise-rail div {
  min-height: 0 !important;
  padding: 12px 14px !important;
  border-color: #dbe5ef !important;
  box-shadow: none !important;
}

body.contact-v2-precision .contact-promise-rail span {
  margin-bottom: 5px !important;
}

body.contact-v2-precision .contact-promise-rail strong {
  font-size: clamp(0.82rem, 0.9vw, 0.94rem) !important;
  line-height: 1.32 !important;
}

body.contact-v2-precision .contact-data-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
  margin-top: 26px !important;
}

body.contact-v2-precision .contact-data-card {
  grid-template-columns: clamp(112px, 13vw, 158px) minmax(0, 1fr) !important;
  gap: 5px 18px !important;
  align-items: center !important;
  min-height: 0 !important;
  padding: 14px 16px !important;
  overflow: visible !important;
  border-color: #dbe5ef !important;
  box-shadow: none !important;
}

body.contact-v2-precision .contact-data-card span {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: start !important;
  margin-top: 2px !important;
  white-space: normal !important;
}

body.contact-v2-precision .contact-data-card strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  min-width: 0 !important;
  max-width: 100% !important;
  font-size: clamp(0.92rem, 0.98vw, 1.02rem) !important;
  line-height: 1.32 !important;
  text-align: right !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

html[lang="es"] body.contact-v2-precision .contact-data-card strong {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

html[lang="ru"] body.contact-v2-precision .contact-data-card strong {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.contact-v2-precision .contact-data-card small {
  grid-column: 2 !important;
  grid-row: 2 !important;
  justify-self: end !important;
  max-width: 62ch !important;
  line-height: 1.48 !important;
  text-align: right !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: pretty !important;
}

body.contact-v2-precision .company-coordinate-panel {
  margin-top: 12px !important;
  padding: clamp(18px, 2vw, 24px) !important;
  border-color: #dbe5ef !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06) !important;
}

body.contact-v2-precision .company-coordinate-head {
  align-items: end !important;
  margin-bottom: 14px !important;
}

body.contact-v2-precision .company-coordinate-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
  border-top: 1px solid #e2e8f0 !important;
}

body.contact-v2-precision .company-coordinate-grid div,
body.contact-v2-precision .company-coordinate-grid .coordinate-wide {
  display: grid !important;
  grid-column: auto !important;
  grid-template-columns: clamp(112px, 13vw, 156px) minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  min-height: 0 !important;
  padding: 11px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: none !important;
}

body.contact-v2-precision .company-coordinate-grid span {
  margin: 2px 0 0 !important;
}

body.contact-v2-precision .company-coordinate-grid strong {
  min-width: 0 !important;
  font-size: clamp(0.92rem, 0.98vw, 1.02rem) !important;
  line-height: 1.5 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.contact-v2-precision .contact-form-deck {
  width: 100% !important;
  max-width: 520px !important;
  justify-self: end !important;
}

body.contact-v2-precision .contact-form-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 8px !important;
  justify-content: start !important;
  margin-bottom: 24px !important;
}

body.contact-v2-precision .contact-form-head h2 {
  max-width: 100% !important;
  white-space: nowrap !important;
  text-wrap: nowrap !important;
}

body.contact-v2-precision .contact-form-head p {
  width: 100% !important;
  max-width: 52ch !important;
  line-height: 1.58 !important;
}

@media (max-width: 1120px) {
  body.contact-v2-precision .contact-command-shell {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.contact-v2-precision .contact-form-deck {
    max-width: 760px !important;
    justify-self: start !important;
  }
}

@media (max-width: 767px) {
  body.contact-v2-precision .contact-promise-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.contact-v2-precision .contact-data-card,
  body.contact-v2-precision .company-coordinate-grid div,
  body.contact-v2-precision .company-coordinate-grid .coordinate-wide {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.contact-v2-precision .contact-data-card span,
  body.contact-v2-precision .contact-data-card strong,
  body.contact-v2-precision .contact-data-card small {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: start !important;
    text-align: left !important;
  }

  body.contact-v2-precision .contact-data-card strong,
  body.contact-v2-precision .company-coordinate-grid strong {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  body.contact-v2-precision .contact-form-head h2 {
    white-space: normal !important;
    text-wrap: balance !important;
  }
}

@media (max-width: 480px) {
  body.contact-v2-precision .contact-promise-rail {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.contact-v2-precision .contact-data-card {
    padding: 16px !important;
  }

  body.contact-v2-precision .company-coordinate-head {
    display: grid !important;
    gap: 4px !important;
  }
}

/* Contact page layout relocation pass: right-side commitments and full-width company info. */
body.contact-v2-precision .contact-command-shell {
  grid-template-areas:
    "copy form"
    "company company" !important;
}

body.contact-v2-precision .contact-command-copy {
  grid-area: copy !important;
}

body.contact-v2-precision .contact-form-stack {
  grid-area: form !important;
  display: grid !important;
  width: 100% !important;
  max-width: 520px !important;
  justify-self: end !important;
  align-self: start !important;
  gap: 14px !important;
}

body.contact-v2-precision .contact-form-stack .contact-promise-rail {
  grid-area: auto !important;
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 0 !important;
}

body.contact-v2-precision .contact-form-stack .contact-form-deck {
  grid-area: auto !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
}

body.contact-v2-precision .contact-form-stack .contact-promise-rail div {
  display: grid !important;
  align-content: start !important;
  min-height: 74px !important;
  padding: 12px 14px !important;
  background: #ffffff !important;
  border: 1px solid #dbe5ef !important;
  border-radius: 6px !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04) !important;
}

body.contact-v2-precision .contact-form-stack .contact-promise-rail span {
  color: #3098d8 !important;
  font-size: clamp(0.72rem, 0.78vw, 0.8rem) !important;
  line-height: 1.25 !important;
}

body.contact-v2-precision .contact-form-stack .contact-promise-rail strong {
  color: #383868 !important;
  font-size: clamp(0.84rem, 0.94vw, 0.96rem) !important;
  line-height: 1.34 !important;
}

body.contact-v2-precision .contact-priority {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 0 !important;
  margin-top: 18px !important;
  padding: 7px 11px !important;
  color: #334155 !important;
  background: #f8fafc !important;
  border: 1px solid #dbe5ef !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: clamp(0.78rem, 0.86vw, 0.88rem) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

body.contact-v2-precision .company-coordinate-panel {
  grid-area: company !important;
  width: 100% !important;
  max-width: none !important;
  margin-top: clamp(10px, 2vw, 18px) !important;
}

body.contact-v2-precision .company-coordinate-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 28px !important;
  border-top: 1px solid #e2e8f0 !important;
}

body.contact-v2-precision .company-coordinate-grid div,
body.contact-v2-precision .company-coordinate-grid .coordinate-wide {
  grid-column: auto !important;
  grid-template-columns: clamp(110px, 10vw, 150px) minmax(0, 1fr) !important;
}

body.contact-v2-precision .company-coordinate-grid .coordinate-wide {
  grid-column: span 1 !important;
}

@media (max-width: 1120px) {
  body.contact-v2-precision .contact-command-shell {
    grid-template-areas:
      "copy"
      "form"
      "company" !important;
  }

  body.contact-v2-precision .contact-form-stack {
    max-width: 760px !important;
    justify-self: start !important;
  }

  body.contact-v2-precision .company-coordinate-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }
}

@media (max-width: 767px) {
  body.contact-v2-precision .contact-form-stack {
    max-width: none !important;
    gap: 12px !important;
  }

  body.contact-v2-precision .contact-form-stack .contact-promise-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body.contact-v2-precision .contact-form-stack .contact-promise-rail div {
    min-height: 72px !important;
    padding: 10px 11px !important;
  }

  body.contact-v2-precision .company-coordinate-grid div,
  body.contact-v2-precision .company-coordinate-grid .coordinate-wide {
    grid-column: auto !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Contact page edge alignment and compact inquiry form pass. */
@media (min-width: 1121px) {
  body.contact-v2-precision .contact-command-shell {
    grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1fr) !important;
    gap: clamp(34px, 4.4vw, 64px) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.contact-v2-precision .contact-command-copy {
    justify-self: start !important;
    width: 100% !important;
    max-width: 500px !important;
  }

  body.contact-v2-precision .contact-form-stack {
    max-width: 600px !important;
    justify-self: end !important;
  }
}

body.contact-v2-precision .contact-command-lead {
  max-width: 54ch !important;
}

body.contact-v2-precision .contact-form-stack {
  gap: 10px !important;
}

body.contact-v2-precision .contact-form-stack .contact-promise-rail {
  gap: 8px !important;
}

body.contact-v2-precision .contact-form-stack .contact-promise-rail div {
  min-height: 62px !important;
  padding: 9px 12px !important;
}

body.contact-v2-precision .contact-form-stack .contact-promise-rail span {
  margin-bottom: 4px !important;
}

body.contact-v2-precision .contact-form-deck {
  padding: clamp(20px, 2.35vw, 30px) !important;
}

body.contact-v2-precision .contact-form-head {
  gap: 6px !important;
  margin-bottom: 16px !important;
}

body.contact-v2-precision .command-form-grid {
  gap: 12px 14px !important;
}

body.contact-v2-precision .field-unit {
  min-height: 58px !important;
  padding-top: 8px !important;
}

body.contact-v2-precision .field-unit input,
body.contact-v2-precision .field-unit textarea {
  min-height: 46px !important;
  padding: 15px 13px 8px !important;
}

body.contact-v2-precision .field-unit textarea {
  min-height: 104px !important;
}

body.contact-v2-precision .field-unit label {
  top: 23px !important;
}

body.contact-v2-precision .field-unit:focus-within label,
body.contact-v2-precision .field-unit.is-filled label,
body.contact-v2-precision .field-file label {
  top: -1px !important;
}

body.contact-v2-precision .command-submit {
  min-height: 46px !important;
  margin-top: 14px !important;
  padding: 0 22px !important;
}

body.contact-v2-precision .contact-page .form-status {
  margin-top: 10px !important;
  padding: 9px 11px !important;
  line-height: 1.45 !important;
}

body.contact-v2-precision .company-coordinate-panel {
  margin-top: clamp(4px, 1.2vw, 12px) !important;
}

body.contact-v2-precision .company-coordinate-head {
  justify-content: flex-end !important;
  margin-bottom: 10px !important;
}

body.contact-v2-precision .company-coordinate-head h2 {
  margin-left: auto !important;
}

/* Contact page form elevation pass: remove the upper promise rail and let company info breathe. */
body.contact-v2-precision .contact-form-stack {
  gap: 0 !important;
}

body.contact-v2-precision .contact-form-stack .contact-form-deck {
  align-self: start !important;
}

body.contact-v2-precision .company-coordinate-panel {
  margin-top: clamp(12px, 1.8vw, 22px) !important;
}

body.contact-v2-precision .company-coordinate-head {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

body.contact-v2-precision .company-coordinate-head h2 {
  margin-right: auto !important;
  margin-left: 0 !important;
  text-align: left !important;
}

@media (max-width: 1120px) {
  body.contact-v2-precision .contact-form-stack {
    gap: 10px !important;
  }
}

@media (max-width: 767px) {
  body.contact-v2-precision .contact-form-stack .contact-promise-rail div {
    min-height: 64px !important;
    padding: 9px 10px !important;
  }

  body.contact-v2-precision .contact-form-deck {
    padding: 20px !important;
  }
}

/* Homepage hero video pass, scoped to the Chinese homepage only. */
body.home-customer-page .home-customer-hero {
  min-height: clamp(720px, 84vh, 920px);
  background: #030914;
}

body.home-customer-page .home-customer-hero__media {
  background: #030914 url("/assets/images/sanwang/home-hero-video-poster.jpg") center 56% / cover no-repeat;
}

body.home-customer-page .home-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-customer-page .home-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

body.home-customer-page .home-customer-hero__media img,
body.home-customer-page .home-customer-hero__media video,
body.home-customer-page .home-customer-hero__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.015);
}

body.home-customer-page .home-customer-hero::before {
  background:
    radial-gradient(circle at 73% 43%, rgba(37, 99, 235, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.76) 0%, rgba(7, 13, 25, 0.52) 40%, rgba(7, 13, 25, 0.18) 70%, rgba(3, 7, 18, 0.04) 100%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.28) 0%, rgba(3, 7, 18, 0) 38%, rgba(3, 7, 18, 0.34) 100%);
}

body.home-customer-page .home-customer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%);
  background-size: 100% 96px, 112px 100%;
  opacity: 0.16;
  pointer-events: none;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.36), transparent);
}

body.home-customer-page .home-customer-hero__inner {
  z-index: 12;
}

body.home-customer-page .home-customer-hero h1 {
  overflow: hidden;
}

body.home-customer-page .home-customer-hero .home-hero-title-char {
  display: inline-block !important;
  opacity: 0;
  transform: translateY(1.08em) rotate(2deg);
  filter: blur(8px);
  transition:
    opacity 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.08s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
  transition-delay: calc(120ms + (var(--char-index, 0) * 78ms));
  will-change: transform, opacity, filter;
}

body.home-customer-page .home-customer-hero__copy > p,
body.home-customer-page .home-customer-hero__actions {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

body.home-customer-page .home-customer-hero.is-copy-ready .home-hero-title-char {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
}

body.home-customer-page .home-customer-hero.is-copy-ready .home-customer-hero__copy > p,
body.home-customer-page .home-customer-hero.is-copy-ready .home-customer-hero__actions {
  opacity: 1;
  transform: translateY(0);
}

body.home-customer-page .home-customer-hero.is-copy-ready .home-customer-hero__copy > p {
  transition-delay: 0.62s;
}

body.home-customer-page .home-customer-hero.is-copy-ready .home-customer-hero__actions {
  transition-delay: 0.82s;
}

body.home-customer-page .home-hero-carousel-controls {
  position: absolute;
  top: 50%;
  right: clamp(20px, 4.5vw, 64px);
  bottom: auto;
  left: auto;
  z-index: 14;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  transform: translateY(-50%);
  backdrop-filter: none;
}

body.home-customer-page .home-hero-carousel-dots {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0;
}

body.home-customer-page .home-hero-carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    height 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-customer-page .home-hero-carousel-dots button.is-active {
  height: 34px;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.28);
}

body.home-customer-page .home-customer-hero.is-video-paused .home-customer-hero__video {
  filter: saturate(0.9) brightness(0.88);
}

@media (max-width: 991px) {
  body.home-customer-page .home-customer-hero::after {
    width: auto;
    opacity: 0.11;
  }
}

@media (max-width: 640px) {
  body.home-customer-page .home-hero-carousel-controls {
    top: 56%;
    right: 16px;
    padding: 8px 6px;
  }

  body.home-customer-page .home-hero-carousel-dots button {
    width: 10px;
    height: 10px;
  }

  body.home-customer-page .home-hero-carousel-dots button.is-active {
    height: 28px;
  }

  body.home-customer-page .home-customer-hero__media video,
  body.home-customer-page .home-customer-hero__video {
    object-position: 58% 54%;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-customer-page .home-hero-slide,
  body.home-customer-page .home-hero-carousel-dots button,
  body.home-customer-page .home-customer-hero .home-hero-title-char,
  body.home-customer-page .home-customer-hero__copy > p,
  body.home-customer-page .home-customer-hero__actions {
    transition: none;
  }

  body.home-customer-page .home-customer-hero .home-hero-title-char,
  body.home-customer-page .home-customer-hero__copy > p,
  body.home-customer-page .home-customer-hero__actions {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body.home-customer-page .home-customer-hero__media video,
  body.home-customer-page .home-customer-hero__video {
    display: none;
  }

}

/* Homepage first viewport fit: the Hero owns the first screen, then the factory strip enters below it. */
body.home-customer-page .home-customer-hero {
  height: var(--home-hero-screen-h) !important;
  min-height: var(--home-hero-screen-h) !important;
  border-bottom-right-radius: clamp(14px, 1.8vw, 28px);
  border-bottom-left-radius: clamp(14px, 1.8vw, 28px);
}

body.home-customer-page .home-customer-hero h1 {
  overflow: visible;
  padding-bottom: 0.06em;
}

body.home-customer-page .home-factory-strip__grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  body.home-customer-page .home-customer-hero {
    height: var(--home-hero-screen-h) !important;
    min-height: var(--home-hero-screen-h) !important;
  }
}

@media (max-width: 640px) {
  body.home-customer-page .home-customer-hero {
    height: var(--home-hero-screen-h) !important;
    min-height: var(--home-hero-screen-h) !important;
  }
}

/* Transparent homepage header over the Hero, returning to the existing chrome after scroll. */
body.home-customer-page .site-header {
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}

body.home-customer-page .site-header:not(.is-scrolled) {
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.48), rgba(3, 7, 18, 0));
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.home-customer-page .site-header:not(.is-scrolled)::before,
body.home-customer-page .site-header:not(.is-scrolled)::after {
  display: none !important;
}

body.home-customer-page .site-header:not(.is-scrolled) .container {
  color: #fff;
}

body.home-customer-page .site-header .brand {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

body.home-customer-page .site-header .brand-logo {
  transition: opacity 0.24s ease, filter 0.24s ease;
}

body.home-customer-page .site-header:not(.is-scrolled) .brand {
  background-image: url("/assets/images/logo-sanwang-tech-white.svg");
}

body.home-customer-page .site-header:not(.is-scrolled) .brand-logo {
  opacity: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

body.home-customer-page .site-header:not(.is-scrolled) .desktop-nav,
body.home-customer-page .site-header:not(.is-scrolled) .desktop-nav a {
  color: rgba(255, 255, 255, 0.92);
}

body.home-customer-page .site-header:not(.is-scrolled) .desktop-nav a:hover,
body.home-customer-page .site-header:not(.is-scrolled) .desktop-nav a.active {
  color: #fff;
}

body.home-customer-page .site-header:not(.is-scrolled) .desktop-nav a::after {
  background: #fff;
}

body.home-customer-page .site-header:not(.is-scrolled) .lang-current,
body.home-customer-page .site-header:not(.is-scrolled) .nav-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.home-customer-page .site-header:not(.is-scrolled) .lang-current:hover,
body.home-customer-page .site-header:not(.is-scrolled) .language-switcher.is-open .lang-current,
body.home-customer-page .site-header:not(.is-scrolled) .nav-toggle:hover,
body.home-customer-page .site-header:not(.is-scrolled) .nav-toggle:focus-visible {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
}

/* Multilingual radius normalization pass - keeps zh-CN, en, and ja pages on a compact radius scale. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) {
  --sw-radius-none: 0;
  --sw-radius-xs: 4px;
  --sw-radius-sm: 8px;
  --sw-radius-md: 12px;
  --sw-radius-lg: 16px;
  --sw-radius-xl: 24px;
  --sw-radius-pill: 999px;
  --sw-radius: var(--sw-radius-sm);
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-cert-card { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-cert-icon { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-contact .about-client-contact__button { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-contact-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-culture-card { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-data-card { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-head h2::after { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-nav a::before { border-radius: 0 var(--sw-radius-sm) var(--sw-radius-sm) 0 !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-section { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-sidebar { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-tag { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-timeline-item { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-value { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-client-year-rule { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .about-trust-asset { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .accordion-item { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .brand-chip { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .brand-mark { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .btn-sw { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .capability-plate { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .cert-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .cert-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .chain-node { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .chain-node { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .command-submit { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .company-coordinate-panel { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-data-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-form-deck { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-form-deck::before { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-panel { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-panel { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-priority { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .data-list div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .engraved-badge { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-card img { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-detail-grid { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-spec-list div { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-stack-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-visual-frame { border-radius: var(--sw-radius-xl) !important; }
html[lang="pt"] body.factory-page .factory-quality-grid h3 {
  text-wrap: normal !important;
  overflow-wrap: normal !important;
}
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .faq-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .faq-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .faq-index { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .faq-index a { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .faq-page .faq-index a { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .featured-series-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .featured-series-meta div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .field-unit input[type="file"]::file-selector-button { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .footer-cert-grid span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .form-control { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .form-select { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .form-status { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__button { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__kicker { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .hero-arrow { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .home-core-assets-grid { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .image-frame { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .image-frame { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .info-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .info-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .lang-current { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .lang-menu { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .lang-option { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .language-switcher { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .metal-pill-list li { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .metal-product-visual { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .milestone-node { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .mobile-lang .lang-option { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .mobile-lang .lang-option { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .mobile-panel { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .mobile-panel { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .model-chip-list li { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .nav-toggle { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .partner-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .partner-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .partner-filter button { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .partner-logo-card img { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .partners-marquee-group > span { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-progress-fill { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-progress-panel { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-progress-track::before { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-rivet-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-step { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-step { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-step img { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .product-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .product-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .product-card img { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .product-nav a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .products-hero-proof { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .push-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .push-stage { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-card-badge { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-card-badge { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-card-cta { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-empty { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-filter-panel { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-filter-row button { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-filter-row button { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-hero-panel div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-lightbox-close { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-lightbox-frame img { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-materials { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-note-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-search input { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-spec-tag { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-zoom-cue { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .brand-mark { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .container { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .container { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .desktop-nav a::after { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .lang-current { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .lang-menu { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .lang-option { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .lang-option { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .language-switcher { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .nav-toggle { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .nav-toggle { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .stack-glass { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .step-number { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .tabs-sw .nav-link { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .tag-list li { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .timeline-item { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .timeline-item { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .why-proof-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-brand-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-case-feature { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-case-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-category-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-category-top i { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-chip-list span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-flow-grid article > span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-notice { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-precision-banner { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-precision-list article { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--alternative { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--inhouse { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--oem { border-radius: var(--sw-radius-md) 0 0 var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-tier-card--oem { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-procurement-sourcing .sourcing-tier-grid { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-product-capability .capability-plate { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .iso-modal-close { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .iso-modal-content { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .iso-modal-content { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .site-header .btn-primary-sw { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision #isoModalImage { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .command-submit { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .company-coordinate-panel { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-data-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-deck { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-stack .contact-promise-rail div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-priority { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-proof-grid div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit input { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit input[type="file"]::file-selector-button { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit textarea { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.faq-v2-precision .faq-answer-inner { border-radius: 0 var(--sw-radius-sm) var(--sw-radius-sm) 0 !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.faq-v2-precision .faq-command { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.faq-v2-precision .faq-entry { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.faq-v2-precision .faq-page .faq-index a { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .apple-step-card { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .apple-sticky-visual { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-industry-card { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-product-card figure { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-client-grid div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .command-submit { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit input { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit textarea { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-customer-kicker { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-customer-logo { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-customer-stat-grid article { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-customer-trust strong { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-factory-strip__grid { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-hero-button { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-hero-carousel-controls { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-hero-carousel-dots button { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-industries-section .home-industry-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-industry-grid-v2 article { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-industry-grid-v2 span { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid small { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card small { border-radius: var(--sw-radius-xs) !important; }

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card small {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding-block: 0 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html[lang="pt"] body.home-customer-page .home-product-card:nth-child(n + 3) small {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 42px !important;
  padding: 6px 8px !important;
  line-height: 1.22 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

html[lang="de"] body.home-customer-page .home-product-card:nth-child(n + 3) small {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 42px !important;
  padding: 6px 8px !important;
  line-height: 1.22 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: auto;
}

html[lang="ru"] body.home-customer-page .home-product-card:nth-child(n + 3) small {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 42px !important;
  padding: 6px 8px !important;
  line-height: 1.22 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: auto;
}

html[lang="de"] body.home-customer-page .home-product-card h3 {
  overflow-wrap: anywhere !important;
  hyphens: auto;
}

/* Card hover sync: product, process, industry and factory cards only scale inner media. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page {
  --home-card-media-hover-duration: 700ms;
  --home-card-media-hover-scale: 1.05;
  --home-card-media-hover-ease: ease;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:focus-visible {
  transform: none !important;
  border-color: #dfe8f0 !important;
  box-shadow: 0 18px 42px rgba(15, 42, 63, 0.08) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-industry-card img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-card__media {
  transform: scale(1) !important;
  transform-origin: center !important;
  transition: transform var(--home-card-media-hover-duration) var(--home-card-media-hover-ease) !important;
  will-change: transform;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-visual-frame img {
  transform-origin: center !important;
  transition: transform var(--home-card-media-hover-duration) var(--home-card-media-hover-ease) !important;
  will-change: transform;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:hover img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:focus-visible img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-industry-card:hover img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-industry-card:focus-within img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article:hover .home-process-card__media,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article:focus-within .home-process-card__media,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-visual-frame:hover img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-visual-frame:focus-within img {
  transform: scale(var(--home-card-media-hover-scale)) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-visual-frame:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-visual-frame:focus-within,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-visual-frame.is-hovered {
  transform: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article {
  background: #07182b !important;
  filter: none !important;
  box-shadow: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article:focus-within {
  filter: none !important;
  box-shadow: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article::before {
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(7, 24, 43, 0.88), rgba(7, 24, 43, 0.58)) !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article::after {
  z-index: 3 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-grid article > :not(.home-process-card__media) {
  position: relative !important;
  z-index: 2 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-card__media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-card--forging .home-process-card__media {
  background-image: url("/assets/images/sanwang/forging-sparks-bg.png") !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-card--cnc .home-process-card__media {
  background-image: url("/assets/images/sanwang/cnc-machining-bg.jpg") !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-card--surface .home-process-card__media {
  background-image: url("/assets/images/sanwang/surface-treatment-bg.jpg") !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-card--quality .home-process-card__media {
  background-image: url("/assets/images/sanwang/quality-shipping-bg.jpg") !important;
}

@media (prefers-reduced-motion: reduce) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card img,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-industry-card img,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-process-card__media,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-visual-frame img {
    transition: none !important;
  }
}
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-proof-panel { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-why-list i { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-history-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-history-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-history-card h3 em { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-history-node { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-tab-adv-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-tab-lead { border-radius: 0 var(--sw-radius-md) var(--sw-radius-md) 0 !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-tab-pillars article { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-tab-pillars article > span { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about .about-tab-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .artisan-about #history { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .brand-chip { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .btn-sw { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .contact-submit { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-industry-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-industry-note { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-industry-tags span { border-radius: var(--sw-radius-sm) !important; }
html[lang="es"] body.home-v2-premium .home-industries-section .home-industry-card h3,
html[lang="es"] body.home-v2-premium .home-industries-section .home-industry-tags span {
  overflow-wrap: anywhere !important;
}

html[lang="es"] body.home-v2-premium .home-industries-section .home-industry-card p {
  line-height: 1.58 !important;
}

html[lang="es"] body.home-v2-premium .home-industries-section .home-industry-tags {
  gap: 6px !important;
  margin-top: 16px !important;
}

html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-card h3,
html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-tags span {
  overflow-wrap: anywhere !important;
}

html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-card p {
  line-height: 1.58 !important;
}

html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-tags {
  gap: 6px !important;
  margin-top: 16px !important;
}

html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-card:first-child .home-industry-card__content {
  padding: 24px !important;
}

html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-card:first-child h3 {
  font-size: clamp(1.25rem, 1.55vw, 1.55rem) !important;
  line-height: 1.14 !important;
}

html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-card:first-child p {
  font-size: 0.86rem !important;
  line-height: 1.48 !important;
}

html[lang="pt"] body.home-v2-premium .home-industries-section .home-industry-card:first-child .home-industry-tags span {
  min-height: 24px !important;
  padding: 0 8px !important;
  font-size: 0.7rem !important;
}

html[lang="de"] body.home-v2-premium .home-industries-section .home-industry-card h3,
html[lang="de"] body.home-v2-premium .home-industries-section .home-industry-tags span {
  overflow-wrap: anywhere !important;
  hyphens: auto;
}

html[lang="de"] body.home-v2-premium .home-industries-section .home-industry-card p {
  line-height: 1.58 !important;
}

html[lang="de"] body.home-v2-premium .home-industries-section .home-industry-tags {
  gap: 6px !important;
  margin-top: 16px !important;
}

html[lang="de"] body.home-v2-premium .home-industry-head p {
  max-width: 760px !important;
  white-space: normal !important;
  text-wrap: pretty !important;
  overflow-wrap: anywhere !important;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-card h3,
html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-tags span {
  overflow-wrap: anywhere !important;
  hyphens: auto;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-card p {
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-tags {
  gap: 6px !important;
  margin-top: 16px !important;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-tags span {
  min-height: 24px !important;
  padding: 0 8px !important;
  font-size: 0.7rem !important;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-card:first-child .home-industry-card__content {
  padding: 24px !important;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-card:first-child h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem) !important;
  line-height: 1.14 !important;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-card:first-child p {
  font-size: 0.84rem !important;
  line-height: 1.45 !important;
}

html[lang="ru"] body.home-v2-premium .home-industries-section .home-industry-card:first-child .home-industry-tags span {
  min-height: 23px !important;
  padding: 0 7px !important;
  font-size: 0.68rem !important;
}

html[lang="ru"] body.home-v2-premium .home-industry-head p {
  max-width: 760px !important;
  white-space: normal !important;
  text-wrap: pretty !important;
  overflow-wrap: anywhere !important;
}
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .info-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .metric-grid { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .parallax-product-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .partner-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .process-step { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .process-step.push-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .product-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .push-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .push-card { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .site-header .btn-primary-sw { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .stack-stats .metric { border-radius: var(--sw-radius-xs) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .stack-stats-grid { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.partners-v2-precision .partners-crisis + .cta .btn-outline-sw { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.partners-v2-precision .partners-network .partner-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.partners-v2-precision .partners-network .partner-card-logo { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-search { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-catalog-search { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card figure em { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card figure span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card li { border-radius: var(--sw-radius-sm) !important; }
html[lang="pt"] body.products-category-page .sw-category-card-footer {
  gap: 10px !important;
}

html[lang="pt"] body.products-category-page .sw-category-card-footer span {
  min-width: 0 !important;
}

html[lang="pt"] body.products-category-page .sw-category-card-footer strong {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  gap: 5px !important;
}

html[lang="de"] body.products-category-page .sw-category-card-footer {
  gap: 10px !important;
}

html[lang="de"] body.products-category-page .sw-category-card-footer span {
  min-width: 0 !important;
}

html[lang="de"] body.products-category-page .sw-category-card-footer strong {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  gap: 5px !important;
}

html[lang="ru"] body.products-category-page .sw-category-card-footer {
  gap: 10px !important;
}

html[lang="ru"] body.products-category-page .sw-category-card-footer span {
  min-width: 0 !important;
}

html[lang="ru"] body.products-category-page .sw-category-card-footer strong {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  gap: 5px !important;
}

html[lang="ru"] body.factory-page .factory-spec-list div {
  grid-template-columns: minmax(86px, 0.34fr) minmax(0, 0.66fr) !important;
  gap: 14px !important;
}

html[lang="ru"] body.factory-page .factory-spec-list dt,
html[lang="ru"] body.factory-page .factory-spec-list dd {
  overflow-wrap: anywhere !important;
}

html[lang="ru"] body.factory-page .factory-spec-list dd {
  text-align: right !important;
}

html[lang="ru"] body.factory-page .factory-hero__proof div {
  display: grid !important;
  min-width: 0 !important;
  grid-template-rows: auto minmax(2.5em, auto) !important;
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
}

html[lang="ru"] body.factory-page .factory-hero__proof strong {
  display: flex !important;
  width: 100% !important;
  align-items: baseline !important;
  justify-content: center !important;
  white-space: nowrap !important;
  text-align: center !important;
}

html[lang="ru"] body.factory-page .factory-hero__proof strong span {
  display: inline-flex !important;
  align-items: baseline !important;
  margin-left: 4px !important;
}

html[lang="ru"] body.factory-page .factory-hero__proof p {
  display: flex !important;
  width: 100% !important;
  min-height: 2.5em !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 8px !important;
  text-align: center !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance !important;
}

@media (max-width: 767px) {
  html[lang="ru"] body.factory-page .factory-spec-list div {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[lang="ru"] body.factory-page .factory-spec-list dd {
    text-align: left !important;
  }
}
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .badge-pres { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .badge-std { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .brand-t { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .fb { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .leg-dot { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .legend-bar { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-btn { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-tbl-toggle::before { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .sp { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .struct-pill { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .tbl-wrap { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog__head { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog__stats div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-intro-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-intro-card dl div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-section-title::before { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-sidebar { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sidebar-inquiry a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-intro img { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-product-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-product-card > span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-product-card li { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-section { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cat-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cat-card__media b { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cat-card__media em { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cat-card__media span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-category-title > span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-chip-list span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cta-strip { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cta-strip a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-intro-actions a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-intro-actions span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-intro-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-intro-card__media { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-feature { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-grid { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-list-item > span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-case-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid article { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-flow-grid article > span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-notice { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--alternative { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--inhouse { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-card--oem { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main .procurement-sourcing .sourcing-tier-grid { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main > .digital-spec-showroom { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main > .featured-series-rail { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main > .featured-series-rail .featured-series-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main > .global-prefooter-cta { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main > .procurement-sourcing { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-main > .product-after { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-product-row { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-product-row__media { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-sidebar { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-sidebar__inquiry { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-sidebar__inquiry a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-sidebar__link { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-sidebar__sub a { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-sidebar__sub a span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-spec-grid span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-sub-section { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-tag-list span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-category-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-filter-placeholder div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-level-panel { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-level-panel__head img { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-level-sidebar { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-level-sidebar a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-list-placeholder article { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-list-placeholder article > span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-panel-status { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-range-node { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-range-tree__root { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-subcategory-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-subcategory-card i { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-subcategory-card span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-tree-search { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-tree-page .product-tree-search button { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .adapter-jp-note i { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .adapter-standard-list span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .digital-spec-nav { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .digital-spec-nav a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .fluid-chip-list li { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .fluid-cta { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .fluid-data-grid div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .fluid-module { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .fluid-module { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .fluid-module-visual { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .hose-valve-standard-list span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-case-feature { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-category-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-tier-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-tier-card--alternative { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-tier-card--inhouse { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-tier-card--oem { border-radius: var(--sw-radius-md) 0 0 var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-tier-card--oem { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .procurement-sourcing .sourcing-tier-grid { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-bento-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-bento-icon { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-bento-specs span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-pill-list li { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-product-visual { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-horizontal[data-product-horizontal] .metal-product-visual { border-radius: var(--sw-radius-lg) var(--sw-radius-lg) 0 0 !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-horizontal[data-product-horizontal] .product-param-grid span { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-hub-link { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-hub-nav a { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-hub-nav-inner { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-hub-nav-inner { border-radius: var(--sw-radius-md) 0 0 var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-hub-proof div { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .site-header .btn-primary-sw { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-brand-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-case-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-case-tags span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-category-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-category-top i { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-chip-list span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-flow-grid article { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-flow-grid article > span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-notice { border-radius: 0 var(--sw-radius-md) var(--sw-radius-md) 0 !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-precision-banner { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-precision-list article { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-tier-card { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-application-grid article { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-application-grid i { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-card-note { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-card-top i { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-drawer-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-kv-grid div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-overview-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-section-note { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-standard-list li { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-step-list li { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-stream-head > span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-subsection-title span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-tag-list li { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-wide-kv div { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta__button { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta__icon { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta__kicker { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta--inline { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta--inline .sw-cta__button { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta::after { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-spec-card__tags span { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-spec-card--compact { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-spec-card--compact .sw-spec-card__catalog { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-spec-card--compact .sw-spec-card__media { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .delivery-spec-grid i { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .manufacturing-capability-stats div { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .manufacturing-info-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .manufacturing-info-card li { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .oring-showdown article { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .oring-showdown b { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-application-grid span { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-card-shell { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-drawer-card { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-hose-brand-strip { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-kv-grid { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-master-switch { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-master-switch { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-master-switch button { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-pill-row button { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-standard-list li { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-step-list { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-stream-head { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-subsection-title { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-tab-sticky { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-tab-sticky { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .spec-wide-kv { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-mobile-jump { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-mobile-jump select { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-quick-toc { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-quick-toc__list a { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta { border-radius: var(--sw-radius-lg) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta__button { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta__kicker { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta::after { border-radius: var(--sw-radius-xl) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-data-table__link { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-data-table-panel { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-data-table-wrap { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card { border-radius: var(--sw-radius-md) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__badge { border-radius: var(--sw-radius-pill) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__cta { border-radius: var(--sw-radius-sm) !important; }
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__tags span { border-radius: var(--sw-radius-sm) !important; }
/* End multilingual radius normalization pass */

/* Multilingual radius semantic corrections - keep roles consistent after normalization. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .container,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .language-switcher,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .lang-current,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .lang-dropdown,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .home-hero-button,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__button,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .command-submit,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-priority,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-card-badge,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .shimizu-filter-row button,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta__kicker,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-standard-list li,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-tag-list li,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .spec-subsection-title span,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta__kicker,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__badge {
  border-radius: var(--sw-radius-pill) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .product-card,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .partner-card,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .faq-card,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .process-step,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .contact-panel,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .image-frame,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .info-card,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .chain-node,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .cert-card,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .timeline-item {
  border-radius: var(--sw-radius-sm) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .home-factory-strip__grid,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .factory-detail-grid,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .product-horizontal[data-product-horizontal] .product-panel,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-tier-grid,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sourcing-case-card,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .delivery-spec-grid article,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision.products1-spec-tabs .manufacturing-capability-banner,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta {
  border-radius: var(--sw-radius-lg) !important;
}

/* Inquiry typography balance pass - restore CTA weight after global heading tightening. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-grid {
  grid-template-columns: minmax(360px, 0.92fr) minmax(440px, 0.78fr) !important;
  gap: clamp(46px, 6vw, 86px) !important;
  align-items: center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy {
  max-width: 720px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy > span {
  display: inline-flex !important;
  width: fit-content !important;
  margin-bottom: 14px !important;
  font-size: clamp(0.78rem, 0.86vw, 0.9rem) !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-inquiry-copy h2 {
  max-width: 12.5em !important;
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-size: clamp(2.35rem, 4.1vw, 3.35rem) !important;
  font-weight: 760 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy p {
  max-width: 58ch !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: clamp(1rem, 1.08vw, 1.12rem) !important;
  font-weight: 450 !important;
  line-height: 1.72 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy ul {
  gap: 13px !important;
  margin-top: 30px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy li {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(0.94rem, 0.98vw, 1rem) !important;
  font-weight: 620 !important;
  line-height: 1.52 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck {
  max-width: 560px !important;
  justify-self: end !important;
  padding: clamp(30px, 3.1vw, 42px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-contact-form-deck .contact-form-head h2 {
  color: #172131 !important;
  font-size: clamp(1.48rem, 1.75vw, 1.86rem) !important;
  font-weight: 740 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .contact-form-head p {
  max-width: 48ch !important;
  color: #536477 !important;
  font-size: clamp(0.92rem, 0.96vw, 0.98rem) !important;
  line-height: 1.58 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .command-form-grid {
  gap: 14px 16px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit {
  min-height: 64px !important;
  padding-top: 8px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit input,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit textarea {
  min-height: 48px !important;
  font-size: 0.95rem !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit textarea {
  min-height: 116px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit label {
  font-size: 0.86rem !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .command-submit {
  min-height: 50px !important;
  margin-top: 14px !important;
  font-size: 0.94rem !important;
  font-weight: 720 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-head h2 {
  font-size: clamp(1.42rem, 1.55vw, 1.72rem) !important;
  font-weight: 740 !important;
  line-height: 1.16 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-head p {
  font-size: clamp(0.9rem, 0.94vw, 0.98rem) !important;
  line-height: 1.58 !important;
}

@media (max-width: 1120px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: clamp(30px, 5vw, 44px) !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck {
    max-width: 720px !important;
    justify-self: start !important;
  }
}

@media (max-width: 640px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-inquiry-copy h2 {
    max-width: 100% !important;
    font-size: clamp(1.86rem, 8vw, 2.36rem) !important;
    line-height: 1.12 !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy p {
    font-size: clamp(0.94rem, 4vw, 1rem) !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck {
    padding: 24px 20px !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-contact-form-deck .contact-form-head h2,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-head h2 {
    font-size: clamp(1.28rem, 5.8vw, 1.52rem) !important;
  }
}

/* Sitewide CTA typography compact pass - align CTA hierarchy with tightened page titles. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) {
  --sw-cta-heading-size: clamp(1.42rem, 2.05vw, 2.08rem);
  --sw-cta-heading-large-size: clamp(1.56rem, 2.3vw, 2.28rem);
  --sw-cta-heading-small-size: clamp(1.22rem, 1.5vw, 1.48rem);
  --sw-cta-body-size: clamp(0.9rem, 0.94vw, 0.98rem);
  --sw-cta-label-size: clamp(0.74rem, 0.78vw, 0.82rem);
  --sw-cta-button-size: clamp(0.86rem, 0.9vw, 0.94rem);
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta {
  padding: clamp(42px, 5.2vw, 68px) 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__inner {
  gap: clamp(22px, 4vw, 48px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__copy {
  max-width: 680px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__kicker,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .sw-cta__kicker {
  margin-bottom: 12px !important;
  padding: 6px 10px !important;
  font-size: var(--sw-cta-label-size) !important;
  font-weight: 650 !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta h2 {
  max-width: 720px !important;
  font-size: var(--sw-cta-heading-large-size) !important;
  font-weight: 740 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta p {
  max-width: 620px !important;
  margin-top: 12px !important;
  font-size: var(--sw-cta-body-size) !important;
  font-weight: 430 !important;
  line-height: 1.66 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__button,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .sw-cta__button,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .sw-product-cta a,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .classic-cta-strip a,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .cta .btn-outline-sw {
  min-height: 46px !important;
  padding: 0 20px !important;
  font-size: var(--sw-cta-button-size) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.factory-page .factory-cta h2 {
  max-width: 760px !important;
  font-size: var(--sw-cta-heading-size) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta {
  gap: clamp(18px, 3vw, 34px) !important;
  padding: clamp(24px, 3.4vw, 40px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta h2,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta__title,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta h2,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta__title {
  max-width: 680px !important;
  font-size: var(--sw-cta-heading-size) !important;
  font-weight: 740 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-v2-precision .sw-cta p,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta p {
  max-width: 58ch !important;
  margin-top: 10px !important;
  font-size: var(--sw-cta-body-size) !important;
  font-weight: 430 !important;
  line-height: 1.62 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cta-strip {
  padding: clamp(22px, 3vw, 34px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta h3,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cta-strip h3,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .cta h2,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .cta .section-title {
  font-size: var(--sw-cta-heading-small-size) !important;
  font-weight: 720 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta p,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-new-classic .classic-cta-strip p,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .cta p {
  font-size: var(--sw-cta-body-size) !important;
  font-weight: 420 !important;
  line-height: 1.62 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-inquiry-copy h2,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-inquiry-copy h2 {
  max-width: 14em !important;
  font-size: var(--sw-cta-heading-large-size) !important;
  font-weight: 740 !important;
  line-height: 1.14 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy p,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-inquiry-copy p {
  font-size: var(--sw-cta-body-size) !important;
  line-height: 1.64 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-inquiry-copy li,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-inquiry-copy li {
  font-size: clamp(0.88rem, 0.94vw, 0.96rem) !important;
  font-weight: 560 !important;
  line-height: 1.48 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-deck {
  padding: clamp(20px, 2.35vw, 30px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-v2-premium .home-contact-form-deck .contact-form-head h2,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck .contact-form-head h2,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-head h2 {
  font-size: clamp(1.3rem, 1.48vw, 1.58rem) !important;
  font-weight: 720 !important;
  line-height: 1.16 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .contact-form-head p,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck .contact-form-head p,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-head p {
  font-size: clamp(0.88rem, 0.92vw, 0.95rem) !important;
  line-height: 1.56 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck .field-unit,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit {
  min-height: 58px !important;
  padding-top: 8px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit input,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit textarea,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck .field-unit input,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck .field-unit textarea,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit input,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit textarea {
  min-height: 46px !important;
  font-size: 0.92rem !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit textarea,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck .field-unit textarea,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit textarea {
  min-height: 104px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .command-submit,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-apple-story .home-contact-form-deck .command-submit,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .command-submit {
  min-height: 46px !important;
  font-size: var(--sw-cta-button-size) !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) {
    --sw-cta-heading-size: clamp(1.28rem, 5.4vw, 1.66rem);
    --sw-cta-heading-large-size: clamp(1.38rem, 6vw, 1.78rem);
    --sw-cta-heading-small-size: clamp(1.12rem, 4.8vw, 1.36rem);
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta {
    padding: 38px 0 42px !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .global-prefooter-cta__button,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .sw-cta__button,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .sw-product-cta a,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .classic-cta-strip a {
    width: 100% !important;
    max-width: 260px !important;
  }
}

/* Shimizu footer CTA alignment - match the sitewide prefooter CTA rhythm. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta-section {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(42px, 5.2vw, 68px) 0 !important;
  color: #ffffff !important;
  background: #0f172a !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta-section::before {
  position: absolute !important;
  inset: -45% -10% auto auto !important;
  width: min(680px, 60vw) !important;
  aspect-ratio: 1 !important;
  pointer-events: none !important;
  content: "" !important;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32), rgba(37, 99, 235, 0) 66%) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta-section::after {
  position: absolute !important;
  inset: auto 0 0 !important;
  height: 1px !important;
  pointer-events: none !important;
  content: "" !important;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.38), transparent) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta-section > .container {
  position: relative !important;
  z-index: 1 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta.sw-cta--sr {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(22px, 4vw, 48px) !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #ffffff !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta.sw-cta--sr::before,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta.sw-cta--sr::after {
  content: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta.sw-cta--sr .sw-cta__copy {
  max-width: 680px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta.sw-cta--sr .sw-cta__button {
  border: 1px solid rgba(147, 197, 253, 0.32) !important;
  border-radius: var(--sw-radius-pill) !important;
  background: #2563eb !important;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28) !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta.sw-cta--sr {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-cta.sw-cta--sr .sw-cta__button {
    width: 100% !important;
    max-width: 260px !important;
  }
}

/* Product page CTA alignment - bring product inquiry blocks into the sitewide CTA family. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta {
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.34), transparent 34%),
    linear-gradient(135deg, #020617 0%, #0f172a 58%, #0b2c67 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.24) !important;
  border-radius: var(--sw-radius-lg) !important;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta::before {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  content: "" !important;
  opacity: 0.22 !important;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.14) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta > * {
  position: relative !important;
  z-index: 1 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(22px, 4vw, 48px) !important;
  margin-top: clamp(34px, 5vw, 56px) !important;
  padding: clamp(32px, 4.8vw, 52px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta h3 {
  max-width: 680px !important;
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: var(--sw-cta-heading-size) !important;
  font-weight: 740 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta p {
  max-width: 62ch !important;
  margin: 0 !important;
  color: rgba(226, 232, 240, 0.8) !important;
  font-size: var(--sw-cta-body-size) !important;
  font-weight: 430 !important;
  line-height: 1.66 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta a {
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 1px solid rgba(147, 197, 253, 0.32) !important;
  border-radius: var(--sw-radius-pill) !important;
  color: #ffffff !important;
  background: #2563eb !important;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28) !important;
  font-size: var(--sw-cta-button-size) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta a:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta a:focus-visible {
  color: #ffffff !important;
  background: #1d4ed8 !important;
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.38) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 991px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta {
    align-items: stretch !important;
    padding: 24px 20px !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-cta a {
    width: 100% !important;
    max-width: 260px !important;
  }
}

/* Home CTA form alignment pass - stack heading copy and tighten form rhythm. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .contact-form-head {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 7px !important;
  margin-bottom: 16px !important;
  padding-bottom: 14px !important;
  text-align: left !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .contact-form-head h2,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .contact-form-head p {
  max-width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .contact-form-head p {
  line-height: 1.48 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .command-form-grid {
  gap: 8px 12px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit {
  min-height: 52px !important;
  padding-top: 6px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit input,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit textarea {
  min-height: 42px !important;
  padding: 14px 12px 7px !important;
  line-height: 1.36 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit textarea {
  min-height: 92px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit label {
  top: 20px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit:focus-within label,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .field-unit.is-filled label {
  top: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .command-submit {
  margin-top: 10px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-contact-form-deck .form-status {
  margin-top: 10px !important;
}

/* Fluid connectors bottom CTA - full-width band, not a card. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index.sw-product-longform {
  padding-bottom: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta {
  position: relative !important;
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  width: 100vw !important;
  box-sizing: border-box !important;
  gap: clamp(22px, 4vw, 56px) !important;
  margin: clamp(38px, 5vw, 60px) calc(50% - 50vw) 0 !important;
  padding: clamp(44px, 5.2vw, 68px) max(24px, calc((100vw - 1180px) / 2 + 24px)) !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 82% 15%, rgba(37, 99, 235, 0.32), transparent 34%),
    linear-gradient(135deg, #020617 0%, #0f172a 58%, #0b2c67 100%) !important;
  border: 0 !important;
  border-top: 1px solid rgba(148, 163, 184, 0.18) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta::before {
  position: absolute !important;
  inset: auto 0 0 !important;
  width: auto !important;
  height: 1px !important;
  pointer-events: none !important;
  content: "" !important;
  opacity: 1 !important;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.38), transparent) !important;
  background-size: auto !important;
  mask-image: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta::after {
  position: absolute !important;
  inset: -45% -10% auto auto !important;
  width: min(680px, 60vw) !important;
  aspect-ratio: 1 !important;
  pointer-events: none !important;
  content: "" !important;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.26), rgba(37, 99, 235, 0) 66%) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta > * {
  position: relative !important;
  z-index: 1 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta > div {
  max-width: 720px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta h3 {
  max-width: 680px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: var(--sw-cta-heading-size) !important;
  font-weight: 740 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta p {
  max-width: 58ch !important;
  margin: 10px 0 0 !important;
  color: rgba(226, 232, 240, 0.8) !important;
  font-size: var(--sw-cta-body-size) !important;
  font-weight: 430 !important;
  line-height: 1.62 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta a {
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 1px solid rgba(147, 197, 253, 0.32) !important;
  border-radius: var(--sw-radius-pill) !important;
  color: #ffffff !important;
  background: #2563eb !important;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28) !important;
  font-size: var(--sw-cta-button-size) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

@media (max-width: 991px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: clamp(34px, 8vw, 48px) clamp(22px, 6vw, 34px) !important;
  }
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-index__layout > .sw-product-cta a {
    width: 100% !important;
    max-width: 260px !important;
  }
}

/* Fluid connectors hose cards - two-column desktop layout with denser product reading rhythm. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 24px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc {
  background: #ffffff !important;
  border-color: #d8e5f0 !important;
  box-shadow: 0 16px 40px rgba(15, 35, 74, 0.065) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc:hover {
  border-color: #2f80ed !important;
  box-shadow: 0 22px 52px rgba(15, 50, 87, 0.13) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-stripe {
  height: 3px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-visual {
  min-height: 128px !important;
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.96), rgba(235, 242, 250, 0.9)),
    #f8fbff !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-visual svg {
  max-height: 142px !important;
  object-fit: cover !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .badge-std,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .badge-pres {
  top: 12px !important;
  min-height: 24px !important;
  padding: 4px 9px !important;
  font-size: 0.69rem !important;
  letter-spacing: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .badge-std {
  left: 12px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .badge-pres {
  right: 12px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-body {
  padding: clamp(16px, 1.8vw, 20px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-no {
  margin-bottom: 5px !important;
  color: #5b6f84 !important;
  font-size: 0.72rem !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-name {
  margin-bottom: 7px !important;
  color: #0f234a !important;
  font-size: clamp(1rem, 1.05vw, 1.08rem) !important;
  font-weight: 760 !important;
  line-height: 1.28 !important;
  text-wrap: pretty !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-app {
  margin-bottom: 10px !important;
  color: #0f5f9f !important;
  font-size: 0.8rem !important;
  font-weight: 720 !important;
  line-height: 1.48 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-desc {
  margin-bottom: 14px !important;
  color: #465c73 !important;
  font-size: 0.86rem !important;
  font-weight: 440 !important;
  line-height: 1.62 !important;
  text-wrap: pretty !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-struct,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-brands {
  gap: 6px !important;
  margin-bottom: 14px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .struct-pill,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .brand-t {
  min-height: 25px !important;
  padding: 4px 8px !important;
  font-size: 0.7rem !important;
  font-weight: 720 !important;
  letter-spacing: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-specs {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .sp {
  display: grid !important;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr) !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 8px 10px !important;
  background: #f8fbff !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .sp .sk {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .sp .sv {
  margin-top: 0 !important;
  color: #0f234a !important;
  font-size: 0.78rem !important;
  font-weight: 780 !important;
  line-height: 1.25 !important;
  text-align: right !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-tbl-toggle {
  margin-bottom: 12px !important;
  font-size: 0.8rem !important;
  font-weight: 760 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-btn {
  min-height: 42px !important;
  padding: 0 16px !important;
  font-size: 0.84rem !important;
  font-weight: 760 !important;
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .catalog-grid,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .pc-specs {
    grid-template-columns: 1fr !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-hose-catalog .sp {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }
}

/* Shimizu SR catalog optimization - two-column cards and collapsible category groups. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog {
  --sw-compact-card-pad: clamp(8px, 1vw, 12px);
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-head {
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-actions {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  min-width: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-actions small {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 28px !important;
  padding: 5px 10px !important;
  color: #475569 !important;
  background: #f8fbff !important;
  border: 1px solid #dbeafe !important;
  border-radius: var(--sw-radius-pill) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-toggle {
  display: inline-flex !important;
  width: 32px !important;
  height: 32px !important;
  flex: 0 0 32px !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1d4ed8 !important;
  background: #eff6ff !important;
  border: 1px solid #bfdbfe !important;
  border-radius: var(--sw-radius-pill) !important;
  cursor: pointer !important;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-toggle i {
  font-size: 1.12rem !important;
  line-height: 1 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-toggle:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-toggle:focus-visible {
  color: #ffffff !important;
  background: #2563eb !important;
  border-color: #2563eb !important;
  transform: translateY(-1px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category.is-collapsed .shimizu-category-head {
  margin-bottom: 0 !important;
  border-bottom-style: dashed !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category.is-collapsed .shimizu-category-actions small {
  color: #64748b !important;
  background: #ffffff !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.2vw, 24px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  background: #ffffff !important;
  border-color: #d8e5f0 !important;
  box-shadow: 0 16px 42px rgba(15, 35, 74, 0.065) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card:focus-within {
  border-color: #93c5fd !important;
  box-shadow: 0 22px 54px rgba(30, 64, 175, 0.12) !important;
  transform: translateY(-3px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__media {
  width: 100% !important;
  min-height: 146px !important;
  padding: 8px !important;
  border-width: 0 0 1px !important;
  border-radius: var(--sw-radius-sm) !important;
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.96), rgba(235, 242, 250, 0.92)),
    #f8fbff !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__media img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card.has-product-crop .sw-spec-card__media img {
  max-height: 128px !important;
  padding: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-zoom-cue {
  right: 10px !important;
  top: 10px !important;
  min-height: 28px !important;
  padding: 6px 8px !important;
  font-size: 0.7rem !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__body {
  gap: 6px !important;
  padding: 10px 12px 12px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__model {
  margin-bottom: 3px !important;
  color: #2563eb !important;
  font-size: 0.76rem !important;
  font-weight: 760 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card h3 {
  font-size: clamp(1rem, 1.04vw, 1.08rem) !important;
  font-weight: 740 !important;
  line-height: 1.28 !important;
  text-wrap: pretty !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__details {
  gap: 5px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__en,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__ja {
  color: #52657d !important;
  font-size: 0.82rem !important;
  line-height: 1.34 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__tags {
  gap: 5px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__tags span {
  padding: 4px 6px !important;
  font-size: 0.69rem !important;
  font-weight: 720 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__facts {
  gap: 4px !important;
  margin-top: 0 !important;
  color: #465c73 !important;
  font-size: 0.78rem !important;
  font-weight: 440 !important;
  line-height: 1.34 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__cta {
  min-height: 36px !important;
  padding: 0 12px !important;
  font-size: 0.82rem !important;
  font-weight: 760 !important;
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog {
    --sw-compact-card-pad: 8px;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-grid {
    grid-template-columns: 1fr !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .sw-spec-card__media {
    min-height: 126px !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-head {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-category-actions {
    grid-column: 1 / -1 !important;
    justify-content: space-between !important;
  }
}

/* Header action sync - keeps language switcher and inquiry CTA consistent across zh-CN, en, and ja pages. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .header-actions {
  gap: 12px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .language-switcher {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .lang-current {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-width: 62px !important;
  min-height: 42px !important;
  padding: 0 12px 0 14px !important;
  color: var(--chrome-ink) !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  background: #ffffff !important;
  border: 1px solid var(--chrome-line) !important;
  border-radius: var(--sw-radius-sm) !important;
  box-shadow: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .lang-current i {
  color: currentColor !important;
  font-size: 1.05rem !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .lang-current:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .language-switcher.is-open .lang-current {
  color: var(--chrome-navy) !important;
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  padding: 11px 18px !important;
  color: #ffffff !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  background: var(--chrome-button) !important;
  border: 1px solid var(--chrome-button) !important;
  border-radius: var(--sw-radius-sm) !important;
  box-shadow: 0 10px 22px rgba(48, 152, 216, 0.2) !important;
  overflow: hidden !important;
  transform: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw::before,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw::after,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .header-cta-fill {
  display: none !important;
  content: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw i {
  color: currentColor !important;
  font-size: 1rem !important;
  transform: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) .site-header .btn-primary-sw:focus-visible {
  color: #ffffff !important;
  background: var(--chrome-button-hover) !important;
  border-color: var(--chrome-button-hover) !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24) !important;
  transform: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .site-header:not(.is-scrolled) .lang-current {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .site-header:not(.is-scrolled) .lang-current:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .site-header:not(.is-scrolled) .language-switcher.is-open .lang-current {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .site-header:not(.is-scrolled) .btn-primary-sw {
  color: #ffffff !important;
  background: rgba(48, 152, 216, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .site-header:not(.is-scrolled) .btn-primary-sw:hover,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .site-header:not(.is-scrolled) .btn-primary-sw:focus-visible {
  background: rgba(37, 99, 235, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
}

/* Detail polish - product catalog card actions and Japanese SR quick index. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card__copy {
  justify-content: flex-start !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card__copy > span {
  align-self: flex-end !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  margin-top: auto !important;
  padding-top: 18px !important;
  text-align: right !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card__copy > span::before {
  display: none !important;
  content: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-quick-toc__list a {
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-quick-toc__list a span {
  grid-row: auto !important;
  align-self: center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-quick-toc__list a strong {
  align-self: center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.shimizu-v2-catalog .shimizu-quick-toc__list a small {
  display: none !important;
}

/* Product catalog media sync - bring product index cards closer to the approved homepage treatment. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card {
  grid-template-columns: minmax(0, 1fr) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card figure {
  aspect-ratio: 1.72 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e5edf5 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card img {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:nth-child(1) img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:nth-child(2) img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:nth-child(3) img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:nth-child(4) img {
  object-fit: contain !important;
  padding: clamp(12px, 2vw, 22px) !important;
}

/* Contact page column alignment pass: match copy and form edges on desktop. */
@media (min-width: 1121px) {
  body.contact-v2-precision .contact-command-shell {
    align-items: stretch !important;
  }

  body.contact-v2-precision .contact-command-copy,
  body.contact-v2-precision .contact-form-stack {
    align-self: stretch !important;
  }

  body.contact-v2-precision .contact-form-stack .contact-form-deck {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  body.contact-v2-precision .contact-command-copy {
    display: grid !important;
    grid-template-columns: minmax(210px, 220px) minmax(0, 1fr) !important;
    column-gap: clamp(20px, 2.4vw, 32px) !important;
    align-items: start !important;
  }

  body.contact-v2-precision .contact-breadcrumb,
  body.contact-v2-precision .contact-priority,
  body.contact-v2-precision .contact-data-grid {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  body.contact-v2-precision .contact-command h1 {
    grid-column: 1 !important;
    max-width: none !important;
    font-size: clamp(2.45rem, 3.7vw, 3.45rem) !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
  }

  body.contact-v2-precision .contact-command-lead {
    grid-column: 2 !important;
    align-self: start !important;
    max-width: 33ch !important;
    margin: 0 !important;
    text-align: right !important;
  }

  body.contact-v2-precision .contact-form-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 6px !important;
    justify-content: start !important;
    margin-bottom: 16px !important;
  }

  body.contact-v2-precision .contact-form-head h2 {
    max-width: 100% !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
  }

  body.contact-v2-precision .contact-form-head p {
    justify-self: start !important;
    width: 100% !important;
    max-width: 52ch !important;
    text-align: left !important;
  }
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-data-card {
  min-height: 82px !important;
  padding-block: 17px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-data-grid {
  width: 100% !important;
  max-width: none !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-form-deck {
  padding: clamp(18px, 2vw, 26px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .command-form-grid {
  gap: 10px 14px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit {
  min-height: 56px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .field-unit textarea {
  min-height: 98px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.contact-v2-precision .contact-page .form-status {
  margin-top: 9px !important;
}

@media (max-width: 1120px) {
  body.contact-v2-precision .contact-form-stack .contact-form-deck {
    height: auto !important;
    min-height: 0 !important;
  }
}

@media (max-width: 767px) {
  body.contact-v2-precision .contact-form-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    text-align: left !important;
  }

  body.contact-v2-precision .contact-command-copy {
    display: block !important;
  }

  body.contact-v2-precision .contact-command-lead {
    max-width: 54ch !important;
    margin: 28px 0 0 !important;
    text-align: left !important;
  }

  body.contact-v2-precision .contact-form-head p {
    justify-self: start !important;
    max-width: 100% !important;
    text-align: left !important;
  }
}

/* Contact page final structure: title row, content/form row, company row. */
@media (min-width: 1121px) {
  body.contact-v2-precision .contact-command-shell {
    grid-template-areas:
      "head head"
      "copy form"
      "company company" !important;
    grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1fr) !important;
    align-items: stretch !important;
    row-gap: clamp(28px, 3.2vw, 42px) !important;
    column-gap: clamp(34px, 4.4vw, 64px) !important;
  }

  body.contact-v2-precision .contact-command-head {
    grid-area: head !important;
    display: grid !important;
    gap: 24px !important;
    width: 100% !important;
  }

  body.contact-v2-precision .contact-title-row {
    display: grid !important;
    grid-template-columns: max-content minmax(0, 1fr) !important;
    align-items: end !important;
    gap: clamp(28px, 4vw, 52px) !important;
  }

  body.contact-v2-precision .contact-command h1 {
    grid-column: auto !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: clamp(3.4rem, 6vw, 5.4rem) !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
  }

  body.contact-v2-precision .contact-command-lead {
    grid-column: auto !important;
    align-self: end !important;
    justify-self: end !important;
    max-width: none !important;
    margin: 0 !important;
    text-align: right !important;
    white-space: normal !important;
    text-wrap: pretty !important;
  }

  html[lang="zh-CN"] body.contact-v2-precision .contact-command-lead {
    max-width: none !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
  }

  html[lang="en"] body.contact-v2-precision .contact-command-lead,
  html[lang="ja"] body.contact-v2-precision .contact-command-lead {
    max-width: min(58ch, 100%) !important;
    white-space: normal !important;
    text-wrap: pretty !important;
  }

  body.contact-v2-precision .contact-command-copy {
    grid-area: copy !important;
    display: flex !important;
    flex-direction: column !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
  }

  body.contact-v2-precision .contact-priority {
    margin-top: 0 !important;
    width: fit-content !important;
    max-width: 100% !important;
    justify-self: start !important;
  }

  body.contact-v2-precision .contact-data-grid {
    flex: 1 1 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: repeat(4, minmax(86px, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 26px !important;
  }

  body.contact-v2-precision .contact-data-card {
    min-height: 86px !important;
  }

  body.contact-v2-precision .contact-form-stack {
    grid-area: form !important;
    align-self: stretch !important;
    max-width: 600px !important;
    justify-self: end !important;
  }

  body.contact-v2-precision .contact-form-stack .contact-form-deck {
    height: 100% !important;
    min-height: 100% !important;
  }

  body.contact-v2-precision .company-coordinate-panel {
    grid-area: company !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 1120px) {
  body.contact-v2-precision .contact-command-shell {
    grid-template-areas:
      "head"
      "copy"
      "form"
      "company" !important;
  }

  body.contact-v2-precision .contact-command-head {
    grid-area: head !important;
  }

  body.contact-v2-precision .contact-title-row {
    display: grid !important;
    gap: 18px !important;
  }

  body.contact-v2-precision .contact-command-copy {
    grid-area: copy !important;
    display: block !important;
  }

  body.contact-v2-precision .contact-form-stack {
    grid-area: form !important;
  }
}

@media (max-width: 767px) {
  body.contact-v2-precision .contact-command h1 {
    white-space: normal !important;
    text-wrap: balance !important;
  }
}

/* Home product cutout media: unified stage background, product pixels only. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card figure {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(12px, 1.8vw, 18px) !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e5edf5 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card img {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:nth-child(-n + 2) figure {
  padding: 0 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:nth-child(-n + 2) img {
  width: 104% !important;
  height: 112% !important;
  transform: scale(0.98, 1.04) !important;
  transform-origin: center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:nth-child(-n + 2):hover img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:nth-child(-n + 2):focus-visible img {
  transform: scale(1.02, 1.08) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card img.home-product-card__image--coupler-oring {
  transform: scale(1.22) !important;
  transform-origin: center center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:hover img.home-product-card__image--coupler-oring,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.home-customer-page .home-product-card:focus-visible img.home-product-card__image--coupler-oring {
  transform: scale(1.27) !important;
}

/* Fluid connectors page cutout media: one visual stage for transparent product assets. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card figure {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card img[src*="hydraulic-adapters"] {
  width: 120% !important;
  height: 132% !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: scale(1.08, 1.24) !important;
  transform-origin: center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:hover img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:focus-visible img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:hover img[src*="hydraulic-adapters"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-catalog-page .sw-catalog-card:focus-visible img[src*="hydraulic-adapters"] {
  transform: scale(1.12, 1.29) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card figure,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card figure {
  background: #edf3f8 !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card figure {
  background: #ffffff !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card figure img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card:nth-child(2) figure img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card:nth-child(3) figure img,
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card:nth-child(4) figure img {
  box-sizing: border-box !important;
  width: 88% !important;
  height: 88% !important;
  object-fit: contain !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card figure img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card figure img[src*="hydraulic-adapters"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card figure img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card figure img[src*="hydraulic-adapters"] {
  width: 120% !important;
  height: 132% !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: scale(1.08, 1.24) !important;
  transform-origin: center !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card:hover figure img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card:focus-visible figure img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card:hover figure img[src*="hydraulic-adapters"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-category-overview-card:focus-visible figure img[src*="hydraulic-adapters"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card:hover figure img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card:focus-visible figure img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card:hover figure img[src*="hydraulic-adapters"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-product-card:focus-visible figure img[src*="hydraulic-adapters"] {
  transform: scale(1.12, 1.29) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-intro__media {
  display: flex !important;
  width: 100% !important;
  aspect-ratio: 1.65 / 1 !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border-radius: var(--sw-radius-sm) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-intro img {
  box-sizing: border-box !important;
  padding: clamp(12px, 1.8vw, 18px) !important;
  background: #ffffff !important;
  object-fit: contain !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-intro__media img[src*="hose-assembly"],
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.products-category-page .sw-sub-intro__media img[src*="hydraulic-adapters"] {
  width: 120% !important;
  height: 132% !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  transform: scale(1.08, 1.24) !important;
  transform-origin: center !important;
}

/* About page timeline: align the outer blue spine with the card's year/content divider. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-timeline.timeline {
  isolation: isolate;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-timeline.timeline::before {
  left: 142px !important;
  z-index: 0;
  pointer-events: none;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-timeline.timeline > .about-client-timeline-item::before {
  left: 134px !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-timeline.timeline > .about-client-timeline-item {
  z-index: 1;
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-timeline.timeline::before,
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-timeline.timeline > .about-client-timeline-item::before {
    display: none !important;
  }
}

/* About page 31-year removal pass: keep remaining stats balanced after content pruning. */
:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-hero__stats {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(132px, 1fr)) !important;
  gap: clamp(12px, 1.8vw, 18px) !important;
  width: min(100%, 360px) !important;
}

:is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-data {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 2vw, 22px) !important;
}

html[lang="en"] body.about-v2-precision .about-client-data-card strong {
  white-space: nowrap !important;
  font-size: clamp(1.45rem, 2.05vw, 2.12rem) !important;
  line-height: 1.08 !important;
}

html[lang="pt"] body.about-v2-precision .about-client-data-card strong {
  white-space: nowrap !important;
  font-size: clamp(1.4rem, 1.95vw, 2rem) !important;
  line-height: 1.08 !important;
}

html[lang="de"] body.about-v2-precision .about-client-data-card strong {
  white-space: nowrap !important;
  font-size: clamp(1.32rem, 1.82vw, 1.9rem) !important;
  line-height: 1.08 !important;
}

html[lang="ru"] body.about-v2-precision .about-client-data-card strong {
  white-space: nowrap !important;
  font-size: clamp(1.24rem, 1.72vw, 1.78rem) !important;
  line-height: 1.08 !important;
}

html[lang="de"] body.about-v2-precision .about-client-culture-content h3,
html[lang="de"] body.about-v2-precision .about-client-value h3,
html[lang="de"] body.about-v2-precision .about-client-cert-card h3 {
  overflow-wrap: anywhere !important;
  hyphens: auto;
}

html[lang="de"] body.about-v2-precision .about-client-value h3 {
  font-size: clamp(0.98rem, 1.18vw, 1.08rem) !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  hyphens: none;
}

html[lang="pt"] body.about-v2-precision .about-client-value h3 {
  text-wrap: normal !important;
  overflow-wrap: anywhere !important;
}

html[lang="ru"] body.about-v2-precision .about-client-culture-content h3,
html[lang="ru"] body.about-v2-precision .about-client-value h3 {
  overflow-wrap: anywhere !important;
  hyphens: auto;
}

html[lang="ru"] body.about-v2-precision .about-client-value h3 {
  font-size: clamp(0.96rem, 1.12vw, 1.06rem) !important;
  line-height: 1.18 !important;
}

@media (max-width: 1100px) {
  html[lang="en"] body.about-v2-precision .about-client-data {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  html[lang="pt"] body.about-v2-precision .about-client-data {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 767px) {
  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-hero__stats {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  :is(html[lang="zh-CN"], html[lang="en"], html[lang="ja"], html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"], html[lang="ko"]) body.about-v2-precision .about-client-data {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Home factory strip: stabilize long-language metric alignment. */
:is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip__grid {
  align-items: stretch !important;
}

:is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip__grid > div {
  display: grid !important;
  min-width: 0 !important;
  min-height: 132px !important;
  grid-template-rows: auto minmax(2.55em, auto) minmax(2.45em, auto) !important;
  align-content: center !important;
  justify-items: center !important;
  padding: 20px 12px 22px !important;
  text-align: center !important;
}

:is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip strong {
  display: flex !important;
  min-height: 1.05em !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

:is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip p,
:is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip small {
  display: flex !important;
  max-width: 100% !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance !important;
}

:is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip p {
  min-height: 2.55em !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  font-size: clamp(0.68rem, 0.68vw, 0.75rem) !important;
}

:is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip small {
  min-height: 2.45em !important;
  margin-top: 4px !important;
  font-size: clamp(0.62rem, 0.62vw, 0.7rem) !important;
}

@media (max-width: 640px) {
  :is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  :is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip__grid > div {
    min-height: 126px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 0 !important;
    padding: 18px 8px !important;
  }

  :is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip__grid > div:nth-child(2n) {
    border-right: 0 !important;
  }

  :is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip__grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  :is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip p {
    font-size: 0.66rem !important;
  }

  :is(html[lang="es"], html[lang="pt"], html[lang="de"], html[lang="ru"]) body.home-customer-page .home-factory-strip small {
    font-size: 0.61rem !important;
  }
}
