:root {
  --ink: #111820;
  --body: #42515f;
  --muted: #71808e;
  --line: #dfe5ea;
  --soft: #f5f7f8;
  --dark: #0d141a;
  --safety: #d8ff29;
  --orange: #f05a1a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body,
button,
input,
textarea {
  text-size-adjust: 100%;
}

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

h1,
h2,
h3,
p,
strong,
small,
span,
dt,
dd,
a,
button {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--safety);
  background: var(--dark);
  border-radius: 6px;
  font-size: 13px;
}

.site-header nav {
  display: flex;
  gap: 26px;
  color: #2e3a45;
  font-size: 14px;
}

.site-header nav a {
  padding: 25px 0;
  border-bottom: 2px solid transparent;
}

.site-header nav a:hover {
  border-color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.header-cta,
.btn.primary {
  color: #101510;
  background: var(--safety);
  border-color: var(--safety);
}

.btn.secondary {
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn.dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  background: var(--dark);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 46px;
  width: 210px;
  height: 6px;
  background: var(--safety);
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-poster {
  z-index: 0;
  transition: opacity 0.55s ease;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero.video-ready .hero-video {
  opacity: 1;
}

.hero.video-ready .hero-poster {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.92) 0%, rgba(7, 11, 15, 0.76) 34%, rgba(7, 11, 15, 0.24) 66%, rgba(7, 11, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 14, 20, 0.08), rgba(8, 14, 20, 0.28));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 1px));
  padding: 72px clamp(20px, 5vw, 56px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 26px;
  padding: 10px 18px;
  color: var(--safety);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(216, 255, 41, 0.35);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 790px;
  font-size: clamp(46px, 5.6vw, 78px);
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.hero-content > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: #d9e1e8;
  font-size: 18px;
}

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

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 56px 0 0;
}

.proof div {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.proof dt {
  color: var(--safety);
  font-size: 26px;
  font-weight: 900;
}

.proof dd {
  margin: 4px 0 0;
  color: #d7e0e7;
  font-size: 14px;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

body.js-ready .hero-badge,
body.js-ready .hero-content h1,
body.js-ready .hero-content > p:not(.eyebrow),
body.js-ready .hero-actions,
body.js-ready .proof div {
  animation: riseIn 0.7s ease forwards;
}

body.js-ready .hero-badge {
  animation-delay: 0.08s;
}

body.js-ready .hero-content h1 {
  animation-delay: 0.18s;
}

body.js-ready .hero-content > p:not(.eyebrow) {
  animation-delay: 0.3s;
}

body.js-ready .hero-actions {
  animation-delay: 0.42s;
}

body.js-ready .proof div:nth-child(1) {
  animation-delay: 0.54s;
}

body.js-ready .proof div:nth-child(2) {
  animation-delay: 0.62s;
}

body.js-ready .proof div:nth-child(3) {
  animation-delay: 0.7s;
}

body.js-ready .hero::after {
  transform-origin: right center;
  animation: lineGrow 0.75s ease 0.66s both;
}

.factory-stage {
  position: relative;
  margin-top: -1px;
  padding: 34px 0 94px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 255, 41, 0.16), transparent 28%),
    linear-gradient(135deg, #0b1117 0%, #101a22 46%, #0d141a 100%);
}

.factory-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(216, 255, 41, 0.2);
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 58px;
  overflow: hidden;
  background: rgba(223, 229, 234, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(7, 13, 18, 0.22);
}

.trust-strip div {
  min-height: 94px;
  padding: 21px 24px;
  background: #fff;
}

.trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.factory-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, 0.78fr);
  width: min(1440px, calc(100% - 72px));
  min-height: 640px;
  margin: 0 auto;
  overflow: hidden;
  background: #0d141a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.factory-proof::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--safety), var(--orange));
}

.factory-proof-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111820;
}

.factory-proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 20, 0.06) 0%, rgba(8, 14, 20, 0.12) 52%, rgba(8, 14, 20, 0.76) 100%),
    linear-gradient(180deg, rgba(8, 14, 20, 0) 48%, rgba(8, 14, 20, 0.36) 100%);
}

.factory-proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transition: transform 0.8s ease;
}

.factory-proof:hover .factory-proof-media img {
  transform: scale(1.025);
}

.factory-deep {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 34px;
  width: min(var(--max), calc(100% - 44px));
  margin: 42px auto 0;
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.factory-deep h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
}

.factory-deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.factory-deep-grid span {
  min-height: 168px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.factory-deep-grid strong {
  display: block;
  color: var(--safety);
  font-size: 16px;
  line-height: 1.18;
}

.factory-deep-grid small {
  display: block;
  margin-top: 10px;
  color: #c4d0da;
  font-size: 13px;
  line-height: 1.45;
}

.factory-media-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  max-width: 330px;
  padding: 17px 20px;
  color: var(--ink);
  background: var(--safety);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.factory-media-label strong {
  font-size: 17px;
  line-height: 1.15;
}

.factory-media-label small {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.4;
}

.factory-proof-copy {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px) clamp(34px, 4.2vw, 66px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    #0d141a;
}

.factory-proof-copy h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(40px, 3.25vw, 58px);
  line-height: 0.98;
}

.factory-proof-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 560px;
  color: #c9d3dc;
  font-size: 18px;
}

.factory-proof-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.factory-proof-list span {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.factory-proof-list b {
  color: var(--safety);
  font-size: 13px;
}

.factory-proof-list strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.factory-proof-list small {
  grid-column: 2;
  margin-top: 6px;
  max-width: 500px;
  color: #aebbc6;
  font-size: 13px;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 5px;
  color: var(--safety);
  border-bottom: 2px solid var(--safety);
  font-weight: 900;
}

.text-link span {
  font-size: 20px;
  line-height: 0.8;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section {
  width: min(var(--max), calc(100% - 1px));
  margin: 0 auto;
  padding: 84px clamp(18px, 4vw, 36px);
}

.buyer-signal {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  gap: 34px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 44px;
}

.buyer-signal h2 {
  font-size: clamp(30px, 3vw, 44px);
}

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

.signal-grid a {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.signal-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(17, 24, 32, 0.16);
}

.signal-grid strong {
  display: block;
  color: var(--safety);
  font-size: 21px;
  line-height: 1.15;
}

.signal-grid span {
  display: block;
  margin-top: 38px;
  color: #cbd6df;
  font-size: 14px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  margin: 35px 0 0;
  color: var(--body);
  font-size: 18px;
}

.buyer-flow {
  padding-top: 34px;
}

.standards-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 38px;
}

.standards-preview-copy {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 255, 41, 0.16), transparent 48%),
    var(--dark);
  border-radius: 8px;
}

