:root {
  --ink: #151918;
  --muted: #64736f;
  --paper: #f4f7f5;
  --surface: #ffffff;
  --graphite: #111615;
  --graphite-2: #222b2c;
  --line: #d9e2de;
  --teal: #078b88;
  --cyan: #2fc8bd;
  --amber: #c68934;
  --steel: #dfe7e4;
  --shadow: 0 22px 60px rgba(15, 28, 26, 0.13);
  --radius: 8px;
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(47, 200, 189, 0.6);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px 42px;
  color: #ffffff;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.1);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .brand-text strong,
.site-header.is-open .brand-text strong {
  color: var(--ink);
}

.site-header.is-scrolled .brand-text small,
.site-header.is-open .brand-text small {
  color: var(--muted);
  opacity: 1;
}

.site-header.is-scrolled .language-switch,
.site-header.is-scrolled .header-call,
.site-header.is-scrolled .nav-toggle,
.site-header.is-open .language-switch,
.site-header.is-open .header-call,
.site-header.is-open .nav-toggle {
  border-color: rgba(21, 25, 24, 0.34);
}

.site-header.is-scrolled .language-switch a:not(.is-active),
.site-header.is-open .language-switch a:not(.is-active) {
  opacity: 1;
}

.site-header.is-scrolled .header-call svg,
.site-header.is-scrolled .nav-toggle svg,
.site-header.is-open .header-call svg,
.site-header.is-open .nav-toggle svg {
  stroke-width: 2.2;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 245px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, var(--teal), #1fb7aa 72%, var(--amber));
  color: #ffffff;
  font-weight: 800;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 82% 100%, 0 100%);
}

.brand-text strong,
.brand-text small,
.footer-brand strong,
.footer-brand p {
  display: block;
}

.brand-text strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand-text small {
  margin-top: 4px;
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0.68;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  color: var(--amber);
  opacity: 1;
}

.header-actions,
.header-call,
.language-switch,
.nav-toggle,
.button,
.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
}

.language-switch {
  overflow: hidden;
  height: 36px;
  border: 1px solid currentColor;
}

.language-switch a {
  display: grid;
  min-width: 42px;
  height: 100%;
  place-items: center;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.72;
}

.language-switch a.is-active {
  background: var(--amber);
  color: #15130f;
  opacity: 1;
}

.header-call {
  min-height: 38px;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid currentColor;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-content: center;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.menu-fallback {
  position: relative;
  width: 18px;
  height: 14px;
}

.menu-fallback,
.menu-fallback::before,
.menu-fallback::after {
  display: block;
  border-top: 2px solid currentColor;
}

.menu-fallback::before,
.menu-fallback::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.menu-fallback::before {
  top: 5px;
}

.menu-fallback::after {
  top: 12px;
}

.icons-ready .menu-fallback {
  display: none;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

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

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(100deg, rgba(14, 18, 18, 0.72) 0%, rgba(14, 18, 18, 0.52) 42%, rgba(14, 18, 18, 0.14) 74%),
    linear-gradient(0deg, rgba(14, 18, 18, 0.5) 0%, rgba(14, 18, 18, 0) 48%);
}

.hero-content {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 54px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(280px, 380px);
  gap: 58px;
  align-items: center;
  justify-content: space-between;
}

.hero-main {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.76;
  overflow-wrap: anywhere;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
}

.hero-trust-row svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}

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

.button {
  min-height: 50px;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--amber);
  color: #15130f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button.dark-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  grid-template-columns: auto 44px 44px;
  gap: 8px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-contact.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 22, 21, 0.9);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 28, 26, 0.24);
  backdrop-filter: blur(12px);
}

.floating-contact a:hover {
  border-color: rgba(47, 200, 189, 0.58);
  color: #ffffff;
}

.floating-contact .floating-main {
  gap: 9px;
  padding: 0 15px;
  background: var(--amber);
  color: #15130f;
  font-weight: 900;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 680px;
  margin-top: 34px;
  border: 0;
}

.hero-metrics div {
  min-height: auto;
  min-width: 156px;
  padding: 0 24px 0 0;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  background: transparent;
}

.hero-metrics div:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.hero-rfq-panel {
  position: relative;
  overflow: hidden;
  max-width: 360px;
  justify-self: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(16, 22, 21, 0.58);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-rfq-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}

.hero-rfq-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-rfq-panel > p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.upload-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(47, 200, 189, 0.5);
  background: rgba(47, 200, 189, 0.11);
  color: #ffffff;
}

.upload-card:hover {
  border-color: rgba(47, 200, 189, 0.86);
  background: rgba(47, 200, 189, 0.16);
}

.upload-card svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.upload-card strong,
.upload-card small {
  display: block;
}

.upload-card strong {
  font-size: 15px;
  line-height: 1.3;
}

.upload-card small,
.hero-rfq-panel > small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.review-outcomes {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.review-outcomes article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.review-outcomes svg {
  display: grid;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--amber);
}

.review-outcomes h3 {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
}

.review-outcomes p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.55;
}

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

.rfq-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rfq-steps li:last-child {
  border-bottom: 0;
}

.rfq-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(198, 137, 52, 0.45);
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.rfq-steps strong {
  display: block;
  font-size: 14px;
}

.rfq-steps p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.hero-rfq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 10px;
}

.hero-rfq-actions .button {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  font-size: 13px;
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  border-bottom: 1px solid var(--line);
  background: #e8efec;
}

.signal-strip strong {
  margin-right: 6px;
  color: var(--graphite);
  font-size: 13px;
}

.signal-strip a,
.tag-row span,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.buyer-hook {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.buyer-hook article {
  display: flex;
  gap: 14px;
  min-height: 142px;
  padding: 24px 20px;
  background: #f8fbfa;
}

.buyer-hook svg {
  flex: 0 0 auto;
  color: var(--teal);
  margin-top: 2px;
}

.buyer-hook h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.buyer-hook p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.buyer-segment-grid article {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 139, 136, 0.06), rgba(255, 255, 255, 0) 42%),
    var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.06);
}

.buyer-segment-grid h3 {
  margin: 18px 0 16px;
  font-size: 22px;
  line-height: 1.28;
}

.buyer-segment-grid dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.buyer-segment-grid dt {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.buyer-segment-grid dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.buyer-segment-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.project-fit-band {
  width: 100%;
  max-width: none;
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.98), rgba(20, 29, 27, 0.96)),
    var(--graphite);
  color: #ffffff;
}

.project-fit-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.project-fit-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

.project-fit-head p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.78;
}

.project-fit-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 22, 21, 0.18), rgba(17, 22, 21, 0.64)),
    var(--fit-bg),
    var(--graphite);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.project-fit-visual > div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 480px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(14, 20, 19, 0.76);
  backdrop-filter: blur(16px);
}

.project-fit-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-fit-visual h3 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.22;
}

.project-fit-visual p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.project-fit-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.12fr) minmax(280px, 0.82fr);
  gap: 14px;
  margin-top: 18px;
  align-items: stretch;
}

.project-fit-options,
.project-fit-result,
.project-fit-proof {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.project-fit-options {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.project-fit-options button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  font-weight: 900;
  line-height: 1.4;
}

.project-fit-options button:hover,
.project-fit-options button.is-active {
  border-color: rgba(7, 177, 173, 0.45);
  background: rgba(7, 139, 136, 0.18);
  color: #ffffff;
}

.project-fit-options svg {
  color: var(--cyan);
}

.project-fit-result {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.project-fit-result h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.project-fit-result > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.76;
}

.project-fit-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 10px;
  margin-top: 16px;
}

.project-fit-result-grid article {
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
}

.project-fit-result-grid article:first-child {
  grid-row: span 2;
}

.project-fit-result-grid strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
}

.project-fit-result-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.68;
}

.project-fit-result-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.project-fit-result-grid li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.project-fit-result-grid svg {
  flex: 0 0 auto;
  color: var(--amber);
}

.project-fit-result .button {
  width: max-content;
  margin-top: auto;
}

.project-fit-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.project-fit-proof h3 {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.35;
}

.project-fit-proof article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(7, 177, 173, 0.18);
  background: rgba(7, 139, 136, 0.09);
}

.project-fit-proof svg {
  color: var(--cyan);
}

.project-fit-proof h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.project-fit-proof p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.project-diagnostic-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    #ffffff;
}

.project-diagnostic-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.project-diagnostic-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
}

.project-diagnostic-head p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.project-diagnostic-head img {
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.project-diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 14px;
  margin-top: 18px;
  align-items: stretch;
}

.diagnostic-options,
.diagnostic-result,
.diagnostic-support {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.diagnostic-options {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.diagnostic-options button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  line-height: 1.4;
}

.diagnostic-options button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: rgba(7, 139, 136, 0.08);
  color: var(--teal);
}

.diagnostic-options svg {
  color: var(--teal);
}

.diagnostic-result {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.95), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.diagnostic-result h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
}

.diagnostic-result > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.diagnostic-result ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.diagnostic-result li {
  display: flex;
  gap: 8px;
  min-height: 44px;
  align-items: flex-start;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.diagnostic-result li svg {
  flex: 0 0 auto;
  color: var(--amber);
}

.diagnostic-result .button {
  width: max-content;
  margin-top: auto;
}

.diagnostic-support {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.diagnostic-support > strong {
  font-size: 15px;
  line-height: 1.35;
}

.diagnostic-support article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(7, 139, 136, 0.15);
  background: #f8fbfa;
}

.diagnostic-support svg {
  color: var(--teal);
}

.diagnostic-support h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.diagnostic-support p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.rfq-workbench-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.98), rgba(17, 22, 21, 0.94)),
    var(--graphite);
  color: #ffffff;
}

.rfq-workbench-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.rfq-workbench-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: 40px;
  line-height: 1.16;
  letter-spacing: 0;
}

.rfq-workbench-head p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.78;
}

.rfq-workbench-head .button {
  width: max-content;
  margin-top: 22px;
}

.rfq-workbench-head img {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.rfq-workbench-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.rfq-workbench-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.rfq-workbench-grid svg {
  color: var(--cyan);
  margin-bottom: 18px;
}

.rfq-workbench-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.rfq-workbench-grid p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.rfq-output-table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
}

.rfq-output-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.rfq-output-table th,
.rfq-output-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.rfq-output-table th {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rfq-output-table td {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.rfq-output-table td:first-child {
  color: #ffffff;
  font-weight: 900;
}

.supplier-decision-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.07), rgba(198, 137, 52, 0.06)),
    #f8fbfa;
}

.supplier-decision-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.supplier-decision-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0;
}

.supplier-decision-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.supplier-decision-head img {
  width: 100%;
  height: 340px;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 64% center;
  box-shadow: var(--shadow);
}

.supplier-decision-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.04fr) minmax(280px, 0.86fr);
  gap: 14px;
  margin-top: 18px;
  align-items: stretch;
}

.supplier-tabs,
.supplier-result,
.supplier-proof {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.supplier-tabs {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.supplier-tabs > strong,
.supplier-proof > strong {
  font-size: 15px;
  line-height: 1.35;
}

.supplier-tabs button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  line-height: 1.4;
}

.supplier-tabs button.is-active {
  border-color: rgba(198, 137, 52, 0.5);
  background: rgba(198, 137, 52, 0.1);
  color: #8a5b1d;
}

.supplier-tabs svg {
  color: var(--teal);
}

.supplier-result {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.supplier-result h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.22;
}

.supplier-result > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.supplier-result ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.supplier-result li {
  display: flex;
  gap: 8px;
  min-height: 44px;
  align-items: flex-start;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.supplier-result li svg {
  flex: 0 0 auto;
  color: var(--amber);
}

.supplier-result .button {
  width: max-content;
  margin-top: auto;
}

.supplier-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.supplier-proof article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(7, 139, 136, 0.15);
  background: #f8fbfa;
}

.supplier-proof svg {
  color: var(--teal);
}

.supplier-proof h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.supplier-proof p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.supplier-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 14px;
  margin-top: 14px;
}

.supplier-compare,
.supplier-redflags {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.supplier-compare h3,
.supplier-redflags h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.35;
}

.supplier-compare table {
  width: 100%;
  border-collapse: collapse;
}

.supplier-compare th,
.supplier-compare td {
  padding: 13px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.supplier-compare th {
  width: 190px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.supplier-compare td {
  color: var(--muted);
  font-size: 13px;
}

.supplier-redflags div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.supplier-redflags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(198, 137, 52, 0.28);
  background: rgba(198, 137, 52, 0.08);
  color: #7c5622;
  font-size: 12px;
  font-weight: 850;
}

.supplier-redflags svg {
  width: 15px;
  height: 15px;
}

.application-intelligence-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.07), rgba(198, 137, 52, 0.055)),
    #f8fbfa;
}

.application-intelligence-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.application-intelligence-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0;
}

.application-intelligence-head p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.application-intelligence-head img {
  width: 100%;
  height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 54% center;
  box-shadow: var(--shadow);
}

.application-path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.application-path-grid article {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.application-path-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(7, 139, 136, 0.22);
  background: rgba(7, 139, 136, 0.08);
  color: var(--teal);
}

.application-path-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.application-path-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.application-path-grid a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.application-checkline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.application-checkline strong {
  font-size: 15px;
}

.application-checkline div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.application-checkline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  background: rgba(7, 139, 136, 0.06);
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.proof-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

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

.proof-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
}

.proof-copy > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.proof-grid article,
.rfq-checklist-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.proof-grid article {
  display: flex;
  gap: 13px;
  min-height: 146px;
  padding: 18px;
}

.proof-grid svg,
.rfq-checklist-grid svg {
  color: var(--teal);
}

.proof-grid svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.proof-grid h3,
.case-card h3,
.rfq-checklist-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.proof-grid p,
.case-card p,
.rfq-checklist-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.risk-clinic-band,
.process-decision-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
}

.risk-clinic-band {
  background: #101716;
  color: #ffffff;
}

.risk-clinic-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.risk-clinic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: stretch;
}

.risk-clinic-layout > img {
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
}

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

.risk-grid article {
  min-height: 280px;
  padding: 22px;
  background: #15201f;
}

.risk-grid article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(198, 137, 52, 0.42);
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.risk-grid h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.risk-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.risk-grid strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
  scroll-margin-top: 96px;
}

.section.project-diagnostic-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
}

.section.rfq-workbench-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
}

.section.supplier-decision-band {
  width: 100%;
  max-width: none;
  padding: 126px max(24px, calc((100vw - 1180px) / 2)) 78px;
}

.services-band,
.product-band,
.capability-band,
.applications-band,
.insights-band,
.contact-band,
.listing-section,
.detail-section {
  position: relative;
}

.product-band,
.process-band,
.case-band,
.rfq-checklist-band,
.listing-section {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: #eef3f0;
}

.process-decision-band {
  background: #ffffff;
}

.decision-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.06);
}

.decision-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

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

.decision-table th {
  background: #ecf3f1;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

.decision-table td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.decision-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.decision-table tr:last-child td {
  border-bottom: 0;
}

.case-band {
  background: #f6f8f7;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.06);
}

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

.case-card > div {
  padding: 20px;
}

.prototype-batch-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    #ffffff;
}

.prototype-batch-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.prototype-batch-head h2 {
  max-width: 700px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.prototype-batch-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.prototype-batch-visual {
  min-height: 360px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    var(--batch-bg),
    #f5f8f7;
  background-position: center, 58% center, center;
  background-size: cover, cover, cover;
  box-shadow: var(--shadow);
}

.prototype-batch-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.12fr) minmax(300px, 0.9fr);
  gap: 14px;
  margin-top: 18px;
}

.batch-stage-tabs,
.batch-stage-result,
.batch-proof-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.batch-stage-tabs {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.batch-stage-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.batch-stage-tabs button:hover,
.batch-stage-tabs button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: #eaf7f5;
  transform: translateY(-1px);
}

.batch-stage-tabs svg {
  color: var(--teal);
}

.batch-stage-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.batch-stage-result {
  padding: 24px;
}

.batch-stage-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.batch-stage-result > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.batch-output-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 12px;
  margin-top: 20px;
}

.batch-output-grid article {
  min-height: 196px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.batch-output-grid strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
  text-transform: uppercase;
}

.batch-output-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.batch-output-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.batch-output-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.batch-output-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.batch-stage-result .button {
  margin-top: 18px;
}

.batch-proof-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.batch-proof-panel h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.24;
}

.batch-proof-panel article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 88px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.batch-proof-panel svg {
  color: var(--cyan);
}

