:root {
  --bg: #0a0d12;
  --bg-2: #11161d;
  --section-bg: #070b11;
  --panel: rgba(18, 24, 34, 0.88);
  --panel-strong: rgba(12, 18, 28, 0.96);
  --text: #edf3fb;
  --muted: #a8b7cb;
  --brand: #ff8200;
  --brand-2: #ff992f;
  --line: rgba(183, 144, 103, 0.24);
  --line-strong: rgba(183, 144, 103, 0.44);
}

* { box-sizing: border-box; }

.video-divider {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #0b0e12;
}

.video-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 16, 0.38) 0%, rgba(6, 10, 16, 0.44) 100%),
    radial-gradient(900px 180px at 50% 120%, rgba(44, 84, 138, 0.14), transparent 70%);
  pointer-events: none;
}

.video-divider-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.66) contrast(1.07) saturate(0.82);
}
html {
  scroll-behavior: smooth;
  background: #070a0f;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1300px 740px at 85% -10%, rgba(43, 83, 131, 0.28) 0%, rgba(10, 13, 18, 0.1) 55%),
    linear-gradient(180deg, #0b1016 0%, #070a0f 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(transparent 96%, rgba(255, 255, 255, 0.02) 97%),
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.018) 97%);
  background-size: 30px 30px, 30px 30px;
  opacity: 0.3;
}

.container { width: min(1160px, 92vw); margin: 0 auto; position: relative; z-index: 1; }

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(0, 12, 25, 0.9);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; gap: 18px; }
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 78px;
  color: var(--text);
  text-decoration: none;
}
.brand-logo-wide {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}
.brand-copy {
  width: 100%;
  text-align: center;
  margin-top: 6px;
  line-height: 1;
}
.brand-location {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-nav-toggle { display: none; }

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-item { position: relative; }
.nav-trigger,
.nav-cta {
  min-height: 40px;
  border-radius: 9px;
  font: 800 12px/1 Inter, sans-serif;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  color: #c2d0e3;
  border: 1px solid transparent;
  background: transparent;
  font-size: 15px;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-open > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
  color: #f4f8ff;
  background: rgba(255,255,255,.045);
  border-color: rgba(183, 144, 103, 0.2);
}
.nav-trigger:focus-visible,
.mobile-nav-toggle:focus-visible,
.dropdown-link:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid rgba(255, 160, 62, 0.9);
  outline-offset: 3px;
}
.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .78;
  transition: transform .18s ease;
}
.nav-item.is-open .nav-caret,
.nav-item:hover .nav-caret {
  transform: translateY(1px) rotate(225deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 242px;
  margin: 0;
  padding: 7px;
  list-style: none;
  border: 1px solid rgba(174, 193, 216, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(17, 23, 32, 0.985), rgba(9, 14, 22, 0.985));
  box-shadow: 0 14px 28px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.nav-item:hover > .nav-dropdown,
.nav-item.is-open > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}
.dropdown-link {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 11px;
  border-radius: 8px;
  color: #e4ebf4;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}
.nav-dropdown li + li {
  border-top: 1px solid rgba(174, 193, 216, 0.1);
}
.dropdown-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,.045);
}
.flip-label {
  display: inline-block;
  transform-origin: 50% 0%;
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.nav-item.is-animating .flip-label,
.nav-item:hover .flip-label {
  animation: splitFlapReveal .24s cubic-bezier(.22, .78, .26, 1) both;
  animation-delay: var(--stagger, 0ms);
}
.nav-dropdown li:nth-child(1) { --stagger: 0ms; }
.nav-dropdown li:nth-child(2) { --stagger: 38ms; }
.nav-dropdown li:nth-child(3) { --stagger: 76ms; }
.nav-dropdown li:nth-child(4) { --stagger: 114ms; }
.nav-dropdown li:nth-child(5) { --stagger: 152ms; }
.nav-dropdown li:nth-child(6) { --stagger: 190ms; }

@keyframes splitFlapReveal {
  0% {
    opacity: 0;
    transform: translateY(5px) rotateX(-22deg);
  }
  58% {
    opacity: 1;
    transform: translateY(-1px) rotateX(6deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  margin-left: 6px;
  color: #ffffff;
  text-align: center;
}

.btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff8200 0%, #b66918 100%);
  color: #fff;
  text-decoration: none;
  border: 1px solid #ff9c34;
  padding: 12px 16px;
  border-radius: 10px;
  font: 700 13px/1.1 Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(146, 82, 15, 0.35);
  transition: all .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(146, 82, 15, 0.5); }
.btn-sm { padding: 8px 12px; border-radius: 9px; font-size: 12px; }
.btn-ghost {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line-strong);
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.05); box-shadow: none; }

.hero { padding: 40px 0 32px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(.12) contrast(1.05) brightness(.39) saturate(.78);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.12) contrast(1.06) brightness(.32) saturate(.72);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 10, 16, 0.97) 0%, rgba(6, 10, 16, 0.83) 50%, rgba(6, 10, 16, 0.92) 100%),
    radial-gradient(1000px 340px at 40% 110%, rgba(123, 82, 39, 0.2), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.017) 1px, transparent 1px);
  background-size: 26px 26px;
  mix-blend-mode: soft-light;
  opacity: 0.45;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }

.eyebrow { color: var(--brand-2); text-transform: uppercase; letter-spacing: .12em; font-size: 15px; font-weight: 800; }
h1 {
  font: 700 clamp(33px, 4.6vw, 52px)/.98 "Rajdhani", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 8px 0 10px;
  text-shadow: 0 2px 18px rgba(0,0,0,.32);
}
.lead { color: var(--muted); font-size: 17px; line-height: 1.58; max-width: 62ch; }

.cta-row { display: flex; gap: 12px; margin: 16px 0 14px; flex-wrap: wrap; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.stats > div {
  border: 1px solid var(--line);
  background: rgba(17, 24, 36, 0.7);
  border-radius: 10px;
  padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.stats strong { display: block; font-size: 18px; font-family: "Rajdhani", Inter, sans-serif; letter-spacing: .03em; }
.stats span { color: var(--muted); font-size: 12px; }
.trust-strip {
  margin-top: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(18, 27, 40, 0.84);
  color: #d9e9ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}
.trust-strip span { white-space: nowrap; }

.hero-card {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(17, 23, 34, 0.94), rgba(12, 17, 27, 0.96));
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,.33);
}
.hero-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font: 600 28px/1.05 "Rajdhani", Inter, sans-serif;
  text-transform: none;
  letter-spacing: .02em;
  text-align: center;
}
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.09);
}
.hero-card li:first-child { border-top: 0; }
.hero-card span { color: var(--muted); min-width: 0; }
.hero-card li b { text-align: right; white-space: nowrap; }
.hero-card-title-left { text-align: left !important; }
.small { color: #a9bdd8; font-size: 12px; margin-top: 12px; line-height: 1.5; }

.section {
  padding: 58px 0;
  scroll-margin-top: 92px;
  background: var(--section-bg);
  border-top: 1px solid var(--line);
}
.section.alt {
  background: var(--section-bg);
}
.section-head { margin-bottom: 22px; }
.section-head h2 {
  margin: 0 0 8px;
  font: 700 clamp(28px, 3vw, 38px)/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-head p { margin: 0; color: var(--muted); }

#calculator {
  margin-top: 6px;
  padding-top: 58px;
}

.cards { display: grid; gap: 14px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 0;
  filter: contrast(1.08) saturate(.78) brightness(.88);
}
.card h3 { margin: 0 0 8px; font: 700 22px/1 "Rajdhani", Inter, sans-serif; letter-spacing: .03em; text-transform: uppercase; }
.card p { margin: 0; color: var(--muted); }
.card-bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}
.card-bullets li { margin: 0 0 4px; }
.card-bullets li:last-child { margin-bottom: 0; }

