:root {
  --blue-950: #06235d;
  --blue-900: #06327f;
  --blue-800: #074bbf;
  --blue-700: #075ee3;
  --blue-600: #176fed;
  --blue-100: #eaf3ff;
  --blue-50: #f4f8ff;
  --orange: #ff9a52;
  --ink: #14213d;
  --muted: #68758d;
  --line: #dce6f3;
  --white: #ffffff;
  --section-width: 1340px;
  --shadow: 0 12px 30px rgba(14, 64, 142, 0.11);
}

/* V4: customized process module only */
.process-section {
  position: relative;
  padding-top: 96px;
  padding-bottom: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(17, 105, 230, 0.075), transparent 34%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 48%, #f7faff 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(34, 105, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 105, 194, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.process-heading,
.process-section .process-grid,
.process-benefits {
  position: relative;
  z-index: 1;
}

.process-heading {
  width: var(--section-width);
  margin: 0 auto 44px;
  text-align: center;
}

.process-eyebrow {
  margin: 0 0 10px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.process-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.process-heading h2::after {
  content: "";
  width: 48px;
  height: 4px;
  display: block;
  margin: 17px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue-700), #58a3ff);
}

.process-description {
  margin: 20px 0 0;
  color: #66758c;
  font-size: 18px;
  line-height: 1.7;
}

.process-section .process-grid {
  width: var(--section-width);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 16px;
  margin: 0 auto;
  border: 0;
  background: transparent;
}

.process-section .process-card {
  position: relative;
  min-height: 276px;
  display: block;
  padding: 24px 22px 22px;
  overflow: visible;
  border: 1px solid #dfe9f7;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(8, 54, 128, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.process-section .process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--blue-700), #65adff);
  opacity: 0.72;
}

.process-section .process-card:not(:nth-child(5n))::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -25px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border: 1px solid #c9daf2;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 7px 18px rgba(8, 63, 143, 0.12);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

.process-section .process-card:hover {
  z-index: 2;
  border-color: #9fc4f5;
  box-shadow: 0 22px 46px rgba(8, 66, 155, 0.16);
  transform: translateY(-7px);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.process-section .process-card b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #0873ed, #0749b5);
  box-shadow: 0 9px 20px rgba(7, 83, 193, 0.24);
  font-size: 13px;
  letter-spacing: 0.4px;
}

.process-section .process-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border: 1px solid #d5e5fa;
  border-radius: 13px;
  background: linear-gradient(145deg, #f8fbff, #eaf3ff);
  font-size: inherit;
  font-weight: inherit;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.process-icon svg,
.process-benefits svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card:hover .process-icon {
  color: #fff;
  background: var(--blue-700);
  transform: rotate(-3deg) scale(1.04);
}

.process-section .process-card h3 {
  min-height: 50px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.38;
}

.process-section .process-card p {
  margin: 0;
  color: #6c7a90;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.process-benefits {
  width: var(--section-width);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid #d8e5f6;
  border-radius: 14px;
  background: #d8e5f6;
  box-shadow: 0 14px 34px rgba(8, 58, 135, 0.08);
}

.process-benefits > span {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.96);
}

.process-benefits svg {
  width: 25px;
  height: 25px;
}

.process-benefits strong {
  color: var(--ink);
  font-size: 17px;
  letter-spacing: 0.2px;
}

@media (min-width: 761px) and (max-width: 1280px) {
  .process-section .process-card {
    min-height: 292px;
    padding: 22px 18px 20px;
  }

  .process-section .process-card h3 {
    font-size: 17px;
  }

  .process-section .process-card p {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .process-section {
    padding-top: 70px;
    padding-bottom: 62px;
  }

  .process-heading {
    margin-bottom: 32px;
  }

  .process-heading h2 {
    font-size: 32px;
  }

  .process-description {
    font-size: 16px;
  }

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

  .process-section .process-card {
    min-height: 0;
    padding: 22px;
  }

  .process-section .process-card:not(:nth-child(5n))::after {
    display: none;
  }

  .process-section .process-card h3 {
    min-height: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .process-section .process-card,
  .process-section .process-icon {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 1180px;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 30;
  height: 76px;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #e8edf5;
}

.header-inner {
  width: var(--section-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 265px;
  color: var(--blue-900);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue-600);
  border-radius: 12px 4px 12px 4px;
  color: var(--blue-700);
  font-size: 21px;
  font-weight: 900;
  transform: rotate(-7deg);
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-left: 12px;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: 0.4px;
}

.brand-copy span {
  font-weight: 700;
  font-size: 15px;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #27324a;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 0;
  height: 2px;
  background: var(--blue-700);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-700);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 28px;
}

.header-actions {
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switch {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #7b8497;
  white-space: nowrap;
}

.lang-btn {
  appearance: none;
  border: 0;
  padding: 0;
  color: #6b758b;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.lang-btn.active {
  color: var(--blue-700);
  font-weight: 700;
}

.button {
  min-width: 128px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 52, 135, 0.18);
}

.button-primary {
  background: linear-gradient(90deg, #0b54c9, #075ee3);
  color: white;
}

.button-small {
  min-width: 105px;
  height: 40px;
  font-size: 14px;
}

.button-light {
  background: #fff;
  color: var(--blue-900);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #0755cf;
}

.hero-copy {
  position: absolute;
  inset: 0 49% 0 0;
  z-index: 3;
  color: white;
  background:
    radial-gradient(circle at 70% 15%, rgba(87,174,255,0.55), transparent 40%),
    linear-gradient(120deg, #043a9c 0%, #075ee3 68%, #1b75ed 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -150px;
  width: 240px;
  height: 100%;
  background: linear-gradient(115deg, rgba(15,103,226,0.98), rgba(22,114,234,0.42));
  transform: skewX(-18deg);
  transform-origin: top;
}

.hero-copy-inner {
  position: relative;
  z-index: 3;
  width: 670px;
  margin-left: max(calc((100vw - var(--section-width)) / 2), 40px);
  padding-top: 66px;
}

.hero-kicker {
  margin: 0 0 12px;
  color: #ffc598;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: -1.4px;
  font-weight: 800;
}

.hero h1 span {
  color: #ffb16f;
}

.hero-subtitle {
  width: 620px;
  margin: 20px 0 25px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-tags {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}

.hero-tags span {
  position: relative;
  padding-left: 12px;
}

.hero-tags span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8fc7ff;
}

.hero-gallery {
  position: absolute;
  inset: 0 0 0 45%;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  grid-template-rows: 1fr 0.88fr;
  gap: 5px;
  background: #fff;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image {
  margin: 0;
  overflow: hidden;
  background: #d9e8ff;
}

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

.hero-image-main img {
  object-position: 52% 42%;
}

.hero-image-scene img {
  object-position: 50% 55%;
}

.hero-image-text img {
  object-position: 48% 47%;
}

.hero-image-color img {
  object-position: 50% 53%;
}

.hero-rule {
  position: absolute;
  z-index: 4;
  left: calc(45% + 30px);
  top: -60px;
  width: 2px;
  height: 650px;
  background: rgba(255,255,255,0.7);
  transform: rotate(12.5deg);
}

.trust-strip {
  position: relative;
  z-index: 10;
  width: 1060px;
  margin: -120px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  position: relative;
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: white;
  border: 1px solid rgba(214,227,246,0.9);
  border-radius: 9px;
  box-shadow: 0 14px 32px rgba(7,64,152,0.15);
  overflow: hidden;
}

.trust-card::after {
  content: "";
  position: absolute;
  right: -25px;
  bottom: -38px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 16px solid #f0f6ff;
}

.trust-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 800;
  font-size: 12px;
}

.trust-card div {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.trust-card strong {
  color: var(--blue-800);
  font-size: 29px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.trust-card div span {
  margin-top: 4px;
  color: #637088;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.trust-card small {
  margin-top: 1px;
  color: #9aa6b8;
  font-size: 10px;
  line-height: 1.25;
  white-space: nowrap;
}

html[lang="en"] .trust-en {
  display: none;
}

html[lang="en"] .hero h1 {
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: -0.45px;
}

html[lang="en"] .hero-kicker {
  font-size: 12px;
  letter-spacing: 0.24px;
  white-space: nowrap;
}

html[lang="en"] .hero-subtitle {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.75;
}

.section {
  width: var(--section-width);
  margin: 0 auto;
  padding: 72px 0 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 4px;
  color: #6f83a4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.section-heading h2,
.split-heading h2 {
  margin: 0;
  color: #15213a;
  font-size: 29px;
  line-height: 1.35;
}

.heading-line {
  width: 32px;
  height: 3px;
  display: block;
  margin: 12px auto 0;
  background: var(--blue-600);
  border-radius: 3px;
}

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

.product-card {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10,53,118,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image {
  height: 100%;
  padding: 13px 0 13px 13px;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.product-info {
  padding: 15px 12px 15px 16px;
}

.product-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.product-info p {
  min-height: 40px;
  margin: 0;
  color: #7a869a;
  font-size: 11px;
  line-height: 1.6;
}

.product-info a {
  width: 28px;
  height: 28px;
  margin-top: 5px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
}

.custom-section {
  padding-top: 34px;
}

.custom-panel {
  min-height: 250px;
  display: grid;
  grid-template-columns: 57% 43%;
  border: 1px solid #e1eaf6;
  border-radius: 10px;
  background: linear-gradient(100deg, #f3f7ff 0%, #f8fbff 50%, #fff 100%);
  overflow: hidden;
}

.custom-content {
  padding: 28px 34px;
}

.custom-content h2 {
  margin: 0 0 5px;
  font-size: 25px;
}

.custom-content > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.mini-process {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-process article {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mini-process article strong {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe0f8;
  border-radius: 50%;
  color: var(--blue-700);
  background: #fff;
  box-shadow: 0 6px 12px rgba(7, 94, 227, 0.08);
}

.mini-process article span {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
}

.mini-process i {
  color: #6da6ed;
  font-style: normal;
  letter-spacing: 3px;
}

.custom-image {
  margin: 18px;
  overflow: hidden;
  border-radius: 8px;
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 28px;
}

.split-heading > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #dbe5f3);
}

.split-heading > span:last-child {
  background: linear-gradient(90deg, #dbe5f3, transparent);
}

.factory-section {
  padding-top: 48px;
}

.factory-layout {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 325px;
  border-bottom: 1px solid #e6edf7;
  padding-bottom: 24px;
}

.factory-photo {
  overflow: hidden;
  border-radius: 8px;
}

.factory-photo img {
  height: 100%;
  object-fit: cover;
}

.factory-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding-left: 28px;
}

.factory-strengths article {
  display: flex;
  gap: 12px;
  padding: 20px 16px;
  border-right: 1px solid #e6edf7;
  border-bottom: 1px solid #e6edf7;
}

.factory-strengths article:nth-child(3n) {
  border-right: 0;
}

.factory-strengths article:nth-child(n+4) {
  border-bottom: 0;
}

.factory-strengths b {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border: 1px solid #b9d3fa;
  border-radius: 50%;
  font-size: 11px;
}

.factory-strengths h3 {
  margin: 0 0 5px;
  font-size: 14px;
}

.factory-strengths p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.equipment-section,
.certificate-section {
  padding-top: 38px;
}

.section-intro {
  max-width: 780px;
  margin: -16px auto 25px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

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

.equipment-grid article div {
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf1fb;
}

.equipment-grid img {
  height: 100%;
  object-fit: cover;
}

.equipment-grid h3 {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
}

.certificate-frame {
  min-height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.certificate-frame img {
  width: 100%;
  max-height: 195px;
  object-fit: contain;
}

.hot-section {
  padding-top: 48px;
}

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

.hot-card {
  padding: 10px 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hot-card img {
  height: 178px;
  object-fit: cover;
  border-radius: 6px;
}

.hot-card h3 {
  min-height: 40px;
  margin: 11px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.45;
}

.hot-card a {
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
  background: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
}

.process-section {
  padding-top: 48px;
  padding-bottom: 52px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #e3eaf5;
  border: 1px solid #e3eaf5;
}

.process-grid article {
  position: relative;
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
}

.process-grid article:not(:nth-child(5n))::after {
  content: "→";
  position: absolute;
  right: -8px;
  z-index: 2;
  color: #77a7ea;
  font-size: 13px;
}

.process-grid b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  border: 2px solid #b9d4fc;
  border-radius: 50%;
  font-size: 12px;
}

.process-grid span {
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  position: relative;
  padding: 44px 0 42px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 90%, rgba(68,151,255,0.35), transparent 27%),
    linear-gradient(120deg, #073d9a, #075ee3 68%, #2377e8);
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotate(45deg);
}

.contact-section::before {
  left: -180px;
  bottom: -220px;
}

.contact-section::after {
  right: -170px;
  top: -210px;
}

.contact-inner {
  position: relative;
  z-index: 2;
  width: var(--section-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 50px;
}

.contact-copy {
  padding-top: 10px;
}

.contact-copy .eyebrow {
  color: #9dc8ff;
}

.contact-copy h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.contact-copy dl {
  margin: 24px 0 0;
}

.contact-copy dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 4px 0;
}

.contact-copy dt {
  color: rgba(255,255,255,0.72);
}

.contact-copy dd {
  margin: 0;
  font-weight: 600;
}

.inquiry-form {
  padding: 24px;
  color: var(--ink);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0,29,85,0.2);
}

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

.inquiry-form label {
  display: block;
  color: #526078;
  font-size: 11px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  margin: 5px 0 11px;
  padding: 9px 11px;
  color: var(--ink);
  border: 1px solid #dce4ef;
  border-radius: 4px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form input,
.inquiry-form select {
  height: 38px;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 72px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: #7eacf1;
  box-shadow: 0 0 0 3px rgba(7,94,227,0.1);
}

.form-submit {
  width: 100%;
  height: 40px;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 7px 0 -7px;
  color: var(--blue-800);
  text-align: center;
  font-size: 12px;
}

/* V3 refinement: stronger hierarchy below the approved hero */
.section {
  padding-top: 86px;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.split-heading h2 {
  font-size: 40px;
  letter-spacing: -0.6px;
}

.section-heading .eyebrow,
.certificate-kicker {
  font-size: 13px;
  letter-spacing: 2.2px;
}

.heading-line {
  width: 42px;
  height: 4px;
  margin-top: 14px;
}

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

.product-card {
  position: relative;
  height: 382px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid #e3ebf6;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(8, 55, 130, 0.11);
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #bfd5f5;
  box-shadow: 0 24px 50px rgba(8, 67, 156, 0.18);
}

.product-image {
  width: 100%;
  height: 252px;
  flex: 0 0 252px;
  padding: 0;
  overflow: hidden;
  background: #eef4fc;
}

.product-image img {
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.product-info {
  position: relative;
  width: 100%;
  flex: 1;
  padding: 20px 54px 20px 20px;
}

.product-info h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.35;
}

.product-info p {
  min-height: 0;
  margin: 0;
  color: #71809a;
  font-size: 16px;
  line-height: 1.5;
}

.product-info a {
  position: absolute;
  right: 17px;
  top: 21px;
  width: 38px;
  height: 38px;
  margin: 0;
  border-color: #c9daf2;
  background: #f4f8ff;
  font-size: 26px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-info a {
  color: #fff;
  background: var(--blue-700);
  transform: translateX(3px);
}

.custom-section {
  padding-top: 48px;
}

.custom-panel {
  min-height: 315px;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(17, 68, 139, 0.08);
}

.custom-content {
  padding: 36px 40px;
}

.custom-content h2 {
  font-size: 36px;
}

.custom-content > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.75;
}

.mini-process article span {
  font-size: 15px;
}

.factory-section {
  padding-top: 86px;
}

.factory-layout {
  grid-template-columns: 51% 49%;
  min-height: 620px;
  padding: 24px;
  border: 1px solid #e1eaf6;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  box-shadow: 0 22px 55px rgba(9, 60, 138, 0.11);
}

.factory-photo {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(9, 55, 119, 0.16);
}

.factory-strengths {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  padding-left: 24px;
}

.factory-strengths article,
.factory-strengths article:nth-child(3n),
.factory-strengths article:nth-child(n+4) {
  position: relative;
  display: block;
  padding: 24px;
  border: 1px solid #dfe9f7;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 24px rgba(10, 62, 137, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.factory-strengths article:hover {
  transform: translateY(-5px);
  border-color: #a9c9f5;
  box-shadow: 0 18px 36px rgba(10, 72, 166, 0.14);
}

.factory-strengths b {
  position: absolute;
  top: 18px;
  right: 20px;
  width: auto;
  height: auto;
  color: #a4b4ca;
  border: 0;
  font-size: 13px;
  letter-spacing: 1px;
}

.strength-symbol {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(145deg, #075ee3, #0b45aa);
  box-shadow: 0 9px 20px rgba(7, 94, 227, 0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.factory-strengths div strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-800);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.factory-strengths h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.factory-strengths p {
  margin: 0;
  color: #67758d;
  font-size: 18px;
  line-height: 1.55;
}

.equipment-section {
  padding-top: 84px;
}

.section-intro {
  max-width: 920px;
  margin-top: -10px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.7;
}

.equipment-grid {
  gap: 26px;
}

.equipment-grid article {
  padding: 12px 12px 18px;
  border: 1px solid #e0e9f5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(9, 58, 132, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.equipment-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(9, 68, 157, 0.16);
}

.equipment-grid article div {
  height: 270px;
  border-radius: 11px;
}

.equipment-grid img {
  transition: transform 0.45s ease;
}

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

.equipment-grid h3 {
  margin: 16px 0 0;
  font-size: 18px;
}

.certificate-section {
  padding-top: 96px;
}

.certificate-kicker {
  margin: 0 0 5px;
  color: var(--blue-700);
  text-align: center;
  font-weight: 800;
}

.certificate-section .split-heading {
  margin-bottom: 20px;
}

.certificate-section .section-intro {
  max-width: 980px;
  margin-bottom: 34px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 26px;
}

.assurance-grid article {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid #dfe9f6;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, #f3f7ff);
  box-shadow: 0 12px 30px rgba(8, 59, 136, 0.08);
}

.assurance-grid strong {
  min-width: 68px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  color: #fff;
  border-radius: 10px;
  background: var(--blue-700);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.assurance-grid h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.assurance-grid p {
  margin: 0;
  color: #6b7890;
  font-size: 18px;
  line-height: 1.5;
}

.certificate-frame {
  position: relative;
  width: 75%;
  min-height: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding: 34px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fbff, #edf4ff);
  box-shadow: 0 24px 56px rgba(8, 57, 132, 0.14);
  cursor: zoom-in;
}

.certificate-frame img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(20, 48, 90, 0.12));
  transition: transform 0.35s ease;
}

.certificate-frame:hover img {
  transform: scale(1.012);
}

.hot-section {
  padding-top: 92px;
}

.hot-grid {
  gap: 18px;
}

.hot-card {
  padding: 12px 12px 15px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(9, 57, 128, 0.08);
}

.hot-card img {
  height: 210px;
  border-radius: 10px;
}

.hot-card h3 {
  min-height: 50px;
  margin: 14px 0 10px;
  font-size: 18px;
}

.hot-card a {
  height: 38px;
  font-size: 16px;
}

.process-section {
  padding-top: 90px;
}

.process-grid article {
  min-height: 126px;
  padding: 24px;
}

.process-grid span {
  font-size: 16px;
  line-height: 1.45;
}

.contact-copy h2 {
  font-size: 38px;
}

.contact-copy > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.7;
}

.contact-copy dt,
.contact-copy dd {
  font-size: 18px;
}

.inquiry-form label {
  font-size: 16px;
}

@media (max-width: 1280px) {
  :root { --section-width: 1120px; }
  body { min-width: 1120px; }
  .brand { min-width: 230px; }
  .brand-copy span { display: none; }
  .main-nav { gap: 17px; }
  .header-actions { min-width: 190px; }
  .hero-copy-inner { width: 570px; }
  .hero h1 { font-size: 42px; }
  .hero-subtitle { width: 540px; }
  .trust-strip { width: 980px; }
  .product-card { grid-template-columns: 43% 57%; }
  .product-info { padding-left: 10px; }
  .factory-strengths article { padding: 16px 11px; }
  .hot-card img { height: 150px; }
  .process-grid article { padding: 16px; }
}

@media (max-width: 760px) {
  body { min-width: 0; }
  :root { --section-width: calc(100% - 32px); }
  .site-header { height: 66px; }
  .header-inner { justify-content: space-between; }
  .brand { min-width: auto; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: 18px; }
  .main-nav { display: none; }
  .header-actions { min-width: auto; }
  .header-actions .button { display: none; }
  .hero { height: auto; padding-bottom: 0; }
  .hero-copy { position: relative; inset: auto; padding-bottom: 34px; }
  .hero-copy::after { display: none; }
  .hero-copy-inner { width: auto; margin: 0; padding: 45px 22px 10px; }
  .hero h1 { font-size: 34px; }
  .hero-subtitle { width: auto; font-size: 14px; }
  .hero-tags { flex-wrap: wrap; gap: 9px 15px; }
  .hero-gallery { position: relative; inset: auto; height: 390px; clip-path: none; }
  .hero-rule { display: none; }
  .trust-strip { width: calc(100% - 32px); margin: 16px auto 0; grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-card { min-height: 95px; padding: 14px; gap: 10px; }
  .trust-card strong { font-size: 23px; }
  .section { padding-top: 54px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card { height: 132px; }
  .product-card:last-child { grid-column: span 2; }
  .custom-panel { grid-template-columns: 1fr; }
  .custom-content { padding: 26px 20px; }
  .mini-process { overflow-x: auto; gap: 9px; }
  .custom-image { height: 230px; }
  .factory-layout { grid-template-columns: 1fr; }
  .factory-photo { height: 260px; }
  .factory-strengths { grid-template-columns: 1fr 1fr; padding: 20px 0 0; }
  .factory-strengths article:nth-child(3n) { border-right: 1px solid #e6edf7; }
  .factory-strengths article:nth-child(2n) { border-right: 0; }
  .factory-strengths article:nth-child(n+4) { border-bottom: 1px solid #e6edf7; }
  .factory-strengths article:nth-child(n+5) { border-bottom: 0; }
  .equipment-grid { grid-template-columns: 1fr; }
  .equipment-grid article div { height: 220px; }
  .hot-grid { grid-template-columns: 1fr 1fr; }
  .hot-card img { height: 175px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:not(:nth-child(5n))::after { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (min-width: 761px) and (max-width: 1280px) {
  .product-card {
    height: 366px;
  }
  .product-image {
    height: 222px;
    flex-basis: 222px;
  }
  .product-info {
    padding: 18px 50px 18px 17px;
  }
  .product-info h3 {
    font-size: 17px;
  }
  .product-info p {
    font-size: 16px;
  }
  .factory-layout {
    min-height: 640px;
  }
  .factory-strengths article {
    padding: 20px;
  }
  .factory-strengths p {
    font-size: 18px;
  }
  .equipment-grid article div {
    height: 238px;
  }
  .hot-card img {
    height: 178px;
  }
  .hot-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .section-heading h2,
  .split-heading h2 {
    font-size: 32px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card,
  .product-card:last-child {
    grid-column: auto;
    height: auto;
    min-height: 390px;
  }
  .product-image {
    height: 280px;
    flex-basis: 280px;
  }
  .product-info {
    padding: 20px 58px 22px 20px;
  }
  .custom-content > p:not(.eyebrow),
  .section-intro,
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .factory-layout {
    min-height: 0;
    padding: 14px;
  }
  .factory-photo {
    height: 320px;
  }
  .factory-strengths {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0 0;
  }
  .factory-strengths article,
  .factory-strengths article:nth-child(2n),
  .factory-strengths article:nth-child(3n),
  .factory-strengths article:nth-child(n+4),
  .factory-strengths article:nth-child(n+5) {
    padding: 22px;
    border: 1px solid #dfe9f7;
  }
  .assurance-grid {
    grid-template-columns: 1fr;
  }
  .certificate-frame {
    padding: 12px;
  }
  .hot-card img {
    height: 190px;
  }
  html[lang="en"] .hero-kicker {
    white-space: normal;
  }
  html[lang="en"] .hero h1 {
    font-size: 30px;
  }
}

/* Keep the V4 process spacing ahead of the inherited V3 cascade. */
.process-section {
  padding-top: 96px;
  padding-bottom: 82px;
}

@media (max-width: 760px) {
  .process-section {
    padding-top: 70px;
    padding-bottom: 62px;
  }
}

.factory-strength-image-section {
  padding-top: 86px;
}

.factory-strength-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.dice-custom-process-image-section {
  padding-top: 86px;
}

.dice-custom-process-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.custom-dice-capabilities-image-section {
  padding-top: 48px;
}

.capabilities-native {
  color: #101e4d;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.capabilities-native__header {
  min-height: 194px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 24px 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(217, 232, 251, 0.9) 0 10%, transparent 10% 90%, rgba(217, 232, 251, 0.9) 90%),
    radial-gradient(circle at 50% 20%, #ffffff 0, #fbfdff 46%, #eef5fd 100%);
}

.capabilities-native__header > p {
  margin: 0 0 3px;
  color: #0951ae;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

.capabilities-native__header h2 {
  margin: 0;
  color: #071a52;
  font-size: clamp(49px, 4.15vw, 61px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 1px;
}

.capabilities-native__header > span {
  width: 96px;
  height: 6px;
  margin: 13px 0 10px;
  border-radius: 999px;
  background: #0871e5;
}

.capabilities-native__header > div {
  color: #272727;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1px;
}

.capabilities-native__photos {
  position: relative;
  aspect-ratio: 1388 / 250;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #e3ebf5;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 23px rgba(31, 67, 119, 0.12);
}

.capabilities-native__photos > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.capabilities-native__photo-labels {
  position: absolute;
  inset: 0 0 auto;
  height: 22%;
  display: grid;
  grid-template-columns: 18.73% 16.43% 15.92% 17.58% 15.56% 15.78%;
  align-items: center;
  background: #fff;
}

.capabilities-native__photo-labels span {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
  border-right: 1px solid #e6ebf2;
  color: #0750aa;
  font-size: clamp(12px, 1.06vw, 15px);
  font-weight: 700;
  white-space: nowrap;
}

.capabilities-native__photo-labels span:last-child {
  border-right: 0;
}

.capabilities-native__photo-labels b {
  min-width: 0;
  overflow: hidden;
  font: inherit;
  text-overflow: ellipsis;
}

.capabilities-native__photo-labels i {
  color: #0758ba;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

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

.capability-card {
  min-height: 202px;
  display: grid;
  grid-template-columns: clamp(148px, 14vw, 190px) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid #e1e8f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(36, 70, 119, 0.1);
}

.capability-card__icon {
  width: 126px;
  height: 126px;
  justify-self: center;
  fill: none;
  stroke: #0752ad;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card__content {
  min-width: 0;
  padding: 16px 20px 13px 0;
}

.capability-card__eyebrow {
  margin: 0 0 1px;
  color: #0752ad;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.capability-card h3 {
  margin: 0 0 5px;
  color: #07194c;
  font-size: clamp(25px, 2.12vw, 31px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.2px;
}

.capability-card__copy {
  margin: 0;
  color: #202020;
  font-size: clamp(14px, 1.16vw, 16.5px);
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
}

.capability-card__tags {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.capability-card__tags span {
  min-width: 0;
  flex: 1 1 auto;
  padding: 4px 10px;
  border: 1px solid #76a5e8;
  border-radius: 6px;
  color: #0752ad;
  text-align: center;
  font-size: clamp(12px, 1.02vw, 14px);
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
}

.capabilities-native__banner {
  position: relative;
  min-height: 145px;
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) 430px;
  align-items: center;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(105deg, #0856ba 0%, #0065cf 58%, #00469b 100%);
  box-shadow: 0 8px 20px rgba(14, 66, 145, 0.14);
}

.capabilities-native__banner > svg {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  justify-self: center;
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capabilities-native__banner > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 750;
  line-height: 1.75;
  white-space: nowrap;
}

.capabilities-native__banner > img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 560px;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.82;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 14%,
    rgba(0, 0, 0, 0.18) 27%,
    rgba(0, 0, 0, 0.7) 48%,
    #000 68%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 14%,
    rgba(0, 0, 0, 0.18) 27%,
    rgba(0, 0, 0, 0.7) 48%,
    #000 68%,
    #000 100%
  );
}

@media (max-width: 1280px) {
  .capabilities-native__header h2 { font-size: 50px; }
  .capabilities-native__header > div { font-size: 16px; }
  .capability-card { grid-template-columns: 155px minmax(0, 1fr); }
  .capability-card__icon { width: 112px; height: 112px; }
  .capability-card h3 { font-size: 26px; }
  .capability-card__copy { font-size: 14px; }
  .capability-card__tags { gap: 7px; }
  .capability-card__tags span { padding-inline: 7px; font-size: 12px; }
  .capabilities-native__banner { grid-template-columns: 145px minmax(0, 1fr) 360px; }
  .capabilities-native__banner > p { font-size: 22px; }
}

@media (max-width: 760px) {
  .capabilities-native__header {
    min-height: 160px;
    padding-inline: 15px;
  }
  .capabilities-native__header > p { font-size: 13px; letter-spacing: 1.6px; }
  .capabilities-native__header h2 { font-size: 34px; }
  .capabilities-native__header > div { font-size: 13px; }
  .capabilities-native__photo-labels { display: none; }
  .capabilities-native__grid { grid-template-columns: 1fr; }
  .capability-card {
    min-height: 180px;
    grid-template-columns: 108px minmax(0, 1fr);
  }
  .capability-card__icon { width: 82px; height: 82px; }
  .capability-card__content { padding: 13px 12px 12px 0; }
  .capability-card__eyebrow { font-size: 12px; }
  .capability-card h3 { font-size: 22px; }
  .capability-card__copy {
    font-size: 12px;
    white-space: normal;
  }
  .capability-card__copy br { display: none; }
  .capability-card__tags { flex-wrap: wrap; gap: 5px; }
  .capability-card__tags span { flex: 1 1 30%; font-size: 10px; }
  .capabilities-native__banner {
    min-height: 180px;
    grid-template-columns: 86px minmax(0, 1fr);
    padding-right: 12px;
  }
  .capabilities-native__banner > svg { width: 70px; height: 70px; }
  .capabilities-native__banner > p {
    font-size: 16px;
    line-height: 1.65;
    white-space: normal;
  }
  .capabilities-native__banner > p br { display: none; }
  .capabilities-native__banner > img { width: 58%; opacity: 0.32; }
}

/* Bilingual replacements for the two approved Chinese artwork modules. */
.language-module--en {
  display: none !important;
}

html[lang="en"] .language-module--zh {
  display: none !important;
}

html[lang="en"] .language-module--en {
  display: block !important;
}

html[lang="en"] .capabilities-native__header h2 {
  font-size: clamp(38px, 3.35vw, 50px);
  letter-spacing: -0.5px;
}

html[lang="en"] .capabilities-native__header > div {
  max-width: 1050px;
}

html[lang="en"] .capabilities-native__photo-labels span {
  gap: 6px;
  padding-inline: 6px;
  font-size: clamp(10px, 0.91vw, 13px);
}

html[lang="en"] .capabilities-native__photo-labels i {
  font-size: 18px;
}

html[lang="en"] .capability-card h3 {
  font-size: clamp(22px, 1.7vw, 27px);
}

html[lang="en"] .capability-card__copy {
  font-size: clamp(12px, 0.99vw, 15px);
}

html[lang="en"] .capabilities-native__banner > p {
  font-size: clamp(18px, 1.54vw, 23px);
  line-height: 1.55;
}

.factory-english {
  overflow: hidden;
  border: 1px solid #dfe9f6;
  border-radius: 20px;
  color: #101e4d;
  background: linear-gradient(145deg, #f8fbff 0%, #ffffff 52%, #eef5ff 100%);
  box-shadow: 0 22px 55px rgba(9, 60, 138, 0.11);
  font-family: Inter, Arial, sans-serif;
}

.factory-english__heading {
  padding: 44px 48px 34px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(218, 233, 252, 0.9) 0 9%, transparent 9% 91%, rgba(218, 233, 252, 0.9) 91%),
    radial-gradient(circle at 50% 10%, #fff 0, #f7fbff 48%, #ebf3fd 100%);
}

.factory-english__heading p {
  margin: 0 0 5px;
  color: #075ee3;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
}

.factory-english__heading h2 {
  margin: 0;
  color: #07194c;
  font-size: clamp(40px, 3.7vw, 54px);
  line-height: 1.15;
  letter-spacing: -1px;
}

.factory-english__heading span {
  width: 70px;
  height: 5px;
  display: block;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #075ee3;
}

.factory-english__intro {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 390px;
  border-top: 1px solid #e3ebf5;
  border-bottom: 1px solid #e3ebf5;
  background: #fff;
}

.factory-english__copy {
  align-self: center;
  padding: 50px 58px;
}

.factory-english__copy h3 {
  margin: 0 0 19px;
  color: #075ee3;
  font-size: 18px;
  letter-spacing: 2px;
}

.factory-english__copy p {
  margin: 0;
  color: #33425d;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.factory-english__intro > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.factory-english__metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 34px 30px;
  background: linear-gradient(180deg, #f5f9ff, #fff);
}

.factory-english__metrics article {
  min-width: 0;
  padding: 12px 18px;
  border-right: 1px solid #dce7f5;
  text-align: center;
}

.factory-english__metrics article:last-child {
  border-right: 0;
}

.factory-english__metrics strong {
  display: block;
  color: #075ee3;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.1;
}

.factory-english__metrics h3 {
  margin: 9px 0 0;
  color: #233451;
  font-size: clamp(14px, 1.13vw, 17px);
  line-height: 1.3;
}

.factory-english__equipment {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 28px 30px 34px;
  background: #f8fbff;
}

.factory-english__equipment article {
  overflow: hidden;
  border: 1px solid #dfe9f6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 62, 137, 0.08);
}

.factory-english__equipment img {
  width: 100%;
  height: 185px;
  display: block;
  object-fit: cover;
}

.factory-english__equipment div {
  padding: 18px 18px 20px;
}

.factory-english__equipment h3 {
  min-height: 48px;
  margin: 0 0 7px;
  color: #10244e;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.35;
}

.factory-english__equipment p {
  margin: 0;
  color: #68758d;
  font-size: 14px;
  line-height: 1.55;
}

.dice-custom-process-image-section > .process-section {
  width: 100%;
  border: 1px solid #dfe9f6;
  border-radius: 20px;
}

.dice-custom-process-image-section .process-heading,
.dice-custom-process-image-section .process-grid,
.dice-custom-process-image-section .process-benefits {
  width: calc(100% - 80px);
}

.dice-custom-process-image-section .process-icon {
  font-family: Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
}

@media (max-width: 1280px) {
  .factory-english__copy { padding: 40px; }
  .factory-english__copy p { font-size: 17px; }
  .factory-english__equipment img { height: 165px; }
  .factory-english__equipment p { font-size: 12px; }
  .dice-custom-process-image-section .process-heading,
  .dice-custom-process-image-section .process-grid,
  .dice-custom-process-image-section .process-benefits { width: calc(100% - 56px); }
}

@media (max-width: 760px) {
  html[lang="en"] .capabilities-native__header h2 { font-size: 30px; }
  .factory-english__heading { padding: 34px 20px 28px; }
  .factory-english__heading h2 { font-size: 31px; }
  .factory-english__intro { grid-template-columns: 1fr; }
  .factory-english__copy { padding: 30px 24px; }
  .factory-english__intro > img { min-height: 260px; }
  .factory-english__metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
  .factory-english__metrics article { border: 0; }
  .factory-english__equipment { grid-template-columns: 1fr; }
  .dice-custom-process-image-section .process-heading,
  .dice-custom-process-image-section .process-grid,
  .dice-custom-process-image-section .process-benefits { width: calc(100% - 30px); }
}