.batch-proof-panel h4 {
  margin: 0;
  font-size: 15px;
}

.batch-proof-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.quality-evidence-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 240, 0.98)),
    #ffffff;
}

.quality-evidence-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.quality-evidence-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 40px;
  line-height: 1.16;
}

.quality-evidence-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.quality-evidence-visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.quality-evidence-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.quality-evidence-visual span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  background: rgba(17, 22, 21, 0.82);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.quality-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.quality-evidence-grid article {
  min-height: 208px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.05);
}

.quality-evidence-grid svg {
  margin-bottom: 22px;
  color: var(--teal);
}

.quality-evidence-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.quality-evidence-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.quality-evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 18px;
  margin-top: 18px;
}

.quality-matrix-card,
.quality-loop-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.quality-matrix-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.quality-matrix {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.quality-matrix th,
.quality-matrix td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.quality-matrix th {
  background: #eef5f3;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.quality-matrix td {
  color: var(--muted);
  line-height: 1.55;
}

.quality-matrix td:first-child {
  color: var(--ink);
}

.quality-loop-card {
  display: grid;
  gap: 16px;
}

.quality-loop-list {
  display: grid;
  gap: 10px;
}

.quality-loop-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(7, 139, 136, 0.15);
  background: #f8fbfa;
}

.quality-loop-list span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.quality-loop-list h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.quality-loop-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.quality-drawing-chips {
  padding: 14px;
  border: 1px solid rgba(198, 137, 52, 0.28);
  background: rgba(198, 137, 52, 0.08);
}

.quality-drawing-chips strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.quality-drawing-chips div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quality-drawing-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.quality-package-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(198, 137, 52, 0.07), rgba(7, 139, 136, 0.08)),
    #ffffff;
}

.quality-package-inner {
  display: grid;
  gap: 18px;
}

.quality-package-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.quality-package-head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.quality-package-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.quality-package-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.58), rgba(17, 22, 21, 0.06) 62%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.04) 72%),
    var(--quality-package-bg),
    #111615;
  background-position: center, center, 56% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: var(--shadow);
}

.quality-package-visual > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 560px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.82);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.quality-package-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quality-package-visual h3 {
  margin: 9px 0 0;
  font-size: 26px;
  line-height: 1.25;
}

.quality-package-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
  gap: 14px;
}

.quality-package-tabs,
.quality-package-result {
  min-width: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.quality-package-tabs {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.quality-package-tabs > strong {
  display: block;
  font-size: 14px;
}

.quality-package-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quality-package-tabs button:hover,
.quality-package-tabs button.is-active {
  border-color: rgba(198, 137, 52, 0.46);
  background: #fff7e9;
  transform: translateY(-1px);
}

.quality-package-tabs svg {
  color: var(--teal);
}

.quality-package-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.quality-package-result {
  padding: 24px;
}

.quality-package-result h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.22;
}

.quality-package-result > p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.quality-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 12px;
  margin-top: 20px;
}

.quality-package-grid article {
  min-height: 172px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.15);
  background: #f8fbfa;
}

.quality-package-grid article:nth-child(3) {
  border-color: rgba(198, 137, 52, 0.22);
  background: #fffaf0;
}

.quality-package-grid strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quality-package-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.quality-package-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.quality-package-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.quality-package-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.quality-package-result .button {
  margin-top: 18px;
}

.rfq-checklist-band {
  background:
    linear-gradient(100deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.rfq-checklist-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.rfq-checklist-band .section-heading a {
  color: var(--cyan);
}

.rfq-checklist-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.rfq-checklist-grid article {
  min-height: 198px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.rfq-checklist-grid svg {
  margin-bottom: 20px;
}

.rfq-checklist-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.quote-scope-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    #ffffff;
}

.quote-scope-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.quote-scope-head h2 {
  max-width: 660px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.quote-scope-head > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.quote-scope-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(0, 1.1fr) minmax(300px, 0.84fr);
  gap: 14px;
  align-items: stretch;
}

.quote-scope-options,
.quote-scope-result,
.quote-scope-aside {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.quote-scope-options {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.quote-scope-options button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quote-scope-options button:hover,
.quote-scope-options button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: #eaf7f5;
  transform: translateY(-1px);
}

.quote-scope-options svg {
  color: var(--teal);
}

.quote-scope-options span {
  min-width: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.quote-scope-result {
  padding: 24px;
}

.quote-scope-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.quote-scope-result > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.scope-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.scope-result-grid article {
  min-height: 174px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.scope-result-grid span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.scope-result-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.scope-send-box {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(198, 137, 52, 0.24);
  background: #fffaf1;
}

.scope-send-box > strong {
  display: block;
  font-size: 14px;
}

.scope-send-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.scope-send-box li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-height: 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.scope-send-box svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--amber);
}

.quote-scope-aside {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.quote-scope-aside h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
}

.quote-scope-aside > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.scope-proof-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.scope-proof-list span {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.scope-proof-list svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--cyan);
}

.scope-compare-card {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(198, 137, 52, 0.35);
  background: rgba(198, 137, 52, 0.1);
}

.scope-compare-card span {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-compare-card del {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.55;
  text-decoration-color: rgba(198, 137, 52, 0.9);
}

.scope-compare-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.quote-scope-aside .button {
  width: 100%;
  margin-top: auto;
}

.rfq-readiness-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.rfq-readiness-copy,
.rfq-readiness-tool {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.rfq-readiness-copy {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    var(--surface);
}

.rfq-readiness-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.18;
}

.rfq-readiness-copy > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.readiness-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.readiness-proof-grid article {
  min-height: 152px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.12);
  background: rgba(255, 255, 255, 0.68);
}

.readiness-proof-grid svg {
  color: var(--teal);
  margin-bottom: 14px;
}

.readiness-proof-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.readiness-proof-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.rfq-readiness-tool {
  padding: 26px;
}

.readiness-score-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.readiness-score-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.readiness-score-head p:not(.eyebrow),
.readiness-tool-copy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.readiness-meter {
  display: grid;
  width: 92px;
  min-height: 92px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(7, 139, 136, 0.22);
  background: #eef8f6;
  text-align: center;
}

.readiness-meter strong,
.readiness-meter small {
  display: block;
}

.readiness-meter strong {
  color: var(--teal);
  font-size: 26px;
  line-height: 1;
}

.readiness-meter small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.readiness-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.readiness-check-grid label {
  display: flex;
  min-height: 92px;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.readiness-check-grid label:has(input:checked) {
  border-color: rgba(7, 139, 136, 0.44);
  background: #eaf7f5;
  box-shadow: 0 8px 22px rgba(7, 139, 136, 0.08);
}

.readiness-check-grid input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.readiness-check-grid span,
.readiness-check-grid strong,
.readiness-check-grid small {
  display: block;
}

.readiness-check-grid strong {
  font-size: 14px;
  line-height: 1.35;
}

.readiness-check-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.readiness-progress {
  overflow: hidden;
  height: 10px;
  margin-top: 18px;
  background: #e4ece8;
}

.readiness-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 0.22s ease;
}

.readiness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.readiness-actions .dark-secondary {
  border-color: var(--line);
  background: var(--graphite);
  color: #ffffff;
}

.readiness-copy-status {
  display: none;
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
}

.readiness-copy-status.is-visible {
  display: block;
}

.faq-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 42px;
  align-items: start;
}

.faq-band .section-heading {
  position: sticky;
  top: 96px;
  display: block;
  margin-bottom: 0;
}

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

.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.04);
}

.faq-list button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
}

.faq-list button svg {
  flex: 0 0 auto;
  color: var(--teal);
  transition: transform 0.2s ease;
}

.faq-list article.is-open button svg {
  transform: rotate(180deg);
}

.faq-list p {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-list article.is-open p {
  display: block;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 24px;
  row-gap: 4px;
  margin-bottom: 30px;
}

.section-heading > .eyebrow,
.section-heading > h2,
.section-heading > p:not(.eyebrow) {
  grid-column: 1;
}

.section-heading h2,
.quality-copy h2,
.contact-info h2,
.form-head h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.quality-copy p,
.contact-info p,
.form-head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading a {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  justify-self: end;
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.feature-grid,
.product-grid,
.insight-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

.feature-card,
.product-card,
.insight-card,
.process-grid article,
.quote-form,
.aside-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.06);
}

.feature-card {
  min-height: 286px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.product-card:hover,
.insight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 139, 136, 0.45);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(7, 139, 136, 0.22);
  background: #e8f7f5;
  color: var(--teal);
}

.card-kicker {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}

.feature-card h3,
.product-card h3,
.insight-card h3,
.process-grid h3,
.detail-block h2,
.aside-panel h2 {
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: 0;
}

.feature-card p,
.product-card p,
.insight-card p,
.process-grid p,
.detail-block p,
.aside-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.filter-bar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-weight: 850;
}

.filter-bar button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.product-card {
  overflow: hidden;
  min-height: 650px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card[hidden] {
  display: none;
}

.product-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--graphite-2);
}

.product-card figure::after {
  content: none;
}

.product-card figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(15, 28, 26, 0.12);
  backdrop-filter: blur(8px);
}

.product-card figcaption span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.product-card figcaption strong {
  padding: 6px 8px;
  background: var(--graphite);
  color: #ffffff;
  font-size: 12px;
  line-height: 1.3;
}

.product-card img,
.insight-card img,
.detail-image,
.capability-layout > img,
.quality-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 22px;
}

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

.product-card-decision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.product-card-decision article {
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}

.product-card-decision span,
.product-card-packet > span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.product-card-decision strong {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.5;
}

.product-card-packet {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed rgba(7, 139, 136, 0.24);
  background: #f5faf8;
}

.product-card-packet ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.product-card-packet li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-card-packet svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--teal);
}

.product-card-packet em {
  font-style: normal;
}

.product-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.product-gateway {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.gateway-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.gateway-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gateway-visual:hover img {
  transform: scale(1.025);
}

.gateway-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 22, 21, 0.88), rgba(17, 22, 21, 0.08) 58%);
}

.gateway-visual div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #ffffff;
}

.gateway-visual span,
.route-card span {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.gateway-visual strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.15;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.route-card {
  position: relative;
  min-height: 118px;
  padding: 18px 54px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 139, 136, 0.45);
  box-shadow: var(--shadow);
}

.route-card strong {
  display: block;
  margin-top: 7px;
  font-size: 19px;
  line-height: 1.25;
}

.route-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.route-card small {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.5;
}

.route-card svg {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--teal);
}

.listing-intelligence-band,
.product-list-rfq-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
}

.listing-intelligence-band {
  background: #ffffff;
}

.list-intelligence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 30px;
  align-items: stretch;
}

.list-intelligence-copy {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    #f8fbfa;
}

.list-intelligence-copy h2,
.product-list-rfq-band h2,
.product-action-block h2,
.service-proof-block h2,
.service-packet-block h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
}

.list-intelligence-copy p,
.product-list-rfq-band p,
.product-action-block p,
.service-proof-block > p,
.service-packet-block p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.navigator-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.navigator-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(7, 139, 136, 0.2);
  background: #ffffff;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.navigator-pills svg {
  width: 15px;
  height: 15px;
}

.list-intelligence-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.list-intelligence-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-intelligence-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 22, 21, 0.82), rgba(17, 22, 21, 0.08) 62%);
}

.list-intelligence-visual div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #ffffff;
}

.list-intelligence-visual strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
}

.list-intelligence-visual p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.navigator-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.navigator-card-grid article {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.05);
}

.navigator-card-grid svg {
  color: var(--teal);
  margin-bottom: 18px;
}

.navigator-card-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.32;
}

.navigator-card-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-path-chooser {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.04), rgba(198, 137, 52, 0.07)),
    #ffffff;
}

.product-path-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.product-path-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.product-path-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.product-path-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-path-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.04) 62%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.42), rgba(17, 22, 21, 0.04) 72%),
    var(--path-bg),
    #111615;
  background-position: center, center, 58% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: var(--shadow);
}

.product-path-visual > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 560px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.78);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.product-path-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-path-visual h3 {
  margin: 9px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

.product-path-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.16fr) minmax(300px, 0.86fr);
  gap: 14px;
  margin-top: 18px;
}

.product-path-tabs,
.product-path-result,
.product-path-proof {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.product-path-tabs {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-path-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-path-tabs button:hover,
.product-path-tabs button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: #eaf7f5;
  transform: translateY(-1px);
}

.product-path-tabs svg {
  color: var(--teal);
}

.product-path-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.product-path-result {
  padding: 24px;
}

.product-path-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.product-path-result > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.path-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  margin-top: 20px;
}

.path-result-grid article {
  min-height: 170px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.path-result-grid article:nth-child(3) {
  grid-column: 1 / -1;
  min-height: auto;
  border-color: rgba(198, 137, 52, 0.18);
  background: #fffaf0;
}

.path-result-grid strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.path-result-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.path-result-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.path-result-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.path-result-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.product-path-result .button {
  margin-top: 18px;
}

.product-path-proof {
  display: grid;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.product-path-proof h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.24;
}

.product-path-proof article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.product-path-proof svg {
  color: var(--cyan);
}

.product-path-proof h4 {
  margin: 0;
  font-size: 15px;
}

.product-path-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.product-shortlist-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.98), rgba(19, 28, 26, 0.94)),
    var(--graphite);
  color: #ffffff;
}

.product-shortlist-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.product-shortlist-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
}

.product-shortlist-head p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.76;
}

.product-shortlist-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.58), rgba(17, 22, 21, 0.06) 64%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.05) 72%),
    var(--shortlist-bg),
    #111615;
  background-position: center, center, 50% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.product-shortlist-visual > div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 22, 21, 0.8);
  backdrop-filter: blur(12px);
}

.product-shortlist-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-shortlist-visual h3 {
  margin: 8px 0 0;
  font-size: 25px;
  line-height: 1.24;
}

.product-shortlist-visual p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.62;
}

.product-shortlist-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.2fr) minmax(280px, 0.82fr);
  gap: 14px;
  margin-top: 18px;
}

.product-shortlist-tabs,
.product-shortlist-result,
.product-shortlist-proof {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.product-shortlist-tabs {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-shortlist-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-shortlist-tabs button:hover,
.product-shortlist-tabs button.is-active {
  border-color: rgba(7, 177, 173, 0.5);
  background: rgba(7, 139, 136, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

.product-shortlist-tabs svg {
  color: var(--cyan);
}

.product-shortlist-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.product-shortlist-result {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
}

.product-shortlist-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.22;
}

.product-shortlist-result > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.shortlist-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 10px;
  margin-top: 16px;
}

.shortlist-result-grid article {
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
}

.shortlist-result-grid article:nth-child(3) {
  grid-row: span 2;
}

.shortlist-result-grid strong {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shortlist-result-grid p,
.shortlist-result-grid li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.6;
}

.shortlist-result-grid p {
  margin: 10px 0 0;
}

.shortlist-result-grid ul {
  display: grid;
  gap: 8px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.shortlist-result-grid li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.shortlist-result-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--amber);
}

.product-shortlist-result .button {
  margin-top: 16px;
}

.product-shortlist-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-shortlist-proof h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.25;
}

.product-shortlist-proof article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  min-height: 94px;
  padding: 13px;
  border: 1px solid rgba(7, 177, 173, 0.18);
  background: rgba(7, 139, 136, 0.11);
}

.product-shortlist-proof svg {
  color: var(--cyan);
}

.product-shortlist-proof h4 {
  margin: 0;
  font-size: 15px;
}

.product-shortlist-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.product-list-rfq-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.product-list-rfq-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
}

.product-list-rfq-band .check-list {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.product-list-rfq-band .button {
  margin-top: 24px;
}

.product-compare-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

.product-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.06);
}

.product-compare-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

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

.product-compare-table th {
  background: #edf4f1;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-compare-table td {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-compare-table td:first-child {
  min-width: 210px;
}

.product-compare-table td strong,
.product-compare-table td span {
  display: block;
}

.product-compare-table td strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.product-compare-table td span {
  margin-top: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.product-compare-table a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}

.product-compare-table tr:last-child td {
  border-bottom: 0;
}

.mini-specs {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.mini-specs div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  min-height: 34px;
  align-items: start;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf2ef;
}