/* Clickable product cards — keep default look, add a hover/focus affordance */
a.card { display: block; color: inherit; text-decoration: none; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
a.card:hover { border-color: #ffa240; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(146, 82, 15, 0.22); }
a.card:focus-visible { outline: 2px solid #ffb05d; outline-offset: 2px; }
a.card h3 { color: var(--text); }
/* High-res product photos fill the frame cleanly (scoped to the product grid) */
.cards.four .card img { object-fit: cover; }
.cards.four .card[href="./torsion-springs.html"] img,
.cards.four .card[href="./wire-forms.html"] img,
.cards.four .card[href="/torsion-springs"] img,
.cards.four .card[href="/wire-forms"] img {
  object-position: right center;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.custom-with-media { align-items: start; }
.process-photo-card {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 16, 25, 0.75);
}
.process-photo-card img {
  width: 100%;
  height: 360px;
  min-height: 0;
  max-height: 360px;
  object-fit: cover;
  display: block;
}
.checklist { margin: 0; padding-left: 18px; color: var(--muted); line-height: 2; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips span {
  border: 1px solid var(--line-strong);
  background: rgba(13, 19, 29, 0.9);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d9e8fa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.quality-card { border: 1px solid var(--line); background: var(--panel); border-radius: 12px; padding: 22px; }
.quality-card h3 {
  margin: 0 0 8px;
  font: 700 34px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.quality-card p { margin: 0; color: #d1deee; line-height: 1.55; max-width: 58ch; }
.quality-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.quality-points li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}
.quality-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffa03e;
  box-shadow: none;
}
.cert-badges { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.cert-badge {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(255, 163, 67, 0.58);
  background:
    linear-gradient(135deg, rgba(11, 18, 28, 0.95), rgba(20, 43, 70, 0.96)),
    radial-gradient(160px 120px at 0% 0%, transparent, transparent 70%);
  border-radius: 10px;
  padding: 13px 14px;
  color: #edf5ff;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 14px 28px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}
.cert-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 173, 87, 0.86);
  filter: brightness(1.05);
}
.cert-badge-seal {
  width: 62px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 187, 116, 0.88);
  background:
    radial-gradient(circle, rgba(237,245,255,0.18) 0 36%, transparent 37%),
    linear-gradient(180deg, rgba(167, 98, 26, 0.94), rgba(14, 47, 83, 0.94));
  color: #ffffff;
  font: 800 13px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: none;
}
.cert-badge-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.cert-badge-kicker,
.cert-badge-copy span,
.cert-badge-copy em {
  color: #d8a979;
  font-size: 12px;
  line-height: 1.35;
}
.cert-badge-kicker {
  color: #ffa74c;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cert-badge-copy strong {
  display: block;
  color: #ffffff;
  font: 700 26px/0.95 "Rajdhani", Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cert-badge-copy em {
  font-style: normal;
  color: #d6e7fb;
}

.calc-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  border: 1px solid rgba(176, 135, 93, 0.35);
  background:
    linear-gradient(110deg, rgba(8, 14, 22, 0.88) 0%, rgba(8, 14, 22, 0.72) 46%, rgba(8, 14, 22, 0.9) 100%),
    url('./assets/stock/calc-bg.jpg');
  background-size: auto, cover;
  background-position: center;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.calc-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 14px;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .35;
}
.calc-showcase-copy,
.calc-showcase-cards { position: relative; z-index: 1; }
.calc-showcase-copy h3 {
  margin: 8px 0 10px;
  font: 700 clamp(36px, 5vw, 56px)/.96 "Rajdhani", Inter, sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.calc-showcase-copy p { color: #c9d7ea; margin: 0 0 16px; max-width: 52ch; font-size: 16px; }
.calc-showcase-cards {
  display: grid;
  gap: 11px;
  align-content: center;
}
.calc-mini-card {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(176, 135, 93,.36);
  background: rgba(15, 23, 34, 0.83);
  border-radius: 11px;
  padding: 13px 14px;
  text-decoration: none;
  transition: all .18s ease;
}
.calc-mini-card:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 159, 83, 0.6);
  background: rgba(18, 29, 44, 0.9);
}
.calc-mini-icon {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: #ffa03e;
  box-shadow: none;
}
.calc-mini-card h4 {
  margin: 0 0 5px;
  color: #edf5ff;
  font: 700 22px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.calc-mini-card p { margin: 0; color: #b5c8de; }

.quick-actions { padding-top: 40px; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quick-card {
  border: 1px solid var(--line-strong);
  background: rgba(14, 21, 32, 0.9);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all .18s ease;
}
.quick-card:hover { transform: translateY(-1px); border-color: #ffa240; }
.quick-card h3 {
  margin: 0 0 8px;
  font: 700 24px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.quick-card p { margin: 0 0 12px; color: var(--muted); }
.quick-card span { color: #ffaf5c; font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }

.section.alt.why-trimatic-bg {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 12, 19, 0.74), rgba(7, 12, 19, 0.8)),
    url('./assets/photo-intake/2026-04-16-michael/michael_shop_05.jpg');
  background-size: cover;
  background-position: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.proof-card {
  border: 1px solid var(--line);
  background: rgba(11, 18, 28, 0.88);
  border-radius: 10px;
  padding: 14px;
}
.proof-card h3 {
  margin: 0 0 8px;
  font: 700 23px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.proof-card p { margin: 0; color: var(--muted); }

.product-hero {
  min-height: 470px;
  display: flex;
  align-items: center;
}
.product-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .62fr);
  gap: 24px;
  align-items: end;
}
.product-hero-copy {
  max-width: 760px;
}
.product-spec-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-spec-card h3 {
  text-align: left;
}
.product-copy {
  color: #c9d7ea;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 68ch;
}
.product-checklist {
  margin-top: 14px;
}
.product-photo-card img {
  object-fit: contain;
  background: #0d1420;
  padding: 18px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-calculator-band {
  background:
    linear-gradient(110deg, rgba(7, 12, 19, 0.96) 0%, rgba(9, 20, 34, 0.92) 100%),
    url('./assets/stock/calc-bg.jpg');
  background-size: auto, cover;
  background-position: center;
}
.product-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(176, 135, 93, 0.35);
  border-radius: 14px;
  background: rgba(9, 15, 24, 0.78);
  padding: 24px;
}
.product-cta-panel h2 {
  margin: 8px 0 8px;
  font: 700 clamp(30px, 3.7vw, 44px)/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.product-cta-panel p {
  margin: 0;
  color: #c9d7ea;
  max-width: 68ch;
  line-height: 1.6;
}
.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.compression-page {
  background:
    radial-gradient(900px 520px at 78% 4%, transparent, transparent 64%),
    linear-gradient(180deg, #050911 0%, #06101a 48%, #050911 100%);
}
.compression-main {
  background: linear-gradient(180deg, rgba(5, 10, 17, 0.1), rgba(4, 10, 17, 0.94));
}
.compression-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid rgba(183, 144, 103, 0.22);
  background:
    linear-gradient(90deg, rgba(5, 10, 17, 0.98) 0%, rgba(5, 10, 17, 0.9) 35%, rgba(5, 10, 17, 0.24) 69%, rgba(5, 10, 17, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 10, 17, 0.05) 0%, rgba(5, 10, 17, 0.45) 62%, rgba(5, 10, 17, 0.96) 100%),
    url('./assets/stock/compression-custom.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, 62% center;
}
.compression-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .22;
  pointer-events: none;
}
.compression-hero-inner {
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0 30px;
}
.compression-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #9fb3ca;
  font-size: 13px;
  font-weight: 700;
}
.compression-breadcrumb a,
.compression-breadcrumb strong {
  color: #dbe9fa;
  text-decoration: none;
}
.compression-breadcrumb span::before,
.compression-breadcrumb strong::before {
  content: ">";
  margin-right: 8px;
  color: #6f86a1;
}
.compression-hero-copy {
  width: min(430px, 100%);
}
.compression-hero h1,
.compression-section h2,
.compression-panel h2,
.compression-cta-panel h2 {
  font-family: "Rajdhani", Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}
.compression-hero h1 {
  position: relative;
  margin: 0 0 31px;
  max-width: 420px;
  color: #eef6ff;
  font-size: clamp(54px, 7.3vw, 76px);
  line-height: .92;
}
.compression-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 104px;
  height: 2px;
  background: linear-gradient(90deg, #ff8200, rgba(255, 130, 0,0.18));
}
.compression-hero-copy p {
  margin: 0;
  color: #c5d5e8;
  font-size: 16px;
  line-height: 1.55;
}
.compression-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.compression-stat {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 13px 15px;
  border: 1px solid rgba(176, 135, 93, 0.22);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(12, 20, 31, 0.88), rgba(7, 14, 24, 0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.compression-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 154, 48, 0.58);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(151, 93, 32, 0.9), rgba(18, 54, 101, 0.92));
  color: #dbeeff;
}
.compression-icon svg {
  width: 27px;
  height: 27px;
  display: block;
  overflow: visible;
}
.compression-icon svg path,
.compression-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compression-icon svg path[fill] {
  stroke: none;
}
.compression-stat strong {
  display: block;
  margin-bottom: 5px;
  color: #f0f6ff;
  font: 800 16px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.compression-stat p {
  margin: 0;
  color: #9fb3ca;
  font-size: 13px;
  line-height: 1.35;
}
.compression-section {
  padding: 46px 0;
  border-top: 1px solid rgba(183, 144, 103, 0.18);
}
.compression-overview-section {
  padding-top: 42px;
}
.compression-overview-grid {
  display: grid;
  grid-template-columns: 1.06fr .86fr .74fr;
  gap: 42px;
  align-items: start;
}
.compression-copy-block {
  min-width: 0;
}
.compression-copy-block h2,
.compression-section-head h2,
.compression-panel h2 {
  margin: 0 0 20px;
  color: #f0f6ff;
  font-size: 32px;
  line-height: 1;
}
.compression-copy-block p,
.compression-section-head p,
.compression-panel p {
  margin: 0 0 16px;
  color: #b7c7dc;
  line-height: 1.65;
}
.compression-copy-block .btn {
  margin-top: 8px;
}
.compression-applications-art {
  margin: 34px 0 0;
  overflow: hidden;
}
.compression-applications-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.compression-applications-mobile {
  display: none;
}
.compression-applications {
  border-left: 1px solid rgba(183, 144, 103, 0.22);
  padding-left: 42px;
}
.compression-check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #c4d3e7;
}
.compression-check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.4;
}
.compression-check-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .25em;
  width: 15px;
  aspect-ratio: 1;
  border: 1px solid #ff870b;
  border-radius: 50%;
  box-shadow: none;
}
.compression-check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .58em;
  width: 5px;
  height: 3px;
  border-left: 1px solid #ff9f3a;
  border-bottom: 1px solid #ff9f3a;
  transform: rotate(-45deg);
}
.compression-diagram {
  min-height: 310px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.compression-diagram-img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
  filter: none;
}
.compression-section-head {
  margin-bottom: 22px;
}
.compression-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.compression-feature-card,
.compression-panel,
.compression-cta-panel {
  border: 1px solid rgba(176, 135, 93, 0.28);
  background: linear-gradient(180deg, rgba(10, 18, 29, 0.9), rgba(6, 13, 23, 0.92));
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.compression-feature-card {
  min-height: 214px;
  padding: 24px 18px;
  text-align: center;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  color: #ff8200;
}
.feature-icon svg {
  width: 50px;
  height: 50px;
  display: block;
  overflow: visible;
  filter: none;
}
.feature-icon path,
.feature-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compression-feature-card h3 {
  margin: 0 0 10px;
  color: #edf5ff;
  font: 800 21px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.compression-feature-card p {
  margin: 0;
  color: #aebfd4;
  line-height: 1.52;
}
.compression-spec-section {
  padding-top: 38px;
}
.compression-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.compression-panel {
  padding: 26px;
}
.compression-spec-list {
  margin: 0;
}
.compression-spec-list div {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1fr);
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid rgba(183, 144, 103, 0.16);
}
.compression-spec-list div:first-child {
  border-top: 0;
}
.compression-spec-list dt {
  color: #f0f6ff;
  font-weight: 800;
}
.compression-spec-list dd {
  margin: 0;
  color: #b7c7dc;
  line-height: 1.45;
}
.material-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.material-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(176, 135, 93, 0.34);
  border-radius: 8px;
  color: #e5f1ff;
  font: 800 14px/1 "Rajdhani", Inter, sans-serif;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  background: rgba(9, 16, 27, 0.7);
}
.compression-process-section {
  border-top: 1px solid rgba(183, 144, 103, 0.22);
}
.compression-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.compression-process li {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: center;
  text-align: center;
  color: #c7d8ec;
}
.compression-process li + li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ff870b;
  border-bottom: 2px solid #ff870b;
  transform: rotate(-45deg);
}
.compression-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(176, 135, 93, 0.28);
  border-radius: 10px;
  color: #ff9629;
  font: 800 20px/1 "Rajdhani", Inter, sans-serif;
  background: linear-gradient(180deg, rgba(10,18,29,.94), rgba(7,14,24,.94));
}
.compression-process strong {
  color: #edf5ff;
  font: 800 18px/1.05 "Rajdhani", Inter, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.compression-cta-section {
  padding-top: 20px;
}
.compression-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 44px;
  background:
    linear-gradient(90deg, rgba(8, 15, 25, 0.94), rgba(9, 22, 38, 0.78)),
    url('./assets/stock/compression-custom.jpg');
  background-size: auto, cover;
  background-position: center;
}
.compression-cta-panel h2 {
  margin: 0 0 10px;
  color: #f0f6ff;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
}
.compression-cta-panel p {
  margin: 0;
  color: #c5d5e8;
}
.compression-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}
.compression-cta-actions .btn {
  text-align: center;
}
.compression-footer {
  background: #050911;
}

.compression-page .compression-process-section {
  padding-top: 48px;
}
.compression-page .compression-process {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.compression-page .compression-process li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  justify-items: center;
  align-content: start;
  min-width: 0;
}
.compression-page .compression-process li + li::before {
  left: -19px;
  top: 37px;
  width: 11px;
  height: 11px;
  border-color: #ff870b;
  opacity: .95;
}
.compression-page .process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  aspect-ratio: 1;
  border: 1px solid rgba(176, 135, 93, 0.28);
  border-radius: 10px;
  color: #ff8200;
  background: linear-gradient(180deg, rgba(10,18,29,.94), rgba(7,14,24,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 10px 24px rgba(0,0,0,.2);
}
.compression-page .process-icon svg {
  width: 36px;
  height: 36px;
  display: block;
  overflow: visible;
  filter: none;
}
.compression-page .process-icon path,
.compression-page .process-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compression-page .compression-process .process-number {
  display: inline;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: none;
  color: #ff9322;
  font: 800 16px/1 "Rajdhani", Inter, sans-serif;
  box-shadow: none;
}
.compression-page .compression-process strong {
  max-width: 132px;
  font-size: 16px;
  line-height: 1.05;
}
.compression-page .compression-process p {
  margin: 0;
  max-width: 126px;
  color: #aebfd4;
  font-size: 13px;
  line-height: 1.38;
}

.extension-page {
  --extension-hero-image: url('./assets/stock/extension-custom.jpg');
}
.extension-page .compression-hero {
  background:
    linear-gradient(90deg, rgba(5, 10, 17, 0.98) 0%, rgba(5, 10, 17, 0.9) 34%, rgba(7, 18, 32, 0.3) 67%, rgba(5, 10, 17, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 10, 17, 0.04) 0%, rgba(5, 10, 17, 0.36) 62%, rgba(5, 10, 17, 0.96) 100%),
    var(--extension-hero-image);
  background-size: auto, auto, cover;
  background-position: center, center, center;
}
.extension-page .compression-cta-panel {
  background:
    linear-gradient(90deg, rgba(8, 15, 25, 0.95), rgba(9, 22, 38, 0.8)),
    var(--extension-hero-image);
  background-size: auto, cover;
  background-position: center;
}
.extension-page .compression-overview-section .container {
  width: min(1280px, 94vw);
}
.extension-page .compression-overview-grid {
  grid-template-columns: minmax(280px, .85fr) minmax(240px, .65fr) minmax(420px, 1.2fr);
  gap: 24px;
}
.extension-page .compression-applications {
  border-left: 1px solid rgba(183, 144, 103, 0.22);
  border-top: 0;
  padding: 0 0 0 24px;
}
.extension-page .compression-diagram {
  align-items: center;
}
.extension-page .compression-diagram-img {
  width: min(100%, 620px);
  border: 1px solid rgba(176, 135, 93, 0.28);
  border-radius: 10px;
  background: #050911;
}
.extension-page .compression-stat,
.extension-page .compression-feature-card,
.extension-page .compression-panel {
  border-color: rgba(176, 135, 93, 0.34);
  background:
    radial-gradient(420px 220px at 50% 0%, transparent, transparent 70%),
    linear-gradient(180deg, rgba(11, 22, 36, 0.95), rgba(5, 13, 24, 0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 18px 36px rgba(0, 0, 0, 0.22);
}
.extension-page .compression-stat {
  min-height: 92px;
}
.extension-page .compression-icon {
  border-color: rgba(255, 145, 30, 0.72);
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 130, 0, 0.92), rgba(12, 55, 111, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 14px 28px rgba(0, 0, 0, 0.24);
}
.extension-page .feature-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 145, 30, 0.32);
  border-radius: 14px;
  color: #ff992f;
  background:
    radial-gradient(circle at 35% 24%, transparent, transparent 42%),
    linear-gradient(180deg, rgba(9, 26, 48, 0.92), rgba(5, 13, 24, 0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 14px 32px rgba(0,0,0,.26);
}
.extension-page .feature-icon svg {
  width: 42px;
  height: 42px;
  filter: none;
}
.extension-page .compression-diagram-img,
.extension-page .compression-cta-panel {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 20px 44px rgba(0,0,0,.28);
}
.extension-page .compression-process-section {
  background:
    radial-gradient(720px 260px at 50% 0%, transparent, transparent 70%);
}
.extension-page .process-icon {
  border-color: rgba(255, 145, 30, 0.42);
  color: #ff972b;
  background:
    radial-gradient(circle at 35% 24%, transparent, transparent 42%),
    linear-gradient(180deg, rgba(10, 28, 50, 0.96), rgba(5, 13, 24, 0.96));
}
.extension-page .compression-process .process-number {
  color: #ff870b;
}
.extension-page .compression-cta-panel {
  border-color: rgba(176, 135, 93, 0.34);
}

.torsion-page {
  --torsion-hero-image: url('./assets/products/torsion-hero.jpg');
}
.torsion-page .compression-hero {
  background:
    linear-gradient(90deg, rgba(5, 10, 17, 0.99) 0%, rgba(5, 10, 17, 0.92) 33%, rgba(7, 18, 32, 0.48) 64%, rgba(5, 10, 17, 0.62) 100%),
    linear-gradient(180deg, rgba(5, 10, 17, 0.12) 0%, rgba(5, 10, 17, 0.36) 58%, rgba(5, 10, 17, 0.96) 100%),
    var(--torsion-hero-image);
  background-size: auto, auto, cover;
  background-position: center, center, center;
}
.torsion-page .compression-cta-panel {
  background:
    linear-gradient(90deg, rgba(8, 15, 25, 0.96), rgba(9, 22, 38, 0.84)),
    var(--torsion-hero-image);
  background-size: auto, cover;
  background-position: center;
}
.torsion-page .compression-overview-section .container {
  width: min(1280px, 94vw);
}
.torsion-page .compression-overview-grid {
  grid-template-columns: minmax(280px, .85fr) minmax(240px, .65fr) minmax(420px, 1.2fr);
  gap: 24px;
}
.torsion-basics-card {
  min-width: 0;
  padding-left: 24px;
}
.torsion-basics-img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(176, 135, 93, 0.28);
  border-radius: 10px;
  background: #050911;
}
.torsion-page .compression-stat,
.torsion-page .compression-feature-card,
.torsion-page .compression-panel {
  border-color: rgba(176, 135, 93, 0.34);
  background:
    radial-gradient(420px 220px at 50% 0%, transparent, transparent 70%),
    linear-gradient(180deg, rgba(11, 22, 36, 0.95), rgba(5, 13, 24, 0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 18px 36px rgba(0, 0, 0, 0.22);
}
.torsion-page .compression-stat {
  min-height: 92px;
}
.torsion-page .compression-icon {
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 145, 30, 0.72);
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 130, 0, 0.92), rgba(12, 55, 111, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 -10px 18px rgba(0, 17, 42, 0.24), 0 14px 28px rgba(0, 0, 0, 0.24);
}
.torsion-page .compression-icon::before,
.torsion-page .compression-icon::after,
.torsion-page .feature-icon::before,
.torsion-page .feature-icon::after,
.torsion-page .process-icon::before,
.torsion-page .process-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.torsion-page .compression-icon::before {
  inset: 5px;
  z-index: -1;
  border: 1px solid rgba(217, 238, 255, 0.22);
  border-radius: 8px;
  background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.18), transparent 46%);
}
.torsion-page .compression-icon::after {
  inset: -28% auto auto -16%;
  width: 74%;
  height: 56%;
  transform: rotate(-24deg);
  background: linear-gradient(90deg, rgba(255,255,255,.24), transparent);
  filter: blur(8px);
}
.torsion-page .compression-icon svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.12));
}
.torsion-page .compression-icon svg path,
.torsion-page .compression-icon svg circle {
  stroke-width: 2.05;
}
.torsion-page .feature-icon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 145, 30, 0.32);
  border-radius: 14px;
  color: #ff992f;
  background:
    radial-gradient(circle at 35% 24%, transparent, transparent 42%),
    linear-gradient(180deg, rgba(9, 26, 48, 0.92), rgba(5, 13, 24, 0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), inset 0 -14px 24px rgba(0, 21, 48, .28), 0 14px 32px rgba(0,0,0,.26);
}
.torsion-page .feature-icon::before {
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(255, 154, 48, 0.2);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 42%),
    radial-gradient(circle at 50% 56%, transparent, transparent 58%);
}
.torsion-page .feature-icon::after {
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 159, 58, 0.68), transparent);
}
.torsion-page .feature-icon svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.1));
}
.torsion-page .feature-icon path,
.torsion-page .feature-icon circle {
  stroke-width: 2.35;
}
.torsion-page .compression-cta-panel {
  border-color: rgba(176, 135, 93, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 20px 44px rgba(0,0,0,.28);
}
.torsion-page .compression-process-section {
  background:
    radial-gradient(720px 260px at 50% 0%, transparent, transparent 70%);
}
.torsion-page .process-icon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 145, 30, 0.42);
  color: #ff972b;
  background:
    radial-gradient(circle at 35% 24%, transparent, transparent 42%),
    linear-gradient(180deg, rgba(10, 28, 50, 0.96), rgba(5, 13, 24, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), inset 0 -14px 24px rgba(0, 21, 48, .28), 0 18px 34px rgba(0,0,0,.26);
}
.torsion-page .process-icon::before {
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(255, 154, 48, 0.18);
  border-radius: 8px;
  background: radial-gradient(circle at 46% 46%, transparent, transparent 62%);
}
.torsion-page .process-icon::after {
  inset: -35% -26% auto auto;
  width: 58%;
  height: 58%;
  transform: rotate(22deg);
  background: rgba(255,255,255,.18);
  filter: blur(12px);
}
.torsion-page .process-icon svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.1));
}
.torsion-page .process-icon path,
.torsion-page .process-icon circle {
  stroke-width: 2.15;
}
.torsion-page .compression-process .process-number {
  color: #ff870b;
}
.torsion-page .compression-check-list li::before {
  border-color: rgba(255, 145, 30, 0.75);
  background:
    radial-gradient(circle at 34% 25%, rgba(255,255,255,.22), transparent 38%),
    linear-gradient(180deg, rgba(118, 67, 14, .88), rgba(5, 23, 48, .92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 8px 18px rgba(0,0,0,.24);
}
.torsion-page .compression-check-list li::after {
  border-color: #ffbe7a;
}

.wire-page {
  background:
    radial-gradient(900px 620px at 76% 4%, transparent, transparent 56%),
    linear-gradient(180deg, #06101a 0%, #04101a 42%, #020812 100%);
}
.wire-main {
  background:
    radial-gradient(900px 400px at 50% 0%, transparent, transparent 64%),
    linear-gradient(180deg, rgba(2, 7, 13, 0.2), rgba(2, 7, 13, 0.92));
}
.wire-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 10, 17, 0.98) 0%, rgba(5, 10, 17, 0.9) 35%, rgba(5, 10, 17, 0.24) 69%, rgba(5, 10, 17, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 10, 17, 0.05) 0%, rgba(5, 10, 17, 0.45) 62%, rgba(5, 10, 17, 0.96) 100%),
    url('./assets/products/wire-forms-hero.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center center;
  background-repeat: no-repeat;
  box-shadow: inset 0 -82px 110px rgba(0, 0, 0, 0.28);
}
.wire-hero-inner {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 0 34px;
}
.wire-hero-copy {
  max-width: 420px;
  margin: 56px 0 38px;
}
.wire-hero h1,
.wire-section h2,
.wire-panel h2,
.wire-cta-panel h2 {
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.wire-hero h1 {
  margin: 0;
  max-width: 360px;
  color: #eef6ff;
  font-size: clamp(62px, 7.4vw, 92px);
  line-height: .88;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.62);
}
.wire-hero h1::after,
.wire-fire-copy h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 22px;
  background: var(--brand);
}
.wire-hero-copy p,
.wire-copy-block p,
.wire-panel p,
.wire-fire-copy p,
.wire-section-head p,
.wire-process p,
.wire-solution-card p,
.wire-solution-card small {
  color: #c7d4e5;
  line-height: 1.68;
}
.wire-hero-copy p {
  margin: 22px 0 0;
  color: #d6e2f0;
  font-size: 17px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.52);
}
.wire-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wire-stat,
.wire-panel,
.wire-application-grid article,
.wire-solution-card,
.wire-fire-panel,
.wire-cta-panel {
  border: 1px solid rgba(183, 144, 103, 0.24);
  background: linear-gradient(145deg, rgba(10, 19, 31, 0.92), rgba(5, 12, 21, 0.78));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.wire-stat {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  border-color: rgba(183, 144, 103, 0.34);
  background:
    linear-gradient(145deg, rgba(13, 24, 39, 0.88), rgba(4, 10, 18, 0.76));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.wire-icon,
.wire-application-grid span {
  display: inline-grid;
  place-items: center;
  color: #f07a00;
  border: 1px solid rgba(255, 130, 0, 0.58);
  background: rgba(173, 97, 17, 0.24);
}
.wire-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  font-size: 25px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.12);
}
.wire-stat strong,
.wire-application-grid h3,
.wire-process strong {
  display: block;
  color: #f3f8ff;
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.05;
}
.wire-stat p {
  margin: 6px 0 0;
  color: #b5c4d8;
  font-size: 13px;
  line-height: 1.45;
}
.wire-section { padding: 34px 0; }
.wire-intro-section { border-bottom: 1px solid rgba(183, 144, 103, 0.15); }
.wire-intro-grid {
  display: grid;
  grid-template-columns: .95fr 1fr .95fr;
  gap: 32px;
  align-items: stretch;
}
.wire-copy-block h2,
.wire-section-head h2,
.wire-fire-copy h2 {
  margin: 0 0 18px;
  color: #f0f6ff;
  font-size: 30px;
  line-height: 1;
}
.wire-copy-block p { margin: 0 0 22px; }
.wire-check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.wire-check-list li {
  position: relative;
  padding-left: 26px;
  color: #d8e6f6;
  line-height: 1.45;
}
.wire-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  width: 14px;
  height: 14px;
  border: 1px solid #ee7900;
  border-radius: 50%;
}
.wire-check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: .52em;
  width: 6px;
  height: 3px;
  border-left: 1px solid #ee7900;
  border-bottom: 1px solid #ee7900;
  transform: rotate(-45deg);
}
.wire-solution-card {
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  padding: 22px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 12, 22, 0.96) 0%, rgba(4, 12, 22, 0.78) 48%, rgba(4, 12, 22, 0.38) 100%),
    url('./assets/products/wire-forms-cta-block.jpg');
  background-size: auto, cover;
  background-position: center, 82% center;
}
.wire-solution-card h2 {
  margin: 0 0 14px;
  max-width: 210px;
  font-size: 27px;
}
.wire-solution-card p { margin: 0 0 18px; max-width: 260px; font-size: 14px; }
.wire-solution-card small { display: block; margin-top: 16px; max-width: 220px; font-size: 12px; }
.wire-section-head { margin-bottom: 22px; }
.wire-application-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.wire-application-grid article {
  min-height: 205px;
  padding: 22px 16px;
  border-radius: 6px;
  text-align: center;
}
.wire-application-grid span {
  width: 70px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 8px;
  font-size: 36px;
  line-height: 1;
}
.wire-application-grid span svg {
  display: block;
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}
.wire-application-grid h3 { margin: 0 0 12px; font-size: 17px; }
.wire-application-grid p {
  margin: 0;
  color: #c5d4e8;
  font-size: 13px;
  line-height: 1.55;
}
.wire-fire-panel {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: .88fr 1.32fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(620px 320px at 74% 42%, rgba(188, 27, 27, 0.22), transparent 70%),
    linear-gradient(145deg, rgba(9, 18, 30, 0.96), rgba(3, 9, 16, 0.94));
}
.wire-fire-copy {
  position: relative;
  z-index: 2;
  padding: 42px 38px;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, 0.99) 0%, rgba(4, 11, 20, 0.94) 62%, rgba(4, 11, 20, 0.18) 100%);
}
.wire-fire-copy h2 {
  max-width: 320px;
  font-size: 40px;
}
.wire-fire-copy p { max-width: 440px; margin: 0 0 22px; }
.wire-fire-art {
  position: relative;
  width: 100%;
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, 0.52) 0%, rgba(4, 11, 20, 0.12) 28%, rgba(4, 11, 20, 0.24) 100%),
    linear-gradient(180deg, rgba(4, 11, 20, 0.08), rgba(4, 11, 20, 0.28)),
    url('./assets/products/fire-extinguisher-closeup.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  filter: saturate(1.06) contrast(1.08) brightness(0.86);
}
.wire-fire-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 11, 20, 0.94) 0%, rgba(4, 11, 20, 0.58) 7%, rgba(4, 11, 20, 0.18) 18%, transparent 34%),
    radial-gradient(520px 260px at 44% 45%, transparent 0%, transparent 48%, rgba(3, 8, 14, 0.36) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.wire-material-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
}
.wire-panel {
  min-height: 220px;
  padding: 30px;
}
.wire-panel + .wire-panel { border-left: 0; }
.wire-panel h2,
.wire-panel h3 {
  margin: 0 0 18px;
  color: #f0f6ff;
}
.wire-panel h3 {
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 24px;
}
.wire-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #d7e4f5;
  line-height: 1.72;
}
.wire-process-section { padding-top: 20px; }
.wire-process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
}
.wire-process li {
  position: relative;
  text-align: center;
}
.wire-process li + li::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -16px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ee7900;
  border-right: 2px solid #ee7900;
  transform: rotate(45deg);
}
.wire-process span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  color: #ee7900;
  border: 1px solid rgba(255, 130, 0, 0.6);
  border-radius: 8px;
  background: rgba(173, 97, 17, 0.16);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
}
.wire-process strong { min-height: 36px; font-size: 16px; }
.wire-process p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
}
.wire-cta-section { padding-top: 12px; }
.wire-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 38px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 12, 21, 0.96) 0%, rgba(5, 12, 21, 0.86) 46%, rgba(5, 12, 21, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 12, 21, 0.12), rgba(5, 12, 21, 0.78)),
    url('./assets/products/wire-forms-hero.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, 72% center;
}
.wire-cta-panel h2 { margin: 0 0 4px; font-size: 40px; }
.wire-cta-panel p { margin: 0; color: #c7d4e5; }
.wire-cta-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 260px;
}
.wire-upload {
  color: #ee7900;
  text-decoration: none;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.plating-page {
  background:
    radial-gradient(900px 560px at 78% 5%, transparent, transparent 60%),
    linear-gradient(180deg, #040a11 0%, #06111b 42%, #030812 100%);
}
.plating-main {
  overflow: hidden;
  background:
    radial-gradient(780px 360px at 44% 10%, transparent, transparent 68%),
    linear-gradient(180deg, rgba(2, 8, 15, 0.2), rgba(2, 8, 15, 0.94));
}
.plating-hero {
  position: relative;
  min-height: 455px;
  border-bottom: 1px solid rgba(183, 144, 103, 0.25);
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.99) 0%, rgba(3, 8, 14, 0.93) 34%, rgba(3, 8, 14, 0.16) 52%, rgba(3, 8, 14, 0) 68%),
    linear-gradient(180deg, rgba(3, 8, 14, 0) 0%, rgba(3, 8, 14, 0.14) 66%, rgba(3, 8, 14, 0.58) 100%),
    url('./assets/plating-finishing/hero-plating-final.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center 72%;
  background-repeat: no-repeat;
  box-shadow: inset 0 -82px 120px rgba(0, 0, 0, 0.28);
}
.plating-hero::after,
.plating-main::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.plating-hero::after {
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .2;
}
.plating-main::before {
  left: 0;
  right: 0;
  top: 455px;
  height: 800px;
  background:
    radial-gradient(600px 280px at 0% 18%, transparent, transparent 70%),
    radial-gradient(620px 320px at 100% 35%, transparent, transparent 72%);
}
.plating-hero-inner {
  z-index: 1;
  min-height: 455px;
  display: flex;
  align-items: center;
  padding: 42px 0 38px;
}
.plating-hero-copy {
  width: min(700px, 100%);
}
.plating-kicker {
  margin: 0 0 14px;
  color: #f77e00;
  font: 800 14px/1 Inter, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plating-breadcrumb,
.testing-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: #9fb3ca;
  font-size: 13px;
  font-weight: 700;
}
.plating-breadcrumb a,
.plating-breadcrumb span,
.testing-breadcrumb a,
.testing-breadcrumb span {
  color: #9fb3ca;
  text-decoration: none;
}
.plating-breadcrumb a,
.plating-breadcrumb span:last-child,
.testing-breadcrumb a,
.testing-breadcrumb span:last-child {
  color: #dbe9fa;
}
.plating-breadcrumb span::before,
.testing-breadcrumb span::before {
  content: ">";
  margin-right: 8px;
  color: #6f86a1;
}
.plating-hero h1,
.plating-section h2,
.finish-card h3,
.secondary-card h3,
.plating-process-card strong,
.plating-cta-panel h2 {
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.plating-hero h1 {
  position: relative;
  margin: 0 0 31px;
  max-width: 690px;
  color: #f2f7ff;
  font-size: clamp(46px, 5vw, 58px);
  line-height: .96;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.62);
}
.plating-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 34px;
  height: 3px;
  background: #f57d00;
  box-shadow: none;
}
.plating-lead {
  margin: 0;
  max-width: 520px;
  color: #d1ddeb;
  font-size: 17px;
  line-height: 1.62;
}
.finish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 22px;
  max-width: 560px;
}
.finish-tags span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 31px;
  padding: 0 15px;
  border: 1px solid rgba(183, 144, 103, 0.44);
  border-radius: 999px;
  background: rgba(4, 12, 21, 0.62);
  color: #f1f6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.finish-tags span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8200;
  box-shadow: none;
}
.plating-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.plating-hero-actions .btn {
  min-width: 220px;
  text-align: center;
}
.plating-section {
  position: relative;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(183, 144, 103, 0.2);
}
.plating-section-head {
  margin-bottom: 22px;
}
.plating-section-head h2 {
  margin: 0 0 7px;
  color: #f1f7ff;
  font-size: 34px;
  line-height: .96;
}
.plating-section-head p {
  margin: 0;
  color: #c9d6e6;
  line-height: 1.5;
}
.finish-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 22px 26px;
}
.finish-card,
.secondary-card,
.plating-process-card,
.plating-cta-panel {
  border: 1px solid rgba(183, 144, 103, 0.29);
  background: linear-gradient(145deg, rgba(9, 18, 30, 0.94), rgba(4, 12, 21, 0.82));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}
