:root {
  --ink: #101111;
  --ink-soft: #252726;
  --paper: #f4f2ed;
  --paper-deep: #e8e5de;
  --white: #fffdf8;
  --line: #d9d6cf;
  --orange: #ef6c28;
  --orange-deep: #c95319;
  --green: #8a9a74;
  --muted: #72746e;
  --shadow: 0 18px 48px rgba(16, 17, 17, 0.12);
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
}

.utility-bar {
  min-height: 34px;
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar__inner,
.utility-bar__inner > div {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  justify-content: space-between;
  min-height: 34px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__inner > div {
  gap: 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 242, 237, 0.96);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 20px rgba(16, 17, 17, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand__mark {
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a,
.header-contact {
  transition: color 180ms ease-out;
}

.desktop-nav a:hover,
.header-contact:hover {
  color: var(--orange-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-contact {
  color: var(--muted);
  font-size: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}

.button svg,
.text-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

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

.button--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 11px;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: var(--orange);
  color: var(--ink);
}

.button--accent {
  background: var(--orange);
  color: var(--ink);
}

.button--accent:hover {
  background: #ff8850;
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  background: var(--orange);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: max(520px, min(720px, calc(100svh - 176px)));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url('../images/hero-inflator.jpg');
  background-position: center;
  background-size: cover;
  opacity: 0.95;
}

.hero__shade {
  background: rgba(9, 12, 12, 0.56);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  padding-top: 112px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--orange);
}

.hero h1,
.section-heading h2,
.capabilities h2,
.quality h2,
.rfq h2 {
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: 78px;
}

.hero__lead {
  max-width: 520px;
  margin: 32px 0 0;
  color: rgba(255, 253, 248, 0.79);
  font-size: 16px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.9;
  text-transform: uppercase;
  transition: color 180ms ease-out;
}

.text-link:hover {
  color: var(--orange-deep);
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover {
  color: var(--orange);
}

.hero__facts {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--container), calc(100% - 72px));
  transform: translateX(50%);
  border-top: 1px solid rgba(255, 253, 248, 0.3);
}

.hero__facts div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 94px;
  padding: 22px 22px 20px 0;
  border-right: 1px solid rgba(255, 253, 248, 0.22);
}

.hero__facts div:not(:first-child) {
  padding-left: 22px;
}

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

.hero__facts strong {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.hero__facts span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 11px;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 76px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  text-transform: uppercase;
}

.trust-strip span:first-child {
  padding-left: 0;
}

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

.trust-strip svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
}

.section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.capabilities h2,
.quality h2,
.rfq h2 {
  font-size: 56px;
}

.section-heading > p {
  max-width: 425px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.filter-button span {
  color: #999b94;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 11px;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.filter-button.is-active span {
  color: var(--orange);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px 20px;
  margin-top: 52px;
}

.product-card {
  min-width: 0;
  transition: opacity 220ms ease-out, transform 220ms var(--ease);
}

.product-card.is-hidden {
  display: none;
}

.product-card:first-child {
  grid-column: span 2;
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-card:first-child .product-card__media {
  aspect-ratio: 16 / 9;
}

.product-card__media::after {
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 17, 0);
  content: '';
  transition: background 220ms ease-out;
}

.product-card__media:hover::after {
  background: rgba(16, 17, 17, 0.14);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.product-card__media:hover img {
  transform: scale(1.04);
}

.product-card__index {
  position: absolute;
  top: 14px;
  left: 15px;
  z-index: 1;
  color: var(--white);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  mix-blend-mode: difference;
}

.icon-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  transition: transform 180ms ease-out, background 180ms ease-out;
}

.icon-button:hover {
  background: var(--white);
  transform: translate(2px, -2px);
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.product-card__body {
  padding-top: 17px;
}

.product-card__body p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.product-card__body h3 {
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.15;
}

.products__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 68px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.products__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.capabilities {
  padding: 130px 0 96px;
  background: var(--ink);
  color: var(--white);
}

.capabilities__intro {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}

.capabilities__intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -54px;
}

.capabilities__intro > p:last-child {
  max-width: 420px;
  margin: 0 0 4px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.capability-list {
  border-top: 1px solid rgba(255, 253, 248, 0.25);
}

.capability-row {
  display: grid;
  grid-template-columns: 68px 200px 1fr 32px;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.25);
}

.capability-row > span {
  color: var(--orange);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 13px;
}

.capability-row h3 {
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.capability-row p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 14px;
  line-height: 1.6;
}

.capability-row > svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.capabilities__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 62px;
}

.capabilities__cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capabilities__cta span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  color: rgba(255, 253, 248, 0.68);
  font-size: 11px;
  text-transform: uppercase;
}