.standards-preview-copy h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.standards-preview-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #d3dde5;
}

.standards-preview-list {
  display: grid;
  gap: 10px;
}

.standards-preview-list span {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 24px;
  background: #f4f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.standards-preview-list b {
  color: var(--orange);
  font-size: 21px;
}

.standards-preview-list small {
  margin-top: 8px;
  color: var(--body);
  font-size: 14px;
}

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

.flow-grid div {
  min-height: 210px;
  padding: 22px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.flow-grid div:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(17, 24, 32, 0.16);
}

.flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 34px;
  color: var(--dark);
  background: var(--safety);
  border-radius: 4px;
  font-weight: 900;
}

.flow-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.flow-grid p {
  margin: 12px 0 0;
  color: #c8d2dc;
  font-size: 14px;
}

.collection-showcase {
  padding-top: 36px;
}

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

.collection-card {
  position: relative;
  display: grid;
  min-height: 540px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(17, 24, 32, 0.06);
}

.collection-card img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  padding: 6px;
  background: linear-gradient(180deg, #f8fafb, #eef2f4);
  transform: scale(1.18);
  transform-origin: center 54%;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.collection-card:hover img {
  transform: scale(1.24);
  filter: saturate(1.08);
}

.collection-card span {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 12px;
  align-items: center;
  padding: 26px;
  background: #fff;
}

.collection-card strong {
  display: block;
  grid-column: 1;
  font-size: 26px;
  line-height: 1.1;
}

.collection-card em {
  display: block;
  grid-column: 1;
  margin-top: 7px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.collection-card span::after {
  content: ">";
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.collection-card.featured::before {
  content: "View products";
  position: absolute;
  top: 205px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  min-width: 190px;
  padding: 15px 24px;
  color: #fff;
  background: rgba(240, 90, 26, 0.82);
  border-radius: 6px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-card.featured img {
  filter: saturate(1.05) contrast(1.02);
}

.solution-showcase {
  width: min(1080px, calc(100% - 44px));
  padding-top: 70px;
  padding-bottom: 82px;
}

.solution-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.solution-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.05;
}

.solution-head p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--body);
}

.solution-head::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--orange);
}

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

.solution-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 438px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 24, 32, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: #c8d2da;
  box-shadow: 0 22px 52px rgba(17, 24, 32, 0.11);
}

.solution-media {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 16px;
  background: linear-gradient(180deg, #f7f9fa, #eef2f4);
}

.solution-media img {
  width: 100%;
  height: 100%;
  max-height: 306px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.solution-media.product-fit img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  background: #fff;
}

.solution-media.photo-fit img {
  object-fit: cover;
}

.solution-card:hover .solution-media img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.solution-name {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.solution-name strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.15;
}

.solution-name em {
  display: block;
  grid-column: 1;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.solution-name::after {
  content: ">";
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: #f2f5f7;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.product-solution-entry {
  padding-top: 48px;
  padding-bottom: 34px;
}

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

.section-head > a {
  color: var(--dark);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
}

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

.category-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #c7d0d8;
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.category-tile small {
  color: var(--muted);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 100%;
  padding: 12px 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #c7d1d9;
  box-shadow: 0 16px 38px rgba(17, 24, 32, 0.08);
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #f8fafb, #eef2f4);
  border-radius: 6px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.35s ease;
}

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

.product-meta {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card strong {
  color: #111820;
  font-size: 15px;
  line-height: 1.3;
}

.product-specs {
  color: var(--muted);
  font-size: 13px;
}

.split-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
  width: 100%;
  padding: 78px max(18px, calc((100% - var(--max)) / 2 + 36px));
  color: #fff;
  background: var(--dark);
}

.band-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: #c8d2dc;
  font-size: 17px;
}

.capability-list,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.capability-list span,
.industry-grid span {
  padding: 15px 16px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.capability-list strong,
.industry-grid strong {
  display: block;
  line-height: 1.2;
}

.capability-list small,
.industry-grid small {
  display: block;
  margin-top: 7px;
  color: #c8d2dc;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.industry-grid span {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.industry-grid small {
  color: var(--muted);
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 84px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 20, 26, 0.94), rgba(13, 20, 26, 0.86)),
    linear-gradient(135deg, #1b2732, #0d141a);
  border-radius: 8px;
}

.quote-band h2 {
  max-width: 700px;
  font-size: clamp(30px, 3vw, 42px);
}

.quote-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: #d9e1e8;
}

.quote-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.quote-actions .btn.dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.factory-showcase {
  padding-top: 52px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

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

.showcase-grid div {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 14px 14px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #f8fafb, #eef2f4);
  border-radius: 6px;
}

.showcase-grid strong {
  margin-top: 20px;
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.showcase-grid span {
  margin-top: 10px;
  color: var(--body);
}

.page-hero {
  width: 100%;
  padding: 86px max(18px, calc((100% - var(--max)) / 2 + 36px)) 54px;
  background: linear-gradient(180deg, #f8fafb, #edf2f5);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(42px, 4.8vw, 64px);
}

.page-hero p:last-child {
  max-width: 720px;
  color: var(--body);
  font-size: 18px;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 30px;
  overflow-x: clip;
}

.filters button {
  max-width: 100%;
  min-height: 38px;
  padding: 0 14px;
  color: #1d2832;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.filters button.active {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 56px;
  width: min(var(--max), calc(100% - 1px));
  margin: 0 auto;
  padding: 64px clamp(18px, 4vw, 36px);
}

.gallery {
  display: grid;
  gap: 14px;
  align-content: start;
}

.gallery img {
  width: 100%;
  max-height: 620px;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, #f8fafb, #eef2f4);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-info {
  position: sticky;
  top: 98px;
  align-self: start;
}

.product-info h1 {
  max-width: 620px;
  font-size: clamp(34px, 3.7vw, 54px);
}

.product-info > p {
  color: var(--body);
}

.product-info .btn.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
}

.btn.secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  min-height: calc(100vh - 72px);
  color: #fff;
  background: var(--dark);
}

.pdp-gallery {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(28px, 5vw, 70px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 255, 41, 0.16), transparent 38%),
    linear-gradient(180deg, #f7fafb, #e8eef1);
}

.pdp-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--safety), var(--orange));
}