.finish-card {
  grid-column: span 6;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
}
.finish-card img {
  display: block;
  width: 100%;
  height: 138px;
  object-fit: cover;
  border-bottom: 1px solid rgba(183, 144, 103, 0.2);
  filter: saturate(.98) contrast(1.04);
}
.finish-card div {
  padding: 15px 16px 18px;
}
.finish-card h3,
.secondary-card h3 {
  margin: 0 0 8px;
  color: #f3f8ff;
  font-size: 22px;
  line-height: .95;
}
.finish-card p,
.secondary-card p,
.plating-process-card p,
.plating-cta-panel p {
  margin: 0;
  color: #c3d1e2;
  line-height: 1.48;
}
.finish-card p,
.secondary-card p {
  font-size: 14px;
}
.finish-card:nth-child(5) {
  grid-column: 4 / span 6;
}
.finish-card:nth-child(6) {
  grid-column: 10 / span 6;
}
.finish-card:nth-child(7) {
  grid-column: 16 / span 6;
}
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.secondary-card {
  min-height: 268px;
  padding: 22px 18px 20px;
  border-radius: 8px;
}
.plating-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  color: #a9b8cc;
  border: 1px solid rgba(183, 144, 103, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(60px 46px at 50% 48%, transparent, transparent 70%),
    linear-gradient(145deg, rgba(13, 24, 39, 0.72), rgba(5, 13, 23, 0.52));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 16px 38px rgba(0, 0, 0, 0.18);
}
.plating-icon svg,
.process-icon svg {
  display: block;
  width: 78%;
  height: 78%;
  overflow: visible;
}
.process-icon svg {
  width: 100%;
  height: 100%;
}
.plating-icon path,
.plating-icon circle,
.plating-icon rect,
.process-icon path,
.process-icon circle,
.process-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.plating-icon .blue,
.process-icon .blue {
  stroke: #f57d00;
  filter: none;
}
.plating-icon .fill {
  fill: #f57d00;
  stroke: none;
  filter: none;
}
.plating-icon .icon-backplate {
  stroke: rgba(169, 184, 204, 0.46);
}
.icon-dampening {
  color: #c2ccdb;
}
.secondary-card h3 {
  font-size: 21px;
}
.sound-icon {
  color: #f57d00;
}
.process-section {
  padding-bottom: 22px;
}
.plating-process-card {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0;
  padding: 26px 22px 28px;
  border-radius: 10px;
  background:
    radial-gradient(700px 190px at 50% 0%, transparent, transparent 72%),
    linear-gradient(145deg, rgba(10, 20, 33, 0.96), rgba(4, 12, 21, 0.88));
}
.plating-process-card::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 66px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 125, 0, 0.6), transparent);
  opacity: .38;
}
.plating-process-card li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 6px 10px 0;
  text-align: center;
}
.plating-process-card li + li::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -22px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 125, 0, 0.9), transparent);
  box-shadow: none;
}
.process-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8200, #b66818);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255, 171, 85, 0.65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
}
.process-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  color: #aab8ca;
  border: 1px solid rgba(183, 144, 103, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(54px 42px at 50% 48%, transparent, transparent 72%),
    linear-gradient(145deg, rgba(13, 24, 39, 0.76), rgba(5, 13, 23, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 14px 32px rgba(0, 0, 0, 0.22);
}
.process-icon svg {
  width: 76%;
  height: 76%;
}
.plating-process-card strong {
  display: block;
  min-height: 42px;
  margin-bottom: 10px;
  color: #f4f8ff;
  font-size: 15px;
  line-height: 1.05;
}
.plating-process-card p {
  font-size: 14px;
}
.process-icon .process-icon-plate {
  stroke: rgba(169, 184, 204, 0.72);
}
.plating-cta-section {
  padding-top: 12px;
  padding-bottom: 30px;
}
.plating-cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 178px;
  padding: 28px 38px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(420px 180px at 18% 42%, transparent, transparent 68%),
    linear-gradient(90deg, rgba(4, 10, 18, 0.99) 0%, rgba(4, 10, 18, 0.91) 36%, rgba(4, 10, 18, 0.34) 66%, rgba(4, 10, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.1), rgba(4, 10, 18, 0.34)),
    url('./assets/plating-finishing/plating-springs-premium-bg.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, 50% 50%;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.plating-cta-panel::before {
  display: none;
}
.plating-cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.03) 1px, transparent 1px),
    radial-gradient(480px 160px at 32% 0%, transparent, transparent 72%);
  background-size: 28px 28px, auto;
  opacity: .38;
  pointer-events: none;
}
.plating-cta-copy {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
}
.plating-cta-panel h2 {
  margin: 0 0 8px;
  color: #f2f7ff;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: .98;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.62);
}
.plating-cta-panel p {
  max-width: 610px;
  margin-bottom: 16px;
  color: #d4dfec;
  font-size: 15px;
  line-height: 1.45;
}
.plating-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: #ff9c35;
  font: 800 12px/1 Inter, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plating-cta-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #f57d00;
  box-shadow: none;
}