.operations .section-heading {
  margin-bottom: 68px;
}

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

.operations-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.operations-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.operations-image:hover img {
  transform: scale(1.03);
}

.operations-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}

.operations-image--large {
  grid-column: span 7;
  aspect-ratio: 630 / 353;
}

.operations-copy {
  display: flex;
  grid-column: span 5;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 34px;
  background: var(--green);
}

.operations-copy__quote {
  max-width: 400px;
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 27px;
  line-height: 1.12;
}

.operations-copy dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0 0;
}

.operations-copy dl div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.operations-copy dt {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.operations-copy dd {
  margin: 0;
  color: rgba(16, 17, 17, 0.7);
  font-size: 11px;
  text-transform: uppercase;
}

.operations-image:not(.operations-image--large) {
  grid-column: span 5;
  aspect-ratio: 4 / 3;
}

.operations-image:last-child {
  grid-column: span 7;
}

.quality {
  background: #1f2927;
  color: var(--white);
}

.quality__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px 100px;
  padding: 112px 0;
}

.quality__copy > p:not(.eyebrow) {
  max-width: 460px;
  margin: 27px 0 30px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.quality__standards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.3);
  border-left: 1px solid rgba(255, 253, 248, 0.3);
}

.quality__standards span {
  display: flex;
  align-items: center;
  min-height: 100px;
  padding-left: 22px;
  border-right: 1px solid rgba(255, 253, 248, 0.3);
  border-bottom: 1px solid rgba(255, 253, 248, 0.3);
  color: var(--orange);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.quality__checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column: 1 / -1;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 248, 0.3);
}

.quality__checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  text-transform: uppercase;
}

.quality__checks svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.rfq {
  background: var(--white);
}