.pdp-gallery img {
  width: min(92%, 720px);
  max-height: 82vh;
  object-fit: contain;
  filter: drop-shadow(0 32px 44px rgba(17, 24, 32, 0.16));
  transition: transform 0.45s ease;
}

.pdp-gallery:hover img {
  transform: scale(1.035);
}

.pdp-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  padding: 9px 13px;
  color: var(--dark);
  background: var(--safety);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pdp-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #0d141a;
}

.pdp-summary h1 {
  max-width: 650px;
  font-size: clamp(38px, 4.3vw, 64px);
}

.pdp-summary > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: #d8e1e8;
  font-size: 18px;
}

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

.pdp-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 42px 0 0;
}

.pdp-proof div {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.pdp-proof dt {
  color: var(--safety);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.pdp-proof dd {
  margin: 8px 0 0;
  color: #cbd6df;
  font-size: 13px;
  text-transform: uppercase;
}

.pdp-spec-panel {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 42px;
  width: min(var(--max), calc(100% - 44px));
  margin: 74px auto 0;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 24, 32, 0.06);
}

.pdp-spec-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.spec-table.enhanced {
  margin-top: 0;
}

.spec-table.enhanced th,
.spec-table.enhanced td {
  padding: 15px 0;
}

.spec-table.enhanced td {
  color: #26323d;
  font-weight: 700;
}

.pdp-buyer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  width: min(var(--max), calc(100% - 44px));
  margin: 18px auto 0;
}

.pdp-card {
  min-height: 310px;
  padding: 34px;
  border-radius: 8px;
}

.pdp-card.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 255, 41, 0.14), rgba(216, 255, 41, 0)),
    var(--dark);
}

.pdp-card.dark h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.pdp-card.dark p:not(.eyebrow) {
  max-width: 520px;
  color: #d2dde5;
}

.pdp-card.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: #edf2f4;
  border: 1px solid var(--line);
}

.pdp-card.checklist span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 15px 16px;
  color: #17212a;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.pdp-video {
  padding-top: 74px;
}

.pdp-video p.band-copy {
  color: var(--body);
}

.pdp-production-control {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 36px;
  padding-bottom: 38px;
}

.production-control-head {
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 255, 41, 0.15), transparent 44%),
    var(--dark);
  border-radius: 8px;
}

.production-control-head h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.production-control-head p:not(.eyebrow) {
  color: #cbd6df;
}

.production-control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.production-control-grid div {
  min-height: 220px;
  padding: 22px;
  background: #f4f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.production-control-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  color: var(--dark);
  background: var(--safety);
  border-radius: 4px;
  font-weight: 900;
}

.production-control-grid strong {
  display: block;
  margin-top: 32px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.production-control-grid p {
  margin: 10px 0 0;
  color: var(--body);
  font-size: 14px;
}

.pdp-reference {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  gap: 38px;
  align-items: center;
  padding-top: 34px;
}

.pdp-reference > div {
  padding: 34px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}

.pdp-reference h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.pdp-reference img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #f8fafb, #eef2f4);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pdp-factory-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.pdp-factory-strip div {
  min-height: 132px;
  padding: 24px;
  color: #fff;
  background: var(--dark);
}

.pdp-factory-strip strong {
  display: block;
  color: var(--safety);
  font-size: 26px;
  line-height: 1;
}

.pdp-factory-strip span {
  display: block;
  margin-top: 12px;
  color: #cbd6df;
  font-size: 14px;
}

.pdp-market-fit {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 34px;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0 18px;
  border-top: 1px solid var(--line);
}

.pdp-market-fit h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.market-tags span {
  padding: 13px 16px;
  color: var(--ink);
  background: #f4f7f8;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.pdp-faq {
  padding-top: 64px;
}

.pdp-faq details {
  border-top: 1px solid var(--line);
}

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

.pdp-faq summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.pdp-faq details p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--body);
}

.product-card.compact .product-image {
  aspect-ratio: 1 / 1;
}

.signal-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-hero {
  background:
    linear-gradient(115deg, rgba(13, 20, 26, 0.94), rgba(13, 20, 26, 0.76)),
    url("/assets/factory-floor.webp") center / cover;
}

.category-hero h1,
.category-hero p:last-child {
  color: #fff;
}

.category-hero .eyebrow {
  color: var(--safety);
}

.seo-intent-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.procurement-grid,
.process-steps,
.evidence-grid,
.buyer-need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.procurement-grid span,
.process-steps div,
.evidence-grid span,
.buyer-need-grid div {
  min-height: 152px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.05);
}

.procurement-grid strong,
.process-steps strong,
.evidence-grid strong,
.buyer-need-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.procurement-grid small,
.process-steps p,
.evidence-grid small {
  display: block;
  margin-top: 10px;
  color: var(--body);
}

.process-steps span,
.buyer-need-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 26px;
  margin-bottom: 26px;
  color: #101510;
  background: var(--safety);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.factory-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 660px;
  color: #fff;
  background: var(--dark);
}

.factory-page-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 92px);
}

.factory-page-hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 0.98;
}

.factory-page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #d9e1e8;
  font-size: 18px;
}

.factory-page-hero img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.process-board {
  width: min(1280px, calc(100% - 48px));
  padding-inline: 0;
}

.factory-evidence {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.evidence-copy {
  position: sticky;
  top: 96px;
}

.buyer-landing {
  background:
    linear-gradient(120deg, rgba(248, 250, 251, 0.96), rgba(235, 241, 244, 0.92)),
    url("/assets/hero-crew.webp") right center / cover;
}

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

.buyer-need-grid div {
  background: #101820;
  border-color: rgba(216, 255, 41, 0.16);
}

.buyer-need-grid strong {
  color: #fff;
}

.buyer-route {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding-top: 28px;
}

.buyer-route h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02;
}

.buyer-route p:not(.eyebrow) {
  max-width: 610px;
  color: var(--body);
}

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

.route-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  font-weight: 900;
}

.route-links a::after {
  content: ">";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: #101510;
  background: var(--safety);
  border-radius: 50%;
}

.seo-card .product-image {
  aspect-ratio: 1 / 0.92;
}