.proof-split { align-items: start; grid-template-columns: 1fr; max-width: 820px; }
.testimonial-stack { display: grid; gap: 10px; }
.testimonial-stack blockquote {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(13, 20, 31, 0.84);
  border-radius: 10px;
  padding: 14px;
  color: #dceaff;
  line-height: 1.6;
}
.testimonial-stack cite {
  display: block;
  margin-top: 8px;
  color: #9db8d8;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.resource-list { display: grid; gap: 8px; }
.resource-list a {
  display: block;
  border: 1px solid var(--line);
  background: rgba(12, 18, 28, 0.72);
  border-radius: 9px;
  padding: 12px;
  color: #d7e7fb;
  text-decoration: none;
  font-weight: 600;
}
.resource-list a:hover { border-color: #ffa240; }

.rfq { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.rfq-form { display: grid; gap: 10px; }
.rfq-source-note {
  border: 1px solid rgba(255, 162, 64, 0.5);
  border-radius: 9px;
  background: rgba(182, 105, 25, 0.16);
  color: #d9ebff;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}
.rfq-spring-type {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  margin: 0;
  background: rgba(13, 20, 32, 0.58);
}
.rfq-spring-type legend {
  padding: 0 6px;
  color: #d7e7fb;
  font: 700 12px/1.1 Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rfq-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.rfq-type-option {
  position: relative;
  display: block;
}
.rfq-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rfq-type-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  color: #d7e7fb;
  font: 700 12px/1.15 Inter, sans-serif;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.rfq-type-option:hover span {
  border-color: #ffa240;
  background: rgba(255, 130, 0, 0.12);
  transform: translateY(-1px);
}
.rfq-type-option input:focus-visible + span {
  outline: 2px solid #ffb05d;
  outline-offset: 2px;
}
.rfq-type-option input:checked + span {
  border-color: #ff9c34;
  background: linear-gradient(180deg, #ff8200 0%, #b66918 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(146, 82, 15, 0.32);
}
input, textarea {
  width: 100%;
  background: #0d1420;
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}
input::placeholder, textarea::placeholder { color: #8297b2; }

/* ---- RFQ section: trust rail, optional disclosure, anti-spam, validation, success ---- */

/* Honeypot — kept in DOM for bots, removed from view + tab order, not announced to AT */
.rfq-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Trust rail (left column) */
.rfq-trust { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.rfq-trust li { font-size: 13px; color: var(--muted); }
.rfq-trust li a { color: #ffb05d; text-decoration: none; }
.rfq-trust li a:hover { text-decoration: underline; }
.rfq-trust-badge {
  justify-self: start;
  border: 1px solid rgba(255, 162, 64, 0.5);
  background: rgba(182, 105, 25, 0.16);
  color: #d9ebff;
  border-radius: 9px;
  padding: 8px 12px;
  font-weight: 700;
}

/* Help + reassurance microcopy */
.rfq-help { margin: -2px 0 2px; font-size: 12px; color: var(--muted); }
.rfq-reassure { margin: 0; font-size: 12px; color: var(--muted); text-align: center; }
.rfq-reassure a { color: #ffb05d; text-decoration: none; }
.rfq-reassure a:hover { text-decoration: underline; }

/* Optional-details disclosure — styled to match .rfq-spring-type */
.rfq-more {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(13, 20, 32, 0.58);
  padding: 0 12px;
}
.rfq-more > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 0;
  color: #d7e7fb;
  font: 700 12px/1.1 Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rfq-more > summary::-webkit-details-marker { display: none; }
.rfq-more > summary:focus-visible { outline: 2px solid #ffb05d; outline-offset: 2px; border-radius: 6px; }
.rfq-more[open] > summary { border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.rfq-more-grid { display: grid; gap: 10px; padding-bottom: 12px; }
.rfq-field { display: grid; gap: 4px; }
.rfq-label {
  font: 700 12px/1.1 Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #d7e7fb;
}

/* Selects + file input — match the global input styling */
.rfq-select {
  width: 100%;
  background: #0d1420;
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: 9px;
  padding: 11px 12px;
  font: inherit;
}
.rfq-select:invalid { color: #8297b2; }
.rfq-form input[type="file"] {
  width: 100%;
  background: #0d1420;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  border-radius: 9px;
  padding: 9px 12px;
  font: inherit;
}
.rfq-form input[type="file"]::file-selector-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: 7px;
  padding: 7px 12px;
  margin-right: 12px;
  font: 700 12px Inter, sans-serif;
  letter-spacing: .03em;
  cursor: pointer;
}
.rfq-form input[type="file"]::file-selector-button:hover {
  border-color: #ffa240;
  background: rgba(255, 130, 0, 0.12);
}

/* Inline validation errors */
.rfq-error { margin: -4px 0 2px; font-size: 12px; color: #ff9a9a; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #ff7a7a; }
.rfq-spring-type[aria-invalid="true"] { border-color: #ff7a7a; }

/* Success panel — reuses the source-note look, larger */
.rfq-success {
  border: 1px solid rgba(255, 162, 64, 0.5);
  border-radius: 10px;
  background: rgba(182, 105, 25, 0.16);
  color: #d9ebff;
  padding: 18px 20px;
}
.rfq-success h3 { margin: 0 0 8px; color: #fff; }
.rfq-success ol { margin: 10px 0; padding-left: 20px; }
.rfq-success li, .rfq-success p { font-size: 14px; line-height: 1.5; }
.rfq-success a { color: #ffb05d; }
.rfq-success-src { opacity: .7; font-size: 12px; }

.footer { border-top: 1px solid var(--line); padding: 20px 0 32px; color: var(--muted); }
.footer-proof {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(13, 20, 31, 0.72);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  color:#d8eaff;
  font-size: 13px;
  font-weight: 600;
}
.footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.heat-page {
  background:
    radial-gradient(980px 540px at 78% 4%, transparent, transparent 58%),
    linear-gradient(180deg, #040a11 0%, #06101a 46%, #030810 100%);
}
.heat-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(780px 360px at 16% 26%, transparent, transparent 70%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.52), rgba(3, 8, 15, 0.96));
}
.heat-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .18;
}
.heat-hero {
  position: relative;
  min-height: 640px;
  padding: 66px 0 50px;
  border-bottom: 1px solid rgba(183, 144, 103, 0.25);
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.99) 0%, rgba(3, 8, 15, 0.88) 36%, rgba(3, 8, 15, 0.42) 66%, rgba(3, 8, 15, 0.74) 100%),
    linear-gradient(180deg, rgba(3, 8, 15, 0.08) 0%, rgba(3, 8, 15, 0.38) 58%, rgba(3, 8, 15, 0.98) 100%),
    url('./assets/heat-treating/hero-image.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, 68% center;
  background-repeat: no-repeat;
  box-shadow: inset 0 -110px 130px rgba(0, 0, 0, 0.4);
}
.heat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(780px 380px at 84% 28%, transparent, transparent 70%),
    radial-gradient(620px 280px at 20% 76%, transparent, transparent 72%);
  mix-blend-mode: screen;
  opacity: .48;
}
.heat-hero-inner {
  position: relative;
  z-index: 1;
  display: block;
}
.heat-hero-copy {
  max-width: 650px;
}
.heat-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
  color: #9fb3ca;
  font-size: 13px;
  font-weight: 700;
}
.heat-breadcrumb a,
.heat-breadcrumb span {
  color: #9fb3ca;
  text-decoration: none;
}
.heat-breadcrumb a,
.heat-breadcrumb span:last-child {
  color: #dbe9fa;
}
.heat-breadcrumb span::before {
  content: ">";
  margin-right: 8px;
  color: #6f86a1;
}
.heat-hero h1,
.heat-hero h2,
.heat-benefits h3,
.heat-copy-block h2,
.heat-section-head h2,
.heat-process-card h3,
.heat-cta-panel h2 {
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.heat-hero h1 {
  margin: 0 0 6px;
  color: #f5f8ff;
  font-size: clamp(48px, 5.6vw, 68px);
  line-height: .9;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.64);
}
.heat-subhead {
  margin: 0 0 13px;
  color: #ff9a31;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.heat-lead {
  margin: 0;
  max-width: 560px;
  color: #d9e4f0;
  font-size: 17px;
  line-height: 1.62;
}
.heat-primary-cta {
  margin-top: 28px;
  min-width: 184px;
  text-align: center;
}
.heat-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.heat-benefits article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  min-width: 0;
}
.heat-benefit-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 140, 21, 0.9);
  border-radius: 50%;
  color: #ff880d;
  background: rgba(11, 24, 40, 0.62);
}
.heat-benefit-icon svg,
.heat-process-icon svg,
.heat-cta-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.heat-benefit-icon svg {
  width: 32px;
  height: 32px;
}
.heat-benefit-icon path,
.heat-benefit-icon circle,
.heat-process-icon path,
.heat-process-icon circle,
.heat-cta-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.heat-benefits h3 {
  margin: 4px 0 8px;
  color: #f3f7ff;
  font-size: 18px;
  line-height: 1;
}
.heat-benefits p {
  margin: 0;
  color: #bdcada;
  font-size: 13px;
  line-height: 1.46;
}
.heat-section {
  position: relative;
  padding: 62px 0;
  border-top: 1px solid rgba(183, 144, 103, 0.18);
}
.heat-split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 72px;
  align-items: center;
}
.heat-copy-block h2,
.heat-section-head h2 {
  margin: 0 0 22px;
  color: #f4f8ff;
  font-size: clamp(34px, 3.6vw, 45px);
  line-height: .94;
}
.heat-copy-block p {
  margin: 0 0 27px;
  color: #d2deea;
  font-size: 16px;
  line-height: 1.66;
}
.heat-checklist {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.heat-checklist li {
  position: relative;
  padding-left: 30px;
  color: #c4d1e1;
  line-height: 1.45;
}
.heat-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 137, 15, 0.84);
  border-radius: 50%;
  background: rgba(11, 24, 40, 0.46);
  box-shadow: none;
}
.heat-checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(.18em + 4px);
  width: 8px;
  height: 4px;
  border-left: 2px solid #ff8200;
  border-bottom: 2px solid #ff8200;
  transform: rotate(-45deg);
}
.heat-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 144, 103, 0.34);
  border-radius: 8px;
  background: rgba(7, 15, 25, 0.8);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}
.heat-image-card img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
}
.heat-process-section {
  padding-top: 54px;
}
.heat-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.heat-process-card {
  min-height: 272px;
  padding: 32px 17px 24px;
  border: 1px solid rgba(183, 144, 103, 0.3);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(12, 21, 34, 0.94), rgba(5, 12, 22, 0.86));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-align: center;
}
.heat-process-icon {
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto 23px;
  color: #ff8200;
}
.heat-process-card h3 {
  margin: 0 0 11px;
  color: #f3f8ff;
  font-size: 18px;
  line-height: 1;
}
.heat-process-card p {
  margin: 0;
  color: #c0ccda;
  font-size: 14px;
  line-height: 1.48;
}
.heat-quality-split {
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
}
.heat-cta-section {
  position: relative;
  padding: 32px 0 36px;
  border-top: 1px solid rgba(183, 144, 103, 0.2);
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.96), rgba(4, 10, 18, 0.78)),
    url('./assets/heat-treating/quality-image.jpg') center 62% / cover no-repeat;
}
.heat-cta-panel {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 226px;
  gap: 26px;
  align-items: center;
  min-height: 142px;
  padding: 24px;
  border: 1px solid rgba(183, 144, 103, 0.31);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 28, 43, 0.92), rgba(6, 14, 24, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}
.heat-cta-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #dcecff;
  background: linear-gradient(180deg, #b66b1e, #834c13);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}
.heat-cta-icon svg {
  width: 42px;
  height: 42px;
}
.heat-cta-panel h2 {
  margin: 0 0 8px;
  color: #f4f8ff;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1;
}
.heat-cta-panel p {
  margin: 0;
  max-width: 660px;
  color: #d0dcea;
  line-height: 1.52;
}
.heat-cta-panel .btn {
  justify-self: end;
  width: 100%;
  text-align: center;
}
.heat-footer {
  background: #050a11;
}

.testing-page {
  background:
    radial-gradient(980px 520px at 76% 0%, transparent, transparent 58%),
    linear-gradient(180deg, #03070d 0%, #06111b 46%, #03080f 100%);
}
.testing-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 360px at 15% 26%, transparent, transparent 72%),
    radial-gradient(760px 420px at 92% 42%, transparent, transparent 76%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.44), rgba(3, 8, 14, 0.98));
}
.testing-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .18;
}
.testing-hero {
  position: relative;
  min-height: 640px;
  border-bottom: 1px solid rgba(183, 144, 103, 0.25);
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.99) 0%, rgba(3, 8, 14, 0.93) 34%, rgba(3, 8, 14, 0.16) 52%, rgba(3, 8, 14, 0) 68%),
    linear-gradient(180deg, rgba(3, 8, 14, 0) 0%, rgba(3, 8, 14, 0.14) 66%, rgba(3, 8, 14, 0.58) 100%),
    url('./assets/testing-quality/work-shop-hero.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, 58% 32%;
  background-repeat: no-repeat;
  box-shadow: inset 0 -92px 130px rgba(0, 0, 0, 0.45);
}
.testing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(620px 260px at 74% 34%, transparent, transparent 68%),
    linear-gradient(90deg, rgba(4, 10, 17, 0), rgba(4, 10, 17, .22));
  mix-blend-mode: screen;
  opacity: .5;
}
.testing-hero-inner {
  z-index: 1;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
  padding: 66px 0 48px;
}
.testing-hero-copy {
  width: min(650px, 100%);
}
.testing-kicker,
.testing-section-label {
  margin: 0 0 14px;
  color: #f77e00;
  font: 800 13px/1 Inter, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.testing-hero h1,
.testing-section h2,
.testing-cta-panel h2,
.planning-grid h3,
.inspection-card h3,
.certification-grid h3,
.validation-flow strong,
.trace-grid span {
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.testing-hero h1 {
  margin: 0 0 24px;
  max-width: 780px;
  color: #f4f8ff;
  font-size: clamp(48px, 5.45vw, 70px);
  line-height: .86;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.68);
}
.testing-hero h1 span {
  display: block;
  font-size: .49em;
  line-height: .95;
  white-space: nowrap;
}
.testing-lead,
.testing-section-head p,
.testing-copy-block p,
.compact-panel p,
.testing-flow-head p,
.testing-cta-panel p {
  color: #c9d6e6;
  line-height: 1.55;
}
.testing-lead {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
}
.testing-badges {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  max-width: 940px;
}
.testing-badges > span {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: center;
  min-height: 72px;
  padding: 0 14px;
  color: #ecf5ff;
  font: 800 12px/1.22 Rajdhani, Inter, sans-serif;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}
.testing-badges > span + span {
  border-left: 1px solid rgba(183, 144, 103, 0.42);
}
.testing-badges em {
  display: block;
  width: 100%;
  min-width: 0;
  font-style: normal;
  text-align: center;
  text-wrap: balance;
}
.testing-badges em span {
  display: block;
}
.testing-badges .badge-line-nudge-left {
  transform: translateX(-4px);
}
.testing-badges svg.testing-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 7px;
  stroke-width: 2;
}
.testing-section {
  position: relative;
  padding: 10px 0 12px;
}
.testing-panel {
  position: relative;
  padding: 26px 28px;
  border: 1px solid rgba(183, 144, 103, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(520px 220px at 82% 12%, transparent, transparent 72%),
    linear-gradient(145deg, rgba(8, 17, 29, 0.94), rgba(3, 10, 18, 0.86));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.testing-system-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: 38px;
  align-items: center;
}
.testing-copy-block h2,
.testing-section-head h2,
.compact-panel h2,
.testing-flow-head h2 {
  margin: 0 0 12px;
  color: #f4f8ff;
  font-size: clamp(31px, 3.5vw, 42px);
  line-height: .95;
}
.testing-copy-block p,
.compact-panel p,
.testing-section-head p {
  margin: 0;
  max-width: 650px;
}
.testing-checklist,
.planning-grid ul,
.inspection-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.testing-checklist li,
.planning-grid li,
.inspection-card li {
  position: relative;
  padding-left: 24px;
  color: #d9e6f6;
  line-height: 1.36;
}
.testing-checklist li::before,
.planning-grid li::before,
.inspection-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 14px;
  height: 14px;
  border: 1px solid #ff8200;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ff8200 2px, transparent 3px);
  box-shadow: none;
}
.certification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.certification-grid article,
.planning-grid article,
.inspection-card,
.validation-flow li {
  border: 1px solid rgba(183, 144, 103, 0.34);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(11, 21, 34, 0.93), rgba(5, 13, 22, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.certification-grid article {
  min-height: 170px;
  padding: 25px 18px 18px;
  text-align: center;
}
.certification-grid strong {
  display: block;
  margin: 3px 0 15px;
  color: #ff8200;
  font: 800 34px/1 Rajdhani, Inter, sans-serif;
  letter-spacing: .06em;
}
.certification-grid h3 {
  margin: 0 0 8px;
  color: #f6f9ff;
  font-size: 19px;
  line-height: 1;
}
.certification-grid p {
  margin: 0;
  color: #c7d4e5;
  line-height: 1.35;
}
.testing-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  color: #ff8200;
  border: 1px solid rgba(255, 130, 0, .78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 130, 0, 0), rgba(255, 130, 0, .13)),
    linear-gradient(currentColor, currentColor) center / 21px 2px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center / 2px 21px no-repeat;
  box-shadow: none;
}
.certification-grid .testing-icon {
  border: 0;
  background: none;
  box-shadow: none;
  color: #dfeaff;
}
.icon-globe { border-radius: 50%; background: radial-gradient(circle, transparent 42%, currentColor 44% 48%, transparent 50%), linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat, linear-gradient(90deg, currentColor, currentColor) center / 2px 100% no-repeat; }
.icon-seal { border-radius: 50%; background: radial-gradient(circle, transparent 35%, currentColor 37% 42%, transparent 44%), conic-gradient(from 0deg, currentColor 0 10deg, transparent 10deg 22deg); }
.icon-document { background: linear-gradient(currentColor, currentColor) 50% 29% / 18px 2px no-repeat, linear-gradient(currentColor, currentColor) 50% 48% / 18px 2px no-repeat, linear-gradient(currentColor, currentColor) 50% 67% / 14px 2px no-repeat; }
.icon-clipboard { background: linear-gradient(currentColor, currentColor) 50% 26% / 16px 2px no-repeat, linear-gradient(currentColor, currentColor) 50% 47% / 18px 2px no-repeat, linear-gradient(currentColor, currentColor) 50% 66% / 13px 2px no-repeat; }
.icon-flow { background: radial-gradient(circle at 50% 24%, currentColor 0 3px, transparent 4px), radial-gradient(circle at 25% 70%, currentColor 0 3px, transparent 4px), radial-gradient(circle at 75% 70%, currentColor 0 3px, transparent 4px), linear-gradient(currentColor, currentColor) 50% 48% / 2px 17px no-repeat, linear-gradient(currentColor, currentColor) 50% 63% / 50% 2px no-repeat; }
.icon-curve { border: 0; background: radial-gradient(ellipse at 50% 100%, transparent 41%, currentColor 42% 45%, transparent 46%); }
.icon-gauge { border-radius: 50%; background: radial-gradient(circle at 50% 64%, currentColor 0 3px, transparent 4px), conic-gradient(from 225deg, currentColor 0 180deg, transparent 180deg); }
.icon-caliper { transform: rotate(90deg); }
.icon-gear { border-radius: 50%; background: radial-gradient(circle, transparent 28%, currentColor 30% 35%, transparent 37%), conic-gradient(currentColor 0 10deg, transparent 10deg 35deg); }
.icon-search { border-radius: 50%; background: radial-gradient(circle at 43% 43%, transparent 34%, currentColor 36% 42%, transparent 44%), linear-gradient(45deg, transparent 55%, currentColor 56% 61%, transparent 62%); }
.icon-wrench { transform: rotate(-35deg); border-radius: 16px 16px 8px 8px; }
.planning-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.planning-grid article {
  min-height: 258px;
  padding: 22px 15px 18px;
  text-align: center;
}
.planning-grid .testing-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
.planning-grid h3,
.inspection-card h3 {
  margin: 0;
  color: #f6f9ff;
  font-size: 20px;
  line-height: .94;
}
.planning-grid h3 {
  font-size: 19px;
  letter-spacing: .035em;
}
.planning-grid ul,
.inspection-card ul {
  gap: 8px;
  text-align: left;
  font-size: 13px;
}
.inspection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.inspection-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.inspection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 17, .96) 0%, rgba(4, 10, 17, .72) 50%, rgba(4, 10, 17, .14) 100%);
}
.inspection-card div {
  position: relative;
  z-index: 1;
  padding: 22px 18px;
}
.inspection-card .testing-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.inspection-card.incoming { background-image: url('./assets/testing-quality/incoming-material-card.jpg'); }
.inspection-card.inprocess { background-image: url('./assets/testing-quality/inprocess-inspection-card.jpg'); }
.inspection-card.final { background-image: url('./assets/testing-quality/final-inspection-card-background.jpg'); }
.inspection-card.calibration { background-image: url('./assets/testing-quality/calibration-systems-card.jpg'); }
.compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.compact-panel {
  min-height: 285px;
}
.trace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  margin-top: 24px;
}
.trace-grid span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  color: #f2f7ff;
  font-size: 14px;
  line-height: 1;
}
.trace-grid .testing-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}
.risk-panel {
  overflow: hidden;
}
.risk-panel::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(183, 144, 103, .11);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0 10deg, rgba(183, 144, 103, .08) 10deg 12deg);
  opacity: .42;
}
.two-column {
  grid-template-columns: repeat(2, 1fr);
}
.flow-panel {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.98) 0%, rgba(4, 10, 17, 0.82) 46%, rgba(4, 10, 17, 0.64) 100%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.72), rgba(4, 10, 17, 0.92)),
    url('./assets/testing-quality/quality-flow-background.jpg') center / cover no-repeat;
}
.flow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(620px 240px at 30% 0%, transparent, transparent 72%);
  background-size: 28px 28px, auto;
  opacity: .48;
}
.flow-panel > * {
  position: relative;
  z-index: 1;
}
.testing-flow-head {
  display: grid;
  grid-template-columns: minmax(230px, .38fr) 1fr;
  gap: 24px;
  align-items: end;
}
.testing-flow-head p {
  margin: 0 0 4px;
  max-width: 430px;
}
.validation-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
}
.validation-flow li {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 130px;
  padding: 15px 10px 13px;
  text-align: center;
  background:
    radial-gradient(220px 92px at 50% 0%, transparent, transparent 72%),
    linear-gradient(180deg, rgba(8, 18, 31, 0.82), rgba(4, 10, 18, 0.72));
  backdrop-filter: blur(2px);
}
.validation-flow li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 19px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8200);
  box-shadow: none;
}
.validation-flow .testing-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.validation-flow b {
  color: #d9e8f9;
  font: 800 20px/1 Rajdhani, Inter, sans-serif;
}
.validation-flow strong {
  margin-top: 6px;
  color: #f2f7ff;
  font-size: 13px;
  line-height: 1.05;
}
.testing-cta-section {
  position: relative;
  padding: 16px 0 0;
  border-top: 1px solid rgba(183, 144, 103, 0.2);
  background:
    linear-gradient(90deg, rgba(3, 8, 14, .98) 0%, rgba(3, 8, 14, .82) 48%, rgba(3, 8, 14, .56) 74%, rgba(3, 8, 14, .86) 100%),
    url('./assets/testing-quality/final-inspection-card-background.jpg') center / cover no-repeat;
}
.testing-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 166px;
  padding: 26px 20px;
}
.testing-cta-panel h2 {
  margin: 0 0 10px;
  color: #f4f8ff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: .95;
}
.testing-cta-panel p {
  margin: 0;
  max-width: 720px;
}
.testing-cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.testing-cta-actions .btn {
  min-width: 200px;
  text-align: center;
}
.testing-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
svg.testing-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  padding: 9px;
  color: #ff8200;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(255, 130, 0, .78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 130, 0, 0.02), rgba(255, 130, 0, .14)),
    rgba(4, 14, 26, .62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transform: none;
}
svg.testing-icon use {
  pointer-events: none;
}
.certification-grid svg.testing-icon {
  width: 58px;
  height: 58px;
  padding: 4px;
  color: #f0f6ff;
  border: 0;
  background: transparent;
  box-shadow: none;
  stroke-width: 1.65;
}
.planning-grid svg.testing-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
}
.inspection-card svg.testing-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
}
.trace-grid svg.testing-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 6px;
  stroke-width: 2;
}
.validation-flow svg.testing-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  padding: 8px;
}