.mini-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.capability-layout > img {
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.capability-column {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.capability-column h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.capability-list {
  display: grid;
  gap: 12px;
}

.capability-list article {
  padding: 14px 0;
  border-bottom: 1px solid #edf2ef;
}

.capability-list article:last-child {
  border-bottom: 0;
}

.capability-list strong {
  display: block;
  font-size: 16px;
}

.capability-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.material-advisor-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.material-advisor-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.material-advisor-head h2 {
  max-width: 660px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.material-advisor-head p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.material-advisor-visual {
  width: 100%;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(90deg, rgba(17, 22, 21, 0.16), rgba(17, 22, 21, 0)),
    var(--material-bg),
    var(--graphite);
  background-position: center, center, center;
  background-size: cover, cover, cover;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.material-advisor-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 14px;
  margin-top: 18px;
}

.material-advisor-options,
.material-advisor-result,
.material-advisor-note {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.material-advisor-options {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.material-advisor-options button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.material-advisor-options button:hover,
.material-advisor-options button.is-active {
  border-color: rgba(47, 200, 189, 0.52);
  background: rgba(47, 200, 189, 0.12);
  transform: translateY(-1px);
}

.material-advisor-options svg {
  color: var(--cyan);
}

.material-advisor-options span {
  font-size: 14px;
  font-weight: 900;
}

.material-advisor-result {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.material-advisor-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.material-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.material-result-grid article {
  min-height: 196px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.material-result-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.material-result-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.65;
}

.material-send-list {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(198, 137, 52, 0.34);
  background: rgba(198, 137, 52, 0.1);
}

.material-send-list > strong {
  display: block;
  font-size: 14px;
}

.material-send-list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.material-send-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.material-send-list svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--amber);
}

.material-advisor-note {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #ffffff;
  color: var(--ink);
}

.material-advisor-note h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
}

.material-advisor-note p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.material-advisor-note div {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.material-advisor-note span {
  display: flex;
  gap: 8px;
  min-height: 38px;
  align-items: flex-start;
  padding: 9px 10px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.material-advisor-note svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--teal);
}

.material-advisor-note .button {
  width: 100%;
  margin-top: auto;
}

.tolerance-console-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.08)),
    #ffffff;
}

.tolerance-console-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.tolerance-console-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.tolerance-console-head p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.tolerance-console-visual {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.tolerance-console-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.tolerance-console-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.2fr) minmax(300px, 0.82fr);
  gap: 14px;
  margin-top: 18px;
}

.tolerance-console-options,
.tolerance-console-result,
.tolerance-console-note {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.tolerance-console-options {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.tolerance-console-options > strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tolerance-console-options button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tolerance-console-options button:hover,
.tolerance-console-options button.is-active {
  border-color: rgba(7, 139, 136, 0.36);
  background: var(--teal);
  color: #ffffff;
  transform: translateY(-1px);
}

.tolerance-console-options svg {
  color: var(--amber);
}

.tolerance-console-options span {
  font-size: 14px;
  font-weight: 900;
}

.tolerance-console-result {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.07), rgba(198, 137, 52, 0.05)),
    #fbfdfc;
}

.tolerance-console-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.tolerance-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.tolerance-result-grid article {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 178px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.tolerance-result-grid svg {
  color: var(--teal);
}

.tolerance-result-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.tolerance-result-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.62;
}

.tolerance-send-box {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(198, 137, 52, 0.36);
  background: rgba(198, 137, 52, 0.08);
}

.tolerance-send-box > strong {
  display: block;
  font-size: 14px;
}

.tolerance-send-box ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.tolerance-send-box li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-height: 44px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.tolerance-send-box svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--teal);
}

.tolerance-console-note {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.tolerance-console-note h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
}

.tolerance-console-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.tolerance-console-note div {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.tolerance-console-note span {
  display: flex;
  gap: 8px;
  min-height: 38px;
  align-items: flex-start;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
}

.tolerance-console-note svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--amber);
}

.tolerance-console-note .button {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1180px) {
  .tolerance-console-head,
  .tolerance-console-layout {
    grid-template-columns: 1fr;
  }

  .tolerance-console-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tolerance-console-options > strong {
    grid-column: 1 / -1;
  }

  .tolerance-send-box ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tolerance-console-band {
    padding: 54px 16px;
  }

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

  .tolerance-console-visual,
  .tolerance-console-visual img {
    min-height: 240px;
  }

  .tolerance-console-options,
  .tolerance-result-grid,
  .tolerance-send-box ul {
    grid-template-columns: 1fr;
  }

  .tolerance-console-result,
  .tolerance-console-note {
    padding: 18px;
  }

  .tolerance-console-result h3 {
    font-size: 25px;
  }

  .tolerance-result-grid article {
    min-height: auto;
  }
}

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

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

.process-grid span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.quality-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: var(--graphite);
  color: #ffffff;
}

.quality-copy {
  align-self: center;
}

.quality-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.quality-band > img {
  min-height: 430px;
  border-radius: var(--radius);
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: inherit;
  line-height: 1.55;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--cyan);
}

.insight-card {
  overflow: hidden;
  min-height: 390px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.insight-card img {
  aspect-ratio: 16 / 10;
}

.insight-card div {
  padding: 20px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a,
.contact-methods span {
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  overflow-wrap: anywhere;
}

.contact-proof-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-proof-stack article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.contact-proof-stack svg {
  color: var(--teal);
}

.contact-proof-stack h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.contact-proof-stack p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.quote-form {
  padding: 26px;
}

.form-head {
  margin-bottom: 22px;
}

.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.form-badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  background: #f5faf8;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

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

.form-section-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-section-label::before {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label.wide,
.file-field {
  grid-column: 1 / -1;
}

.form-grid span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f9fbfa;
  color: var(--ink);
}

input,
select {
  min-height: 44px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
  line-height: 1.6;
}

.file-field input {
  padding: 12px;
  min-height: 48px;
  background: #ffffff;
}

.file-field small,
.form-status {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.quote-form .button {
  margin-top: 18px;
}

.form-intake-console {
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  margin: 20px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background: #ffffff;
}

.form-intake-visual {
  min-height: 330px;
  margin: 0;
  background: var(--graphite);
}

.form-intake-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.form-intake-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.07), rgba(198, 137, 52, 0.05)),
    #fbfdfc;
}

.form-intake-panel h4 {
  margin: 0;
  font-size: 23px;
  line-height: 1.28;
}

.form-intake-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.intake-meter {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.intake-meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.intake-meter-head span,
.intake-output-list > strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.intake-meter-head strong {
  color: var(--teal);
  font-size: 22px;
}

.intake-meter-bar {
  height: 8px;
  overflow: hidden;
  background: rgba(17, 22, 21, 0.1);
}

.intake-meter-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 0.2s ease;
}

.intake-meter > strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.intake-meter > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.intake-output-list {
  display: grid;
  gap: 10px;
}

.intake-output-list div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.intake-output-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.intake-output-list svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.rfq-live-summary {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    #ffffff;
}

.home-page .form-intake-console,
.home-page .rfq-live-summary {
  display: none;
}

.home-page .hero {
  min-height: 660px;
}

.home-page .hero-content {
  padding-bottom: 24px;
}

.home-page .hero-metrics {
  max-width: 650px;
  margin-top: 20px;
}

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

.home-page .buyer-hook article {
  min-height: 116px;
  padding: 18px 20px;
}

.home-page .buyer-hook h3 {
  font-size: 16px;
}

.home-page .buyer-hook p {
  margin-top: 6px;
  line-height: 1.55;
}

.home-decision-band {
  width: 100%;
  max-width: none;
  padding: 62px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, #f8fbfa 0%, #eef3f0 100%);
}

.home-decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.home-decision-copy {
  padding-top: 4px;
}

.home-decision-copy h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
}

.home-decision-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.home-decision-copy .button {
  margin-top: 24px;
}

.home-path-list {
  display: grid;
  gap: 12px;
}

.home-path-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-path-item:hover {
  border-color: rgba(7, 139, 136, 0.34);
  transform: translateY(-1px);
}

.home-path-item > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(7, 139, 136, 0.2);
  background: #edf7f5;
  color: var(--teal);
}

.home-path-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.home-path-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-path-item strong {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-size: 13px;
  line-height: 1.35;
}

.home-entry-list {
  display: grid;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.2), rgba(198, 137, 52, 0.1)),
    var(--graphite);
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 28, 26, 0.18);
}

.home-entry-list h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: 0;
}

.home-entry-list > p:not(.eyebrow) {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.home-entry-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.home-entry-link:hover {
  border-color: rgba(47, 200, 189, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.home-entry-link svg {
  color: var(--cyan);
}

.home-entry-link strong,
.home-entry-link small,
.home-entry-link em {
  display: block;
}

.home-entry-link strong {
  font-size: 15px;
  font-style: normal;
  line-height: 1.35;
}

.home-entry-link small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.home-entry-link em {
  margin-top: 8px;
  color: var(--amber);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.home-page .contact-band {
  padding-top: 62px;
  padding-bottom: 62px;
}

.home-page .contact-methods {
  margin-top: 18px;
}

.home-page .contact-proof-stack {
  margin-top: 14px;
}

.home-page .quote-form {
  padding: 22px;
}

.home-page .form-grid {
  gap: 12px;
}

.rfq-live-summary h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.rfq-live-summary p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.rfq-live-summary pre {
  overflow-x: auto;
  min-height: 220px;
  max-height: 360px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: rgba(255, 255, 255, 0.84);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.rfq-live-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.rfq-live-actions .button {
  margin-top: 0;
}

.rfq-copy-button {
  border-color: rgba(7, 139, 136, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.rfq-copy-button svg {
  color: var(--teal);
}

.rfq-copy-button:hover {
  border-color: rgba(7, 139, 136, 0.58);
  background: #ffffff;
}

.rfq-live-actions small {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.5;
}

.form-next {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}

.form-next strong {
  display: block;
  font-size: 15px;
}

.form-next ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-next small {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.55;
}

.form-next small svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
}

.price-leadtime-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(198, 137, 52, 0.09), rgba(7, 139, 136, 0.08)),
    #ffffff;
}

.price-leadtime-head {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 28px;
  align-items: stretch;
}

.price-leadtime-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.54), rgba(17, 22, 21, 0.06) 62%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.58), rgba(17, 22, 21, 0.04) 72%),
    var(--price-bg),
    #111615;
  background-position: center, center, 58% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: var(--shadow);
}

.price-leadtime-visual > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 600px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.78);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.price-leadtime-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-leadtime-visual h3 {
  margin: 9px 0 0;
  font-size: 26px;
  line-height: 1.24;
}

.price-leadtime-visual p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.price-leadtime-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.price-leadtime-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.price-leadtime-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.price-leadtime-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.16fr) minmax(300px, 0.86fr);
  gap: 14px;
  margin-top: 18px;
}

.price-priority-list,
.price-result-card,
.price-proof-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.price-priority-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.price-priority-list button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.price-priority-list button:hover,
.price-priority-list button.is-active {
  border-color: rgba(198, 137, 52, 0.48);
  background: #fff7e8;
  transform: translateY(-1px);
}

.price-priority-list svg {
  color: var(--amber);
}

.price-priority-list span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.price-result-card {
  padding: 24px;
}

.price-result-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.price-result-card > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.price-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.price-result-grid article {
  min-height: 164px;
  padding: 16px;
  border: 1px solid rgba(198, 137, 52, 0.18);
  background: #fffaf0;
}

.price-result-grid article:nth-child(4) {
  background: #f8fbfa;
  border-color: rgba(7, 139, 136, 0.14);
}

.price-result-grid strong {
  display: block;
  color: #8a5d17;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-result-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.price-result-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.price-result-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.price-result-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.price-result-card .button {
  margin-top: 18px;
}

.price-proof-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.price-proof-panel h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.24;
}

.price-proof-panel article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 88px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.price-proof-panel svg {
  color: var(--amber);
}

.price-proof-panel h4 {
  margin: 0;
  font-size: 15px;
}

.price-proof-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.file-privacy-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.04), rgba(7, 139, 136, 0.08)),
    #f7faf8;
}

.file-privacy-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.file-privacy-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.file-privacy-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.file-privacy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.file-privacy-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(7, 139, 136, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.file-privacy-chips svg {
  width: 15px;
  height: 15px;
}

.file-privacy-visual {
  position: relative;
  overflow: hidden;
  min-height: 366px;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.58), rgba(17, 22, 21, 0.04) 58%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.03) 72%),
    var(--privacy-bg),
    #121817;
  background-position: center, center, 56% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: var(--shadow);
}

.file-privacy-visual > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 560px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.76);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.file-privacy-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.file-privacy-visual h3 {
  margin: 9px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

.file-privacy-visual p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.file-privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.12fr) minmax(300px, 0.9fr);
  gap: 14px;
  margin-top: 18px;
}

.privacy-stage-list,
.privacy-result-card,
.privacy-proof-panel {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.privacy-stage-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.privacy-stage-list button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.privacy-stage-list button:hover,
.privacy-stage-list button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: #eaf7f5;
  transform: translateY(-1px);
}

.privacy-stage-list svg {
  color: var(--teal);
}

.privacy-stage-list span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.privacy-result-card {
  padding: 24px;
}

.privacy-result-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.privacy-result-card > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.privacy-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 12px;
  margin-top: 20px;
}

.privacy-decision-grid article {
  min-height: 188px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.privacy-decision-grid strong,
.privacy-next-step span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-decision-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-decision-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.privacy-decision-grid svg,
.privacy-next-step svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.privacy-decision-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.privacy-next-step {
  margin-top: 12px;
  padding: 15px 16px;
  border-left: 3px solid var(--amber);
  background: #fffaf0;
}

.privacy-next-step span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a5d17;
}

.privacy-next-step p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.privacy-result-card .button {
  margin-top: 18px;
}

.privacy-proof-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.privacy-proof-panel h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.24;
}

.privacy-proof-panel article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 88px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.privacy-proof-panel svg {
  color: var(--cyan);
}

.privacy-proof-panel h4 {
  margin: 0;
  font-size: 15px;
}

.privacy-proof-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.final-rfq-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.11), rgba(198, 137, 52, 0.08)),
    #ffffff;
}

.final-rfq-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
}

.final-rfq-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: 38px;
  line-height: 1.16;
}

.final-rfq-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.final-rfq-copy .button {
  width: max-content;
  margin-top: 18px;
}

.final-rfq-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.final-rfq-visual {
  position: relative;
  min-height: 328px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.28) 0%, rgba(17, 22, 21, 0.03) 58%, rgba(17, 22, 21, 0) 100%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.32), rgba(17, 22, 21, 0) 72%),
    var(--rfq-bg),
    var(--graphite);
  background-position: center, center, 58% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: 0 22px 56px rgba(15, 28, 26, 0.16);
}

.final-rfq-visual img {
  display: none;
}

.final-rfq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-rfq-visual-copy {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 20px;
  z-index: 1;
  width: min(570px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.78);
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.final-rfq-visual-copy > span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-rfq-visual-copy h3 {
  max-width: 560px;
  margin: 9px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

.final-rfq-visual-copy p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.final-rfq-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.final-rfq-signal-row em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.final-rfq-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.final-rfq-stage-grid article {
  min-height: 216px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.final-rfq-stage-grid article > span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.final-rfq-stage-grid svg {
  display: block;
  margin: 28px 0 18px;
  color: var(--teal);
}

.final-rfq-stage-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.34;
}

.final-rfq-stage-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.final-rfq-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.final-rfq-guarantees span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid rgba(7, 139, 136, 0.18);
  background: #f5faf8;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.rfq-handoff-band {
  width: 100%;
  max-width: none;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.04), rgba(7, 139, 136, 0.08)),
    #f7faf8;
}

.rfq-handoff-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.rfq-handoff-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.rfq-handoff-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.rfq-handoff-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.04) 62%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.04) 72%),
    var(--handoff-bg),
    #111615;
  background-position: center, center, 58% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: var(--shadow);
}

.rfq-handoff-visual > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 570px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.78);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.rfq-handoff-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rfq-handoff-visual h3 {
  margin: 9px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

.rfq-handoff-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.16fr) minmax(300px, 0.86fr);
  gap: 14px;
  margin-top: 18px;
}

.rfq-handoff-tabs,
.rfq-handoff-result,
.rfq-handoff-proof {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.rfq-handoff-tabs {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.rfq-handoff-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.rfq-handoff-tabs button:hover,
.rfq-handoff-tabs button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: #eaf7f5;
  transform: translateY(-1px);
}

.rfq-handoff-tabs svg {
  color: var(--teal);
}

.rfq-handoff-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.rfq-handoff-result {
  padding: 24px;
}

.rfq-handoff-result h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.24;
}

.rfq-handoff-result > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.handoff-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 12px;
  margin-top: 20px;
}