.seo-card .product-image img {
  width: 92%;
  height: 92%;
  margin: auto;
  object-fit: contain;
}

.buyer-box {
  margin-top: 26px;
  padding: 20px;
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.buyer-box h2 {
  font-size: 24px;
}

.buyer-box p {
  margin: 10px 0 0;
  color: var(--body);
}

.buyer-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.buyer-checks span {
  padding: 10px 12px;
  color: #26323d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.detail-factory {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  width: min(var(--max), calc(100% - 44px));
  margin: -10px auto 76px;
  padding: 38px;
  background: #edf2f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-factory h2 {
  max-width: 480px;
  font-size: 30px;
}

.detail-factory > div > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--body);
}

.detail-factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.detail-factory-grid span {
  display: grid;
  align-content: start;
  min-height: 180px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-factory-grid b {
  color: var(--orange);
  font-size: 13px;
}

.detail-factory-grid strong {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.2;
}

.detail-factory-grid small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

body.js-ready .reveal {
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.js-ready .reveal.is-visible {
  transform: translateY(0);
}

.sticky-contact {
  display: none;
}

.spec-table {
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  padding: 13px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  width: 132px;
  color: var(--muted);
}

.media-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: start;
}

.media-section video {
  width: 100%;
  background: var(--dark);
  border-radius: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 34px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 56px clamp(18px, 4vw, 36px) 88px;
}

.rfq-prep {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 44px));
  margin: -18px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(17, 24, 32, 0.08);
}

.rfq-prep div {
  min-height: 120px;
  padding: 23px;
  background: #fff;
}

.rfq-prep strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.rfq-prep span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

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

.rfq-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.rfq-form input,
.rfq-form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.rfq-form label:nth-last-of-type(1) {
  grid-column: 1 / -1;
}

.rfq-form button {
  width: fit-content;
  max-width: 100%;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.contact-panel {
  padding: 34px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}

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

.contact-panel a {
  display: block;
  margin: 10px 0;
  color: var(--safety);
  font-weight: 900;
}

.contact-mini-list {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.contact-mini-list span {
  padding: 12px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.standards-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  min-height: 640px;
  color: #fff;
  background: var(--dark);
}

.standards-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 84px);
}

.standards-hero h1 {
  max-width: 680px;
  font-size: clamp(40px, 4.8vw, 68px);
}

.standards-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #d4dee6;
  font-size: 18px;
}

.standards-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

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

.standard-card {
  min-height: 310px;
  padding: 28px;
  background: #f4f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.standard-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  color: var(--dark);
  background: var(--safety);
  border-radius: 4px;
  font-weight: 900;
}

.standard-card h2 {
  margin-top: 46px;
  font-size: 28px;
}

.standard-card p,
.standard-copy > p {
  color: var(--body);
}

.standard-checklist {
  margin-top: 8px;
}

.standard-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 24px;
  padding: 42px clamp(18px, 4vw, 46px);
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.footer p,
.footer span {
  color: var(--muted);
}

.footer a {
  display: block;
  font-weight: 800;
}