/* Standardize product/capability hero heights to the compression/extension hero system. */
.wire-hero,
.plating-hero,
.heat-hero,
.testing-hero {
  min-height: 520px;
}
.wire-hero-inner,
.plating-hero-inner,
.testing-hero-inner {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 34px;
  padding-bottom: 30px;
}
.plating-hero-inner {
  align-items: flex-start;
}
.heat-hero {
  padding: 0;
}
.heat-hero-inner {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0 30px;
}
.testing-hero-inner {
  align-items: stretch;
}
.wire-hero-copy {
  max-width: 650px;
  margin: 18px 0 22px;
}
.wire-hero h1 {
  max-width: 620px;
  font-size: clamp(52px, 5.8vw, 74px);
}
.wire-hero-copy p {
  margin-top: 16px;
  max-width: 500px;
}
.wire-stat-grid {
  gap: 10px;
}
.wire-stat {
  grid-template-columns: 44px 1fr;
  gap: 10px;
  min-height: 86px;
  padding: 12px;
}
.wire-icon {
  width: 38px;
  height: 38px;
  font-size: 20px;
}
.wire-stat strong {
  font-size: 18px;
  line-height: 1;
}
.wire-stat p {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.34;
}
.heat-benefits {
  position: absolute;
  top: 50%;
  right: max(4vw, calc((100vw - 1160px) / 2));
  bottom: auto;
  left: auto;
  width: min(360px, 32vw);
  transform: translateY(-50%);
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
}
.heat-benefits article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(142, 169, 201, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(260px 110px at 14% 0%, transparent, transparent 72%),
    linear-gradient(180deg, rgba(11, 22, 36, 0.84), rgba(4, 11, 20, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(3px);
}
.heat-hero-copy {
  max-width: 580px;
}
.heat-breadcrumb {
  margin-bottom: 18px;
}
.heat-lead {
  font-size: 16px;
  line-height: 1.5;
}
.heat-primary-cta {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .hero-grid, .split, .quality-grid, .rfq, .calc-showcase, .quick-grid, .proof-grid, .product-hero-grid, .product-detail-grid, .product-cta-panel { grid-template-columns: 1fr; }
  .cards.four { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
  .compression-hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(5, 10, 17, 0) 0 230px, rgba(5, 10, 17, 0.96) 230px),
      url('./assets/stock/compression-custom.jpg');
    background-size: auto, auto 230px;
    background-position: center, center top;
    background-repeat: no-repeat;
  }
  .compression-hero-inner {
    min-height: 0;
    padding: 254px 0 28px;
  }
  .compression-breadcrumb {
    display: flex;
  }
  .compression-hero h1 {
    max-width: none;
    font-size: clamp(42px, 12vw, 58px);
    line-height: .9;
  }
  .compression-stat-grid,
  .compression-overview-grid,
  .compression-feature-grid,
  .compression-spec-grid,
  .compression-process,
  .compression-cta-panel {
    grid-template-columns: 1fr;
  }
  .compression-stat-grid {
    margin-top: 26px;
  }
  .compression-applications {
    border-left: 0;
    border-top: 1px solid rgba(183, 144, 103, 0.22);
    padding: 26px 0 0;
  }
  .compression-applications-art {
    display: none;
  }
  .compression-applications-mobile {
    display: block;
    max-width: none;
    margin-top: 28px;
    border-top: 1px solid rgba(183, 144, 103, 0.22);
    padding-top: 28px;
  }
  .compression-diagram {
    min-height: 230px;
  }
  .compression-diagram-img {
    width: min(100%, 310px);
  }
  .compression-process {
    gap: 16px;
  }
  .compression-process li {
    grid-template-columns: 72px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }
  .compression-process li + li::before {
    display: none;
  }
  .compression-page .compression-process {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .compression-page .compression-process li {
    grid-template-columns: 62px 1fr;
    grid-template-areas:
      "icon meta"
      "icon copy";
    column-gap: 14px;
    row-gap: 3px;
    text-align: left;
    align-items: center;
  }
  .compression-page .process-icon {
    grid-area: icon;
    width: 54px;
  }
  .compression-page .process-icon svg {
    width: 31px;
    height: 31px;
  }
  .compression-page .compression-process strong {
    grid-area: meta;
    justify-self: start;
    align-self: end;
    max-width: none;
    font-size: 15px;
  }
  .compression-page .compression-process p {
    grid-area: copy;
    justify-self: start;
    max-width: none;
    font-size: 13px;
  }
  .compression-cta-panel {
    padding: 24px;
  }
  .compression-cta-actions {
    min-width: 0;
  }
  .product-hero {
    min-height: 0;
    display: block;
  }
  .product-spec-card { align-self: auto; }
  .product-cta-actions { justify-content: flex-start; }
}

@media (max-width: 980px) {
  .container { width: min(1160px, 94vw); }

  .topbar-inner {
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 10px;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
    min-height: 63px;
    width: auto;
    flex: 1 1 auto;
  }

  .brand-logo-wide { height: 48px; }
  .brand-location { font-size: 9px; letter-spacing: .1em; }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 38px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    color: #e7f2ff;
    background: rgba(13, 20, 31, 0.86);
    cursor: pointer;
  }

  .mobile-nav-toggle span,
  .mobile-nav-toggle::before,
  .mobile-nav-toggle::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .mobile-nav-toggle {
    flex-direction: column;
    gap: 4px;
  }

  .topbar.is-mobile-open .mobile-nav-toggle span { opacity: 0; }
  .topbar.is-mobile-open .mobile-nav-toggle::before { transform: translateY(6px) rotate(45deg); }
  .topbar.is-mobile-open .mobile-nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 3vw;
    right: 3vw;
    display: block;
    max-height: min(74vh, 620px);
    overflow-y: auto;
    padding: 9px;
    border: 1px solid rgba(176, 135, 93, 0.34);
    border-radius: 0 0 12px 12px;
    background: rgba(7, 12, 19, 0.98);
    box-shadow: 0 18px 38px rgba(0,0,0,.46);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .topbar.is-mobile-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-list {
    display: grid;
    gap: 5px;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
    border-color: rgba(183, 144, 103, 0.17);
    background: rgba(255,255,255,.025);
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: max-height .2s ease, padding .2s ease;
  }

  .nav-dropdown::before { display: none; }

  .nav-item:hover > .nav-dropdown,
  .nav-item.is-open > .nav-dropdown {
    transform: none;
  }

  .nav-item.is-open > .nav-dropdown {
    max-height: 330px;
    padding: 6px 6px 8px;
  }

  .dropdown-link {
    min-height: 39px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(13, 20, 31, 0.72);
  }

  .nav-cta {
    width: 100%;
    min-height: 44px;
    margin: 8px 0 0;
  }

  /* Mobile-specific structure: header -> standalone video strip -> hero copy */
  .hero {
    padding-top: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(8, 13, 20, 0.98), rgba(8, 13, 20, 1));
  }

  /* Calculator video heroes: beat the section's inline top padding on mobile so the video
     sits flush under the header and the ::before overlay (anchored to the hero top) lines
     up with it. Scoped to video heroes only, so the text-hero landing page is untouched. */
  .hero:has(> .hero-bg-video) {
    padding-top: 0 !important;
  }

  .hero-bg-video {
    position: relative;
    height: 190px;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    object-fit: cover;
    filter: grayscale(.1) contrast(1.03) brightness(.66) saturate(.82);
    border-bottom: 1px solid var(--line);
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    background: linear-gradient(180deg, rgba(6, 10, 16, 0.12) 0%, rgba(6, 10, 16, 0.26) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero::after { display: none; }

  .hero-grid {
    margin-top: 0;
    padding: 16px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  h1 { font-size: clamp(30px, 9vw, 42px); }
  .lead { font-size: 15px; }

  .hero-card { padding: 14px; }
  .hero-card h3 { font-size: 24px; }

  .section {
    padding: 44px 0;
    scroll-margin-top: 132px;
  }

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

  .cards.four { grid-template-columns: 1fr; }

  .card img {
    height: 150px;
    object-fit: cover;
  }

  .calc-showcase { padding: 16px; }
  .calc-showcase-copy h3 { font-size: clamp(30px, 10vw, 42px); }
  .calc-mini-card h4 { font-size: 20px; }

  .process-photo-card img {
    height: 240px;
    max-height: 240px;
  }

  .product-hero-grid {
    padding: 16px 0 0;
  }

  .product-hero h1 {
    font-size: clamp(29px, 8vw, 40px);
  }

  .product-photo-card img {
    object-fit: contain;
    padding: 12px;
  }

  .product-cta-panel {
    padding: 16px;
  }

  .rfq { gap: 14px; }

  .footer-proof {
    font-size: 12px;
    gap: 8px;
  }

  .trust-strip span { white-space: normal; }
  body { overflow-x: hidden; }
}


@media (max-width: 420px) {
  .brand-logo-wide { height: 42px; }
  .brand { min-height: 57px; }
  .btn { padding: 11px 14px; }
  .trust-strip { gap: 6px 10px; }
  .hero-card h3 { font-size: 22px; }
  .compression-hero-inner { padding-top: 232px; }
  .compression-hero {
    background-size: auto, auto 212px;
    background-position: center, 58% top;
  }
  .compression-hero h1 { font-size: clamp(34px, 10vw, 42px); }
  .compression-stat { grid-template-columns: 46px 1fr; padding: 12px; }
  .compression-icon { width: 40px; }
  .compression-section { padding: 36px 0; }
  .compression-copy-block h2,
  .compression-section-head h2,
  .compression-panel h2 { font-size: 28px; }
  .compression-panel { padding: 18px; }
  .compression-spec-list div { grid-template-columns: 1fr; gap: 5px; }
  .material-grid { grid-template-columns: 1fr; }
  .compression-feature-card { min-height: 0; }
}

@media (max-width: 980px) {
  .extension-page .compression-overview-grid {
    grid-template-columns: 1fr;
  }
  .extension-page .compression-applications {
    grid-column: auto;
    border-left: 0;
    border-top: 1px solid rgba(183, 144, 103, 0.22);
    padding: 26px 0 0;
  }
  .extension-page .compression-diagram {
    grid-column: auto;
    grid-row: auto;
  }
  .extension-page .compression-diagram-img {
    width: min(100%, 760px);
  }
  .extension-page .compression-hero {
    background:
      linear-gradient(180deg, rgba(5, 10, 17, 0) 0 230px, rgba(5, 10, 17, 0.96) 230px),
      var(--extension-hero-image);
    background-size: auto, auto 230px;
    background-position: center, 62% top;
    background-repeat: no-repeat;
  }
  .torsion-page .compression-overview-grid {
    grid-template-columns: 1fr;
  }
  .torsion-basics-card {
    border-top: 1px solid rgba(183, 144, 103, 0.22);
    padding: 26px 0 0;
  }
  .torsion-basics-img {
    width: min(100%, 760px);
    margin-left: 0;
  }
  .torsion-page .compression-hero {
    background:
      linear-gradient(180deg, rgba(5, 10, 17, 0) 0 230px, rgba(5, 10, 17, 0.96) 230px),
      var(--torsion-hero-image);
    background-size: auto, auto 230px;
    background-position: center, center top;
    background-repeat: no-repeat;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .extension-page .compression-overview-grid {
    grid-template-columns: minmax(280px, .85fr) minmax(220px, .6fr) minmax(380px, 1.15fr);
    gap: 18px;
  }
  .extension-page .compression-applications {
    grid-column: auto;
    padding-left: 18px;
  }
  .extension-page .compression-diagram {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
    padding-top: 0;
  }
  .extension-page .compression-diagram-img {
    width: min(100%, 620px);
  }
  .torsion-page .compression-overview-grid {
    grid-template-columns: minmax(280px, .85fr) minmax(220px, .6fr) minmax(380px, 1.15fr);
    gap: 18px;
  }
  .torsion-basics-card {
    grid-column: auto;
    grid-row: auto;
    padding-left: 18px;
  }
  .torsion-basics-img {
    width: min(100%, 620px);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .wire-stat-grid,
  .wire-application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wire-process {
    grid-template-columns: repeat(4, 1fr);
  }
  .wire-process li + li::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .wire-hero {
    min-height: 0;
    background:
      radial-gradient(360px 210px at 62% 8%, transparent, transparent 70%),
      linear-gradient(180deg, rgba(3, 10, 18, 0) 0 230px, rgba(3, 10, 18, 0.96) 230px),
      url('./assets/products/wire-forms-hero.jpg');
    background-size: auto, auto, 100% auto;
    background-position: center, center, 56% top;
    background-repeat: no-repeat;
  }
  .wire-hero-inner {
    min-height: 0;
    padding: 254px 0 28px;
  }
  .wire-hero-copy {
    max-width: none;
    margin: 0 0 28px;
  }
  .wire-hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 12vw, 62px);
  }
  .wire-stat-grid,
  .wire-intro-grid,
  .wire-application-grid,
  .wire-fire-panel,
  .wire-material-grid,
  .wire-process,
  .wire-cta-panel {
    grid-template-columns: 1fr;
  }
  .wire-section {
    padding: 32px 0;
  }
  .wire-stat-grid,
  .wire-intro-grid,
  .wire-application-grid,
  .wire-process {
    gap: 14px;
  }
  .wire-solution-card {
    min-height: 260px;
  }
  .wire-application-grid article {
    min-height: 0;
  }
  .wire-fire-copy {
    padding: 28px;
    background: linear-gradient(180deg, rgba(4, 11, 20, 0.98), rgba(4, 11, 20, 0.82));
  }
  .wire-fire-art {
    min-height: 300px;
    background-size: auto, auto, cover;
    background-position: center, center, center;
  }
  .wire-panel + .wire-panel {
    border-left: 1px solid rgba(183, 144, 103, 0.24);
    border-top: 0;
  }
  .wire-process li {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 0 14px;
    text-align: left;
    align-items: start;
  }
  .wire-process li + li::before {
    display: none;
  }
  .wire-process span {
    grid-row: span 2;
    margin: 0;
  }
  .wire-process strong {
    min-height: 0;
  }
  .wire-cta-actions {
    justify-items: start;
    min-width: 0;
  }
  .plating-hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(3, 9, 16, 0) 0 230px, rgba(3, 9, 16, 0.96) 230px),
      url('./assets/plating-finishing/hero-plating-final.jpg');
    background-size: auto, 100% auto;
    background-position: center, 67% top;
    background-repeat: no-repeat;
  }
  .plating-hero-inner {
    min-height: 0;
    align-items: stretch;
    padding: 254px 0 28px;
  }
  .plating-hero h1 {
    max-width: 620px;
    font-size: clamp(42px, 11vw, 60px);
  }
  .plating-hero-actions .btn {
    min-width: min(100%, 220px);
  }
  .finish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .finish-card {
    grid-column: auto;
  }
  .finish-card:nth-child(5) {
    grid-column: auto;
  }
  .finish-card:nth-child(6),
  .finish-card:nth-child(7) {
    grid-column: auto;
  }
  .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plating-process-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .plating-process-card::before {
    left: 49px;
    right: auto;
    top: 36px;
    bottom: 36px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(245, 125, 0, 0.52), transparent);
  }
  .plating-process-card li {
    display: grid;
    grid-template-columns: 34px 76px 1fr;
    align-items: center;
    text-align: left;
    column-gap: 16px;
  }
  .plating-process-card li + li::before {
    display: none;
  }
  .process-number {
    margin: 0;
    grid-row: 1 / span 2;
    align-self: start;
  }
  .process-icon {
    grid-row: 1 / span 2;
    grid-column: 2;
    margin: 0;
  }
  .plating-process-card strong {
    grid-column: 3;
    min-height: 0;
  }
  .plating-process-card p {
    grid-column: 3;
  }
  .plating-cta-panel {
    min-height: 210px;
    padding: 26px 28px;
    background:
      radial-gradient(420px 220px at 20% 48%, transparent, transparent 70%),
      linear-gradient(90deg, rgba(4, 10, 18, 0.99) 0%, rgba(4, 10, 18, 0.91) 44%, rgba(4, 10, 18, 0.48) 100%),
      linear-gradient(180deg, rgba(4, 10, 18, 0.16), rgba(4, 10, 18, 0.7)),
      url('./assets/plating-finishing/plating-springs-premium-bg.jpg');
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, 50% 50%;
  }
}