.handoff-result-grid article {
  min-height: 176px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.handoff-result-grid article:nth-child(3) {
  grid-column: 1 / -1;
  min-height: auto;
  border-color: rgba(198, 137, 52, 0.18);
  background: #fffaf0;
}

.handoff-result-grid strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.handoff-result-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.handoff-result-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.handoff-result-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.handoff-result-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.rfq-handoff-result .button {
  margin-top: 18px;
}

.rfq-handoff-proof {
  display: grid;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.rfq-handoff-proof h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.24;
}

.rfq-handoff-proof article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.rfq-handoff-proof svg {
  color: var(--cyan);
}

.rfq-handoff-proof h4 {
  margin: 0;
  font-size: 15px;
}

.rfq-handoff-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.quote-return-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(198, 137, 52, 0.08), rgba(7, 139, 136, 0.08)),
    #ffffff;
}

.quote-return-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.quote-return-copy,
.quote-return-visual,
.quote-return-tabs,
.quote-return-document {
  min-width: 0;
}

.quote-return-copy {
  padding: 26px;
  border: 1px solid rgba(17, 22, 21, 0.1);
  background: #f8fbfa;
}

.quote-return-copy h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.quote-return-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.quote-return-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.quote-return-proof span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid rgba(7, 139, 136, 0.18);
  background: #ffffff;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.quote-return-proof svg {
  width: 15px;
  height: 15px;
}

.quote-return-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.62), rgba(17, 22, 21, 0.05) 58%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.56), rgba(17, 22, 21, 0.04) 72%),
    var(--return-bg),
    #111615;
  background-position: center, center, 58% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: var(--shadow);
}

.quote-return-visual > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 540px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.8);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.quote-return-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-return-visual h3 {
  margin: 9px 0 0;
  font-size: 27px;
  line-height: 1.22;
}

.quote-return-visual p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

.quote-return-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  grid-column: 1 / -1;
}

.quote-return-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quote-return-tabs button:hover,
.quote-return-tabs button.is-active {
  border-color: rgba(198, 137, 52, 0.46);
  background: #fff7e9;
  transform: translateY(-1px);
}

.quote-return-tabs svg {
  color: var(--teal);
}

.quote-return-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.quote-return-document {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.04), rgba(198, 137, 52, 0.04)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(15, 28, 26, 0.08);
}

.quote-return-document > .eyebrow,
.quote-return-document > h3,
.quote-return-document > p,
.quote-return-document > ul,
.quote-return-document > .button {
  grid-column: 1;
}

.quote-return-document h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.22;
}

.quote-return-document > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.quote-return-document ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-return-document li {
  display: flex;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
}

.quote-return-document li svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.quote-return-decision {
  grid-column: 2;
  grid-row: 1 / span 5;
  display: grid;
  gap: 12px;
}

.quote-return-decision article {
  min-height: 146px;
  padding: 18px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  background: #f8fbfa;
}

.quote-return-decision article:nth-child(2) {
  border-color: rgba(198, 137, 52, 0.22);
  background: #fffaf0;
}

.quote-return-decision strong {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-return-decision p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.7;
}

.quote-return-document .button {
  justify-self: start;
  margin-top: 4px;
}

.delivery-handoff-band {
  width: 100%;
  max-width: none;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(17, 22, 21, 0.04)),
    #f7faf8;
}

.delivery-handoff-inner {
  display: grid;
  gap: 18px;
}

.delivery-handoff-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.delivery-handoff-head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.delivery-handoff-head p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.delivery-handoff-visual {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.58), rgba(17, 22, 21, 0.06) 62%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.04) 72%),
    var(--delivery-bg),
    #111615;
  background-position: center, center, 56% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: var(--shadow);
}

.delivery-handoff-visual > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  max-width: 560px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.8);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.delivery-handoff-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-handoff-visual h3 {
  margin: 9px 0 0;
  font-size: 26px;
  line-height: 1.25;
}

.delivery-handoff-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
  gap: 14px;
}

.delivery-handoff-tabs,
.delivery-handoff-result {
  min-width: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 28, 26, 0.06);
}

.delivery-handoff-tabs {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.delivery-handoff-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.delivery-handoff-tabs button:hover,
.delivery-handoff-tabs button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: #eaf7f5;
  transform: translateY(-1px);
}

.delivery-handoff-tabs svg {
  color: var(--teal);
}

.delivery-handoff-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.delivery-handoff-result {
  padding: 24px;
}

.delivery-handoff-result h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.22;
}

.delivery-handoff-result > p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.delivery-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 12px;
  margin-top: 20px;
}

.delivery-result-grid article {
  min-height: 172px;
  padding: 16px;
  border: 1px solid rgba(7, 139, 136, 0.15);
  background: #f8fbfa;
}

.delivery-result-grid article:nth-child(3) {
  border-color: rgba(198, 137, 52, 0.22);
  background: #fffaf0;
}

.delivery-result-grid strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-result-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.delivery-result-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-result-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.delivery-result-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.delivery-handoff-result .button {
  margin-top: 18px;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-brand p {
  max-width: 420px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--amber);
}

address {
  display: grid;
  gap: 9px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.page-hero {
  min-height: 430px;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 58px;
  color: #ffffff;
  background-color: var(--graphite);
  background-image:
    linear-gradient(100deg, rgba(18, 22, 22, 0.94), rgba(18, 22, 22, 0.62)),
    var(--page-hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--amber);
}

.product-detail-hero {
  padding: 118px max(24px, calc((100vw - 1180px) / 2)) 58px;
  color: #ffffff;
  background:
    linear-gradient(100deg, rgba(17, 22, 21, 0.98), rgba(17, 22, 21, 0.9) 46%, rgba(7, 139, 136, 0.22)),
    var(--graphite);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.product-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.product-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.product-hero-copy .tag-row span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.product-hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #202827;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

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

.product-hero-visual dl {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 22, 21, 0.82);
  backdrop-filter: blur(14px);
}

.product-hero-visual dl div {
  min-height: 86px;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.product-hero-visual dl div:last-child {
  border-right: 0;
}

.product-hero-visual dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 850;
}

.product-hero-visual dd {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.product-story {
  display: grid;
  gap: 22px;
}

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

.product-intake-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfa;
}

.product-intake-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.product-intake-grid h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.product-intake-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.decision-strip article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 26, 0.05);
}

.decision-strip span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.decision-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.lead-block {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    var(--surface);
}

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

.quote-driver-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quote-driver-grid article {
  min-height: 188px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}

.quote-driver-grid svg {
  color: var(--teal);
  margin-bottom: 18px;
}

.quote-driver-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.quote-driver-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-decision-console {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    var(--surface);
}

.product-console-head {
  max-width: 820px;
}

.product-console-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0;
}

.product-console-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-console-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  margin-top: 20px;
}

.scenario-stack,
.console-matrix {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.scenario-stack > strong,
.console-matrix > strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.scenario-stack {
  display: grid;
  gap: 10px;
}

.scenario-stack article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.scenario-stack svg {
  color: var(--teal);
}

.scenario-stack h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.scenario-stack span {
  display: block;
  margin-top: 5px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.scenario-stack p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.console-matrix table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #ffffff;
}

.console-matrix th,
.console-matrix td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.console-matrix th {
  width: 96px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.console-matrix td {
  color: var(--muted);
  font-size: 13px;
}

.console-part-context {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.94), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.console-part-context span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
}

.console-part-context strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.console-part-context p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.product-impact-board {
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.04), rgba(7, 139, 136, 0.08)),
    var(--surface);
}

.product-impact-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.product-impact-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.22;
}

.product-impact-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-impact-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.56), rgba(17, 22, 21, 0.06) 64%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.52), rgba(17, 22, 21, 0.06) 72%),
    var(--impact-bg),
    #111615;
  background-position: center, center, 56% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: 0 16px 42px rgba(15, 28, 26, 0.1);
}

.product-impact-visual > div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 22, 21, 0.8);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.product-impact-visual span {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-impact-visual strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.25;
}

.product-impact-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.52fr) minmax(0, 1.48fr);
  gap: 14px;
  margin-top: 20px;
}

.product-impact-tabs,
.product-impact-result {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.product-impact-tabs {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-impact-tabs > strong {
  display: block;
  font-size: 14px;
}

.product-impact-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-impact-tabs button:hover,
.product-impact-tabs button.is-active {
  border-color: rgba(7, 139, 136, 0.44);
  background: #eaf7f5;
  transform: translateY(-1px);
}

.product-impact-tabs svg {
  color: var(--teal);
}

.product-impact-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.product-impact-result {
  padding: 22px;
}

.product-impact-result h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.24;
}

.impact-current {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.95), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.impact-current span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-current strong {
  font-size: 17px;
  line-height: 1.45;
}

.impact-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 10px;
  margin-top: 14px;
}

.impact-result-grid article {
  min-height: 154px;
  padding: 15px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.impact-result-grid article:nth-child(3) {
  grid-column: 1 / -1;
  min-height: auto;
  border-color: rgba(198, 137, 52, 0.22);
  background: #fffaf0;
}

.impact-result-grid strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-result-grid p,
.impact-result-grid em {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.impact-result-grid em {
  display: block;
  color: #8a5d17;
  font-style: normal;
}

.impact-result-grid ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.impact-result-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.impact-result-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.product-impact-result .button {
  margin-top: 16px;
}

.product-rfq-scenario {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(198, 137, 52, 0.09), rgba(7, 139, 136, 0.07)),
    var(--surface);
}

.product-scenario-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
}

.product-scenario-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.22;
}

.product-scenario-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-scenario-visual {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid var(--line);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.48), rgba(17, 22, 21, 0.04) 62%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.04) 72%),
    var(--scenario-bg),
    #111615;
  background-position: center, center, 56% center, center;
  background-size: cover, cover, cover, cover;
}

.product-scenario-visual > div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 22, 21, 0.78);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.product-scenario-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-scenario-visual h3 {
  margin: 8px 0 0;
  font-size: 23px;
  line-height: 1.25;
}

.product-scenario-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.56fr) minmax(0, 1.16fr) minmax(260px, 0.84fr);
  gap: 12px;
  margin-top: 16px;
}

.product-scenario-tabs,
.product-scenario-result,
.product-scenario-proof {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.product-scenario-tabs {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-scenario-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 60px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-scenario-tabs button:hover,
.product-scenario-tabs button.is-active {
  border-color: rgba(198, 137, 52, 0.48);
  background: #fff7e8;
  transform: translateY(-1px);
}

.product-scenario-tabs svg {
  color: var(--amber);
}

.product-scenario-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.product-scenario-result {
  padding: 20px;
}

.product-scenario-result h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.24;
}

.product-scenario-result > p:not(.eyebrow) {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-scenario-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 10px;
  margin-top: 16px;
}

.product-scenario-grid article {
  min-height: 142px;
  padding: 14px;
  border: 1px solid rgba(198, 137, 52, 0.18);
  background: #fffaf0;
}

.product-scenario-grid article:nth-child(2) {
  background: #f8fbfa;
  border-color: rgba(7, 139, 136, 0.14);
}

.product-scenario-grid article:nth-child(3) {
  grid-column: 1 / -1;
  min-height: auto;
}

.product-scenario-grid strong {
  display: block;
  color: #8a5d17;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-scenario-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.product-scenario-grid ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.product-scenario-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.product-scenario-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.product-scenario-result .button {
  margin-top: 16px;
}

.product-scenario-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.product-scenario-proof h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.24;
}

.product-scenario-proof article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.product-scenario-proof svg {
  color: var(--cyan);
}

.product-scenario-proof h4 {
  margin: 0;
  font-size: 15px;
}

.product-scenario-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.drawing-handoff-block {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.07), rgba(198, 137, 52, 0.055)),
    var(--surface);
}

.drawing-handoff-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: stretch;
}

.drawing-handoff-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0;
}

.drawing-handoff-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.drawing-handoff-head img {
  width: 100%;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 48% center;
}

.drawing-handoff-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
  margin-top: 16px;
}

.drawing-mark-list,
.rfq-packet-card,
.drawing-handoff-table {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.drawing-mark-list {
  display: grid;
  gap: 10px;
}

.drawing-mark-list > strong,
.rfq-packet-card > strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.drawing-mark-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(7, 139, 136, 0.14);
  background: #f8fbfa;
}

.drawing-mark-list svg {
  color: var(--teal);
}

.drawing-mark-list h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.drawing-mark-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.rfq-packet-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.rfq-packet-card pre {
  overflow-x: auto;
  min-height: 238px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.84);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.rfq-packet-card .button {
  width: max-content;
}

.rfq-packet-card small {
  min-height: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.drawing-handoff-table {
  margin-top: 14px;
}

.drawing-handoff-table h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.35;
}

.drawing-handoff-table table {
  width: 100%;
  border-collapse: collapse;
}

.drawing-handoff-table td {
  padding: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  vertical-align: top;
}

.drawing-handoff-table td:first-child {
  width: 150px;
  color: var(--teal);
  font-weight: 900;
}

.product-acceptance-pack {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.product-acceptance-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.product-acceptance-head h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.2;
}

.product-acceptance-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.product-acceptance-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.56), rgba(17, 22, 21, 0.05) 66%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.5), rgba(17, 22, 21, 0.06) 70%),
    var(--acceptance-bg),
    #111615;
  background-position: center, center, 56% center, center;
  background-size: cover, cover, cover, cover;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.product-acceptance-visual > div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 500px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 22, 21, 0.8);
  backdrop-filter: blur(10px);
}

.product-acceptance-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-acceptance-visual h3 {
  margin: 8px 0 0;
  font-size: 23px;
  line-height: 1.25;
}

.product-acceptance-visual p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.product-acceptance-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.54fr) minmax(0, 1.46fr);
  gap: 12px;
  margin-top: 16px;
}

.product-acceptance-tabs,
.product-acceptance-result,
.product-acceptance-proof {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
}

.product-acceptance-tabs {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-acceptance-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-acceptance-tabs button:hover,
.product-acceptance-tabs button.is-active {
  border-color: rgba(7, 177, 173, 0.48);
  background: rgba(7, 139, 136, 0.18);
  color: #ffffff;
  transform: translateY(-1px);
}

.product-acceptance-tabs svg {
  color: var(--cyan);
}

.product-acceptance-tabs span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.product-acceptance-result {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
}

.product-acceptance-result h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.23;
}

.product-acceptance-result > p:not(.eyebrow) {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.74;
}

.product-acceptance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.product-acceptance-grid article {
  min-height: 130px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
}

.product-acceptance-grid article:first-child {
  grid-row: span 2;
}

.product-acceptance-grid strong {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-acceptance-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.product-acceptance-grid ul {
  display: grid;
  gap: 8px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.product-acceptance-grid li {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.product-acceptance-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--amber);
}

.product-acceptance-result .button {
  margin-top: 16px;
}

.product-acceptance-proof {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.product-acceptance-proof h3 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.24;
}

.product-acceptance-proof article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(7, 177, 173, 0.18);
  background: rgba(7, 139, 136, 0.11);
}

.product-acceptance-proof svg {
  color: var(--cyan);
}

.product-acceptance-proof h4 {
  margin: 0;
  font-size: 15px;
}

.product-acceptance-proof p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.product-revision-control {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 249, 246, 0.98), rgba(235, 243, 239, 0.96)),
    #f4f8f5;
}

.product-revision-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.product-revision-head h2 {
  margin: 0;
  max-width: 680px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.2;
}

.product-revision-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.product-revision-visual {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(25, 43, 42, 0.12);
  background: var(--graphite);
  box-shadow: 0 18px 48px rgba(17, 24, 23, 0.15);
}

.product-revision-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transform: scale(1.01);
}

.product-revision-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(17, 22, 21, 0.78), rgba(17, 22, 21, 0.02) 58%),
    linear-gradient(90deg, rgba(17, 22, 21, 0.32), rgba(17, 22, 21, 0));
  pointer-events: none;
}

.product-revision-visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 7px;
  max-width: 560px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 22, 21, 0.82);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.product-revision-visual span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-revision-visual strong {
  font-size: 22px;
  line-height: 1.26;
}

.product-revision-visual small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.58;
}

.product-revision-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.54fr) minmax(0, 1.46fr);
  gap: 12px;
  margin-top: 16px;
}