@media (max-width: 980px) {
  .signal-grid-wide,
  .procurement-grid,
  .process-steps,
  .evidence-grid,
  .buyer-need-grid,
  .route-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-intent-panel,
  .factory-page-hero,
  .factory-evidence,
  .buyer-route {
    grid-template-columns: 1fr;
  }

  .factory-page-hero {
    min-height: 0;
  }

  .factory-page-hero > div {
    padding: 58px 28px 38px;
  }

  .factory-page-hero img {
    min-height: 360px;
  }

  .evidence-copy {
    position: static;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-video {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 14, 20, 0.94) 0%, rgba(8, 14, 20, 0.82) 58%, rgba(8, 14, 20, 0.5) 100%),
      linear-gradient(180deg, rgba(8, 14, 20, 0.7), rgba(8, 14, 20, 0.86));
  }

  .proof,
  .trust-strip,
  .factory-proof,
  .intro,
  .buyer-signal,
  .signal-grid,
  .flow-grid,
  .collection-cards,
  .solution-grid,
  .standards-preview,
  .split-band,
  .product-detail,
  .media-section,
  .contact-layout,
  .rfq-prep,
  .quote-band,
  .showcase-grid,
  .standards-hero,
  .standards-grid,
  .standard-copy,
  .footer {
    grid-template-columns: 1fr;
  }

  .product-info {
    position: static;
  }

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

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

  .quote-actions {
    justify-content: flex-start;
  }

  .factory-stage {
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .trust-strip {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .factory-proof {
    width: calc(100% - 44px);
    min-height: 0;
  }

  .factory-proof::after {
    width: 100%;
    height: 6px;
    top: auto;
    bottom: 0;
  }

  .factory-proof-media {
    min-height: 430px;
  }

  .factory-proof-media::after {
    background: linear-gradient(180deg, rgba(8, 14, 20, 0.04), rgba(8, 14, 20, 0.56));
  }

  .factory-proof-copy {
    padding: 42px 30px 48px;
  }

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

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

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

  .standards-hero img {
    min-height: 380px;
  }

  .pdp-hero,
  .pdp-spec-panel,
  .pdp-buyer-grid,
  .pdp-market-fit,
  .pdp-reference,
  .pdp-production-control,
  .pdp-factory-strip {
    grid-template-columns: 1fr;
  }

  .pdp-hero {
    min-height: 0;
  }

  .pdp-gallery {
    min-height: 520px;
  }

  .pdp-summary {
    padding: 44px 28px 54px;
  }

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

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

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

  .factory-deep {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .signal-grid-wide,
  .procurement-grid,
  .process-steps,
  .evidence-grid,
  .buyer-need-grid,
  .route-links {
    grid-template-columns: 1fr;
  }

  .category-hero,
  .buyer-landing {
    padding-top: 54px;
  }

  .factory-page-hero > div {
    padding: 46px 22px 30px;
  }

  .factory-page-hero h1 {
    font-size: 38px;
  }

  .factory-page-hero img {
    min-height: 280px;
  }

  .process-board {
    width: calc(100% - 32px);
  }

  .procurement-grid span,
  .process-steps div,
  .evidence-grid span,
  .buyer-need-grid div {
    min-height: 0;
    padding: 20px;
  }

  .buyer-route h2 {
    font-size: 30px;
  }

  .site-header {
    height: 64px;
  }

  .solution-showcase {
    width: calc(100% - 32px);
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .solution-head {
    margin-bottom: 28px;
  }

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

  .solution-card {
    min-height: 0;
  }

  .solution-media {
    min-height: 300px;
    padding: 12px;
  }

  .solution-media img {
    max-height: 280px;
  }

  .solution-name {
    min-height: 72px;
    padding: 16px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 17px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-poster {
    padding: 0;
    object-fit: cover;
    object-position: 62% center;
  }

  .hero-content {
    padding: 38px 22px 34px;
  }

  .hero-content h1 {
    max-width: 330px;
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }

  .proof {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .factory-stage {
    padding-top: 24px;
    padding-bottom: 54px;
    background:
      linear-gradient(135deg, #0b1117 0%, #111b22 100%);
  }

  .trust-strip {
    width: calc(100% - 32px);
    margin-top: 0;
    margin-bottom: 30px;
  }

  .trust-strip div {
    min-height: 82px;
    padding: 17px 18px;
  }

  .trust-strip strong {
    font-size: 20px;
  }

  .section {
    padding: 64px 22px;
  }

  .section h2,
  .page-hero h1 {
    max-width: 100%;
    font-size: 32px;
  }

  .section p {
    max-width: 100%;
  }

  .category-grid,
  .product-grid,
  .capability-list,
  .industry-grid,
  .buyer-checks,
  .signal-grid,
  .standards-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .buyer-signal {
    padding-top: 58px;
  }

  .signal-grid a {
    min-height: 170px;
  }

  .standards-preview-copy {
    padding: 24px;
  }

  .rfq-prep {
    width: calc(100% - 32px);
    margin-top: -10px;
  }

  .rfq-prep div {
    min-height: 98px;
    padding: 20px;
  }

  .standards-hero {
    min-height: 0;
  }

  .standards-hero > div {
    padding: 42px 22px;
  }

  .standards-hero h1 {
    font-size: 34px;
  }

  .standards-hero img {
    min-height: 300px;
  }

  .standard-card {
    min-height: 0;
    padding: 24px;
  }

  .standard-card h2 {
    margin-top: 32px;
    font-size: 25px;
  }

  .factory-proof {
    width: calc(100% - 32px);
  }

  .factory-proof-media {
    min-height: 330px;
  }

  .factory-media-label {
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 12px 14px;
  }

  .factory-proof-copy {
    padding: 34px 22px 42px;
  }

  .factory-proof-copy h2 {
    max-width: 300px;
    font-size: 29px;
    line-height: 1.08;
  }

  .factory-proof-copy > p:not(.eyebrow) {
    max-width: 310px;
    font-size: 15px;
  }

  .factory-deep {
    width: calc(100% - 32px);
    padding: 24px;
  }

  .factory-deep-grid {
    grid-template-columns: 1fr;
  }

  .factory-deep-grid span {
    min-height: 0;
  }

  .factory-proof-list span {
    grid-template-columns: 32px 1fr;
  }

  .factory-proof-list small {
    max-width: 100%;
  }

  .detail-factory {
    width: calc(100% - 44px);
    margin: 0 auto 58px;
    padding: 26px;
  }

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

  .detail-factory-grid span {
    min-height: 0;
  }

  .detail-factory-grid strong {
    margin-top: 15px;
  }

  .hero-badge {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .collection-card {
    min-height: 430px;
  }

  .collection-card img {
    height: 330px;
    padding: 4px;
    transform: scale(1.14);
  }

  .collection-card strong {
    font-size: 23px;
  }

  .collection-card.featured::before {
    top: 145px;
  }

  .showcase-grid strong {
    font-size: 26px;
  }

  .flow-grid div {
    min-height: 180px;
  }

  .quote-band {
    width: calc(100% - 44px);
    margin-bottom: 78px;
    padding: 26px;
  }

  .sticky-contact {
    position: fixed;
    right: auto;
    bottom: 14px;
    left: 10px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 7px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(17, 24, 32, 0.18);
    backdrop-filter: blur(12px);
  }

  .sticky-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 900;
  }

  .sticky-contact a:first-child {
    color: #101510;
    background: var(--safety);
  }

  .sticky-contact a:last-child {
    color: #fff;
    background: var(--dark);
  }

  .page-hero {
    padding: 62px 22px 40px;
  }

  .product-detail {
    padding: 38px 22px;
  }

  .spec-table {
    display: block;
    overflow-x: auto;
  }

  .product-info h1 {
    font-size: 32px;
  }

  .pdp-hero {
    min-height: 0;
  }

  .pdp-gallery {
    min-height: 430px;
    padding: 54px 20px 42px;
  }

  .pdp-gallery img {
    width: min(100%, 430px);
    max-height: 360px;
  }

  .pdp-label {
    top: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
  }

  .pdp-summary {
    padding: 34px 22px 44px;
  }

  .pdp-summary h1 {
    font-size: 32px;
  }

  .pdp-summary > p:not(.eyebrow) {
    font-size: 16px;
  }

  .pdp-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 280px);
  }

  .pdp-proof,
  .pdp-spec-panel,
  .pdp-buyer-grid,
  .pdp-market-fit,
  .pdp-factory-strip {
    grid-template-columns: 1fr;
  }

  .pdp-proof {
    margin-top: 28px;
  }

  .pdp-proof div {
    min-height: 88px;
  }

  .pdp-spec-panel,
  .pdp-buyer-grid,
  .pdp-market-fit,
  .pdp-factory-strip {
    width: calc(100% - 32px);
  }

  .pdp-spec-panel {
    margin-top: 48px;
    padding: 24px;
  }

  .pdp-card {
    min-height: 0;
    padding: 24px;
  }

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

  .pdp-factory-strip div {
    min-height: 104px;
    padding: 20px;
  }

  .pdp-reference {
    grid-template-columns: 1fr;
  }

  .pdp-reference > div {
    padding: 24px;
  }

  .pdp-reference img {
    max-height: 380px;
  }

  .pdp-market-fit {
    padding-top: 34px;
  }

  .pdp-faq summary {
    font-size: 18px;
  }

  .pdp-production-control {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .production-control-head {
    padding: 24px;
  }

  .production-control-grid {
    grid-template-columns: 1fr;
  }

  .production-control-grid div {
    min-height: 0;
  }

  .production-control-grid strong {
    margin-top: 24px;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 9px;
    font-size: 15px;
  }

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

  .hero-content {
    padding-inline: 18px;
  }

  .hero-badge {
    padding: 9px 12px;
  }

  .hero-actions {
    gap: 9px;
  }

  .factory-proof-copy h2 {
    max-width: 100%;
    font-size: 27px;
  }

  .sticky-contact a {
    font-size: 13px;
  }
}

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


/* B2B factory/category upgrade */
.polished-category-showcase {
  width: min(1040px, calc(100% - 40px));
  padding-top: 76px;
  padding-bottom: 84px;
}

.polished-category-grid {
  gap: 24px;
}

.polished-category-card {
  min-height: 0;
  border-color: #e2e7eb;
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(20, 28, 36, 0.075);
}

.polished-category-card .solution-media {
  aspect-ratio: 3 / 4;
  min-height: 0;
  padding: 12px;
  background: #fff;
}

.polished-category-card .solution-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
}

.polished-category-card .solution-name {
  min-height: 62px;
  padding: 14px 14px 14px 16px;
}

.polished-category-card .solution-name strong {
  font-size: 15px;
  line-height: 1.25;
}

.polished-category-card .solution-name::after {
  width: 30px;
  height: 30px;
  font-size: 17px;
}

.polished-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(20, 28, 36, 0.11);
}

.polished-category-card:hover .solution-media img {
  transform: scale(1.025);
}

.factory-visual-system {
  width: min(1180px, calc(100% - 44px));
  padding-top: 70px;
  padding-bottom: 76px;
}

.factory-system-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.factory-system-head h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
}

.factory-system-head p:not(.eyebrow) {
  color: var(--body);
  font-size: 17px;
}

.factory-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}

.factory-gallery-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}