@media (max-width: 640px) {
  .plating-section {
    padding: 30px 0 34px;
  }
  .plating-section-head h2 {
    font-size: 30px;
  }
  .finish-grid,
  .secondary-grid {
    grid-template-columns: 1fr;
  }
  .finish-card {
    min-height: 0;
  }
  .finish-card img {
    height: 172px;
  }
  .secondary-card {
    min-height: 0;
  }
  .plating-icon {
    margin-left: 0;
    margin-right: 0;
  }
  .finish-tags span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }
  .plating-hero-actions {
    display: grid;
  }
  .plating-hero-actions .btn {
    width: 100%;
  }
  .plating-process-card {
    padding: 26px 18px;
  }
  .plating-process-card li {
    grid-template-columns: 32px 54px 1fr;
    column-gap: 12px;
  }
  .process-icon {
    width: 54px;
    height: 54px;
  }
  .process-number {
    width: 32px;
    height: 32px;
  }
  .plating-cta-panel {
    min-height: 285px;
    align-items: flex-end;
    padding: 22px 20px;
    background:
      linear-gradient(180deg, rgba(4, 10, 18, 0.18) 0%, rgba(4, 10, 18, 0.46) 42%, rgba(4, 10, 18, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 10, 18, 0.94), rgba(4, 10, 18, 0.42)),
      url('./assets/plating-finishing/plating-springs-premium-bg.jpg');
    background-size: auto, auto, cover;
    background-position: center, center, 50% 48%;
  }
  .plating-cta-panel::before {
    display: none;
  }
  .plating-cta-panel h2 {
    font-size: 30px;
  }
  .plating-cta-panel p {
    font-size: 15px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .heat-split,
  .heat-quality-split {
    gap: 34px;
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  }
  .heat-process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 980px) {
  .heat-hero {
    min-height: 0;
    padding: 232px 0 28px;
    background:
      linear-gradient(180deg, rgba(3, 8, 15, 0) 0 230px, rgba(3, 8, 15, 0.96) 230px),
      url('./assets/heat-treating/hero-image.jpg');
    background-size: auto, auto 230px;
    background-position: center, 58% top;
    background-repeat: no-repeat;
  }
  .heat-hero-inner {
    display: block;
    padding-top: 0;
  }
  .heat-hero-copy {
    max-width: none;
  }
  .heat-breadcrumb {
    margin-bottom: 18px;
  }
  .heat-benefits {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: min(560px, 92vw);
    transform: none;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 28px auto 0;
  }
  .heat-benefits article {
    max-width: 560px;
  }
  .heat-section {
    padding: 42px 0;
  }
  .heat-split,
  .heat-quality-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .heat-image-card img {
    height: 330px;
  }
  .heat-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heat-process-card {
    min-height: 240px;
  }
  .heat-cta-panel {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .heat-cta-panel .btn {
    grid-column: 2;
    justify-self: start;
    max-width: 230px;
  }
}

@media (max-width: 640px) {
  .heat-breadcrumb {
    font-size: 13px;
    gap: 8px;
  }
  .heat-hero h1 {
    font-size: clamp(43px, 14vw, 60px);
  }
  .heat-subhead {
    font-size: 18px;
    letter-spacing: .095em;
  }
  .heat-lead {
    font-size: 15px;
  }
  .heat-primary-cta {
    width: 100%;
  }
  .heat-benefits article {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }
  .heat-benefit-icon {
    width: 50px;
    height: 50px;
  }
  .heat-copy-block h2,
  .heat-section-head h2 {
    font-size: 31px;
  }
  .heat-image-card img {
    height: 240px;
  }
  .heat-process-grid {
    grid-template-columns: 1fr;
  }
  .heat-process-card {
    min-height: 0;
    padding: 26px 22px 24px;
  }
  .heat-process-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }
  .heat-cta-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }
  .heat-cta-panel .btn {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .extension-page .compression-hero {
    background-size: auto, auto 212px;
    background-position: center, 62% top;
  }
  .torsion-page .compression-hero {
    background-size: auto, auto 212px;
    background-position: center, center top;
  }
  .plating-hero {
    background-size: auto, 100% auto;
  }
  .plating-hero-inner {
    padding-top: 236px;
  }
  .wire-hero {
    background-size: auto, auto, 100% auto;
    background-position: center, center, 57% top;
  }
  .wire-hero-inner {
    padding-top: 236px;
  }
  .heat-hero {
    background-size: auto, auto 212px;
  }
  .wire-stat {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }
  .wire-icon {
    width: 40px;
    height: 40px;
  }
  .wire-fire-copy,
  .wire-panel,
  .wire-cta-panel {
    padding: 20px;
  }
  .wire-fire-art {
    min-height: 260px;
    background-size: auto, auto, 126% auto;
  }
  .wire-fire-copy h2,
  .wire-cta-panel h2 {
    font-size: 32px;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .testing-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 0;
    max-width: 620px;
  }
  .testing-badges > span:nth-child(4) {
    border-left: 0;
  }
  .testing-system-grid {
    grid-template-columns: minmax(0, .9fr) minmax(410px, 1.1fr);
    gap: 24px;
  }
  .planning-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .inspection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .validation-flow {
    grid-template-columns: repeat(4, 1fr);
  }
  .validation-flow li:nth-child(5)::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .testing-hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(5, 10, 17, 0) 0 230px, rgba(5, 10, 17, 0.96) 230px),
      url('./assets/testing-quality/work-shop-hero.jpg');
    background-size: auto, 100% auto;
    background-position: center, 52% top;
    background-repeat: no-repeat;
  }
  .testing-hero-inner {
    min-height: 0;
    padding: 254px 0 28px;
  }
  .testing-hero h1 {
    max-width: 680px;
    font-size: clamp(43px, 11vw, 64px);
  }
  .testing-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 0;
    margin-top: 28px;
  }
  .testing-badges > span:nth-child(4) {
    border-left: 0;
  }
  .testing-section {
    padding: 8px 0;
  }
  .testing-panel {
    padding: 22px;
  }
  .testing-system-grid,
  .compact-grid,
  .testing-flow-head,
  .testing-cta-panel {
    grid-template-columns: 1fr;
  }
  .certification-grid,
  .planning-grid,
  .inspection-grid,
  .trace-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .planning-grid article {
    min-height: 0;
    text-align: left;
  }
  .planning-grid .testing-icon {
    margin-bottom: 14px;
  }
  .inspection-card {
    min-height: 320px;
  }
  .validation-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .validation-flow li:nth-child(odd)::before {
    display: none;
  }
  .testing-cta-section {
    background:
      linear-gradient(90deg, rgba(3, 8, 14, .98), rgba(3, 8, 14, .84)),
      url('./assets/testing-quality/final-inspection-card-background.jpg') center / cover no-repeat;
  }
  .testing-cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .testing-hero {
    background-size: auto, 100% auto;
    background-position: center, 66% top;
  }
  .testing-hero-inner {
    padding-top: 236px;
  }
  .testing-kicker,
  .testing-section-label {
    font-size: 11px;
    letter-spacing: .14em;
  }
  .testing-hero h1 {
    font-size: clamp(38px, 13vw, 54px);
  }
  .testing-hero h1 span {
    white-space: normal;
    margin-top: 12px;
  }
  .testing-lead {
    font-size: 15px;
  }
  .testing-badges,
  .certification-grid,
  .planning-grid,
  .inspection-grid,
  .trace-grid,
  .two-column,
  .validation-flow {
    grid-template-columns: 1fr;
  }
  .testing-badges > span {
    grid-template-columns: 38px 1fr;
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 12px 0;
    text-align: left;
    border-left: 0 !important;
    border-top: 1px solid rgba(183, 144, 103, 0.26);
  }
  .testing-badges > span::before {
    margin: 0;
  }
  .testing-badges em {
    text-align: left;
  }
  .testing-badges em span {
    display: inline;
  }
  .testing-badges em span + span {
    margin-left: .35em;
  }
  .testing-badges .badge-line-nudge-left {
    transform: none;
  }
  .testing-panel {
    padding: 18px;
  }
  .testing-copy-block h2,
  .testing-section-head h2,
  .compact-panel h2,
  .testing-flow-head h2,
  .testing-cta-panel h2 {
    font-size: 30px;
  }
  .certification-grid article {
    min-height: 0;
  }
  .inspection-card {
    min-height: 290px;
  }
  .trace-grid span {
    font-size: 13px;
  }
  .validation-flow li {
    grid-template-columns: 46px 44px 1fr;
    min-height: 0;
    align-items: center;
    justify-items: start;
    text-align: left;
  }
  .validation-flow li::before {
    display: none;
  }
  .validation-flow .testing-icon {
    margin: 0;
  }
  .validation-flow strong {
    margin: 0;
  }
  .testing-cta-actions,
  .testing-cta-actions .btn {
    width: 100%;
  }
}

/* Torsion page final icon polish */
.torsion-page .compression-stat .compression-icon,
.torsion-page .compression-feature-card .feature-icon,
.torsion-page .compression-process .process-icon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ff9c34;
  background:
    radial-gradient(circle at 34% 24%, transparent, transparent 28%),
    radial-gradient(circle at 50% 58%, transparent, transparent 58%),
    linear-gradient(180deg, rgba(11, 33, 61, 0.98), rgba(5, 13, 25, 0.98));
  border: 1px solid rgba(255, 149, 38, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -14px 24px rgba(0, 18, 44, 0.34), 0 18px 38px rgba(0, 0, 0, 0.26);
}

.torsion-page .compression-stat .compression-icon::before,
.torsion-page .compression-feature-card .feature-icon::before,
.torsion-page .compression-process .process-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border-radius: 9px;
  border: 1px solid rgba(255, 174, 90, 0.18);
  background: radial-gradient(circle at 48% 48%, transparent, transparent 64%);
}

.torsion-page .compression-stat .compression-icon::after,
.torsion-page .compression-feature-card .feature-icon::after,
.torsion-page .compression-process .process-icon::after {
  content: "";
  position: absolute;
  inset: -34% -24% auto auto;
  width: 58%;
  height: 58%;
  transform: rotate(24deg);
  background: rgba(255, 255, 255, 0.2);
  filter: blur(12px);
}

.torsion-page .compression-stat .compression-icon svg,
.torsion-page .compression-feature-card .feature-icon svg,
.torsion-page .compression-process .process-icon svg {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.1));
}

.torsion-page .compression-stat .compression-icon path,
.torsion-page .compression-stat .compression-icon circle,
.torsion-page .compression-stat .compression-icon rect,
.torsion-page .compression-feature-card .feature-icon path,
.torsion-page .compression-feature-card .feature-icon circle,
.torsion-page .compression-feature-card .feature-icon rect,
.torsion-page .compression-process .process-icon path,
.torsion-page .compression-process .process-icon circle,
.torsion-page .compression-process .process-icon rect {
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vector-effect: non-scaling-stroke;
}