.product-revision-tabs,
.product-revision-result,
.product-revision-handoff {
  min-width: 0;
  border: 1px solid rgba(25, 43, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 26px rgba(17, 24, 23, 0.06);
}

.product-revision-tabs {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-revision-tabs button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 60px;
  border: 1px solid rgba(25, 43, 42, 0.12);
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product-revision-tabs button:hover,
.product-revision-tabs button.is-active {
  border-color: rgba(7, 139, 136, 0.42);
  background: rgba(7, 139, 136, 0.08);
  transform: translateY(-1px);
}

.product-revision-tabs svg {
  color: var(--teal);
}

.product-revision-tabs span {
  min-width: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.product-revision-result {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 244, 0.88)),
    #ffffff;
}

.product-revision-result h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.23;
}

.revision-stage {
  margin-top: 12px;
  padding: 14px;
  border-left: 4px solid var(--amber);
  background: rgba(17, 22, 21, 0.045);
}

.revision-stage strong,
.revision-evidence-grid strong,
.revision-risk strong {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.revision-stage p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.revision-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.revision-evidence-grid article {
  min-height: 158px;
  padding: 14px;
  border: 1px solid rgba(25, 43, 42, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.revision-evidence-grid ul,
.revision-risk ul {
  display: grid;
  gap: 8px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.revision-evidence-grid li {
  display: flex;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.revision-evidence-grid svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--amber);
}

.revision-risk {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(198, 137, 52, 0.24);
  background: rgba(198, 137, 52, 0.08);
}

.revision-risk > svg {
  color: var(--amber);
}

.revision-risk p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.65;
}

.product-revision-result .button {
  margin-top: 16px;
}

.product-revision-handoff {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.product-revision-handoff h3 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.24;
}

.product-revision-handoff article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  min-height: 108px;
  padding: 13px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  background: rgba(7, 139, 136, 0.055);
}

.product-revision-handoff svg {
  color: var(--teal);
}

.product-revision-handoff h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.product-revision-handoff p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.56;
}

@media (max-width: 1180px) {
  .product-revision-head,
  .product-revision-layout {
    grid-template-columns: 1fr;
  }

  .product-revision-handoff {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-revision-control {
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-revision-head h2 {
    font-size: 25px;
  }

  .product-revision-visual,
  .product-revision-visual img {
    min-height: 260px;
  }

  .product-revision-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px;
  }

  .product-revision-visual strong {
    font-size: 18px;
  }

  .product-revision-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .product-revision-tabs .eyebrow {
    grid-column: 1 / -1;
  }

  .product-revision-tabs button {
    grid-template-columns: 24px minmax(0, 1fr);
    min-height: 58px;
    padding: 10px;
  }

  .product-revision-tabs span {
    font-size: 13px;
  }

  .product-revision-result,
  .product-revision-handoff {
    padding: 14px;
  }

  .product-revision-result h3 {
    font-size: 22px;
  }

  .revision-evidence-grid,
  .product-revision-handoff {
    grid-template-columns: 1fr;
  }

  .revision-evidence-grid article {
    min-height: auto;
  }

  .product-revision-result .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .product-revision-tabs {
    grid-template-columns: 1fr;
  }
}

.risk-review-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.risk-panel {
  min-height: 216px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.risk-panel-main {
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.13), rgba(17, 22, 21, 0.18)),
    rgba(255, 255, 255, 0.055);
}

.risk-chip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.risk-chip-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 56px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.risk-chip-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--amber);
}

.muted-list {
  color: rgba(255, 255, 255, 0.84);
}

.muted-list svg {
  color: var(--amber);
}

.risk-panel .check-list li {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
}

.risk-chip-list span,
.muted-list span {
  display: block;
  min-width: 0;
}

.product-action-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.2), rgba(198, 137, 52, 0.1)),
    var(--graphite);
  color: #ffffff;
}

.product-action-block p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.product-action-block .navigator-pills span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

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

.acceptance-grid article {
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}

.acceptance-grid span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.acceptance-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.detail-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.detail-process article {
  min-height: 190px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}

.detail-process span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.detail-process h3 {
  margin: 10px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.detail-process p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-rfq-rail .quote-panel {
  border-color: rgba(198, 137, 52, 0.36);
  background:
    linear-gradient(180deg, rgba(198, 137, 52, 0.12), rgba(255, 255, 255, 0) 42%),
    var(--surface);
}

.related-band {
  padding-top: 28px;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 26px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.detail-main > * {
  min-width: 0;
  max-width: 100%;
}

.detail-image {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  min-width: 0;
}

.detail-block p {
  margin: 10px 0 0;
}

.detail-block.risk-review-block {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.detail-block.risk-review-block .eyebrow {
  color: var(--amber);
}

.detail-block.product-acceptance-pack {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.detail-block.product-acceptance-pack .eyebrow {
  color: var(--amber);
}

.detail-block.product-acceptance-pack .product-acceptance-head p:not(.eyebrow),
.detail-block.product-acceptance-pack .product-acceptance-result > p:not(.eyebrow),
.detail-block.product-acceptance-pack .product-acceptance-grid p,
.detail-block.product-acceptance-pack .product-acceptance-proof p {
  color: rgba(255, 255, 255, 0.72);
}

.service-proof-block {
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.06)),
    var(--surface);
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-proof-grid article {
  min-height: 174px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.service-proof-grid svg {
  color: var(--teal);
  margin-bottom: 16px;
}

.service-proof-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.service-proof-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-packet-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.service-packet-block .check-list {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  border-radius: var(--radius);
  background: #f8fbfa;
}

.service-navigator-band {
  padding-top: 38px;
}

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

.service-path-grid article {
  min-height: 164px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.service-path-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.service-path-grid h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.service-path-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-list-rfq-band {
  margin-top: 22px;
}

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

.service-decision-grid article {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}

.service-decision-grid span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.service-decision-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.service-driver-grid article {
  min-height: 176px;
}

.service-scope-console {
  padding: 0;
  overflow: hidden;
  border-color: rgba(17, 22, 21, 0.12);
  background: #ffffff;
}

.service-scope-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.97), rgba(31, 38, 37, 0.91)),
    var(--graphite);
  color: #ffffff;
}

.service-scope-head .eyebrow {
  color: var(--amber);
}

.service-scope-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
}

.service-scope-head p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.service-scope-visual {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.service-scope-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-scope-body {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
}

.service-scope-options {
  display: grid;
  gap: 10px;
}

.service-scope-options button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #f8fbfa;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.service-scope-options button:hover,
.service-scope-options button.is-active {
  border-color: rgba(7, 139, 136, 0.36);
  background: var(--teal);
  color: #ffffff;
  transform: translateY(-1px);
}

.service-scope-options span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 950;
}

.service-scope-result {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.07), rgba(198, 137, 52, 0.05)),
    #fbfdfc;
}

.service-scope-result h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.service-scope-result > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.service-scope-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.service-scope-result-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.service-scope-result-grid svg {
  color: var(--teal);
}

.service-scope-result-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-scope-result-grid strong,
.service-scope-result-grid li {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.58;
}

.service-scope-result-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-scope-risk {
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.94), rgba(17, 22, 21, 0.88)),
    var(--graphite) !important;
}

.service-scope-risk svg,
.service-scope-risk span {
  color: var(--amber);
}

.service-scope-risk strong {
  color: rgba(255, 255, 255, 0.86);
}

.service-fit-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  padding: 0;
  overflow: hidden;
}

.service-fit-block article {
  padding: 24px;
}

.service-fit-block h2,
.service-handoff-block h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
}

.service-fit-block .check-list {
  margin-top: 18px;
}

.service-not-fit {
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.94), rgba(17, 22, 21, 0.88)),
    var(--graphite);
  color: #ffffff;
}

.service-not-fit .eyebrow {
  color: var(--amber);
}

.service-not-fit .check-list li {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.service-not-fit .check-list svg {
  color: var(--amber);
}

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

.service-check-grid article {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(7, 139, 136, 0.15);
  background: #f8fbfa;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.service-check-grid svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--teal);
}

.service-matrix-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.service-matrix-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

.service-matrix-table th,
.service-matrix-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.service-matrix-table th {
  background: #eef5f3;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.service-matrix-table td {
  color: var(--muted);
  line-height: 1.55;
}

.service-matrix-table td:first-child {
  color: var(--ink);
}

.service-handoff-block {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.12), rgba(198, 137, 52, 0.08)),
    var(--surface);
}

.service-handoff-block p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-handoff-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 139, 136, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.service-handoff-grid svg {
  color: var(--teal);
}

.application-playbook-block {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.08), rgba(198, 137, 52, 0.055)),
    var(--surface);
}

.application-playbook-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: stretch;
}

.application-playbook-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.22;
}

.application-playbook-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.application-playbook-head img {
  width: 100%;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 52% center;
}

.application-playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.application-playbook-grid article {
  min-height: 242px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.application-playbook-grid article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(7, 139, 136, 0.2);
  background: rgba(7, 139, 136, 0.08);
  color: var(--teal);
}

.application-playbook-grid h3 {
  margin: 16px 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.application-playbook-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-playbook-grid li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.application-playbook-grid li svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--teal);
}

.application-flow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(17, 22, 21, 0.12);
  background:
    linear-gradient(135deg, rgba(17, 22, 21, 0.96), rgba(17, 22, 21, 0.9)),
    var(--graphite);
  color: #ffffff;
}

.application-flow-strip strong {
  margin-right: 8px;
  color: var(--amber);
  font-size: 13px;
  text-transform: uppercase;
}

.application-flow-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
}

.application-flow-strip em {
  color: var(--cyan);
  font-style: normal;
}

.application-flow-strip .button {
  margin-left: auto;
}

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

.spec-grid article {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #f8fbfa;
}

.spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.spec-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-aside {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.aside-panel {
  padding: 22px;
}

.aside-panel .button {
  width: 100%;
  margin-top: 20px;
}

.compact-panel h3 {
  margin: 0;
  font-size: 14px;
}

.compact-panel p {
  margin: 5px 0 16px;
  overflow-wrap: anywhere;
}

.compact-panel p:last-child {
  margin-bottom: 0;
}

.product-fast-panel ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.product-detail-page .product-action-block {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(7, 139, 136, 0.22), rgba(198, 137, 52, 0.12)),
    var(--graphite);
  color: #ffffff;
}

.product-detail-page .product-action-block p {
  color: rgba(255, 255, 255, 0.72);
}