.factory-gallery-card.large {
  grid-row: span 2;
  min-height: 674px;
}

.factory-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.01);
}

.factory-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(7, 12, 17, 0.9));
}

.factory-gallery-card div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.factory-gallery-card span {
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.factory-gallery-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.08;
}

.factory-gallery-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.factory-advantage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 24, 32, 0.08);
}

.factory-advantage-grid span {
  min-height: 126px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.factory-advantage-grid span:last-child {
  border-right: 0;
}

.factory-advantage-grid b {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.factory-advantage-grid small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.upgraded-factory-hero img {
  max-height: 560px;
  object-fit: cover;
}

.factory-qc-board {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: stretch;
}

.factory-qc-copy {
  padding: 34px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}

.factory-qc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.factory-qc-grid span {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 20px;
  color: var(--ink);
  background: #f4f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.pdp-customization-lab {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  padding-top: 44px;
  padding-bottom: 38px;
}

.custom-lab-head {
  padding: 34px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}

.custom-lab-head h2,
.pdp-factory-copy h2,
.factory-qc-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.custom-lab-head p:not(.eyebrow),
.pdp-factory-copy p:not(.eyebrow),
.factory-qc-copy p:not(.eyebrow) {
  color: #cbd6df;
}

.custom-lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.custom-lab-grid div {
  min-height: 178px;
  padding: 20px;
  background: #f5f8f9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.custom-lab-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 28px;
  color: var(--dark);
  background: var(--safety);
  border-radius: 4px;
  font-weight: 900;
}

.custom-lab-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
}

.custom-lab-grid p {
  margin: 9px 0 0;
  color: var(--body);
  font-size: 14px;
}

.pdp-factory-evidence {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: stretch;
  padding-top: 20px;
  padding-bottom: 44px;
}

.pdp-factory-copy {
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, rgba(216, 255, 41, 0.14), transparent 44%), var(--dark);
  border-radius: 8px;
}

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

.pdp-factory-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #111920;
  border-radius: 8px;
}

.pdp-factory-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.pdp-factory-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .polished-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-gallery-grid,
  .factory-qc-board,
  .pdp-customization-lab,
  .pdp-factory-evidence {
    grid-template-columns: 1fr;
  }

  .factory-gallery-card.large {
    grid-row: auto;
    min-height: 360px;
  }

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

  .factory-advantage-grid span:nth-child(2n) {
    border-right: 0;
  }

  .custom-lab-grid,
  .pdp-factory-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .polished-category-grid {
    grid-template-columns: 1fr;
  }

  .polished-category-showcase,
  .factory-visual-system {
    width: calc(100% - 28px);
  }

  .polished-category-card {
    min-height: 0;
  }

  .polished-category-card .solution-media {
    min-height: 0;
  }

  .factory-advantage-grid,
  .factory-qc-grid,
  .custom-lab-grid,
  .pdp-factory-gallery {
    grid-template-columns: 1fr;
  }

  .factory-advantage-grid span,
  .factory-advantage-grid span:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .factory-gallery-card,
  .factory-gallery-card.large,
  .pdp-factory-gallery figure {
    min-height: 300px;
  }
}

/* 20260911 visual proof, category navigation and image-led OEM modules */
.product-nav-strip {
  position: sticky;
  top: 72px;
  z-index: 19;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  padding: 0 clamp(14px, 3vw, 34px);
  overflow-x: auto;
  color: #2d3942;
  background: rgba(248, 250, 251, 0.97);
  border-bottom: 1px solid #dce3e8;
  box-shadow: 0 8px 18px rgba(10, 18, 24, 0.04);
  scrollbar-width: none;
  white-space: nowrap;
}

.product-nav-strip::-webkit-scrollbar {
  display: none;
}

.product-nav-strip a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 14px 19px 11px;
  border-bottom: 3px solid transparent;
  font-size: 13px;
  font-weight: 750;
}

.product-nav-strip a:hover,
.product-nav-strip a:focus-visible {
  color: #0b1217;
  border-bottom-color: var(--orange);
}

.factory-evidence-mosaic {
  grid-template-columns: 1.7fr repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(172px, 1fr));
}

.factory-evidence-mosaic .factory-evidence-main {
  grid-row: 1 / span 3;
  min-height: 540px;
}

.factory-evidence-mosaic figure:last-child {
  grid-column: auto;
}

.factory-evidence-mosaic figure:not(.factory-evidence-main) {
  min-height: 172px;
}

.factory-evidence-mosaic figure:not(.factory-evidence-main) figcaption {
  right: 14px;
  bottom: 13px;
  left: 14px;
}

