:root {
  --ink: #17202b;
  --muted: #5d6973;
  --line: #dce2e4;
  --panel: #f7f9f8;
  --white: #ffffff;
  --green: #21493f;
  --green-2: #16352f;
  --blue: #23384f;
  --orange: #d8782f;
  --orange-2: #b95f22;
  --soft: #eef3f1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #24303b;
  font-size: 14px;
  font-weight: 760;
}

.nav a {
  white-space: nowrap;
}

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

.nav a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(216,120,47,.18);
}

.nav a:last-child:hover {
  background: var(--orange-2);
  color: #fff;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 62px 0;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
}

.button:hover {
  background: var(--green-2);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 58px;
}

.hero p {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 18px 54px rgba(23,32,43,.1);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfb;
}

.proof-strip .section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.proof-strip strong,
.proof-strip .section > div > span:not(.proof-icon) {
  display: block;
}

.proof-strip .section > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 4px 22px;
}

.proof-strip .section > div:last-child {
  border-right: 0;
}

.proof-icon {
  grid-row: 1 / span 2;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #d8e3df;
  border-radius: 8px;
  background: #f4f8f6;
  color: var(--green);
}

.proof-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon-text {
  color: var(--rust);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .03em;
}

.proof-strip strong {
  grid-column: 2;
  font-size: 15px;
}

.proof-strip .section > div > span:not(.proof-icon) {
  grid-column: 2;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  gap: 50px;
  align-items: end;
  margin-bottom: 24px;
}

.section-title p {
  margin-bottom: 0;
  line-height: 1.75;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23,32,43,.045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216,120,47,.45);
  box-shadow: 0 20px 42px rgba(23,32,43,.08);
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card div {
  padding: 18px;
}

.category-card p {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.65;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.spec-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid #dce5e2;
  border-radius: 999px;
  padding: 0 8px;
  background: #f5f8f7;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid #c7d3d0;
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(23,32,43,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}

.text-link span {
  display: inline-block;
  transition: transform .2s ease;
}

.category-card:hover .text-link,
.product-card:hover .text-link {
  transform: translateX(4px);
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(27,75,63,.18);
}

.category-card:hover .text-link span,
.product-card:hover .text-link span {
  transform: translateX(3px);
}

.sample-callout {
  display: grid;
  grid-template-columns: .8fr 1fr auto;
  gap: 26px;
  align-items: center;
  border: 1px solid #e4d2bd;
  border-radius: 8px;
  padding: 30px;
  background: #fff8ef;
}

.sample-callout h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.4vw, 36px);
}

.sample-callout p {
  margin-bottom: 0;
  line-height: 1.7;
}

.band {
  background: var(--panel);
}

.capability-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

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

.capability-list.oem-list {
  grid-template-columns: repeat(4, 1fr);
}

.capability-list article,
.spec-card,
.application-grid article,
.product-card,
.rfq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23,32,43,.035);
}

.capability-list article {
  position: relative;
  padding: 24px;
}

.capability-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid #b9cbc5;
  border-radius: 50%;
  background: #f4f8f6;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.capability-list article h3 {
  margin-bottom: 9px;
}

.capability-list article p {
  margin-bottom: 0;
}

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

.spec-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.spec-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-card div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.spec-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.spec-card dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.rfq-spec-select {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid #cfd8d6;
  border-radius: 6px;
  padding: 10px 11px;
  background: #f8fbfa;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.rfq-spec-select input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.custom-capability {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.custom-capability article {
  border: 1px solid #d9e2df;
  border-radius: 8px;
  padding: 18px;
  background: #f8fbfa;
}

.custom-capability strong,
.custom-capability span {
  display: block;
}

.custom-capability strong {
  color: var(--green);
  font-size: 15px;
}

.custom-capability span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

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

.application-grid article {
  min-height: 118px;
  padding: 18px;
}

.application-grid strong {
  display: block;
  font-size: 15px;
}

.application-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

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

.industry-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23,32,43,.035);
}

.industry-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.industry-card h3 {
  margin-bottom: 8px;
}

.industry-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.industry-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  object-fit: cover;
}

.quote-guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-guide article {
  min-height: 150px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.quote-guide article:last-child {
  border-right: 0;
}

.quote-guide strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 14px;
}

.quote-guide span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fff;
}

.trust-strip div {
  border-right: 1px solid var(--line);
  padding: 22px;
}

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

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 15px;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.automation-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.automation-copy > p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
}

.automation-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}

.automation-points article {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 14px;
}

.automation-points strong,
.automation-points span {
  display: block;
}