.product-detail-page .product-action-block .navigator-pills span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    padding: 12px 24px;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
  }

  .feature-grid,
  .feature-grid.compact,
  .product-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .case-grid,
  .buyer-segment-grid,
  .risk-grid,
  .application-path-grid,
  .quote-driver-grid,
  .project-fit-result-grid,
  .shortlist-result-grid,
  .rfq-workbench-grid,
  .supplier-result ul,
  .rfq-checklist-grid,
  .final-rfq-stage-grid,
  .quality-evidence-grid,
  .scope-send-box ul,
  .material-send-list ul,
  .service-path-grid,
  .service-scope-result-grid,
  .service-check-grid,
  .product-acceptance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-rfq-panel {
    width: 100%;
    max-width: 720px;
    justify-self: stretch;
  }

  .hero-rfq-panel {
    max-width: 720px;
  }

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

  .capability-layout,
  .quality-band,
  .contact-band,
  .detail-section,
  .faq-band,
  .risk-clinic-layout,
  .proof-band,
  .project-fit-head,
  .project-fit-layout,
  .rfq-workbench-head,
  .product-path-head,
  .product-path-layout,
  .product-shortlist-head,
  .product-shortlist-layout,
  .service-scope-head,
  .service-scope-body,
  .supplier-decision-head,
  .supplier-decision-layout,
  .supplier-bottom-grid,
  .price-leadtime-head,
  .price-leadtime-layout,
  .quote-scope-head,
  .quote-scope-layout,
  .material-advisor-head,
  .material-advisor-layout,
  .prototype-batch-head,
  .prototype-batch-layout,
  .file-privacy-head,
  .file-privacy-layout,
  .application-intelligence-head,
  .project-diagnostic-head,
  .project-diagnostic-layout,
  .rfq-readiness-band,
  .final-rfq-band,
  .rfq-handoff-head,
  .rfq-handoff-layout,
  .quality-evidence-head,
  .quality-evidence-layout,
  .list-intelligence,
  .product-list-rfq-band,
  .service-packet-block,
  .service-fit-block,
  .service-handoff-block,
  .application-playbook-head,
  .application-playbook-grid,
  .product-action-block,
  .product-console-layout,
  .product-scenario-head,
  .product-scenario-layout,
  .drawing-handoff-head,
  .drawing-handoff-grid,
  .product-acceptance-head,
  .product-acceptance-layout,
  .product-gateway,
  .product-hero-grid,
  .product-detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .faq-band .section-heading,
  .detail-aside {
    position: static;
  }

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

  .quote-scope-options .eyebrow {
    grid-column: 1 / -1;
  }

  .quote-scope-aside .button {
    margin-top: 20px;
  }

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

  .material-advisor-options .eyebrow {
    grid-column: 1 / -1;
  }

  .material-advisor-note .button {
    margin-top: 20px;
  }

  .service-scope-options {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-priority-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-priority-list .eyebrow {
    grid-column: 1 / -1;
  }

  .batch-stage-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .batch-stage-tabs .eyebrow {
    grid-column: 1 / -1;
  }

  .privacy-stage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-stage-list .eyebrow {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 96px;
  }

  section[id] {
    scroll-margin-top: 96px;
  }

  body {
    padding-bottom: 84px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 10px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(15, 28, 26, 0.08);
    backdrop-filter: blur(14px);
  }

  .site-header .brand {
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }

  .site-header .brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .site-header .brand-text strong {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .brand-text small {
    color: var(--muted);
    opacity: 1;
  }

  .site-header .language-switch,
  .site-header .header-call,
  .site-header .nav-toggle {
    border-color: rgba(21, 25, 24, 0.34);
  }

  .site-header .nav-toggle {
    position: fixed;
    top: 13px;
    right: 12px;
    z-index: 70;
    display: inline-flex;
    justify-self: end;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header .language-switch a:not(.is-active) {
    opacity: 1;
  }

  .site-header .header-call svg,
  .site-header .nav-toggle svg {
    display: block;
    stroke-width: 2.2;
  }

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

  .brand-text small,
  .header-call span {
    display: none;
  }

  .header-call {
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .site-header .header-actions {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .language-switch a {
    min-width: 36px;
    padding: 0 8px;
  }

  .site-nav {
    top: 68px;
    left: 16px;
    right: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 104px 0 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-metrics,
  .buyer-hook,
  .feature-grid,
  .feature-grid.compact,
  .rfq-workbench-head,
  .rfq-workbench-grid,
  .product-path-head,
  .product-path-layout,
  .product-path-tabs,
  .path-result-grid,
  .product-shortlist-head,
  .product-shortlist-layout,
  .shortlist-result-grid,
  .supplier-decision-head,
  .supplier-decision-layout,
  .supplier-bottom-grid,
  .supplier-result ul,
  .price-leadtime-head,
  .price-leadtime-layout,
  .price-priority-list,
  .price-result-grid,
  .quote-scope-head,
  .quote-scope-layout,
  .quote-scope-options,
  .scope-result-grid,
  .scope-send-box ul,
  .material-advisor-head,
  .material-advisor-layout,
  .material-advisor-options,
  .material-result-grid,
  .material-send-list ul,
  .prototype-batch-head,
  .prototype-batch-layout,
  .batch-stage-tabs,
  .batch-output-grid,
  .file-privacy-head,
  .file-privacy-layout,
  .privacy-stage-list,
  .privacy-decision-grid,
  .application-intelligence-head,
  .application-path-grid,
  .application-checkline,
  .project-fit-head,
  .project-fit-layout,
  .project-fit-result-grid,
  .project-diagnostic-head,
  .project-diagnostic-layout,
  .product-grid,
  .navigator-card-grid,
  .route-grid,
  .insight-grid,
  .process-grid,
  .proof-grid,
  .service-proof-grid,
  .service-path-grid,
  .service-decision-grid,
  .service-scope-result-grid,
  .service-check-grid,
  .service-handoff-grid,
  .final-rfq-stage-grid,
  .rfq-handoff-head,
  .rfq-handoff-layout,
  .rfq-handoff-tabs,
  .handoff-result-grid,
  .quality-evidence-grid,
  .readiness-proof-grid,
  .readiness-check-grid,
  .buyer-segment-grid,
  .risk-grid,
  .case-grid,
  .rfq-checklist-grid,
  .capability-panel,
  .spec-grid,
  .product-spec-grid,
  .product-intake-grid,
  .quote-driver-grid,
  .risk-review-block,
  .product-console-layout,
  .product-scenario-head,
  .product-scenario-layout,
  .product-scenario-tabs,
  .product-scenario-grid,
  .drawing-handoff-head,
  .drawing-handoff-grid,
  .product-acceptance-head,
  .product-acceptance-layout,
  .product-acceptance-grid,
  .application-playbook-head,
  .application-playbook-grid,
  .risk-chip-list,
  .acceptance-grid,
  .decision-strip,
  .detail-process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-scope-head,
  .service-scope-body {
    padding: 18px;
  }

  .service-scope-head h2,
  .service-scope-result h3 {
    font-size: 22px;
  }

  .service-scope-options {
    grid-template-columns: 1fr;
  }

  .service-scope-result {
    padding: 16px;
  }

  .service-scope-result-grid article {
    min-height: auto;
  }

  .buyer-segment-grid article,
  .risk-grid article,
  .rfq-checklist-grid article {
    min-height: auto;
  }

  .quote-scope-result,
  .quote-scope-aside {
    padding: 18px;
  }

  .quote-scope-result h3 {
    font-size: 25px;
  }

  .material-advisor-visual {
    height: 230px;
    background-position: center, 55% center, center;
  }

  .material-advisor-result,
  .material-advisor-note {
    padding: 18px;
  }

  .material-advisor-result h3 {
    font-size: 25px;
  }

  .prototype-batch-visual {
    min-height: 230px;
    background-position: center, 62% center, center;
  }

  .batch-stage-result,
  .batch-proof-panel {
    padding: 18px;
  }

  .batch-stage-result h3 {
    font-size: 25px;
  }

  .price-leadtime-visual {
    min-height: 250px;
    background-position: center, 58% center, center;
  }

  .price-leadtime-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .price-leadtime-visual h3 {
    font-size: 21px;
  }

  .price-result-card,
  .price-proof-panel {
    padding: 18px;
  }

  .price-result-card h3 {
    font-size: 25px;
  }

  .file-privacy-visual {
    min-height: 250px;
    background-position: center, 58% center, center;
  }

  .file-privacy-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .file-privacy-visual h3 {
    font-size: 21px;
  }

  .privacy-result-card,
  .privacy-proof-panel {
    padding: 18px;
  }

  .privacy-result-card h3 {
    font-size: 25px;
  }

  .rfq-handoff-visual {
    min-height: 240px;
    background-position: center, 58% center, center;
  }

  .rfq-handoff-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .rfq-handoff-visual h3 {
    font-size: 21px;
  }

  .rfq-handoff-result,
  .rfq-handoff-proof,
  .rfq-handoff-tabs {
    padding: 18px;
  }

  .rfq-handoff-result h3 {
    font-size: 25px;
  }

  .rfq-handoff-result .button {
    width: 100%;
  }

  .quote-return-band {
    padding: 54px 16px;
  }

  .quote-return-inner,
  .quote-return-document {
    grid-template-columns: 1fr;
  }

  .quote-return-copy {
    padding: 20px;
  }

  .quote-return-copy h2 {
    font-size: 28px;
  }

  .quote-return-visual {
    min-height: 240px;
    background-position: center, 58% center, center;
  }

  .quote-return-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .quote-return-visual h3 {
    font-size: 21px;
  }

  .quote-return-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-return-tabs button {
    min-height: 58px;
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .quote-return-document {
    padding: 18px;
  }

  .quote-return-document > .eyebrow,
  .quote-return-document > h3,
  .quote-return-document > p,
  .quote-return-document > ul,
  .quote-return-document > .button,
  .quote-return-decision {
    grid-column: 1;
  }

  .quote-return-decision {
    grid-row: auto;
  }

  .quote-return-document h3 {
    font-size: 25px;
  }

  .quote-return-document .button {
    width: 100%;
  }

  .delivery-handoff-band {
    padding: 54px 16px;
  }

  .delivery-handoff-head,
  .delivery-handoff-layout,
  .delivery-result-grid {
    grid-template-columns: 1fr;
  }

  .delivery-handoff-head h2 {
    font-size: 28px;
  }

  .delivery-handoff-visual {
    min-height: 240px;
    background-position: center, 58% center, center;
  }

  .delivery-handoff-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .delivery-handoff-visual h3 {
    font-size: 21px;
  }

  .delivery-handoff-tabs,
  .delivery-handoff-result {
    padding: 18px;
  }

  .delivery-handoff-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-handoff-tabs .eyebrow {
    grid-column: 1 / -1;
  }

  .delivery-handoff-tabs button {
    min-height: 58px;
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .delivery-handoff-result h3 {
    font-size: 25px;
  }

  .delivery-result-grid article {
    min-height: auto;
  }

  .delivery-handoff-result .button {
    width: 100%;
  }

  .quality-package-band {
    padding: 54px 16px;
  }

  .quality-package-head,
  .quality-package-layout,
  .quality-package-grid {
    grid-template-columns: 1fr;
  }

  .quality-package-head h2 {
    font-size: 28px;
  }

  .quality-package-visual {
    min-height: 240px;
    background-position: center, 58% center, center;
  }

  .quality-package-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .quality-package-visual h3 {
    font-size: 21px;
  }

  .quality-package-tabs,
  .quality-package-result {
    padding: 18px;
  }

  .quality-package-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-package-tabs > strong {
    grid-column: 1 / -1;
  }

  .quality-package-tabs button {
    min-height: 58px;
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .quality-package-result h3 {
    font-size: 25px;
  }

  .quality-package-grid article {
    min-height: auto;
  }

  .quality-package-result .button {
    width: 100%;
  }

  .rfq-live-summary {
    padding: 14px;
  }

  .form-intake-console,
  .intake-output-list div {
    grid-template-columns: 1fr;
  }

  .form-intake-visual,
  .form-intake-visual img {
    min-height: 230px;
  }

  .form-intake-panel {
    padding: 18px;
  }

  .form-intake-panel h4 {
    font-size: 21px;
  }

  .rfq-live-summary h4 {
    font-size: 18px;
  }

  .rfq-live-summary pre {
    min-height: 150px;
    max-height: 260px;
    padding: 12px;
    font-size: 12px;
  }

  .rfq-live-actions {
    align-items: stretch;
  }

  .rfq-live-actions .button {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 30px;
  }

  .hero-trust-row {
    gap: 7px;
    margin-top: 16px;
  }

  .hero-trust-row span {
    flex: 1 1 calc(50% - 7px);
    justify-content: center;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .hero-metrics div {
    min-height: 82px;
  }

  .hero-rfq-panel {
    padding: 18px;
  }

  .hero-rfq-panel h2 {
    font-size: 22px;
  }

  .rfq-steps li {
    grid-template-columns: 34px 1fr;
  }

  .hero-rfq-actions .button {
    width: 100%;
  }

  .review-outcomes article {
    grid-template-columns: 30px 1fr;
    padding: 11px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 10px;
    grid-template-columns: minmax(0, 1fr) 46px 46px;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 22, 21, 0.88);
    box-shadow: 0 18px 44px rgba(15, 28, 26, 0.22);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .floating-contact.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-contact a {
    min-height: 44px;
    box-shadow: none;
  }

  .floating-contact .floating-main {
    padding: 0 12px;
  }

  .floating-contact .floating-main span {
    display: inline;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .signal-strip {
    padding: 14px 16px;
  }

  .buyer-hook {
    padding: 0 16px;
  }

  .buyer-hook article {
    min-height: auto;
    padding: 18px;
  }

  .project-fit-visual {
    min-height: 250px;
    background-position: 42% center;
  }

  .project-fit-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .project-fit-visual h3 {
    font-size: 21px;
  }

  .project-fit-result,
  .project-fit-proof,
  .project-fit-options {
    padding: 18px;
  }

  .project-fit-result {
    min-height: auto;
  }

  .project-fit-result h3 {
    font-size: 24px;
  }

  .project-fit-result-grid article:first-child {
    grid-row: auto;
  }

  .project-fit-result .button {
    width: 100%;
    margin-top: 18px;
  }

  .project-diagnostic-head img {
    min-height: 220px;
  }

  .rfq-workbench-head img {
    min-height: 230px;
  }

  .supplier-decision-head img {
    height: 230px;
    min-height: 230px;
    object-position: 78% center;
  }

  .application-intelligence-head img,
  .application-playbook-head img {
    height: 230px;
    object-position: 58% center;
  }

  .application-checkline {
    align-items: start;
  }

  .application-path-grid article,
  .application-playbook-grid article {
    min-height: auto;
  }

  .application-flow-strip {
    align-items: stretch;
  }

  .application-flow-strip strong,
  .application-flow-strip .button {
    width: 100%;
    margin-left: 0;
  }

  .rfq-workbench-head .button {
    width: 100%;
  }

  .supplier-result {
    min-height: auto;
    padding: 20px;
  }

  .supplier-result h3 {
    font-size: 24px;
  }

  .supplier-result .button {
    width: 100%;
    margin-top: 18px;
  }

  .supplier-compare th {
    width: 118px;
  }

  .rfq-output-table {
    min-width: 640px;
  }

  .diagnostic-result {
    min-height: auto;
    padding: 20px;
  }

  .diagnostic-result h3 {
    font-size: 24px;
  }

  .diagnostic-result ul {
    grid-template-columns: 1fr;
  }

  .diagnostic-result .button {
    width: 100%;
    margin-top: 18px;
  }

  .product-path-visual {
    min-height: 240px;
    background-position: center, 58% center, center;
  }

  .product-path-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .product-path-visual h3 {
    font-size: 21px;
  }

  .product-path-result,
  .product-path-proof,
  .product-path-tabs {
    padding: 18px;
  }

  .product-path-result h3 {
    font-size: 25px;
  }

  .product-path-result .button {
    width: 100%;
  }

  .product-shortlist-visual {
    min-height: 240px;
    background-position: center, 54% center, center;
  }

  .product-shortlist-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .product-shortlist-visual h3 {
    font-size: 21px;
  }

  .product-shortlist-result,
  .product-shortlist-proof,
  .product-shortlist-tabs {
    padding: 18px;
  }

  .product-shortlist-result h3 {
    font-size: 25px;
  }

  .shortlist-result-grid article:nth-child(3) {
    grid-row: auto;
  }

  .product-shortlist-result .button {
    width: 100%;
  }

  .section,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .section,
  .risk-clinic-band,
  .process-decision-band,
  .project-fit-band,
  .project-diagnostic-band,
  .rfq-workbench-band,
  .product-path-chooser,
  .product-shortlist-band,
  .supplier-decision-band,
  .price-leadtime-band,
  .quote-scope-band,
  .material-advisor-band,
  .prototype-batch-band,
  .file-privacy-band,
  .final-rfq-band,
  .rfq-handoff-band,
  .quality-evidence-band,
  .product-band,
  .process-band,
  .case-band,
  .project-diagnostic-band,
  .rfq-checklist-band,
  .quality-band,
  .quality-evidence-band,
  .rfq-readiness-band,
  .final-rfq-band,
  .rfq-handoff-band,
  .quality-evidence-band,
  .listing-intelligence-band,
  .product-list-rfq-band,
  .listing-section,
  .product-compare-band,
  .detail-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .product-band,
  .risk-clinic-band,
  .process-decision-band,
  .process-band,
  .product-path-chooser,
  .product-shortlist-band,
  .price-leadtime-band,
  .quote-scope-band,
  .material-advisor-band,
  .prototype-batch-band,
  .file-privacy-band,
  .case-band,
  .rfq-checklist-band,
  .quality-band,
  .rfq-readiness-band,
  .listing-intelligence-band,
  .product-list-rfq-band,
  .product-compare-band,
  .listing-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .section-heading > a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .section-heading h2,
  .product-path-copy h2,
  .project-diagnostic-head h2,
  .price-leadtime-copy h2,
  .quote-scope-head h2,
  .material-advisor-head h2,
  .prototype-batch-head h2,
  .file-privacy-head h2,
  .quality-evidence-head h2,
  .proof-copy h2,
  .rfq-readiness-copy h2,
  .final-rfq-copy h2,
  .rfq-handoff-head h2,
  .quality-copy h2,
  .contact-info h2,
  .form-head h3 {
    font-size: 29px;
  }

  .feature-card,
  .product-card,
  .insight-card,
  .process-grid article {
    min-height: auto;
  }

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

  .product-card {
    min-height: auto;
  }

  .product-card-body {
    min-height: auto;
  }

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

  .product-card-head {
    align-items: flex-start;
  }

  .gateway-visual,
  .product-hero-copy,
  .product-hero-visual {
    min-height: auto;
  }

  .gateway-visual {
    aspect-ratio: 16 / 11;
  }

  .route-card {
    min-height: auto;
  }

  .list-intelligence-copy {
    min-height: auto;
    padding: 22px;
  }

  .list-intelligence-visual {
    min-height: auto;
    aspect-ratio: 16 / 11;
  }

  .product-list-rfq-band .button,
  .product-action-block .button {
    width: 100%;
  }

  .product-detail-hero {
    padding: 104px 16px 42px;
  }

  .product-hero-copy h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .product-hero-visual {
    aspect-ratio: 16 / 12;
  }

  .product-hero-visual dl {
    position: static;
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: rgba(17, 22, 21, 0.96);
  }

  .product-hero-visual dl div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .product-hero-visual dl div:last-child {
    border-bottom: 0;
  }

  .product-console-head h2 {
    font-size: 25px;
  }

  .product-impact-head h2 {
    font-size: 25px;
  }

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

  .product-impact-visual {
    min-height: 220px;
    background-position: center, 58% center, center;
  }

  .product-impact-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .product-impact-visual strong {
    font-size: 20px;
  }

  .product-impact-layout,
  .impact-result-grid {
    grid-template-columns: 1fr;
  }

  .product-impact-tabs,
  .product-impact-result {
    padding: 14px;
  }

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

  .product-impact-result h3 {
    font-size: 24px;
  }

  .impact-result-grid article:nth-child(3) {
    grid-column: 1;
  }

  .product-impact-result .button {
    width: 100%;
  }

  .product-scenario-head h2 {
    font-size: 25px;
  }

  .product-scenario-visual {
    min-height: 220px;
    background-position: center, 58% center, center;
  }

  .product-scenario-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .product-scenario-visual h3 {
    font-size: 20px;
  }

  .product-scenario-result,
  .product-scenario-proof,
  .product-scenario-tabs {
    padding: 14px;
  }

  .product-scenario-result h3 {
    font-size: 24px;
  }

  .product-scenario-result .button {
    width: 100%;
  }

  .drawing-handoff-head h2 {
    font-size: 25px;
  }

  .drawing-handoff-head img {
    height: 220px;
    object-position: 42% center;
  }

  .scenario-stack,
  .console-matrix,
  .drawing-mark-list,
  .rfq-packet-card,
  .drawing-handoff-table {
    padding: 14px;
  }

  .scenario-stack article {
    min-height: auto;
  }

  .rfq-packet-card pre {
    min-height: auto;
  }

  .rfq-packet-card .button {
    width: 100%;
  }

  .drawing-handoff-table td {
    display: block;
    width: 100%;
  }

  .drawing-handoff-table td:first-child {
    width: 100%;
    padding-bottom: 4px;
  }

  .product-acceptance-head h2 {
    font-size: 25px;
  }

  .product-acceptance-visual {
    min-height: 230px;
    background-position: center, 54% center, center;
  }

  .product-acceptance-visual > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .product-acceptance-visual h3 {
    font-size: 20px;
  }

  .product-acceptance-result,
  .product-acceptance-proof,
  .product-acceptance-tabs {
    padding: 14px;
  }

  .product-acceptance-result h3 {
    font-size: 24px;
  }

  .product-acceptance-grid article:first-child {
    grid-row: auto;
  }

  .product-acceptance-result .button {
    width: 100%;
  }

  .capability-layout > img,
  .quality-band > img {
    min-height: 260px;
  }

  .quote-form,
  .detail-block,
  .aside-panel,
  .rfq-readiness-copy,
  .rfq-readiness-tool {
    padding: 18px;
  }

  .readiness-score-head {
    flex-direction: column;
  }

  .readiness-meter {
    width: 100%;
    min-height: 72px;
  }

  .readiness-actions .button {
    width: 100%;
  }

  .final-rfq-copy {
    min-height: auto;
  }

  .final-rfq-copy .button {
    width: 100%;
  }

  .page-hero {
    min-height: 370px;
    padding: 112px 16px 48px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-header {
    gap: 8px;
    padding-inline: 12px;
  }

  .site-header .brand {
    gap: 7px;
  }

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

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 33px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .filter-bar button {
    flex: 1 1 44%;
  }
}

@media (max-width: 1180px) {
  .home-decision-layout {
    grid-template-columns: 1fr;
  }

  .home-decision-copy {
    max-width: 760px;
  }

  .home-path-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .hero-content {
    padding-top: 88px;
    padding-bottom: 22px;
  }

  .home-page .hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .home-page .hero-copy {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.72;
  }

  .home-page .hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }

  .home-page .hero-trust-row span {
    min-height: 32px;
    padding: 5px 6px;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .home-page .hero-trust-row svg {
    width: 13px;
    height: 13px;
  }

  .home-page .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .home-page .hero-metrics {
    display: none;
  }

  .home-page .review-outcomes article:nth-child(3),
  .home-page .hero-rfq-panel > small {
    display: none;
  }

  .home-page .review-outcomes,
  .home-page .hero-rfq-panel > p:not(.eyebrow),
  .home-page .hero-rfq-actions .dark-secondary {
    display: none;
  }

  .home-page .upload-card {
    min-height: 58px;
    margin-top: 12px;
    padding: 10px;
  }

  .home-page .hero-rfq-panel {
    padding: 16px;
  }

  .home-page .hero-rfq-panel h2 {
    font-size: 20px;
  }

  .home-page .buyer-hook {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 16px 12px;
    background: #edf4f1;
  }

  .home-page .buyer-hook article {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    min-height: auto;
    padding: 12px 14px;
    border: 1px solid #dbe6e2;
    background: #ffffff;
  }

  .home-page .buyer-hook svg {
    width: 18px;
    height: 18px;
  }

  .home-page .buyer-hook h3 {
    font-size: 15px;
  }

  .home-page .buyer-hook p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.55;
  }

  .home-decision-band {
    padding: 30px 16px 34px;
  }

  .home-decision-layout {
    gap: 16px;
  }

  .home-decision-copy h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .home-decision-copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
  }

  .home-decision-copy .button {
    display: none;
  }

  .home-path-list {
    grid-template-columns: 1fr;
  }

  .home-path-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: auto;
    padding: 13px;
  }

  .home-path-item > span {
    width: 34px;
    height: 34px;
  }

  .home-path-item h3 {
    font-size: 16px;
  }

  .home-path-item p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.55;
  }

  .home-path-item strong {
    margin-top: 7px;
  }

  .home-entry-list {
    gap: 10px;
    padding: 18px 18px 22px;
  }

  .home-entry-list h3 {
    font-size: 22px;
  }

  .home-entry-list > p:not(.eyebrow),
  .home-entry-link small {
    display: none;
  }

  .home-entry-link {
    padding: 12px;
  }

  .home-page .contact-band {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-page .contact-info h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .home-page .contact-info p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.7;
  }

  .home-page .contact-proof-stack {
    display: none;
  }

  .home-page .quote-form {
    padding: 16px;
  }

  .home-page .quote-form .button {
    width: 100%;
  }
}

@media (min-width: 521px) and (max-width: 760px) {
  .home-page .hero-content {
    padding-bottom: 24px;
  }

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

  .home-page .buyer-hook article {
    display: block;
    min-height: 104px;
    padding: 14px;
  }

  .home-page .buyer-hook p {
    display: none;
  }

  .home-path-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-path-item {
    grid-template-columns: 1fr;
    min-height: 132px;
  }

  .home-path-item p {
    display: none;
  }

  .home-decision-band {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-page .contact-band {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 18px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-page .contact-info h2 {
    font-size: 24px;
  }

  .home-page .contact-info p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.65;
  }

  .home-page .contact-methods {
    gap: 8px;
  }

  .home-page .contact-methods a,
  .home-page .contact-methods span {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .home-page .hero-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-trust-row span:last-child {
    grid-column: 1 / -1;
  }
}

/* Clean product-oriented homepage refresh */
.home-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 28, 26, 0.08);
  backdrop-filter: blur(14px);
}

.list-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 28, 26, 0.08);
  backdrop-filter: blur(14px);
}

.home-page .site-header .brand-text small {
  color: var(--muted);
  opacity: 1;
}

.list-page .site-header .brand-text small {
  color: var(--muted);
  opacity: 1;
}

.list-page .page-hero-products,
.list-page .page-hero-services {
  min-height: 430px;
  color: var(--ink);
  background-color: #f7faf9;
  background-image:
    linear-gradient(90deg, #ffffff 0%, #ffffff 40%, rgba(255, 255, 255, 0.82) 54%, rgba(255, 255, 255, 0.2) 76%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(245, 248, 247, 0.12)),
    var(--page-hero-image);
  background-position: center right;
  background-size: cover;
}

.list-page .page-hero-products .breadcrumb,
.list-page .page-hero-services .breadcrumb {
  color: #5b6b67;
}

.list-page .page-hero-products p:not(.eyebrow),
.list-page .page-hero-services p:not(.eyebrow) {
  color: #435450;
}

.list-page .list-intelligence-visual {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 28, 26, 0.07);
}

.list-page .list-intelligence-visual img {
  object-position: center right;
}

.list-page .list-intelligence-visual::after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0) 72%);
}

.list-page .list-intelligence-visual div {
  color: var(--ink);
}

.list-page .list-intelligence-visual p {
  color: #4f615c;
}

.list-page .listing-section .product-card {
  min-height: 0;
}

.list-page .listing-section .product-card-body {
  min-height: 338px;
  padding: 20px;
}

.list-page .listing-section .product-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.list-page .listing-section .mini-specs {
  gap: 6px;
  margin-top: 14px;
}

.list-page .listing-section .mini-specs div {
  min-height: auto;
  padding-bottom: 6px;
}

.list-page .listing-section .product-card-decision {
  margin-top: 14px;
}

.list-page .listing-section .product-card-decision article {
  min-height: 76px;
  padding: 10px;
}

.list-page .listing-section .tag-row {
  display: none;
}

.home-page .hero {
  min-height: 640px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8f7 100%);
}

.home-page .hero-image {
  inset: 74px 0 0;
  width: 100%;
  height: calc(100% - 74px);
  object-fit: cover;
  object-position: center right;
  opacity: 0.96;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 42%, rgba(255, 255, 255, 0.72) 53%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(245, 248, 247, 0.14) 100%);
}