.torsion-page .compression-process .process-icon {
  width: 64px;
  height: 64px;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.torsion-page .compression-process .process-icon svg {
  width: 34px;
  height: 34px;
}

@media (max-width: 980px) {
  .torsion-page .compression-process .process-icon {
    width: 54px;
    height: 54px;
  }

  .torsion-page .compression-process .process-icon svg {
    width: 31px;
    height: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .nav-item.is-animating .flip-label,
  .nav-item:hover .flip-label {
    animation: none !important;
  }
}

/* Product dropdown page polish: restrained premium manufacturing finish */
.compression-page,
.extension-page,
.torsion-page,
.wire-page,
.plating-page,
.heat-page,
.testing-page {
  --premium-blue: #ff8200;
  --premium-blue-soft: transparent;
  --premium-blue-edge: rgba(255, 150, 41, 0.34);
  --premium-line: rgba(142, 169, 201, 0.31);
  --premium-panel-top: rgba(11, 22, 36, 0.92);
  --premium-panel-bottom: rgba(4, 11, 20, 0.9);
  --premium-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
  --premium-inner: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(900px 520px at 78% 2%, transparent, transparent 62%),
    linear-gradient(180deg, #040911 0%, #06101a 46%, #030810 100%);
}

.compression-hero,
.wire-hero,
.plating-hero,
.heat-hero,
.testing-hero {
  box-shadow: inset 0 -74px 112px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.compression-hero::before,
.wire-hero::before,
.plating-hero::before,
.heat-hero::before,
.testing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 320px at 76% 30%, transparent, transparent 72%),
    radial-gradient(520px 220px at 18% 82%, transparent, transparent 74%);
  mix-blend-mode: screen;
  opacity: .42;
}

.compression-hero::after {
  opacity: .16;
}

.heat-hero::after,
.testing-hero::after {
  opacity: .3;
}

.compression-hero-inner,
.wire-hero-inner,
.plating-hero-inner,
.heat-hero-inner,
.testing-hero-inner {
  position: relative;
  z-index: 1;
}

.compression-breadcrumb,
.plating-breadcrumb,
.heat-breadcrumb,
.testing-breadcrumb {
  color: #9fb3ca;
}

.compression-hero h1::after,
.wire-hero h1::after,
.wire-fire-copy h2::after,
.plating-hero h1::after {
  background: linear-gradient(90deg, var(--premium-blue), rgba(255, 130, 0, 0.12));
  box-shadow: none;
}

.compression-stat,
.compression-feature-card,
.compression-panel,
.compression-cta-panel,
.wire-stat,
.wire-panel,
.wire-application-grid article,
.wire-solution-card,
.wire-fire-panel,
.wire-cta-panel,
.finish-card,
.secondary-card,
.plating-process-card,
.plating-cta-panel,
.heat-image-card,
.heat-process-card,
.heat-cta-panel,
.testing-panel,
.certification-grid article,
.planning-grid article,
.inspection-card,
.validation-flow li,
.compact-panel {
  border-color: var(--premium-line);
  background:
    radial-gradient(520px 220px at 50% 0%, var(--premium-blue-soft), transparent 72%),
    linear-gradient(180deg, var(--premium-panel-top), var(--premium-panel-bottom));
  box-shadow: var(--premium-inner), var(--premium-shadow);
}

.wire-solution-card {
  background:
    linear-gradient(90deg, rgba(4, 12, 22, 0.96) 0%, rgba(4, 12, 22, 0.78) 48%, rgba(4, 12, 22, 0.38) 100%),
    url('./assets/products/wire-forms-cta-block.jpg');
  background-size: auto, cover;
  background-position: center, 82% center;
  background-repeat: no-repeat;
}

.wire-cta-panel {
  background:
    linear-gradient(90deg, rgba(5, 12, 21, 0.96) 0%, rgba(5, 12, 21, 0.86) 46%, rgba(5, 12, 21, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 12, 21, 0.12), rgba(5, 12, 21, 0.78)),
    url('./assets/products/wire-forms-hero.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, 72% center;
  background-repeat: no-repeat;
}

.compression-stat,
.wire-stat {
  background:
    radial-gradient(280px 120px at 18% 0%, transparent, transparent 72%),
    linear-gradient(180deg, rgba(12, 24, 39, 0.88), rgba(5, 12, 22, 0.86));
}

.compression-icon,
.feature-icon,
.compression-page .process-icon,
.extension-page .compression-icon,
.extension-page .feature-icon,
.extension-page .process-icon,
.torsion-page .compression-stat .compression-icon,
.torsion-page .compression-feature-card .feature-icon,
.torsion-page .compression-process .process-icon,
.wire-icon,
.wire-application-grid span,
.plating-icon,
.process-icon,
.heat-benefit-icon,
.heat-process-icon,
.heat-cta-icon,
.testing-icon {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--premium-blue-edge);
  color: #ffa343;
  background:
    radial-gradient(circle at 35% 24%, rgba(206, 235, 255, 0.12), transparent 31%),
    radial-gradient(circle at 50% 58%, transparent, transparent 58%),
    linear-gradient(180deg, rgba(10, 31, 57, 0.94), rgba(4, 13, 25, 0.94));
  box-shadow: var(--premium-inner), inset 0 -12px 22px rgba(0, 18, 44, 0.28), 0 14px 30px rgba(0, 0, 0, 0.22);
}

.compression-icon::before,
.feature-icon::before,
.compression-page .process-icon::before,
.extension-page .process-icon::before,
.torsion-page .compression-stat .compression-icon::before,
.torsion-page .compression-feature-card .feature-icon::before,
.torsion-page .compression-process .process-icon::before,
.wire-icon::before,
.wire-application-grid span::before,
.plating-icon::before,
.process-icon::before,
.heat-benefit-icon::before,
.heat-process-icon::before,
.heat-cta-icon::before,
.testing-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(255, 173, 88, 0.14);
  border-radius: inherit;
  background: radial-gradient(circle at 48% 48%, transparent, transparent 64%);
  pointer-events: none;
}

.torsion-page .compression-stat .compression-icon::after,
.torsion-page .compression-feature-card .feature-icon::after,
.torsion-page .compression-process .process-icon::after {
  opacity: .42;
}

.compression-icon svg,
.feature-icon svg,
.compression-page .process-icon svg,
.extension-page .process-icon svg,
.torsion-page .compression-stat .compression-icon svg,
.torsion-page .compression-feature-card .feature-icon svg,
.torsion-page .compression-process .process-icon svg,
.plating-icon svg,
.process-icon svg,
.heat-benefit-icon svg,
.heat-process-icon svg,
.heat-cta-icon svg,
.testing-icon svg {
  position: relative;
  z-index: 1;
  filter: none;
}

.testing-icon {
  display: inline-grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 24%, rgba(206, 235, 255, 0.1), transparent 31%),
    radial-gradient(circle at 50% 58%, transparent, transparent 58%),
    linear-gradient(180deg, rgba(10, 31, 57, 0.86), rgba(4, 13, 25, 0.88)) !important;
}

.certification-grid .testing-icon {
  border: 1px solid var(--premium-blue-edge);
  color: #ffa343;
  box-shadow: var(--premium-inner), 0 12px 26px rgba(0, 0, 0, 0.2);
}

.extension-page .compression-stat,
.extension-page .compression-feature-card,
.extension-page .compression-panel,
.torsion-page .compression-stat,
.torsion-page .compression-feature-card,
.torsion-page .compression-panel {
  box-shadow: var(--premium-inner), 0 18px 42px rgba(0, 0, 0, 0.22);
}

.compression-page .compression-feature-card {
  min-height: 232px;
}

.compression-page .compression-feature-card .feature-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.compression-page .compression-feature-card .feature-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.15;
}

.heat-benefit-icon,
.heat-cta-icon {
  border-radius: 10px;
}