.automation-points strong {
  color: var(--ink);
  font-size: 15px;
}

.automation-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.automation-video,
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23,32,43,.08);
}

.automation-video video,
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e8ecea;
  object-fit: cover;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.video-grid .production-photo-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.production-photo-card img {
  height: 100%;
  min-height: 280px;
}

.video-card div {
  padding: 18px;
}

.video-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.video-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.factory-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.factory-row figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--soft);
}

.factory-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.factory-row figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
}

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

.evidence-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23,32,43,.055);
}

.evidence-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.evidence-card:first-child img {
  object-position: center 42%;
}

.evidence-card figcaption {
  padding: 18px;
}

.evidence-card strong,
.evidence-card span {
  display: block;
}

.evidence-card strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
}

.evidence-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.export-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.export-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #cfdbd7;
  border-radius: 6px;
  padding: 0 11px;
  background: #f5f8f7;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.export-proof .export-points {
  justify-content: center;
  margin-bottom: 0;
}

.proof-feature {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.proof-feature > img {
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(23,32,43,.1);
}

.proof-feature > div {
  max-width: 620px;
}

.proof-feature > div > p {
  font-size: 16px;
  line-height: 1.75;
}

.proof-feature h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.proof-feature-reverse > img {
  order: 2;
}

.factory-video-feature {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 54px;
  align-items: center;
}

.factory-video-feature > div > p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.75;
}

.factory-video-feature > video,
.factory-video-card video {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 18px 46px rgba(23,32,43,.12);
}

.factory-video-feature > video {
  max-height: 590px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  justify-self: end;
}

.factory-video-feature-oem {
  grid-template-columns: .8fr minmax(300px, 430px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.factory-video-feature-oem h3 {
  font-size: clamp(26px, 2.8vw, 38px);
}

.factory-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.factory-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23,32,43,.04);
}

.factory-video-card video {
  border-radius: 0;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  box-shadow: none;
}

.factory-video-card > div {
  padding: 16px;
}

.factory-video-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.factory-video-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.62;
}

.dyeing-video-section {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.dyeing-video-title {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  gap: 44px;
  align-items: end;
  margin-bottom: 20px;
}

.dyeing-video-title h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.7vw, 38px);
}

.dyeing-video-title p {
  margin-bottom: 0;
  line-height: 1.7;
}

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

.dyeing-video-card {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23,32,43,.04);
}

.dyeing-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 1 / 1;
  background: #111;
  object-fit: cover;
}

.dyeing-video-card > div {
  align-self: center;
  padding: 20px;
}

.dyeing-video-card strong,
.dyeing-video-card span {
  display: block;
}

.dyeing-video-card strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.dyeing-video-card p {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.65;
}

.dyeing-video-card span {
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.process-video-card {
  display: grid;
  grid-template-columns: minmax(190px, .8fr) 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23,32,43,.04);
}

.process-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  aspect-ratio: 9 / 16;
  background: #111;
  object-fit: contain;
}

.process-video-card > div {
  align-self: center;
  padding: 22px;
}

.process-video-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.process-video-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.68;
}

.product-video-feature > video {
  justify-self: start;
}

.logistics-video-section {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.logistics-video-section h3 {
  font-size: clamp(26px, 2.7vw, 38px);
}

.rfq-band {
  background: var(--green);
  color: #fff;
}

.rfq-band .section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.rfq-band p,
.rfq-band .eyebrow {
  color: rgba(255,255,255,.78);
}

.rfq-layout {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 36px;
  align-items: start;
}

.rfq-layout h2 {
  max-width: 520px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.08;
}

.rfq-layout > div > p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
}

.rfq-card {
  padding: 20px;
  color: var(--ink);
}

.rfq-card p {
  color: var(--muted);
}

.stepped-rfq h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.rfq-kicker {
  margin-bottom: 12px;
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff8ef;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
}

.rfq-band .rfq-kicker {
  color: var(--orange-2);
}

.step-note {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.rfq-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.rfq-progress span {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rfq-progress span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: transparent;
}

.rfq-progress span.is-active {
  color: var(--green);
}

.rfq-progress span.is-active::after {
  background: var(--orange);
}

.rfq-step.is-hidden {
  display: none;
}

.rfq-grid.compact {
  gap: 10px 12px;
}

.rfq-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.rfq-actions.split {
  justify-content: space-between;
}

.rfq-actions .button {
  min-width: 150px;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cfd8d6;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
}

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

.form-status {
  margin: 12px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.privacy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-panel {
  margin-top: 26px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.07);
}

.contact-panel strong {
  display: block;
  margin-bottom: 10px;
}

.contact-panel p {
  margin-bottom: 6px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.contact-panel a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding-top: 46px;
}

.product-hero img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card .text-link {
  margin-top: auto;
}

.footer {
  background: #14202c;
  color: #fff;
}

.footer .section {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 42px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 9px 0;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
}

.footer-rfq {
  display: none;
}

.floating-contact-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  gap: 8px;
  width: 238px;
}