.home-page .hero-content {
  width: min(1180px, calc(100% - 48px));
  padding-top: 138px;
  padding-bottom: 58px;
}

.home-page .hero-layout {
  grid-template-columns: minmax(0, 640px);
  gap: 0;
}

.home-page .hero h1 {
  max-width: 640px;
  color: #111817;
  font-size: 54px;
}

.home-page .hero-copy {
  max-width: 560px;
  color: #4e5f5b;
  font-size: 17px;
}

.home-page .hero-trust-row span {
  border-color: #dce6e2;
  background: rgba(255, 255, 255, 0.86);
  color: #20312e;
}

.home-page .hero-actions .button.secondary {
  border-color: #bfcbc7;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.home-page .hero-rfq-panel {
  display: none;
}

.home-page .hero-metrics {
  margin-top: 30px;
}

.home-page .hero-metrics div {
  border-right-color: #d3dfdb;
}

.home-page .hero-metrics strong {
  color: #111817;
}

.home-page .hero-metrics span {
  color: #5c6b67;
}

.home-page .buyer-hook {
  gap: 14px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid #e0e8e5;
  background: #f5f8f7;
}

.home-page .buyer-hook article {
  min-height: auto;
  padding: 20px;
  border: 1px solid #dce6e2;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 28, 26, 0.04);
}

.home-decision-band {
  padding-top: 54px;
  padding-bottom: 58px;
  background: #ffffff;
}

.home-decision-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.22fr);
  gap: 28px;
}

.home-path-list {
  grid-template-columns: 1fr;
}

.home-path-item {
  min-height: 116px;
  border-color: #dce6e2;
  background: #ffffff;
  box-shadow: none;
}

.home-entry-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.home-entry-list > .eyebrow,
.home-entry-list > h3,
.home-entry-list > p {
  grid-column: 1 / -1;
}

.home-entry-list h3 {
  color: #111817;
}

.home-entry-list > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.home-entry-link {
  min-height: 138px;
  border-color: #dce6e2;
  background: #f8fbfa;
  color: var(--ink);
}

.home-entry-link small {
  color: var(--muted);
}

.home-entry-link em {
  color: var(--teal);
}

@media (max-width: 900px) {
  .home-page .hero {
    min-height: auto;
  }

  .home-page .hero-image {
    top: 78px;
    right: -250px;
    bottom: auto;
    left: auto;
    width: 760px;
    height: 430px;
    object-fit: contain;
    object-position: right top;
    opacity: 0.24;
  }

  .home-page .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(255, 255, 255, 0.7) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 247, 0.86));
  }

  .home-page .hero-content {
    padding-top: 112px;
  }

  .home-decision-layout,
  .home-entry-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    display: block;
  }

  .home-page .hero-image {
    position: relative;
    inset: auto;
    width: calc(100% - 32px);
    height: 164px;
    margin: 84px auto 0;
    border: 1px solid #dfe8e5;
    background: #ffffff;
    object-fit: cover;
    object-position: 66% center;
    opacity: 1;
    box-shadow: 0 16px 34px rgba(35, 52, 48, 0.08);
  }

  .home-page .hero-overlay {
    display: none;
  }

  .home-page .hero-content {
    width: min(100% - 32px, 1180px);
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .home-page .hero h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  .home-page .hero-copy {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.72;
    overflow-wrap: anywhere;
  }

  .home-page .hero-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .hero-trust-row span {
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  .home-page .hero-trust-row span:first-child {
    grid-column: 1 / -1;
  }

  .home-page .hero-trust-row span:last-child {
    grid-column: auto;
  }

  .home-page .hero-actions .button {
    width: 100%;
  }

  .home-page .buyer-hook {
    padding: 14px 16px;
  }

  .home-page .buyer-hook article {
    min-height: auto;
    padding: 14px;
  }

  .home-decision-band {
    padding: 34px 16px 38px;
  }

  .home-entry-link {
    min-height: auto;
  }
}

/* Reference-structure manufacturing homepage */
.zy-style {
  --zy-blue: #0866d9;
  --zy-blue-2: #0b3f88;
  --zy-ink: #111820;
  --zy-muted: #63717b;
  --zy-line: #e3e8ee;
  background: #ffffff;
}

.zy-style .site-header {
  color: #ffffff;
  background: rgba(7, 18, 34, 0.76);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.zy-style .site-header.is-scrolled,
.zy-style .site-header.is-open {
  color: var(--zy-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(13, 31, 47, 0.12);
}

.zy-style .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #005bc7, #00a3a0 74%, #d99a31);
}

.zy-style .site-header .brand-text small {
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.zy-style .site-header.is-scrolled .brand-text small,
.zy-style .site-header.is-open .brand-text small {
  color: var(--muted);
}

.zy-style .button.primary {
  background: var(--zy-blue);
  color: #ffffff;
}

.zy-style .button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.zy-home {
  background: #ffffff;
}

.zy-hero {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px max(44px, calc((100vw - 1240px) / 2)) 88px;
  color: #ffffff;
  background: #071222;
}

.zy-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.05);
}

.zy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 16, 31, 0.84) 0%, rgba(8, 29, 54, 0.66) 42%, rgba(8, 29, 54, 0.24) 72%, rgba(5, 16, 31, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 16, 31, 0.06), rgba(5, 16, 31, 0.34));
}

.zy-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: max(44px, calc((100vw - 1240px) / 2));
  top: 252px;
  width: 4px;
  height: 330px;
  border-radius: 0;
  background: linear-gradient(180deg, #0b7bea, #17a7a2 62%, #d39a35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 40px rgba(8, 102, 217, 0.25);
}

.zy-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-left: 28px;
}

.zy-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.zy-hero-copy h1 {
  max-width: 1060px;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.zy-hero-copy h1 span {
  display: block;
}

.zy-hero-copy h1 .line-sub {
  margin-top: 4px;
  font-size: clamp(40px, 3.45vw, 48px);
  white-space: nowrap;
}

.zy-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.85;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
}

.zy-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.zy-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(6, 22, 42, 0.42);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

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

.zy-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(44px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--zy-line);
  background: #ffffff;
}

.zy-search > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.zy-search strong {
  color: var(--zy-blue);
  font-size: 16px;
}

.zy-search a {
  color: #5e6a73;
  font-weight: 700;
}

.zy-search a:hover {
  color: var(--zy-blue);
}

.zy-search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  width: min(360px, 100%);
  height: 46px;
  border: 1px solid #9fc1ef;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}

.zy-search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 16px;
  color: var(--zy-ink);
}

.zy-search-box button {
  display: grid;
  width: 100%;
  border: 0;
  place-items: center;
  background: var(--zy-blue);
  color: #ffffff;
}

.zy-flow-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: stretch;
  gap: 0;
  padding: 18px max(44px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--zy-line);
  background:
    linear-gradient(90deg, rgba(8, 102, 217, 0.08), rgba(7, 139, 136, 0.04)),
    #f7fafc;
}

.zy-flow-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 10px 22px 10px 0;
}

.zy-flow-item + .zy-flow-item {
  padding-left: 22px;
  border-left: 1px solid #dce6ef;
}

.zy-flow-item strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #b9d2ec;
  background: #ffffff;
  color: var(--zy-blue);
  font-size: 14px;
  line-height: 1;
}

.zy-flow-item h3 {
  margin: 0;
  color: var(--zy-ink);
  font-size: 17px;
  line-height: 1.32;
}

.zy-flow-item p {
  margin: 6px 0 0;
  color: var(--zy-muted);
  font-size: 13px;
  line-height: 1.58;
}

.zy-flow-action {
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  margin-left: 24px;
  padding: 0 18px;
  background: #d39a35;
  color: #111820;
  font-weight: 900;
  white-space: nowrap;
}

.zy-flow-action svg {
  width: 18px;
  height: 18px;
}

.zy-section {
  padding: 76px max(44px, calc((100vw - 1240px) / 2));
}

.zy-section[id] {
  scroll-margin-top: 108px;
}

.zy-heading {
  margin-bottom: 34px;
  text-align: center;
}

.zy-heading .eyebrow {
  color: var(--zy-blue);
}

.zy-heading h2,
.zy-about-copy h2,
.zy-rfq h2 {
  margin: 0;
  color: var(--zy-ink);
  font-size: 40px;
  line-height: 1.2;
}

.zy-heading p:not(.eyebrow),
.zy-about-copy p:not(.eyebrow),
.zy-rfq p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px auto 0;
  color: #506274;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.8;
}

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

.zy-service-card {
  min-height: 214px;
  padding: 28px;
  border: 1px solid var(--zy-line);
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.zy-service-card:hover,
.zy-product-card:hover,
.zy-application-card:hover,
.zy-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 102, 217, 0.36);
  box-shadow: 0 18px 42px rgba(13, 31, 47, 0.12);
}

.zy-service-card svg {
  width: 34px;
  height: 34px;
  color: var(--zy-blue);
}

.zy-service-card h3,
.zy-product-card h3,
.zy-application-card h3,
.zy-news-card h3,
.zy-reason-grid h3 {
  margin: 18px 0 0;
  color: var(--zy-ink);
  font-size: 22px;
  line-height: 1.3;
}

.zy-service-card p,
.zy-application-card p,
.zy-news-card p,
.zy-reason-grid p {
  margin: 10px 0 0;
  color: var(--zy-muted);
  font-size: 14px;
  line-height: 1.72;
}

.zy-service-card span,
.zy-product-card span,
.zy-application-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--zy-blue);
  font-weight: 900;
}

.zy-products,
.zy-choose,
.zy-news {
  background: #f5f8fb;
}

.zy-workshop {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 102, 217, 0.08), rgba(7, 139, 136, 0.04)),
    #ffffff;
}

.zy-workshop-copy h2 {
  margin: 0;
  color: var(--zy-ink);
  font-size: 38px;
  line-height: 1.22;
}

.zy-workshop-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 520px;
  color: #415468;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.72;
}

.zy-workshop-copy .button.secondary {
  margin-top: 24px;
  border-color: var(--zy-blue);
  color: var(--zy-blue);
  background: transparent;
}

.zy-workshop-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.zy-workshop-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #cbdceb;
  background: #ffffff;
  color: var(--zy-ink);
  font-size: 13px;
  font-weight: 900;
}

.zy-workshop-proof svg {
  width: 15px;
  height: 15px;
  color: var(--zy-blue);
}