.rfq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.rfq__intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.rfq__contact {
  display: grid;
  gap: 20px;
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.rfq__contact div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rfq__contact span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.rfq__contact a,
.rfq__contact strong {
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.rfq-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
}

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

.rfq-form label,
.rfq-form fieldset {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.rfq-form label > span,
.rfq-form legend {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.rfq-form input:not([type='checkbox']),
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.rfq-form input:not([type='checkbox']),
.rfq-form select {
  height: 48px;
  padding: 0 13px;
}

.rfq-form textarea {
  min-height: 128px;
  padding: 13px;
  resize: vertical;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
  color: #9a9c96;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: var(--ink);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(239, 108, 40, 0.18);
}

.rfq-form fieldset {
  padding: 0;
  border: 0;
}

.rfq-form legend {
  margin-bottom: 2px;
}

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

.choice-grid label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease-out, background 180ms ease-out;
}

.choice-grid label:has(input:checked) {
  border-color: var(--orange);
  background: #fff2e9;
}

.choice-grid input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.choice-grid label span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 5px;
}

.form-submit p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.form-message {
  display: none;
  padding: 13px 15px;
  border-left: 3px solid var(--green);
  background: #e5eadf;
  color: #43513b;
  font-size: 13px;
}

.form-message.is-visible,
.form-message.is-success,
.form-message.is-error {
  display: block;
}

.form-message.is-error {
  border-left-color: #a9382f;
  background: #f7e5e2;
  color: #76271f;
}

.site-footer {
  padding: 58px 0 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.footer-brand p {
  max-width: 430px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.brand--footer {
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links span {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.68);
  font-size: 13px;
  transition: color 180ms ease-out;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 253, 248, 0.42);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.catalog-hero {
  padding: 112px 0 92px;
  background: var(--ink);
  color: var(--white);
}

.catalog-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 100px;
}

.catalog-hero h1,
.product-detail h1,
.product-information h2 {
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.catalog-hero h1 {
  max-width: 760px;
  font-size: 64px;
}

.catalog-hero__inner > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.catalog-taxonomy {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.catalog-taxonomy a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.catalog-taxonomy a:hover,
.catalog-taxonomy a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-taxonomy span {
  color: var(--orange);
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}

.catalog-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 22px;
  margin-top: 42px;
}

.catalog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.catalog-card__media:hover img {
  transform: scale(1.035);
}

.catalog-card__body {
  padding-top: 18px;
}

.catalog-card__body > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.catalog-card h2 {
  min-height: 54px;
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.catalog-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}

.catalog-card dl div {
  padding-top: 13px;
}

.catalog-card dt {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.catalog-card dd {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.navigation.pagination {
  margin-top: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  font-size: 12px;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.product-detail {
  padding: 72px 0 108px;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: start;
  gap: 80px;
}

.product-detail__media {
  position: sticky;
  top: 132px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 68px;
  color: var(--muted);
  font-size: 11px;
}

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

.product-detail h1 {
  font-size: 52px;
  line-height: 1.05;
}

.product-detail__lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-facts {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.product-facts div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.product-detail__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.product-information {
  background: var(--white);
}

.product-information__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.product-information h2 {
  max-width: 520px;
  font-size: 48px;
}

.prose {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.prose h1,
.prose h2,
.prose h3 {
  color: var(--ink);
  font-family: 'Space Grotesk', Arial, sans-serif;
}

.prose h3 {
  margin-top: 34px;
  font-size: 23px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 60px 0;
  color: var(--muted);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 44px;
  align-items: center;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.brand--light {
  color: var(--white);
}

.site-footer__top > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 253, 248, 0.55);
  font-size: 13px;
}

.icon-button--light {
  position: static;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.25);
  background: transparent;
  color: var(--white);
}

.icon-button--light:hover {
  background: var(--orange);
  color: var(--ink);
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 44px 0 56px;
}

.site-footer__links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.site-footer__links span {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 13px;
  transition: color 180ms ease-out;
}

.site-footer__links a:hover {
  color: var(--white);
}

.site-footer__links svg {
  width: 14px;
  height: 14px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  color: rgba(255, 253, 248, 0.4);
  font-size: 10px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 650ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .container,
  .hero__facts {
    width: min(var(--container), calc(100% - 48px));
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-contact {
    display: none;
  }

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

  .product-detail__grid {
    gap: 44px;
  }

  .product-detail h1 {
    font-size: 44px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .section-heading,
  .capabilities__intro,
  .rfq__grid {
    gap: 50px;
  }

  .section-heading h2,
  .capabilities h2,
  .quality h2,
  .rfq h2 {
    font-size: 48px;
  }

  .capability-row {
    grid-template-columns: 50px 150px 1fr 28px;
  }
}

@media (min-width: 801px) and (max-height: 760px) {
  .hero__content {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 26px;
  }
}

@media (max-width: 800px) {
  .catalog-hero {
    padding: 82px 0 72px;
  }

  .catalog-hero__inner,
  .product-information__grid,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .catalog-hero h1 {
    font-size: 48px;
  }

  .product-detail {
    padding: 42px 0 80px;
  }

  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__media {
    position: static;
  }

  .breadcrumbs {
    margin-bottom: 44px;
  }

  .product-information h2 {
    font-size: 42px;
  }

  .footer-main {
    padding-bottom: 44px;
  }

  .footer-links {
    max-width: 520px;
  }

  .utility-bar__inner {
    min-height: 32px;
  }

  .utility-bar__inner > div {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    inset: 102px 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease-out, transform 180ms ease-out;
  }

  .mobile-nav a:not(.button) {
    min-height: 48px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 15px;
  }

  .mobile-nav .button {
    margin-top: 18px;
  }

  body.menu-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: max(560px, min(650px, calc(100svh - 170px)));
  }

  .hero__content {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero__lead {
    max-width: 470px;
    font-size: 15px;
  }

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

  .hero__facts div {
    min-height: 64px;
    padding: 11px 16px 10px 0;
  }

  .hero__facts div:not(:first-child) {
    padding-left: 16px;
  }

  .hero__facts strong {
    font-size: 20px;
  }

  .hero__facts span {
    font-size: 10px;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0;
  }

  .trust-strip span,
  .trust-strip span:first-child {
    min-height: 42px;
    padding: 7px 14px 7px 0;
    border-right: 0;
  }

  .trust-strip span:nth-child(2n) {
    padding-left: 14px;
  }

  .section,
  .capabilities {
    padding: 88px 0;
  }

  .section-heading,
  .capabilities__intro,
  .rfq__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .section-heading h2,
  .capabilities h2,
  .quality h2,
  .rfq h2 {
    font-size: 44px;
  }

  .capabilities__intro {
    margin-bottom: 52px;
  }

  .capabilities__intro .eyebrow {
    grid-column: auto;
    margin-bottom: -16px;
  }

  .capability-row {
    grid-template-columns: 45px 1fr 24px;
    gap: 16px;
    min-height: auto;
    padding: 22px 0;
  }

  .capability-row h3 {
    font-size: 24px;
  }

  .capability-row p {
    grid-column: 2 / -1;
    margin-top: -7px;
    font-size: 13px;
  }

  .capabilities__cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 14px;
    margin-top: 40px;
  }

  .product-card:first-child {
    grid-column: span 2;
  }

  .product-card__body h3 {
    font-size: 20px;
  }

  .product-card__body p {
    font-size: 10px;
  }

  .products__footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }

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

  .operations-image--large,
  .operations-image:last-child {
    grid-column: span 2;
  }

  .operations-copy {
    grid-column: span 2;
    min-height: auto;
  }

  .operations-image:not(.operations-image--large) {
    grid-column: span 1;
  }

  .quality__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 88px 0;
  }

  .quality__standards {
    max-width: 460px;
  }

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

  .rfq__grid {
    gap: 54px;
  }

  .rfq__contact {
    margin-top: 44px;
  }

  .rfq-form {
    padding: 26px 20px;
  }

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

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top {
    grid-template-columns: 1fr 44px;
    gap: 24px;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__links {
    padding: 36px 0 44px;
  }
}

@media (max-width: 520px) {
  .catalog-hero h1 {
    font-size: 40px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .catalog-card h2 {
    min-height: 0;
  }

  .catalog-meta,
  .product-detail__actions,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail h1 {
    font-size: 38px;
  }

  .product-facts div {
    grid-template-columns: 112px 1fr;
  }

  .product-information h2 {
    font-size: 36px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .container,
  .hero__facts {
    width: calc(100% - 40px);
  }

  .brand {
    font-size: 20px;
  }

  .hero {
    min-height: max(540px, min(670px, calc(100svh - 160px)));
  }

  .hero__image {
    background-position: 62% center;
  }

  .hero__shade {
    background: rgba(9, 12, 12, 0.66);
  }

  .hero__content {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: 45px;
    line-height: 1.03;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 14px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero__facts {
    width: calc(100% - 40px);
  }

  .section-heading h2,
  .capabilities h2,
  .quality h2,
  .rfq h2 {
    font-size: 38px;
  }

  .section-heading > p,
  .capabilities__intro > p:last-child,
  .rfq__intro > p:not(.eyebrow) {
    font-size: 14px;
  }

  .filter-row {
    gap: 4px;
  }

  .filter-button {
    padding: 0 10px;
    font-size: 11px;
  }

  .filter-button span {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-card:first-child {
    grid-column: auto;
  }

  .product-card:first-child .product-card__media,
  .product-card__media {
    aspect-ratio: 4 / 3;
  }

  .operations-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .operations-image--large {
    aspect-ratio: 4 / 3;
  }

  .operations-image:not(.operations-image--large),
  .operations-image:last-child {
    aspect-ratio: 4 / 3;
  }

  .operations-copy {
    padding: 26px;
  }

  .operations-copy__quote {
    font-size: 23px;
  }

  .quality__standards span {
    min-height: 78px;
    padding-left: 15px;
    font-size: 26px;
  }

  .quality__checks div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 10px;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }

  .site-footer__links div:last-child {
    grid-column: span 2;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product procurement page */
.single-pcmos_product .site-header {
  position: relative;
}

.product-page {
  background: var(--white);
}

.product-nav {
  position: sticky;
  top: 0;
  z-index: 38;
  border-bottom: 1px solid #dadde0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.product-nav__inner {
  display: flex;
  align-items: center;
  min-height: 52px;
  gap: 32px;
  color: #666b70;
  font-size: 12px;
  font-weight: 600;
}

.product-nav__inner a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 2px solid transparent;
}

.product-nav__inner a:hover {
  border-color: var(--orange);
  color: var(--ink);
}

.product-nav__cta {
  margin-left: auto;
  color: var(--ink);
}

.product-hero {
  padding: 38px 0 96px;
  background: #f5f6f6;
}

.product-hero .breadcrumbs {
  margin-bottom: 34px;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  align-items: start;
  gap: 72px;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__stage {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #e0e2e3;
  background: #fff;
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease-out;
}

.product-gallery__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 46px;
  background: rgba(16, 17, 17, 0.94);
  color: var(--white);
}

.product-gallery__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.product-gallery__controls button:hover {
  background: var(--orange);
  color: var(--ink);
}

.product-gallery__controls svg {
  width: 17px;
  height: 17px;
}

.product-gallery__controls span {
  min-width: 68px;
  text-align: center;
  font-size: 11px;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.product-gallery__thumb {
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8dbdd;
  background: #fff;
  opacity: 0.58;
  transition: border-color 180ms ease-out, opacity 180ms ease-out;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
  border-color: var(--ink);
  opacity: 1;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-buybox {
  position: sticky;
  top: 84px;
  padding: 8px 0 0;
}

.product-buybox .eyebrow {
  margin-bottom: 16px;
}

.product-buybox h1 {
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.04;
}

.product-buybox__lead {
  margin: 24px 0 0;
  color: #666b70;
  font-size: 15px;
  line-height: 1.65;
}

.product-buybox__facts {
  margin: 36px 0 0;
  border-top: 1px solid #d8dbdd;
}

.product-buybox__facts div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #d8dbdd;
}

.product-buybox__facts dt {
  color: #6b7074;
  font-size: 11px;
  text-transform: uppercase;
}

.product-buybox__facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.product-buybox__actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.button--wide {
  width: 100%;
  min-height: 54px;
}

.button--outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.product-buybox__assurance {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 24px 0;
  border-top: 1px solid #d8dbdd;
  border-bottom: 1px solid #d8dbdd;
  list-style: none;
}

.product-buybox__assurance li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  color: #6b7074;
  font-size: 11px;
}

.product-buybox__assurance svg {
  width: 20px;
  height: 20px;
  color: var(--orange-deep);
  stroke-width: 1.7;
}

.product-buybox__assurance strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12px;
}

.product-buybox__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #73777a;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-buybox__source svg {
  width: 13px;
  height: 13px;
}

.product-advantages {
  padding: 104px 0;
  background: var(--ink);
  color: var(--white);
}

.product-advantages__grid,
.product-specs__grid,
.product-quality__grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 112px;
  align-items: start;
}

.product-section-heading h2,
.related-products__heading h2 {
  max-width: 560px;
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.04;
}

.advantage-list {
  border-top: 1px solid rgba(255,255,255,0.25);
}

.advantage-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.advantage-item span {
  color: var(--orange);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 12px;
}

.advantage-item p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.product-specs {
  background: #fff;
}

.product-section-heading--sticky {
  position: sticky;
  top: 84px;
}

.product-section-heading--sticky > p:last-child {
  max-width: 430px;
  margin: 28px 0 0;
  color: #6d7175;
  font-size: 14px;
  line-height: 1.7;
}

.specification-table {
  border-top: 2px solid var(--ink);
}

.specification-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  padding: 19px 0;
  border-bottom: 1px solid #d9dcde;
}

.specification-row span {
  color: #6c7174;
  font-size: 12px;
}

.specification-row strong {
  font-size: 14px;
  font-weight: 600;
}

.specification-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
  padding: 0 22px;
  background: #f0f1f1;
  font-size: 12px;
}

.specification-download strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.specification-download svg {
  width: 16px;
  height: 16px;
}

.product-program {
  padding: 112px 0;
  background: #242627;
  color: var(--white);
}

.product-program__heading {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.program-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.program-steps article {
  position: relative;
  min-height: 286px;
  padding: 26px 26px 30px 0;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.program-steps article:not(:first-child) {
  padding-left: 26px;
}

.program-steps article:last-child {
  border-right: 0;
}

.program-steps article > span {
  color: #969a9c;
  font-size: 11px;
}

.program-steps svg {
  display: block;
  width: 34px;
  height: 34px;
  margin: 54px 0 24px;
  color: var(--orange);
  stroke-width: 1.4;
}

.program-steps h3 {
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.program-steps p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.6;
}

.product-quality {
  background: #eef0f0;
}

.product-quality__content > p {
  max-width: 690px;
  margin: 0;
  color: #606568;
  font-size: 16px;
  line-height: 1.7;
}

.quality-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid #c9ccce;
  border-bottom: 1px solid #c9ccce;
}

.quality-flow div {
  min-height: 132px;
  padding: 22px 16px 20px 0;
  border-right: 1px solid #c9ccce;
}

.quality-flow div:not(:first-child) {
  padding-left: 16px;
}

.quality-flow div:last-child {
  border-right: 0;
}

.quality-flow svg {
  width: 25px;
  height: 25px;
  margin-bottom: 28px;
  color: var(--orange-deep);
}

.quality-flow span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.compliance-status {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 42px;
  align-items: start;
}

.compliance-status > span {
  color: #707578;
  font-size: 11px;
  text-transform: uppercase;
}

.compliance-status div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compliance-status strong {
  padding: 9px 12px;
  border: 1px solid #bbbfc1;
  font-size: 11px;
}

.compliance-status p {
  max-width: 590px;
  margin: 0;
  color: #606568;
  font-size: 13px;
}

.related-products {
  background: #fff;
}

.related-products__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 16px;
  margin-top: 52px;
}

.related-product__image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f1f1;
}

.related-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.related-product__image:hover img {
  transform: scale(1.035);
}

.related-product > p {
  margin: 16px 0 7px;
  color: #74797c;
  font-size: 10px;
  text-transform: uppercase;
}

.related-product h3 {
  min-height: 50px;
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.related-product dl {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  margin: 18px 0 0;
  padding-top: 12px;
  border-top: 1px solid #d9dcde;
}

.related-product dl div {
  min-width: 0;
}

.related-product dt {
  color: #777b7e;
  font-size: 9px;
  text-transform: uppercase;
}

.related-product dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 600;
}

.mobile-product-cta {
  display: none;
}

@media (max-width: 1100px) {
  .product-hero__grid {
    gap: 42px;
  }

  .product-buybox h1 {
    font-size: 38px;
  }

  .product-advantages__grid,
  .product-specs__grid,
  .product-quality__grid {
    gap: 64px;
  }

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

  .related-product:last-child {
    display: none;
  }
}

@media (max-width: 800px) {
  .single-pcmos_product .site-header {
    position: sticky;
  }

  .product-page {
    padding-bottom: 76px;
  }

  .product-nav {
    display: none;
  }

  .product-hero {
    padding: 24px 0 68px;
  }

  .product-hero__grid,
  .product-advantages__grid,
  .product-specs__grid,
  .product-quality__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-buybox,
  .product-section-heading--sticky {
    position: static;
  }

  .product-buybox h1 {
    font-size: 42px;
  }

  .product-section-heading h2,
  .related-products__heading h2 {
    font-size: 40px;
  }

  .product-program__heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .program-steps article:nth-child(2) {
    border-right: 0;
  }

  .program-steps article:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.25);
  }

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

  .related-product:last-child {
    display: block;
  }

  .mobile-product-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 76px;
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid #cfd2d4;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 -8px 24px rgba(16,17,17,0.1);
  }

  .mobile-product-cta div {
    min-width: 0;
  }

  .mobile-product-cta span,
  .mobile-product-cta strong {
    display: block;
    overflow-wrap: anywhere;
  }

  .mobile-product-cta span {
    color: #707578;
    font-size: 10px;
    text-transform: uppercase;
  }

  .mobile-product-cta strong {
    margin-top: 2px;
    font-size: 13px;
  }

  .mobile-product-cta .button {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 0 16px;
  }
}

@media (max-width: 520px) {
  .product-hero .breadcrumbs {
    margin-bottom: 22px;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(6, 64px);
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .product-gallery__controls {
    right: 10px;
    bottom: 10px;
  }

  .product-buybox h1 {
    font-size: 34px;
  }

  .product-buybox__facts div {
    grid-template-columns: 112px 1fr;
  }

  .product-advantages,
  .product-program {
    padding: 82px 0;
  }

  .product-section-heading h2,
  .related-products__heading h2 {
    font-size: 35px;
  }

  .advantage-item p {
    font-size: 17px;
  }

  .specification-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 0;
  }

  .specification-download {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 16px;
  }

  .program-steps {
    grid-template-columns: 1fr;
  }

  .program-steps article,
  .program-steps article:not(:first-child) {
    min-height: 224px;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,0.25);
  }

  .program-steps article:first-child {
    border-top: 0;
  }

  .program-steps svg {
    margin: 38px 0 20px;
  }

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

  .quality-flow div:nth-child(2) {
    border-right: 0;
  }

  .quality-flow div:nth-child(n+3) {
    border-top: 1px solid #c9ccce;
  }

  .compliance-status {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .related-products__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .related-products__grid {
    grid-template-columns: 1fr;
  }

  .related-product h3 {
    min-height: 0;
  }
}