.factory-evidence-mosaic figure:not(.factory-evidence-main) figcaption strong {
  font-size: 15px;
}

.pdp-custom-gallery {
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 12px;
}

.pdp-custom-gallery figure {
  position: relative;
  min-width: 0;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #eef2f4;
  border: 1px solid #dce3e8;
  border-radius: 6px;
}

.pdp-custom-gallery .pdp-custom-primary {
  grid-row: 1 / span 2;
  min-height: 532px;
}

.pdp-custom-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pdp-custom-gallery figure:hover img {
  transform: scale(1.025);
}

.pdp-custom-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(7, 13, 18, 0.9));
  pointer-events: none;
}

.pdp-custom-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: #fff;
}

.pdp-custom-gallery figcaption span,
.pdp-custom-gallery figcaption strong {
  display: block;
}

.pdp-custom-gallery figcaption span {
  margin-bottom: 5px;
  color: var(--safety);
  font-size: 11px;
  font-weight: 900;
}

.pdp-custom-gallery figcaption strong {
  font-size: 17px;
  line-height: 1.2;
}

.pdp-custom-gallery figcaption p {
  max-width: 430px;
  margin: 10px 0 0;
  color: #d3dce0;
  font-size: 14px;
}

.pdp-custom-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pdp-production-journey {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
}

/* Full-resolution supplier capability proof used on product detail pages. */
.pdp-capability-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: min(1000px, 100%);
  margin-inline: auto;
}

.pdp-capability-visuals img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #dce3e8;
  border-radius: 6px;
}

.pdp-capability-visuals img:last-child {
  grid-column: auto;
  width: 100%;
}

.pdp-production-proof {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 88px;
  padding: 72px 0 0;
  border-top: 1px solid var(--line);
}

.pdp-production-proof figure {
  width: min(1000px, 100%);
  margin: 36px auto 0;
}

.pdp-production-proof img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #dce3e8;
  border-radius: 6px;
}

.pdp-production-proof figcaption {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .pdp-capability-visuals {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pdp-capability-visuals img:last-child {
    grid-column: auto;
    width: 100%;
  }

  .pdp-production-proof {
    width: calc(100% - 28px);
    margin-bottom: 58px;
    padding-top: 54px;
  }
}

.pdp-production-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(420px, 1fr) 190px;
  gap: 2px;
  min-width: 0;
  background: #202b32;
}

.pdp-production-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #172128;
}

.pdp-production-gallery .pdp-production-main {
  grid-column: 1 / -1;
}

.pdp-production-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.pdp-production-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 9, 13, 0.86));
}

.pdp-production-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 13px;
  left: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .product-nav-strip {
    justify-content: flex-start;
  }

  .factory-evidence-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .factory-evidence-mosaic .factory-evidence-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 460px;
  }
}

@media (max-width: 980px) {
  .pdp-custom-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .pdp-custom-gallery .pdp-custom-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 480px;
  }

  .pdp-production-gallery {
    grid-template-rows: minmax(440px, 1fr) 190px;
  }
}

@media (max-width: 760px) {
  .product-nav-strip {
    top: 64px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .product-nav-strip a {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 640px) {
  .factory-evidence-mosaic,
  .pdp-custom-gallery {
    grid-template-columns: 1fr;
  }

  .factory-evidence-mosaic .factory-evidence-main,
  .factory-evidence-mosaic figure:not(.factory-evidence-main),
  .pdp-custom-gallery .pdp-custom-primary,
  .pdp-custom-gallery figure {
    grid-column: auto;
    min-height: 310px;
  }

  .pdp-production-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 340px repeat(3, 180px);
  }

  .pdp-production-gallery .pdp-production-main {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .factory-evidence-mosaic img,
  .pdp-custom-gallery img {
    transition: none;
  }
}

/* Unified factory and product-detail content system */
.factory-system-v2 {
  color: #f4f7f8;
  background: #0b1217;
  padding: 0 0 88px;
}

.factory-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce3e8;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.factory-trust-bar span {
  min-height: 96px;
  padding: 22px 26px;
  border-right: 1px solid #dce3e8;
}

.factory-trust-bar span:last-child {
  border-right: 0;
}

.factory-trust-bar strong,
.factory-trust-bar small {
  display: block;
}

.factory-trust-bar strong {
  font-size: 21px;
  line-height: 1.1;
}

.factory-trust-bar small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.factory-system-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 76px;
}

.factory-system-title {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 34px;
}

.factory-system-title h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.02;
}

.factory-system-title > div:last-child p {
  margin-top: 0;
  color: #b9c4ca;
  font-size: 16px;
}

.factory-system-title .text-link {
  color: var(--safety);
  border-color: var(--safety);
}

.factory-evidence-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 12px;
}

.factory-evidence-mosaic figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: #172128;
  border-radius: 6px;
}

.factory-evidence-mosaic .factory-evidence-main {
  grid-row: 1 / span 2;
  min-height: 472px;
}

.factory-evidence-mosaic figure:last-child {
  grid-column: 2 / span 2;
}

.factory-evidence-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.factory-evidence-mosaic figure:hover img {
  transform: scale(1.025);
  opacity: 1;
}

.factory-evidence-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(5, 10, 14, 0.9));
}

.factory-evidence-mosaic figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.factory-evidence-mosaic figcaption span,
.factory-evidence-mosaic figcaption strong {
  display: block;
}

.factory-evidence-mosaic figcaption span {
  margin-bottom: 5px;
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.factory-evidence-mosaic figcaption strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.factory-process-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-top: 66px;
  margin-bottom: 24px;
}

.factory-process-heading h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.06;
}

.factory-process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #33414a;
  border-bottom: 1px solid #33414a;
}

.factory-process-track li {
  min-height: 218px;
  padding: 24px 20px 26px;
  border-right: 1px solid #33414a;
}

.factory-process-track li:last-child {
  border-right: 0;
}

.factory-process-track span {
  color: var(--safety);
  font-size: 13px;
  font-weight: 900;
}

.factory-process-track strong {
  display: block;
  margin-top: 30px;
  color: #fff;
  font-size: 17px;
}

.factory-process-track p {
  margin-bottom: 0;
  color: #aab6bd;
  font-size: 14px;
  line-height: 1.55;
}

.factory-control-strip,
.pdp-quality-gates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  background: #121c22;
  border: 1px solid #2b3941;
  border-radius: 6px;
}