.zy-workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 224px;
  gap: 14px;
}

.zy-workshop-grid article {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border: 1px solid #d9e3ed;
  background: #dfe8ef;
}

.zy-workshop-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.04) contrast(0.98);
}

.zy-workshop-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(13, 22, 31, 0), rgba(13, 22, 31, 0.76));
}

.zy-workshop-grid article > div {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(8, 13, 20, 0.62);
}

.zy-workshop-grid strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}

.zy-workshop-grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.5;
}

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

.zy-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--zy-line);
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.zy-product-card figure {
  height: 226px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid #dfe7ef;
  background: #e8eef4;
}

.zy-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 0.25s ease;
}

.zy-product-card.is-sheet-metal img {
  object-position: 52% 48%;
  filter: brightness(1.1) saturate(0.98) contrast(1.04);
  transform: scale(1.04);
  transform-origin: 52% 48%;
}

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

.zy-product-card.is-sheet-metal:hover img {
  transform: scale(1.08);
}

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

.zy-product-card h3 {
  margin-top: 0;
}

.zy-product-card p {
  margin: 8px 0 0;
  color: var(--zy-muted);
  font-size: 13px;
  line-height: 1.5;
}

.zy-product-card span {
  margin-top: auto;
  padding-top: 18px;
}

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

.zy-application-card {
  min-height: 188px;
  padding: 26px;
  border: 1px solid var(--zy-line);
  background:
    linear-gradient(135deg, rgba(8, 102, 217, 0.06), rgba(7, 139, 136, 0.04)),
    #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.zy-reason-grid article {
  min-height: 220px;
  padding: 30px;
  background: #ffffff;
  border-top: 4px solid var(--zy-blue);
}

.zy-reason-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.zy-reason-top svg {
  width: 34px;
  height: 34px;
  color: var(--zy-blue);
}

.zy-reason-top strong {
  color: rgba(8, 102, 217, 0.2);
  font-size: 44px;
  line-height: 1;
}

.zy-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
  border: 1px solid #d9e3ed;
  background: #ffffff;
}

.zy-stat-grid div {
  padding: 24px 18px;
  text-align: center;
}

.zy-stat-grid div + div {
  border-left: 1px solid #d9e3ed;
}

.zy-stat-grid strong {
  display: block;
  color: var(--zy-blue);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.zy-stat-value.has-unit {
  display: inline-flex;
  max-width: 100%;
  align-items: baseline;
  justify-content: center;
  font-size: clamp(21px, 1.7vw, 28px);
}

.zy-stat-unit {
  display: inline-block;
  margin-left: 2px;
  color: #6f8295;
  font-size: 0.54em;
  font-weight: 900;
  line-height: 1;
  transform: translateY(0.28em);
}

.zy-stat-grid > div > span {
  display: block;
  margin-top: 8px;
  color: var(--zy-muted);
  font-weight: 800;
}

.zy-equipment-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.zy-equipment-strip article {
  min-height: 116px;
  padding: 18px;
  border: 1px solid #d9e3ed;
  background: #ffffff;
}

.zy-equipment-strip strong {
  display: block;
  color: var(--zy-ink);
  font-size: 15px;
  line-height: 1.35;
}

.zy-equipment-strip span {
  display: block;
  margin-top: 8px;
  color: var(--zy-muted);
  font-size: 13px;
  line-height: 1.58;
}

.zy-about {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 46px;
  align-items: center;
  row-gap: 34px;
}

.zy-about-image {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 1.55;
  background: #eef3f7;
  box-shadow: 0 18px 44px rgba(13, 31, 47, 0.09);
}

.zy-about-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.zy-about-copy .eyebrow,
.zy-rfq .eyebrow {
  color: var(--zy-blue);
}

.zy-about-copy p:not(.eyebrow),
.zy-rfq p:not(.eyebrow) {
  margin-left: 0;
}

.zy-about-copy .button.secondary {
  margin-top: 24px;
  border-color: var(--zy-blue);
  color: var(--zy-blue);
  background: transparent;
}

.zy-about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.zy-about-facts div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #d9e3ed;
  background: #f7fafc;
}

.zy-about-facts dt {
  margin: 0;
  color: var(--zy-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.zy-about-facts dd {
  margin: 5px 0 0;
  color: var(--zy-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.zy-partner-panel {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 28px 0 0;
  border-top: 1px solid #d9e3ed;
  background: transparent;
}

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

.zy-partner-head strong {
  color: var(--zy-ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

.zy-partner-head span {
  max-width: 620px;
  color: var(--zy-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  text-align: right;
}

.zy-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #ffffff;
  border-top: 1px solid #dfe7ef;
  border-left: 1px solid #dfe7ef;
}

.zy-partner-card {
  display: flex;
  min-width: 0;
  min-height: 112px;
  padding: 20px 18px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid #dfe7ef;
  border-bottom: 1px solid #dfe7ef;
  background: #ffffff;
  text-align: center;
}

.zy-partner-card img {
  display: block;
  width: auto;
  max-width: 88%;
  max-height: 54px;
  object-fit: contain;
}

.zy-partner-card small {
  display: block;
  color: var(--zy-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.zy-partner-card.is-text-only {
  background: #f9fbfd;
}

.zy-partner-wordmark {
  display: block;
  max-width: 100%;
  color: var(--zy-ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

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

.zy-news-card {
  min-height: 226px;
  padding: 26px;
  border: 1px solid var(--zy-line);
  background: #ffffff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.zy-news-card time {
  color: var(--zy-blue);
  font-weight: 900;
}

.zy-rfq-check-card {
  display: flex;
  flex-direction: column;
}

.zy-rfq-check-card > svg {
  width: 34px;
  height: 34px;
  color: var(--zy-blue);
}

.zy-rfq-check-card h3 {
  margin-top: 22px;
}

.zy-rfq-check-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--zy-blue);
  font-weight: 900;
}

.zy-rfq-check-card span svg {
  width: 17px;
  height: 17px;
}

.zy-rfq {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(8, 102, 217, 0.08), rgba(7, 139, 136, 0.05)),
    #ffffff;
}

.zy-contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.zy-contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--zy-ink);
  font-size: 18px;
  font-weight: 900;
}

.zy-contact-methods span {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--zy-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.zy-contact-methods svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.zy-style .zy-rfq .quote-form {
  box-shadow: 0 18px 44px rgba(13, 31, 47, 0.09);
}

@media (max-width: 1060px) {
  .zy-service-grid,
  .zy-product-grid,
  .zy-application-grid,
  .zy-reason-grid,
  .zy-equipment-strip,
  .zy-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zy-about,
  .zy-rfq,
  .zy-workshop {
    grid-template-columns: 1fr;
  }

  .zy-workshop-grid {
    grid-auto-rows: 190px;
  }

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

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

  .zy-partner-card img {
    max-height: 46px;
  }
}

@media (max-width: 760px) {
  .zy-style .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .zy-hero {
    min-height: 610px;
    padding: 116px 16px 46px;
  }

  .zy-hero > img {
    object-position: 34% center;
  }

  .zy-hero::after {
    left: 16px;
    top: 208px;
    height: 330px;
  }

  .zy-hero-copy .eyebrow {
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .zy-hero-copy {
    max-width: 100%;
    min-width: 0;
    padding-left: 24px;
  }

  .zy-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: 29px;
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .zy-hero-copy h1 .line-sub {
    margin-top: 4px;
    font-size: 20px;
    line-height: 1.28;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .zy-hero-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.72;
    overflow-wrap: anywhere;
  }

  .zy-hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    width: min(280px, 100%);
    gap: 8px;
    margin-top: 18px;
  }

  .zy-hero-proof span {
    justify-content: center;
    width: 100%;
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .zy-hero-actions .button,
  .zy-search-box {
    width: 100%;
  }

  .zy-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .zy-hero-actions .button {
    max-width: 100%;
    justify-content: center;
  }

  .zy-search {
    display: grid;
    overflow: hidden;
    padding: 18px 16px;
  }

  .zy-search > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    max-width: 100%;
    gap: 8px;
  }

  .zy-search strong,
  .zy-search a {
    font-size: 14px;
    white-space: nowrap;
  }

  .zy-search strong {
    grid-column: 1 / -1;
  }

  .zy-search a {
    display: block;
    min-width: 0;
    padding: 8px 6px;
    border: 1px solid #dce8f5;
    background: #f7fbff;
    text-align: center;
  }

  .zy-search-box {
    grid-template-columns: minmax(0, 1fr) 56px;
    max-width: 100%;
    min-width: 0;
  }

  .zy-search-box input {
    width: 100%;
  }

  .zy-flow-bar {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .zy-flow-item {
    min-height: auto;
    padding: 12px 0;
  }

  .zy-flow-item + .zy-flow-item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #dce6ef;
  }

  .zy-flow-action {
    width: 100%;
    margin: 12px 0 0;
  }

  .zy-section {
    padding: 44px 16px;
  }

  .zy-section[id] {
    scroll-margin-top: 96px;
  }

  .list-page .listing-section .product-card-body {
    min-height: 0;
  }

  .zy-heading {
    text-align: left;
  }

  .zy-heading h2,
  .zy-about-copy h2,
  .zy-rfq h2 {
    font-size: 30px;
  }

  .zy-service-grid,
  .zy-product-grid,
  .zy-application-grid,
  .zy-reason-grid,
  .zy-equipment-strip,
  .zy-news-grid,
  .zy-stat-grid {
    grid-template-columns: 1fr;
  }

  .zy-workshop-copy h2 {
    font-size: 30px;
  }

  .zy-workshop-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .zy-workshop-grid article {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .zy-stat-grid div + div {
    border-left: 0;
    border-top: 1px solid #d9e3ed;
  }

  .zy-product-card figure {
    height: 190px;
  }

  .zy-about-image,
  .zy-about-image img {
    min-height: 0;
  }

  .zy-about-facts {
    grid-template-columns: 1fr;
  }

  .zy-partner-panel {
    padding: 18px 0 0;
  }

  .zy-partner-head {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
  }

  .zy-partner-head strong {
    font-size: 20px;
  }

  .zy-partner-head span {
    max-width: none;
    text-align: left;
  }

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

  .zy-partner-card {
    min-height: 86px;
    padding: 13px 10px;
  }

  .zy-partner-card img {
    max-height: 38px;
  }

  .zy-partner-wordmark {
    font-size: 16px;
  }

  .zy-style .floating-contact {
    left: auto;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .zy-style .floating-contact a:not(.floating-main) {
    display: none;
  }

  .zy-style .floating-contact .floating-main {
    width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(17, 22, 21, 0.22);
    box-shadow: 0 12px 30px rgba(15, 28, 26, 0.22);
  }

  .zy-style .floating-contact .floating-main span {
    display: none;
  }

  .zy-style .floating-contact .floating-main svg {
    width: 20px;
    height: 20px;
  }
}

/* Light RFQ module migrated from xisi12 */
@keyframes zyDetailsIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.zy-lite-rfq textarea {
  min-height: 132px;
}

.zy-lite-rfq input:focus,
.zy-lite-rfq select:focus,
.zy-lite-rfq textarea:focus {
  border-color: rgba(8, 102, 217, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 102, 217, 0.1);
  outline: 0;
}

.zy-lite-rfq .form-grid label {
  transition: transform 0.18s ease;
}

.zy-lite-rfq .form-grid label:focus-within {
  transform: translateY(-1px);
}

.zy-lite-rfq .form-grid label:focus-within > span {
  color: var(--zy-blue);
}

.quote-optional {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #cddce8;
  background:
    linear-gradient(180deg, rgba(8, 102, 217, 0.035), rgba(255, 255, 255, 0)),
    #f7fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.quote-optional summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: var(--zy-ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
  transition: background 0.2s ease;
}

.quote-optional summary::-webkit-details-marker {
  display: none;
}

.quote-optional summary:hover {
  background: rgba(8, 102, 217, 0.045);
}

.quote-optional summary small {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid #c9ddec;
  background: #ffffff;
  color: var(--zy-blue);
  font-size: 12px;
  font-weight: 900;
}

.quote-optional summary::after {
  content: "+";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #bed2e4;
  background: #ffffff;
  color: var(--zy-blue);
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.quote-optional[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.quote-optional > p {
  margin: 0;
  padding: 0 18px 14px;
  color: var(--zy-muted);
  font-size: 13px;
  line-height: 1.6;
}

.quote-optional .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 18px 18px;
}

.quote-optional[open] > p,
.quote-optional[open] .form-grid {
  animation: zyDetailsIn 0.26s ease both;
}

.zy-lite-rfq input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  background: var(--zy-blue);
  color: #ffffff;
  padding: 8px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.zy-lite-rfq input[type="file"]::file-selector-button:hover {
  background: var(--zy-blue-2);
  transform: translateY(-1px);
}

.zy-lite-rfq .file-field small {
  display: block;
  padding: 8px 10px;
  border: 1px dashed #c9ddec;
  background: #ffffff;
}

.zy-lite-rfq .file-field.is-file-selected small {
  border-style: solid;
  border-color: rgba(8, 102, 217, 0.36);
  background: rgba(8, 102, 217, 0.07);
  color: var(--zy-ink);
}

.zy-lite-rfq .form-status:not(:empty) {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 102, 217, 0.22);
  background: rgba(8, 102, 217, 0.07);
  color: var(--zy-ink);
  font-weight: 800;
}

.zy-rfq-prep {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #d9e3ed;
  background:
    linear-gradient(135deg, rgba(8, 102, 217, 0.06), rgba(7, 139, 136, 0.035)),
    #ffffff;
}

.zy-rfq-prep > strong {
  display: block;
  color: var(--zy-ink);
  font-size: 15px;
  line-height: 1.35;
}

.zy-rfq-prep > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.zy-rfq-prep span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #d9e3ed;
  background: #ffffff;
  color: #46596b;
  font-size: 12px;
  font-weight: 850;
}

.zy-rfq-prep span svg {
  width: 14px;
  height: 14px;
  color: var(--zy-blue);
}

.zy-rfq-prep p {
  margin: 14px 0 0;
  color: var(--zy-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.zy-rfq-prep b {
  display: block;
  margin-bottom: 3px;
  color: var(--zy-blue);
}

.quote-optional {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quote-optional[open] {
  border-color: rgba(8, 102, 217, 0.36);
  background: #ffffff;
}

.zy-style .zy-rfq {
  background:
    linear-gradient(135deg, rgba(8, 102, 217, 0.08), rgba(201, 150, 58, 0.045)),
    #f7fafc;
}

.zy-style .zy-rfq .quote-form {
  box-shadow: 0 18px 44px rgba(13, 31, 47, 0.09);
}

.zy-style .zy-rfq .quote-form::before {
  content: "";
  display: block;
  height: 3px;
  margin: -26px -26px 22px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--zy-blue), #17a7a2, var(--zy-gold));
}

.zy-style .zy-rfq-prep {
  border-color: #cddce8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.zy-style .zy-rfq-prep span {
  min-height: 36px;
  border-color: #cfdae5;
}

.zy-style .quote-optional {
  border-radius: 6px;
}

.zy-style .quote-optional summary {
  min-height: 58px;
}

.zy-lite-readiness {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #d6e2ec;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(8, 102, 217, 0.045), rgba(255, 255, 255, 0)),
    #f8fbfd;
}

.zy-lite-readiness > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.zy-lite-readiness span,
.zy-lite-readiness strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #17324d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.zy-lite-readiness svg {
  width: 16px;
  height: 16px;
  color: var(--zy-blue);
}

.zy-lite-readiness-bar {
  overflow: hidden;
  height: 6px;
  margin-top: 10px;
  background: #dfe8f0;
}

.zy-lite-readiness-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--zy-blue), #17a7a2);
  transition: width 0.22s ease;
}

.zy-lite-readiness p {
  margin: 9px 0 0;
  color: #607385;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.zy-lite-readiness[data-ready-state="ready"] {
  border-color: rgba(23, 167, 162, 0.35);
  background:
    linear-gradient(135deg, rgba(23, 167, 162, 0.08), rgba(255, 255, 255, 0)),
    #f8fbfd;
}

.zy-style .zy-rfq[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .quote-optional .form-grid {
    grid-template-columns: 1fr;
  }

  .zy-rfq-prep > div {
    grid-template-columns: 1fr;
  }

  .zy-lite-readiness > div:first-child {
    display: grid;
    gap: 6px;
  }

  .zy-style .zy-rfq .quote-form::before {
    margin: -26px -26px 20px;
  }
}
/* End Light RFQ module */