.heat-process-icon {
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.finish-tags span::before,
.testing-checklist li::before,
.planning-grid li::before,
.inspection-card li::before,
.compression-check-list li::before,
.wire-check-list li::before,
.heat-checklist li::before {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.plating-process-card li + li::before,
.wire-process li + li::before,
.compression-process li + li::before {
  filter: none;
  opacity: .78;
}

.wire-process-section {
  padding-top: 46px;
  border-top: 1px solid rgba(183, 144, 103, 0.14);
  background:
    radial-gradient(880px 260px at 54% 8%, transparent, transparent 72%);
}

.wire-process-section .wire-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.wire-process {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 26px;
  margin-top: 24px;
}

.wire-process li {
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  align-content: start;
  min-width: 0;
  min-height: 174px;
  padding: 0 2px;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wire-process li + li::before {
  top: 31px;
  left: -18px;
  width: 9px;
  height: 9px;
  border-color: #ed7900;
  opacity: .92;
}

.wire-process span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border: 1px solid rgba(255, 131, 2, 0.62);
  border-radius: 8px;
  color: #e77600;
  background:
    radial-gradient(circle at 50% 42%, transparent, transparent 62%),
    linear-gradient(180deg, rgba(9, 31, 58, 0.72), rgba(3, 13, 27, 0.76));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -14px 24px rgba(0, 24, 58, 0.2), 0 14px 28px rgba(0, 0, 0, 0.22);
}

.wire-process span svg {
  display: block;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.wire-process strong {
  display: block;
  min-height: 45px;
  max-width: 128px;
  margin: 0 auto 7px;
  color: #f3f8ff;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: .035em;
}

.wire-process strong b {
  display: block;
  margin-bottom: 2px;
  color: #e07200;
  font: 800 13px/1 Rajdhani, Inter, sans-serif;
  letter-spacing: .055em;
}

.wire-process p {
  margin: 0;
  max-width: 132px;
  color: #c0cede;
  font-size: 12.25px;
  line-height: 1.42;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .wire-process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wire-process li + li::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .wire-process {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wire-process li {
    grid-template-columns: 68px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "icon meta"
      "icon copy";
    column-gap: 14px;
    row-gap: 3px;
    justify-items: start;
    align-items: center;
    min-height: 0;
    padding: 0;
    text-align: left;
  }

  .wire-process span {
    grid-area: icon;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .wire-process span svg {
    width: 32px;
    height: 32px;
  }

  .wire-process strong {
    grid-area: meta;
    justify-self: start;
    align-self: end;
    min-height: 0;
    max-width: none;
    margin: 0;
    font-size: 15px;
  }

  .wire-process strong b {
    display: inline;
    margin: 0;
  }

  .wire-process p {
    grid-area: copy;
    justify-self: start;
    max-width: none;
    margin: 0;
    font-size: 13px;
  }
}

/* Keep the plating CTA photo treatment after the shared premium-card override. */
.plating-cta-panel {
  background:
    radial-gradient(420px 180px at 18% 42%, transparent, transparent 68%),
    linear-gradient(90deg, rgba(4, 10, 18, 0.99) 0%, rgba(4, 10, 18, 0.91) 36%, rgba(4, 10, 18, 0.34) 66%, rgba(4, 10, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.1), rgba(4, 10, 18, 0.34)),
    url('./assets/plating-finishing/plating-springs-premium-bg.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, 50% 50%;
  background-repeat: no-repeat;
  box-shadow: var(--premium-inner), var(--premium-shadow);
}

@media (max-width: 980px) {
  .plating-cta-panel {
    background:
      radial-gradient(420px 220px at 20% 48%, transparent, transparent 70%),
      linear-gradient(90deg, rgba(4, 10, 18, 0.99) 0%, rgba(4, 10, 18, 0.91) 44%, rgba(4, 10, 18, 0.48) 100%),
      linear-gradient(180deg, rgba(4, 10, 18, 0.16), rgba(4, 10, 18, 0.7)),
      url('./assets/plating-finishing/plating-springs-premium-bg.jpg');
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, 50% 50%;
  }
}

@media (max-width: 640px) {
  .plating-cta-panel {
    background:
      linear-gradient(180deg, rgba(4, 10, 18, 0.18) 0%, rgba(4, 10, 18, 0.46) 42%, rgba(4, 10, 18, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 10, 18, 0.94), rgba(4, 10, 18, 0.42)),
      url('./assets/plating-finishing/plating-springs-premium-bg.jpg');
    background-size: auto, auto, cover;
    background-position: center, center, 50% 48%;
  }
}

/* Restore inspection-card image framing after the shared premium-card background. */
.inspection-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Keep the validation flow photo treatment after the shared premium-panel override. */
.flow-panel {
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.98) 0%, rgba(4, 10, 17, 0.82) 46%, rgba(4, 10, 17, 0.64) 100%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.72), rgba(4, 10, 17, 0.92)),
    url('./assets/testing-quality/quality-flow-background.jpg') center / cover no-repeat;
}

/* Keep the compression CTA hero-photo treatment after the shared premium-card override. */
.compression-cta-panel {
  background:
    radial-gradient(520px 210px at 22% 32%, transparent, transparent 70%),
    linear-gradient(90deg, rgba(5, 12, 21, 0.98) 0%, rgba(5, 12, 21, 0.9) 42%, rgba(5, 12, 21, 0.54) 72%, rgba(5, 12, 21, 0.32) 100%),
    linear-gradient(180deg, rgba(5, 12, 21, 0.16), rgba(5, 12, 21, 0.68)),
    url('./assets/stock/compression-custom.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, 64% center;
  background-repeat: no-repeat;
  box-shadow: var(--premium-inner), var(--premium-shadow);
}

/* ============================================================
   ABOUT PAGE — mirrors the interior-page premium system
   ============================================================ */
.about-page {
  background:
    radial-gradient(900px 560px at 78% 5%, transparent, transparent 60%),
    linear-gradient(180deg, #040a11 0%, #06111b 42%, #030812 100%);
}
.about-main {
  overflow: hidden;
  background:
    radial-gradient(780px 360px at 44% 10%, transparent, transparent 68%),
    linear-gradient(180deg, rgba(2, 8, 15, 0.2), rgba(2, 8, 15, 0.94));
}
.about-hero {
  position: relative;
  min-height: 521px;
  background:
    linear-gradient(180deg, rgba(3, 9, 16, 0.30) 0%, rgba(3, 9, 16, 0.12) 42%, rgba(3, 9, 16, 0.58) 100%),
    url('./assets/about/about-facility.jpg');
  background-size: auto, cover;
  background-position: center, center 42%;
  background-repeat: no-repeat;
  box-shadow: inset 0 -82px 120px rgba(0, 0, 0, 0.28);
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .2;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 42px 0 38px;
}
.about-hero-copy { width: min(700px, 100%); }
.about-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: #9fb3ca;
  font-size: 13px;
  font-weight: 700;
}
.about-breadcrumb a, .about-breadcrumb span { color: #9fb3ca; text-decoration: none; }
.about-breadcrumb a, .about-breadcrumb span:last-child { color: #dbe9fa; }
.about-breadcrumb a:hover { color: #ffb05d; }
.about-breadcrumb span::before {
  content: ">";
  margin-right: 8px;
  color: #6f86a1;
}
.about-kicker {
  margin: 0 0 14px;
  color: #f77e00;
  font: 800 14px/1 Inter, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-intro h1 {
  margin: 0 0 16px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #f2f7ff;
}
.about-lead {
  max-width: 600px;
  margin: 0 0 22px;
  color: #d4dfec;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
}
.about-intro { margin-bottom: 30px; }
.about-intro .about-lead { max-width: 760px; margin-bottom: 0; }

/* Section headings on About use the interior-page display font */
.about-section-head h2 {
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Story media */
.about-story { align-items: center; }
.about-story-media { margin: 0; }
.about-story-media img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

/* Stats band */
.about-stats { justify-content: center; }

/* Reach line + chips */
.about-chips { margin-top: 6px; }
.about-reach { margin-top: 14px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* Bottom CTA — mirrors the interior CTA panel with its own photo */
.about-cta-section { padding: 12px 0 40px; }
.about-cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 196px;
  padding: 30px 38px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(420px 180px at 18% 42%, transparent, transparent 68%),
    linear-gradient(90deg, rgba(4, 10, 18, 0.99) 0%, rgba(4, 10, 18, 0.91) 36%, rgba(4, 10, 18, 0.34) 66%, rgba(4, 10, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.1), rgba(4, 10, 18, 0.34)),
    url('./assets/about/about-cta.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, 50% 42%;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.about-cta-copy { position: relative; z-index: 1; width: min(640px, 100%); }
.about-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: #ff9c35;
  font: 800 12px/1 Inter, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-cta-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #f57d00;
  box-shadow: none;
}
.about-cta-panel h2 {
  margin: 0 0 8px;
  font-family: Rajdhani, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #f2f7ff;
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: .98;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.62);
}
.about-cta-panel p {
  max-width: 610px;
  margin-bottom: 16px;
  color: #d4dfec;
  font-size: 15px;
  line-height: 1.45;
}
.about-cta-contact { margin: 14px 0 0; font-size: 13px; color: var(--muted); }
.about-cta-contact a { color: #ffb05d; text-decoration: none; }
.about-cta-contact a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .about-hero {
    min-height: 0; height: 230px;
    background: url('./assets/about/about-facility.jpg');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
  }
  .about-story-media img { max-height: 280px; }
  .about-cta-panel { padding: 24px 22px; }
}

/* ==========================================================================
   FAQ page — self-contained, reuses design tokens / .btn / .container only.
   ========================================================================== */
.faq-main { position: relative; }

.faq-hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.98) 0%, rgba(3, 8, 14, 0.9) 40%, rgba(3, 8, 14, 0.28) 68%, rgba(3, 8, 14, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 8, 14, 0.12) 0%, rgba(3, 8, 14, 0.28) 58%, rgba(3, 8, 14, 0.86) 100%),
    url('./assets/faq/machine-1-hero.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, 50% 46%;
  background-repeat: no-repeat;
}
.faq-hero-inner { padding: 58px 0 44px; }
.faq-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px;
  margin-bottom: 18px;
  color: #9fb3ca;
  font-size: 13px; font-weight: 700;
}
.faq-breadcrumb a, .faq-breadcrumb span { color: #9fb3ca; text-decoration: none; }
.faq-breadcrumb a, .faq-breadcrumb span:last-child { color: #dbe9fa; }
.faq-breadcrumb a:hover { text-decoration: underline; }
.faq-breadcrumb span::before { content: ">"; margin-right: 8px; color: #6f86a1; }
.faq-eyebrow {
  margin: 0 0 14px;
  color: #f77e00;
  font: 800 13px/1 Inter, sans-serif; letter-spacing: .16em; text-transform: uppercase;
}
.faq-hero h1 {
  margin: 0 0 18px; max-width: 880px; color: #f4f8ff;
  font-family: Rajdhani, Inter, sans-serif; text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(38px, 5vw, 62px); line-height: .9;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}
.faq-lead { margin: 0; max-width: 720px; color: #c9d6e6; font-size: 17px; line-height: 1.55; }
.faq-trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 26px;
}
.faq-trust-strip span {
  padding: 7px 13px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(12, 18, 28, 0.55);
  color: #d9e6f6; font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
}

/* Jump nav -------------------------------------------------------------- */
.faq-jumpnav {
  position: relative; z-index: 5;
  margin: 22px 0 4px;
}
.faq-jumpnav ul {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 12px 0; list-style: none;
}
.faq-jumpnav a {
  display: inline-block; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: rgba(12, 18, 28, 0.72); backdrop-filter: blur(6px);
  color: #cddcee; font-size: 13px; font-weight: 700; letter-spacing: .02em; text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.faq-jumpnav a:hover, .faq-jumpnav a:focus-visible {
  border-color: var(--brand); color: #fff; background: rgba(24, 44, 72, 0.8); outline: none;
}

/* Category sections ----------------------------------------------------- */
.faq-section { padding: 26px 0 2px; scroll-margin-top: 150px; }
.faq-cat-head { margin-bottom: 16px; }
.faq-cat-label {
  margin: 0 0 8px; color: #f77e00;
  font: 800 12px/1 Inter, sans-serif; letter-spacing: .16em; text-transform: uppercase;
}
.faq-cat-head h2 {
  margin: 0; color: #f4f8ff;
  font-family: Rajdhani, Inter, sans-serif; text-transform: uppercase; letter-spacing: .05em;
  font-size: clamp(26px, 3vw, 36px); line-height: .98;
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(183, 144, 103, 0.32); border-radius: 8px;
  background:
    radial-gradient(520px 220px at 88% 6%, transparent, transparent 72%),
    linear-gradient(145deg, rgba(8, 17, 29, 0.92), rgba(3, 10, 18, 0.84));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  color: #eef4fc; font-size: 17px; font-weight: 700; line-height: 1.35;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:focus-visible { outline: 2px solid #ffb05d; outline-offset: 3px; border-radius: 8px; }
.faq-item > summary:hover { color: #fff; }
.faq-item > summary::after {
  content: ""; flex: 0 0 auto; width: 14px; height: 14px; margin-top: 3px;
  background:
    linear-gradient(currentColor, currentColor) center/14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 14px no-repeat;
  color: #ff8200; transition: transform .2s ease, color .2s ease;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0 0 12px; color: #c9d6e6; font-size: 15px; line-height: 1.62; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: #eaf1fb; }
.faq-answer a { color: #ffa13f; text-decoration: none; font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }
.faq-answer ul {
  margin: 0 0 12px; padding: 0; list-style: none; display: grid; gap: 8px;
}
.faq-answer ul li {
  position: relative; padding-left: 22px; color: #d9e6f6; font-size: 15px; line-height: 1.4;
}
.faq-answer ul li::before {
  content: ""; position: absolute; left: 4px; top: 8px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}

/* CTA ------------------------------------------------------------------- */
.faq-cta-section { padding: 40px 0 56px; }
.faq-cta-panel {
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  padding: 30px 30px; border: 1px solid var(--line-strong); border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.98) 0%, rgba(4, 10, 18, 0.92) 44%, rgba(4, 10, 18, 0.44) 74%, rgba(4, 10, 18, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.18), rgba(4, 10, 18, 0.72)),
    url('./assets/faq/machine-1-hero.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, 50% 48%;
  background-repeat: no-repeat;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}
.faq-cta-panel h2 {
  margin: 0 0 8px; color: #f4f8ff;
  font-family: Rajdhani, Inter, sans-serif; text-transform: uppercase; letter-spacing: .05em;
  font-size: clamp(26px, 3.4vw, 40px); line-height: .95;
}
.faq-cta-panel p { margin: 0; max-width: 640px; color: #c9d6e6; line-height: 1.55; }
.faq-cta-panel .about-cta-contact { margin-top: 12px; }
.faq-cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.faq-cta-actions .btn { text-align: center; }

@media (max-width: 860px) {
  .faq-cta-panel { grid-template-columns: 1fr; }
  .faq-cta-actions { width: 100%; }
}
@media (max-width: 760px) {
  .faq-hero {
    background:
      linear-gradient(180deg, rgba(3, 8, 14, 0) 0 230px, rgba(3, 8, 14, 0.96) 230px),
      url('./assets/faq/machine-1-hero.jpg');
    background-size: auto, 100% auto;
    background-position: center, 50% top;
    background-repeat: no-repeat;
  }
  .faq-hero-inner { padding: 254px 0 28px; }
  .faq-item > summary { font-size: 16px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px 18px; }
}

/* ============================================================
   Downloads hub + Legal documents (Terms, Privacy)
   ============================================================ */
.doc-hero {
  padding: 56px 0 30px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(1100px 360px at 50% -140px, transparent, transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.doc-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: #9fb3ca; margin: 0 0 16px; }
.doc-breadcrumb a { color: #dbe9fa; text-decoration: none; }
.doc-breadcrumb a:hover { text-decoration: underline; }
.doc-breadcrumb span { opacity: .55; }
.doc-hero h1 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; color: var(--text); letter-spacing: .005em; }
.doc-sub { margin: 13px 0 0; color: var(--muted); font-size: 17px; line-height: 1.55; max-width: 60ch; }
.doc-meta { margin: 16px 0 0; font-size: 13px; color: var(--muted); }

/* ---- Downloads grid ---- */
.downloads-main { padding: 8px 0 64px; }
.dl-group { margin-top: 42px; }
.dl-group-head h2 { margin: 0; font-size: 20px; color: var(--text); }
.dl-group-head p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; margin-top: 16px; }
.dl-card {
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--panel-strong); padding: 22px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.dl-card:hover { border-color: #ff9c34; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0, 10, 30, 0.42); }
.dl-card-top { display: flex; align-items: center; gap: 14px; }
.dl-icon {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 11px;
  display: grid; place-items: center; color: #ffa343;
  border: 1px solid var(--premium-blue-edge, rgba(255, 156, 53, 0.35));
  background:
    radial-gradient(circle at 38% 26%, rgba(206, 235, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(10, 31, 57, 0.94), rgba(4, 13, 25, 0.94));
}
.dl-icon svg { width: 26px; height: 26px; }
.dl-icon path, .dl-icon circle, .dl-icon rect, .dl-icon polyline { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dl-card h3 { margin: 0; font-size: 16px; color: var(--text); line-height: 1.2; }
.dl-filemeta { margin: 4px 0 0; font-size: 12px; color: var(--muted); letter-spacing: .03em; text-transform: uppercase; }
.dl-desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; flex: 1; }
.dl-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 9px; padding: 9px 15px; font: 700 13px Inter, sans-serif;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--line-strong); color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.dl-btn:hover { border-color: #ffa240; background: rgba(255, 130, 0, 0.12); transform: translateY(-1px); }
.dl-btn.primary { border-color: #ff9c34; background: linear-gradient(180deg, #ff8200 0%, #b66918 100%); color: #fff; }
.dl-btn.primary:hover { box-shadow: 0 8px 20px rgba(146, 82, 15, 0.32); }
.dl-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Legal document body ---- */
.legal-main { padding: 14px 0 64px; }
.legal-doc { max-width: 820px; }
.legal-toc { border: 1px solid var(--line); border-radius: 12px; background: var(--panel); padding: 18px 22px; margin: 0 0 30px; }
.legal-toc h2 { margin: 0 0 10px; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 28px; }
.legal-toc li { margin: 0 0 6px; }
.legal-toc a { color: var(--brand-2); text-decoration: none; font-size: 14px; }
.legal-toc a:hover { text-decoration: underline; }
.legal-doc h2.legal-section { margin: 34px 0 10px; font-size: 19px; color: var(--text); scroll-margin-top: 90px; }
.legal-doc h2.legal-section:first-of-type { margin-top: 6px; }
.legal-doc h3 { margin: 18px 0 8px; font-size: 15px; color: var(--text); }
.legal-doc p, .legal-doc li { color: var(--muted); font-size: 15px; line-height: 1.72; }
.legal-doc p { margin: 0 0 13px; }
.legal-doc ul, .legal-doc ol.legal-list { margin: 0 0 15px; padding-left: 22px; }
.legal-doc li { margin: 0 0 7px; }
.legal-doc strong { color: var(--text); }
.legal-doc a { color: var(--brand-2); }
.legal-intro { font-size: 16px; color: var(--text); }
.legal-contact { margin-top: 32px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel-strong); padding: 20px 24px; }
.legal-contact h2 { margin: 0 0 8px; font-size: 17px; color: var(--text); }
.legal-contact p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
@media (max-width: 640px) { .legal-toc ol { columns: 1; } }

/* ============================================================
   Reference charts (spring wire material properties)
   ============================================================ */
.ref-main { padding: 10px 0 64px; }
.ref-intro { color: var(--muted); max-width: 72ch; margin: 0 0 22px; font-size: 15px; line-height: 1.62; }
.ref-table-wrap { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--panel-strong); box-shadow: 0 18px 44px rgba(0, 8, 24, 0.32); }
.ref-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ref-table { width: 100%; border-collapse: collapse; min-width: 940px; font-size: 14px; }
.ref-table thead th {
  text-align: left; padding: 14px; color: #e3eefb;
  font: 700 11.5px/1.25 Inter, sans-serif; letter-spacing: .05em; text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255, 130, 0, 0.18), rgba(255, 130, 0, 0.05));
  border-bottom: 1px solid var(--line-strong); white-space: nowrap;
}
.ref-table thead th.num { text-align: right; }
.ref-table tbody td { padding: 14px; border-bottom: 1px solid var(--line); color: var(--muted); vertical-align: top; }
.ref-table tbody tr:last-child td { border-bottom: 0; }
.ref-table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.018); }
.ref-table tbody tr:hover td { background: rgba(255, 130, 0, 0.07); }
.ref-table .ref-mat { color: var(--text); font-weight: 700; white-space: nowrap; }
.ref-table .ref-spec { display: block; color: var(--muted); font-weight: 500; font-size: 12px; margin-top: 3px; letter-spacing: .02em; }
.ref-table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--text); }
.ref-table .ref-note { color: var(--muted); font-size: 13px; min-width: 190px; line-height: 1.45; }
.ref-table sup { color: var(--brand-2); font-weight: 700; }
.ref-foot { margin: 18px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.65; }
.ref-foot p { margin: 0 0 5px; }
.ref-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Centered card row (e.g., the Spring Calculators landing page) */
.cards.centered {
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
}
.cards.centered .card img { object-fit: cover; }

/* Calculator landing cards: full-width, uniform CTA buttons */
.cards.centered .card .btn { display: block; width: 100%; box-sizing: border-box; }

/* Downloads/Legal hero: same background image as the calculators page, dimmed for legibility */
.downloads-page .doc-hero {
  background:
    radial-gradient(1100px 360px at 50% -160px, transparent, transparent 70%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.80), rgba(8, 11, 16, 0.90)),
    url('./assets/stock/hero-custom.jpg') center / cover no-repeat;
}

/* ============================================================
   Employment / Careers page
   ============================================================ */
.employ-main { padding: 10px 0 64px; }
.employ-form-wrap { max-width: 660px; }
.employ-form-wrap h2.employ-head { margin: 0 0 6px; font-size: 22px; color: var(--text); }
.employ-intro { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.job-empty {
  border: 1px dashed var(--line-strong); border-radius: 14px;
  background: var(--panel); padding: 24px 26px; color: var(--muted); font-size: 15px; line-height: 1.65;
}
.job-empty strong { color: var(--text); }
.job-empty a { color: var(--brand-2); }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 2px 0; }
.job-meta span {
  font-size: 12px; color: #bcd2ee; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 3px 11px; background: rgba(255, 130, 0, 0.08); letter-spacing: .02em;
}

/* Employment hero background (generic facility image, dimmed for legibility) */
.employment-page .doc-hero {
  background:
    radial-gradient(1100px 360px at 50% -160px, transparent, transparent 70%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.80), rgba(8, 11, 16, 0.90)),
    url('./assets/stock/hero-custom.jpg') center / cover no-repeat;
}

/* ============================================================
   Companies Served — customer logo grid (About page)
   ============================================================ */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 480px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } }
.logo-tile {
  display: flex; align-items: center; justify-content: center;
  min-height: 92px; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.logo-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30); }
.logo-tile img { max-width: 100%; max-height: 48px; object-fit: contain; }
.logo-tile.is-name { font: 800 19px/1.1 Inter, sans-serif; letter-spacing: .01em; color: #0a0d12; text-align: center; }
.logo-tile.is-placeholder {
  background: var(--panel-strong); border-style: dashed;
  color: var(--muted); font: 700 12px Inter, sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
}

/* About: top-align the two columns so "What Guides Us" and "Companies Served" headings line up */
.split.about-values { align-items: start; }

/* Wide wordmark logos (e.g., Delta Faucet) — render larger so fine print is readable */
.logo-tile.is-wide { padding: 10px 12px; }
.logo-tile.is-wide img { width: 100%; max-width: 100%; max-height: 74px; }

/* Slightly larger compact logos (e.g., NASA roundel) */
.logo-tile.is-lg img { max-height: 64px; }

/* Cert badge seal holding a real logo image (e.g., ISO 9001 mark) */
.cert-badge-seal.is-logo {
  background: transparent;
  border: 0;
  padding: 2px;
  box-shadow: none;
}
.cert-badge-seal.is-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Let a logo seal's image fill more of the circle (e.g., IATF emblem) */
.cert-badge-seal.is-fill { padding: 2px; overflow: hidden; }

/* Hero stat blocks: icon/logo mark on the right of each block */
.stats > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.stat-text { display: flex; flex-direction: column; min-width: 0; }
.stat-mark { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.stat-mark img { width: 46px; height: 46px; object-fit: contain; }
.stat-mark img[src*="iatf-white"] { width: 53px; height: 53px; }
.stat-mark svg { width: 32px; height: 32px; }
.stat-mark svg path, .stat-mark svg rect { fill: none; stroke: #ffa950; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Calculator disclaimer (left column, under the inputs) */
.calc-disclaimer {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-left: 3px solid #e0b341;
  border-radius: 10px;
  background: rgba(224, 179, 65, 0.06);
}
.calc-disclaimer h4 {
  margin: 0 0 7px; display: flex; align-items: center; gap: 7px;
  font: 800 12px/1 Inter, sans-serif; letter-spacing: .08em; text-transform: uppercase; color: #e7c66a;
}
.calc-disclaimer h4 svg { width: 15px; height: 15px; flex: 0 0 auto; fill: none; stroke: #e7c66a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.calc-disclaimer p { margin: 0 0 8px; font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.calc-disclaimer p:last-child { margin: 0; }
.calc-disclaimer strong { color: #f0d68a; font-weight: 700; }
.calc-disclaimer a { color: #ffb05d; }


/* Footer certification + membership logos (ISO / IATF / SMI) */
.footer-certs {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 44px;
  margin: 10px auto 22px;
  width: 100%;
  text-align: center;
}
.footer-certs img {
  height: 96px; width: auto; max-width: 240px;
  object-fit: contain; object-position: center;
  opacity: 0.95;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-certs img:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 600px) { .footer-certs { gap: 26px; } .footer-certs img { height: 70px; } }

/* ---- Scroll reveal: subtle premium fade-up as content enters the viewport ----
   Progressive enhancement. header-nav.js adds .reveal ONLY to below-the-fold
   elements, then .is-visible when they scroll in, then removes both after the
   animation so original transitions (e.g. card hover) are restored. No-JS and
   above-the-fold content are never hidden. */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- La-Z-Boy award callout (Customer Confidence) ---- */
.award-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid var(--premium-blue-edge, rgba(255, 150, 41, 0.34));
  border-left: 3px solid rgba(255, 130, 0, 0.4);
  border-radius: 10px;
  background:
    radial-gradient(420px 150px at 0% 0%, transparent, transparent 70%),
    rgba(13, 20, 31, 0.9);
}
.award-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  color: #ffcf5a;
  background: rgba(255, 130, 0, 0.12);
  border: 1px solid rgba(255, 150, 41, 0.3);
}
.award-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.award-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #f77e00;
  font: 800 11px/1 Inter, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.award-title {
  display: block;
  margin-bottom: 5px;
  color: #f2f7ff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .01em;
}
.award-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
/* SMI mark reads small at equal height — boost it to match visual weight */
.footer-certs img[src*="smi-white"] { height: auto; width: 300px; max-width: 340px; }
@media (max-width: 600px) { .footer-certs img[src*="smi-white"] { height: auto; width: 220px; } }
/* ISO mark enlarged for prominence */
.footer-certs img[src*="iso-white"] { height: 132px; }
@media (max-width: 600px) { .footer-certs img[src*="iso-white"] { height: 96px; } }
/* IATF mark matched to ISO size (were mismatched) */
.footer-certs img[src*="iatf-white"] { height: 132px; }
@media (max-width: 600px) { .footer-certs img[src*="iatf-white"] { height: 96px; } }


/* Mobile: strip all decorative overlays (glows/textures) off hero images */
@media (max-width: 980px) {
  .compression-hero::before, .compression-hero::after,
  .wire-hero::before,
  .plating-hero::before, .plating-hero::after, .plating-main::before,
  .heat-hero::before, .heat-hero::after,
  .testing-hero::before, .testing-hero::after,
  .about-hero::after,
  .faq-hero::before, .faq-hero::after {
    display: none;
  }
}