.factory-control-strip span,
.pdp-quality-gates span {
  padding: 20px 22px;
  border-right: 1px solid #2b3941;
}

.factory-control-strip span:last-child,
.pdp-quality-gates span:last-child {
  border-right: 0;
}

.factory-control-strip strong,
.factory-control-strip small,
.pdp-quality-gates strong,
.pdp-quality-gates small {
  display: block;
}

.factory-control-strip strong,
.pdp-quality-gates strong {
  color: #fff;
  font-size: 15px;
}

.factory-control-strip small,
.pdp-quality-gates small {
  margin-top: 5px;
  color: #9fadb5;
  font-size: 13px;
}

.pdp-custom-system {
  width: min(1180px, calc(100% - 44px));
  padding-top: 76px;
  padding-bottom: 82px;
}

.pdp-system-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 32px;
}

.pdp-system-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.04;
}

.pdp-system-heading > p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
}

.pdp-custom-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pdp-custom-options article {
  min-height: 182px;
  padding: 24px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pdp-custom-options span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.pdp-custom-options strong {
  display: block;
  margin-top: 23px;
  color: var(--ink);
  font-size: 18px;
}

.pdp-custom-options p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pdp-production-journey {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto 88px;
  overflow: hidden;
  color: #f4f7f8;
  background: #0b1217;
  border-radius: 8px;
}

.pdp-production-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.pdp-production-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.pdp-production-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 10, 14, 0.9));
}

.pdp-production-media > div {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 30px;
  left: 32px;
}

.pdp-production-media span,
.pdp-production-media strong {
  display: block;
}

.pdp-production-media span {
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pdp-production-media strong {
  max-width: 420px;
  margin-top: 7px;
  color: #fff;
  font-size: 29px;
  line-height: 1.05;
}

.pdp-production-content {
  padding: 56px 48px 42px;
}

.pdp-production-content h2 {
  margin: 0 0 30px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
}

.pdp-production-content ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #33414a;
}

.pdp-production-content li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #33414a;
}

.pdp-production-content li > span {
  color: var(--safety);
  font-size: 12px;
  font-weight: 900;
}

.pdp-production-content li strong {
  color: #fff;
  font-size: 16px;
}

.pdp-production-content li p {
  margin: 5px 0 0;
  color: #aab6bd;
  font-size: 13px;
  line-height: 1.5;
}

.pdp-quality-gates {
  grid-column: 1 / -1;
  margin: 0;
  border-width: 1px 0 0;
  border-radius: 0;
}

@media (max-width: 980px) {
  .factory-system-title,
  .pdp-system-heading,
  .pdp-production-journey {
    grid-template-columns: 1fr;
  }

  .factory-system-title,
  .pdp-system-heading {
    gap: 24px;
  }

  .factory-evidence-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .factory-evidence-mosaic .factory-evidence-main,
  .factory-evidence-mosaic figure:last-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .factory-evidence-mosaic .factory-evidence-main {
    min-height: 440px;
  }

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

  .factory-process-track li,
  .factory-process-track li:last-child {
    min-height: 190px;
    border-right: 1px solid #33414a;
    border-bottom: 1px solid #33414a;
  }

  .pdp-custom-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdp-production-media {
    min-height: 480px;
  }
}

@media (max-width: 640px) {
  .factory-system-v2 {
    padding-bottom: 58px;
  }

  .factory-trust-bar,
  .factory-control-strip,
  .pdp-quality-gates {
    grid-template-columns: 1fr;
  }

  .factory-trust-bar {
    width: calc(100% - 28px);
  }

  .factory-trust-bar span,
  .factory-trust-bar span:last-child,
  .factory-control-strip span,
  .factory-control-strip span:last-child,
  .pdp-quality-gates span,
  .pdp-quality-gates span:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #dce3e8;
  }

  .factory-control-strip span,
  .factory-control-strip span:last-child,
  .pdp-quality-gates span,
  .pdp-quality-gates span:last-child {
    border-bottom-color: #2b3941;
  }

  .factory-trust-bar span:last-child,
  .factory-control-strip span:last-child,
  .pdp-quality-gates span:last-child {
    border-bottom: 0;
  }

  .factory-system-shell,
  .pdp-custom-system,
  .pdp-production-journey {
    width: calc(100% - 28px);
  }

  .factory-system-shell {
    padding-top: 58px;
  }

  .factory-system-title h2,
  .pdp-system-heading h2 {
    font-size: 34px;
  }

  .factory-evidence-mosaic,
  .factory-process-track,
  .pdp-custom-options {
    grid-template-columns: 1fr;
  }

  .factory-evidence-mosaic .factory-evidence-main,
  .factory-evidence-mosaic figure,
  .factory-evidence-mosaic figure:last-child {
    min-height: 320px;
  }

  .factory-process-heading {
    display: block;
    margin-top: 48px;
  }

  .factory-process-track li,
  .factory-process-track li:last-child {
    min-height: 0;
    border-right: 0;
  }

  .factory-process-track strong {
    margin-top: 18px;
  }

  .pdp-custom-system {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .pdp-custom-options article {
    min-height: 0;
  }

  .pdp-production-media {
    min-height: 360px;
  }

  .pdp-production-content {
    padding: 38px 24px 30px;
  }

  .pdp-production-media > div {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .pdp-production-media strong {
    font-size: 24px;
  }
}

/* Keep the visual-proof layout authoritative after legacy module rules. */
.factory-evidence-mosaic {
  grid-template-columns: 1.7fr repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(172px, 1fr));
}

.factory-evidence-mosaic .factory-evidence-main {
  grid-row: 1 / span 3;
  min-height: 540px;
}

.factory-evidence-mosaic figure:last-child {
  grid-column: auto;
}

.factory-evidence-mosaic figure:not(.factory-evidence-main) {
  min-height: 172px;
}

.pdp-production-journey {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
}

@media (max-width: 1100px) {
  .factory-evidence-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .factory-evidence-mosaic .factory-evidence-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 460px;
  }
}

@media (max-width: 980px) {
  .pdp-production-journey {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .factory-evidence-mosaic {
    grid-template-columns: 1fr;
  }

  .factory-evidence-mosaic .factory-evidence-main,
  .factory-evidence-mosaic figure:not(.factory-evidence-main),
  .factory-evidence-mosaic figure:last-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
  }
}