.floating-contact-stack a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-radius: 6px;
  padding: 10px 14px;
  box-shadow: 0 16px 44px rgba(23,32,43,.18);
}

.floating-contact-stack strong,
.floating-contact-stack small {
  display: block;
}

.floating-contact-stack strong {
  font-size: 14px;
  line-height: 1.2;
}

.floating-contact-stack small {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  opacity: .78;
}

.floating-whatsapp {
  gap: 10px;
  background: #176b51;
  color: #fff;
}

.contact-status {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: #4ade80;
}

.floating-quote {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.floating-whatsapp:hover {
  background: #11543f;
}

.floating-quote:hover {
  background: var(--orange);
  color: #fff;
}

.whatsapp-button {
  background: #176b51;
  border-color: #176b51;
}

.whatsapp-button:hover {
  background: #11543f;
  border-color: #11543f;
}

.spec-matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.spec-matrix {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.spec-matrix th,
.spec-matrix td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  vertical-align: top;
}

.spec-matrix thead th {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.spec-matrix tbody th {
  color: var(--green-2);
  font-size: 15px;
}

.spec-matrix tbody tr:last-child > * {
  border-bottom: 0;
}

.color-code-heading {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  align-items: end;
  margin-top: 38px;
}

.color-code-heading h3,
.color-code-heading p {
  margin-bottom: 0;
}

.color-code-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.color-code-grid article {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.color-code-grid p {
  margin: 4px 0 0;
  font-size: 13px;
}

.color-swatch {
  flex: 0 0 34px;
  width: 34px;
  height: 50px;
  border: 1px solid rgba(23,32,43,.14);
  border-radius: 5px;
}

.swatch-blue { background: #3c82b8; }
.swatch-red { background: #c94b4b; }
.swatch-yellow { background: #e1b93e; }
.swatch-green { background: #4c8f67; }

.size-guide-formula {
  margin: 16px 0 0;
  color: var(--ink);
}

.standard-size-groups {
  display: grid;
  grid-template-columns: 1.25fr 1fr .7fr;
  gap: 14px;
}

.standard-size-groups article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
}

.standard-size-groups strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-2);
}

.standard-size-groups article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.standard-size-groups span {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 7px 9px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.size-match-title {
  margin-top: 48px;
}

.apron-range-table th:first-child {
  min-width: 220px;
}

.apron-technical-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.apron-technical-copy p {
  max-width: 520px;
}

.apron-technical-section figure {
  margin: 0;
}

.apron-technical-section figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.technical-drawing-link {
  display: block;
}

.apron-technical-section figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.product-sample-cta,
.factory-compliance-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-sample-cta h2,
.factory-compliance-note h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 42px);
}

.product-sample-cta p,
.factory-compliance-note p {
  max-width: 760px;
  margin-bottom: 0;
}

.product-sample-cta .button,
.factory-compliance-note .button {
  max-width: 340px;
  text-align: center;
}

.factory-profile-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding-top: 46px;
}

.factory-profile-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.factory-proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.factory-proof-strip .section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.factory-proof-strip strong,
.factory-proof-strip span {
  display: block;
}

.factory-proof-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

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

.factory-workflow article {
  border-top: 3px solid var(--orange);
  padding-top: 18px;
}

.factory-workflow article > span {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
}

.factory-workflow h3 {
  margin-top: 18px;
}

.factory-profile-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.factory-profile-videos article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.factory-profile-videos video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #101820;
  object-fit: cover;
}

.factory-profile-videos article > div {
  padding: 18px;
}

.factory-profile-videos p {
  margin: 6px 0 0;
}

.factory-gallery > div:last-child,
.factory-export-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.factory-gallery figure {
  margin: 0;
}

.factory-gallery img,
.factory-export-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.factory-gallery figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.factory-export-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.factory-export-grid h3,
.factory-export-grid p {
  margin-right: 18px;
  margin-left: 18px;
}

.factory-export-grid h3 {
  margin-top: 18px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 980px) {
  .hero,
  .section-title,
  .capability-grid,
  .rfq-layout,
  .automation-section,
  .product-hero,
  .proof-feature,
  .factory-video-feature {
    grid-template-columns: 1fr;
  }

  .factory-profile-hero,
  .product-sample-cta,
  .factory-compliance-note,
  .apron-technical-section {
    grid-template-columns: 1fr;
  }

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

  .standard-size-groups article:last-child {
    grid-column: 1 / -1;
  }

  .factory-proof-strip .section,
  .factory-workflow {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .factory-video-feature > video {
    max-height: 540px;
    justify-self: center;
  }

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

  .dyeing-video-title,
  .dyeing-video-card {
    grid-template-columns: 1fr;
  }

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

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

  .process-video-card {
    grid-template-columns: minmax(210px, .7fr) 1.3fr;
  }

  .dyeing-video-card video {
    min-height: 0;
  }

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

  .evidence-card:last-child {
    grid-column: 1 / -1;
  }

  .proof-feature > img {
    max-height: 520px;
    aspect-ratio: 16 / 10;
  }

  .proof-feature-reverse > img {
    order: 0;
  }

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

  .proof-strip .section,
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(23,32,43,.16);
  }

  .nav a:last-child {
    width: 100%;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 640px) {
  body.has-mobile-contact-bar {
    padding-bottom: 66px;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 44px 0;
  }

  .hero {
    position: relative;
    width: 100%;
    min-height: clamp(610px, 82svh, 760px);
    margin: 0;
    padding: 58px 22px 54px;
    align-content: center;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(16,31,39,.52), rgba(16,31,39,.84)),
      url("./assets/hero-commercial-textiles.webp") center / cover no-repeat;
    color: #fff;
    text-align: center;
  }

  .hero > div:first-child {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero .eyebrow {
    color: rgba(255,255,255,.78);
  }

  .hero p {
    margin-inline: auto;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.62;
  }

  .hero .hero-actions {
    justify-content: center;
  }

  .hero .hero-actions .button {
    min-height: 48px;
    padding: 0 16px;
  }

  .hero .hero-actions .button:first-child {
    background: #fff;
    color: var(--green);
  }

  .hero .hero-actions .button.secondary {
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.12);
    color: #fff;
    backdrop-filter: blur(8px);
  }

  .hero-media {
    display: none;
  }

  .hero h1 {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1.08;
  }

  h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .category-grid,
  .spec-grid,
  .product-list-grid,
  .video-grid,
  .capability-list,
  .capability-list.oem-list,
    .factory-row,
    .evidence-grid,
    .industry-grid,
  .sample-callout,
  .quote-guide,
  .trust-strip,
  .rfq-grid,
  .footer .section {
    grid-template-columns: 1fr;
  }

  .evidence-card:last-child {
    grid-column: auto;
  }

  .evidence-card img,
  .proof-feature > img {
    aspect-ratio: 16 / 11;
  }

  .proof-feature {
    gap: 24px;
  }

  .proof-feature h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .proof-feature .button {
    width: 100%;
    min-height: 48px;
  }

  .export-proof .export-points {
    justify-content: flex-start;
  }

  .factory-video-feature {
    gap: 24px;
  }

  .color-code-heading,
  .factory-profile-videos,
  .factory-gallery > div:last-child,
  .factory-export-grid,
  .factory-proof-strip .section,
  .factory-workflow {
    grid-template-columns: 1fr;
  }

  .standard-size-groups {
    grid-template-columns: 1fr;
  }

  .standard-size-groups article:last-child {
    grid-column: auto;
  }

  .apron-technical-section {
    gap: 24px;
  }

  .apron-technical-copy .button {
    width: 100%;
  }

  .color-code-heading {
    gap: 12px;
  }

  .color-code-grid {
    display: flex;
    gap: 12px;
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 2px 14px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .color-code-grid article {
    flex: 0 0 230px;
    scroll-snap-align: start;
  }

  .product-sample-cta,
  .factory-compliance-note {
    gap: 24px;
  }

  .product-sample-cta .button,
  .factory-compliance-note .button {
    width: 100%;
    max-width: none;
    min-height: 52px;
    padding: 10px 16px;
  }

  .factory-profile-hero {
    gap: 26px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,.18);
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
    background: rgba(20,32,44,.97);
    box-shadow: 0 -10px 30px rgba(23,32,43,.18);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
  }

  .mobile-contact-bar a:first-child {
    border-color: var(--orange);
    background: var(--orange);
  }

  .factory-video-feature > video {
    width: min(100%, 330px);
    max-height: none;
  }

  .factory-video-feature .button {
    width: 100%;
    min-height: 48px;
  }

  .factory-video-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: calc(100% + 28px);
    margin: 22px -14px 0;
    padding: 4px 14px 18px;
    overflow-x: auto;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .factory-video-grid::-webkit-scrollbar {
    height: 0;
  }

  .factory-video-card {
    flex: 0 0 min(78vw, 306px);
    scroll-snap-align: start;
  }

  .dyeing-video-title {
    gap: 12px;
  }

  .dyeing-video-grid {
    grid-template-columns: 1fr;
  }

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

  .dyeing-video-card video {
    aspect-ratio: 1 / 1;
  }

  .process-video-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 4px 14px 18px;
    overflow-x: auto;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .process-video-grid::-webkit-scrollbar {
    height: 0;
  }

  .process-video-card {
    grid-template-columns: 1fr;
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .process-video-card video {
    height: auto;
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .process-video-card > div {
    padding: 16px;
  }

  .category-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 4px 14px 18px;
    overflow-x: auto;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .category-grid::-webkit-scrollbar {
    height: 0;
  }

  .category-card {
    flex: 0 0 min(78vw, 318px);
    scroll-snap-align: start;
  }

  .category-card img {
    aspect-ratio: 16 / 11;
  }

  .product-list-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 4px 14px 18px;
    overflow-x: auto;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-list-grid::-webkit-scrollbar {
    height: 0;
  }

  .product-list-grid .product-card {
    flex: 0 0 min(82vw, 326px);
    scroll-snap-align: start;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-card img {
    aspect-ratio: 16 / 11;
  }

  .product-card div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
  }

  .product-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .text-link {
    width: 100%;
    min-height: 46px;
    padding: 0 15px;
    justify-content: space-between;
  }

  .sample-callout {
    gap: 18px;
    padding: 22px 18px;
  }

  .sample-callout h2 {
    font-size: clamp(25px, 7.4vw, 32px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .sample-callout p {
    font-size: 15px;
    line-height: 1.62;
  }

  .sample-callout .button {
    min-height: 48px;
    width: 100%;
  }

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

  .capability-list article {
    padding: 14px;
    min-height: 150px;
    box-shadow: 0 8px 20px rgba(23,32,43,.025);
  }

  .capability-list span {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    font-size: 10px;
  }

  .capability-list h3 {
    margin: 0 0 7px;
    font-size: 15px;
    line-height: 1.2;
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .capability-list p {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.48;
    hyphens: none;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .automation-section {
    width: 100%;
    padding-top: 48px;
  }

  .automation-copy {
    width: min(100% - 28px, 1180px);
    margin: 0 auto;
  }

  .automation-video {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .automation-video video {
    aspect-ratio: 16 / 10;
  }

  .video-grid .production-photo-card {
    grid-template-columns: 1fr;
  }

  .production-photo-card img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .industry-card {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }

  .quote-guide article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quote-guide article:last-child {
    border-bottom: 0;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .floating-contact-stack {
    display: none;
  }

  .rfq-band .section {
    width: min(100% - 28px, 1180px);
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .rfq-layout {
    gap: 24px;
  }

  .rfq-layout h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .rfq-card {
    padding: 16px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 50px;
    padding: 12px 13px;
    font-size: 16px;
  }

  .rfq-actions,
  .rfq-actions.split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rfq-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .footer .section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .footer-brand {
    order: 4;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 18px;
  }

  .footer-brand p {
    max-width: 320px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .footer-products,
  .footer-programs {
    order: 2;
  }

  .footer-products strong,
  .footer-programs strong {
    margin-bottom: 8px;
    color: rgba(255,255,255,.95);
    font-size: 14px;
  }

  .footer-products a,
  .footer-programs a {
    margin: 7px 0;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-contact {
    order: 1;
    grid-column: 1 / -1;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255,255,255,.055);
  }

  .footer-contact strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
  }

  .footer-contact p {
    margin-bottom: 12px;
    color: rgba(255,255,255,.66);
    font-size: 13px;
    line-height: 1.45;
  }

  .footer a[href^="https://wa.me"] {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 850;
  }

  .footer .footer-rfq {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 10px 0 0;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
  }

  .proof-strip .section {
    grid-template-columns: 1fr;
  }

  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .application-grid article {
    min-height: 104px;
    padding: 13px;
    box-shadow: 0 8px 20px rgba(23,32,43,.025);
  }

  .application-grid strong {
    font-size: 13px;
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .application-grid span {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.42;
    hyphens: none;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .proof-strip .section > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .proof-strip .section > div:last-child {
    border-bottom: 0;
  }
}
