:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5d6a75;
  --line: #d7e0e6;
  --paper: #ffffff;
  --soft: #f3f7f6;
  --soft-2: #edf3f7;
  --green: #1f6f55;
  --green-dark: #164b3d;
  --blue: #276a8f;
  --amber: #b7791f;
  --shadow: 0 18px 42px rgba(19, 43, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  background: var(--green-dark);
  border-radius: 6px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand-copy strong {
  color: #10211e;
  font-size: 18px;
  line-height: 1.1;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

.brand-legal {
  max-width: 220px;
  padding-left: 14px;
  border-left: 1px solid #c7d1ce;
  color: #263632;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #263632;
  font-size: 13px;
  font-weight: 700;
}

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

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--green);
  border-bottom-color: var(--green);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: white;
  font-size: 23px;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta,
.btn.primary {
  color: white;
  background: var(--green-dark);
}

.header-cta:hover,
.btn.primary:hover {
  background: #0f3d31;
  transform: translateY(-1px);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 535px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #173e35;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 43%;
  z-index: -2;
  background-color: #f4f7f6;
  background-image: url("assets/bubble-washer.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 47%;
  z-index: -1;
  background: rgba(10, 31, 27, 0.72);
  box-shadow: 150px 0 140px rgba(10, 31, 27, 0.48);
}

.hero-content {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 78px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee3c7;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 590px;
  margin: 0;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.65;
}

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

.hero-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
  color: white;
  font-weight: 750;
}

.hero-link:hover,
.hero-link:focus-visible {
  border-bottom-color: white;
}

.project-rail {
  position: relative;
  z-index: 4;
  width: min(1320px, calc(100% - 48px));
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.12fr 1.18fr auto;
  align-items: stretch;
  margin: -40px auto 0;
  padding: 0 12px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green-dark);
  box-shadow: 0 18px 34px rgba(9, 35, 29, 0.22);
}

.project-field {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 14px 18px;
  color: white;
}

.project-field + .project-field {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.project-field > i {
  font-size: 27px;
}

.project-field span,
.project-field small {
  display: block;
}

.project-field small {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-field select {
  min-height: 28px;
  padding: 0 24px 0 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: white;
  background-color: transparent;
  font-size: 13px;
  font-weight: 650;
}

.project-field select option {
  color: var(--ink);
  background: white;
}

.project-submit {
  align-self: center;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 10px 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  color: var(--green-dark);
  background: white;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.project-submit:hover,
.project-submit:focus-visible {
  background: #edf7f3;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.band {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: end;
}

.section-heading.split p:last-child {
  color: var(--muted);
  margin: 0;
}

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

.intro-grid article,
.quality-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
}

.card-index {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 850;
  font-size: 13px;
}

.intro-grid p,
.application-card em,
.solution-card p,
.process p,
.quality-grid p,
.quality-grid li,
.rfq-copy p,
.contact p {
  color: var(--muted);
}

.applications {
  padding-top: 54px;
  padding-bottom: 76px;
}

.section-wide {
  width: min(1320px, calc(100% - 48px));
}

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

.application-card {
  min-width: 0;
  display: flex;
  min-height: 176px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: white;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(19, 43, 58, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.application-card img {
  display: block;
  width: 100%;
  height: 122px;
  padding: 4px;
  background: #eef2f0;
  object-fit: contain;
}

.application-card-content {
  min-height: 54px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 16px;
  gap: 8px;
  align-items: center;
  padding: 10px 11px;
  border-top: 1px solid var(--line);
}

.application-card-content strong {
  font-size: 12px;
  line-height: 1.25;
}

.application-card-content i {
  color: var(--green-dark);
  font-size: 17px;
}

.application-card:hover,
.application-card:focus-visible {
  border-color: var(--green);
  outline: 2px solid rgba(31, 111, 85, 0.13);
  outline-offset: 2px;
  box-shadow: 0 12px 22px rgba(19, 75, 61, 0.12);
  transform: translateY(-2px);
}

.application-card:hover img,
.application-card:focus-visible img {
  transform: none;
}

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

.solution-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(19, 43, 58, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.solution-card:hover,
.solution-card.is-selected {
  border-color: #98beb0;
  box-shadow: 0 16px 32px rgba(8, 24, 30, 0.24);
  transform: translateY(-3px);
}

.solution-card-media {
  display: block;
  width: 100%;
  height: 188px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f7faf9;
  object-fit: contain;
  object-position: center;
}

.solution-card-body {
  display: flex;
  min-height: 258px;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.solution-card-body > p:not(.tag),
.solution-card li {
  color: var(--muted);
}

.solution-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
}

.solution-card li + li {
  margin-top: 8px;
}

.solution-link {
  width: fit-content;
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.solution-link::after {
  content: " ->";
}

.solution-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #b8cbc5;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

.solution-detail-media {
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #f6f9f8;
}

.solution-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.solution-detail-main {
  padding: 30px;
}

.solution-detail-main h3 {
  margin: 8px 0 10px;
  color: #163f36;
  font-size: 29px;
}

.solution-detail-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.solution-module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0;
}

.solution-module-list span {
  padding: 7px 9px;
  border: 1px solid #cfe0db;
  border-radius: 5px;
  background: #f8fcfa;
  color: #28564b;
  font-size: 12px;
  font-weight: 750;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d5e1dd;
  border-radius: 6px;
  background: #d5e1dd;
}

.solution-detail-grid > div {
  min-height: 92px;
  padding: 14px;
  background: white;
}

.solution-detail-grid span {
  display: block;
  margin-bottom: 7px;
  color: #637570;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solution-detail-grid strong {
  color: #243d38;
  font-size: 13px;
  line-height: 1.55;
}

.solution-risk {
  margin: 22px 0 0;
  padding: 13px 14px;
  border-left: 3px solid #b78425;
  background: #fff9eb;
  color: #624d24;
  font-size: 13px;
  line-height: 1.65;
}

.solution-detail-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.solution-detail-actions .btn {
  padding: 11px 14px;
  font-size: 13px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 20px;
}

.process-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 28px 0 0;
  border: 1px solid #d5e1dd;
  border-radius: 8px;
  background: #d5e1dd;
}

.process-module {
  min-height: 142px;
  padding: 18px;
  border: 0;
  background: white;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.process-module:hover,
.process-module:focus-visible {
  background: #f1f8f5;
  outline: 3px solid rgba(31, 111, 85, 0.16);
  outline-offset: -3px;
}

.process-module span,
.process-module strong,
.process-module small {
  display: block;
}

.process-module span {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.process-module strong {
  color: var(--green-dark);
  font-size: 17px;
}

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

.product-filter {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #cbd9d5;
  border-radius: 6px;
  background: white;
  color: #40534f;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.product-filter:hover,
.product-filter.is-active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: white;
}

.product-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 24px;
  align-items: start;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 6px 16px rgba(23, 47, 43, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover,
.product-card.is-selected {
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(23, 75, 61, 0.12);
  transform: translateY(-2px);
}

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

.product-card img {
  display: block;
  width: 100%;
  height: 150px;
  padding: 8px;
  background: #f6f9f8;
  object-fit: contain;
  object-position: center;
}

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

.product-category,
.detail-label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0;
  font-size: 19px;
}

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

.product-link {
  width: fit-content;
  margin-top: auto;
  padding: 13px 0 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.product-link::after {
  content: " ->";
}

.product-detail {
  position: sticky;
  top: 88px;
  overflow: hidden;
  border: 1px solid #bdd2ca;
  border-radius: 8px;
  background: #f9fcfb;
}

.product-detail-media {
  position: relative;
  height: 210px;
  background: #f6f9f8;
}

.product-detail-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 43, 37, 0.04), rgba(10, 43, 37, 0.4));
  content: "";
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.product-detail-main {
  padding: 24px;
}

.product-detail h3 {
  margin: 7px 0 10px;
  color: #183f37;
  font-size: 27px;
}

.product-detail-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid #d5e1dd;
  border-radius: 6px;
  background: #d5e1dd;
}

.detail-spec {
  min-height: 94px;
  padding: 13px;
  background: white;
}

.detail-spec span {
  display: block;
  margin-bottom: 7px;
  color: #637570;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-spec strong {
  display: block;
  color: #243d38;
  font-size: 13px;
  line-height: 1.5;
}

.detail-section + .detail-section {
  margin-top: 21px;
}

.detail-section h4 {
  margin: 0 0 9px;
  color: #24463e;
  font-size: 14px;
}

.detail-section p,
.detail-section li {
  color: #536764;
  font-size: 13px;
  line-height: 1.6;
}

.detail-section p {
  margin: 0;
}

.detail-section ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
}

.product-detail-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.product-detail-actions .btn {
  padding: 11px 14px;
  font-size: 13px;
}

.updates {
  padding-top: 0;
}

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

.update-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: white;
}

.update-media {
  display: grid;
  height: 164px;
  place-items: center;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f6f9f8;
}

.update-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.update-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.update-kind {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-card h3 {
  margin-top: 14px;
}

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

.update-card small {
  color: var(--muted);
  font-weight: 700;
}

.update-empty {
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px dashed #c6d4d1;
  color: var(--muted);
  text-align: center;
}

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

.process article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.process span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-weight: 850;
}

.rfq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.note {
  margin-top: 22px;
  padding: 16px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: #fff8e8;
  color: #5f4516;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.rfq-form label {
  display: grid;
  gap: 7px;
  color: #2c3c49;
  font-size: 13px;
  font-weight: 800;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c8d3db;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
  font-size: 14px;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 111, 85, 0.18);
  border-color: var(--green);
}

.form-result {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

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

.quality-grid ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.quality-grid li + li {
  margin-top: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: 40px;
  align-items: center;
  padding: 76px max(18px, calc((100vw - 1120px) / 2));
  color: white;
  background:
    linear-gradient(90deg, rgba(14, 51, 44, 0.94), rgba(22, 75, 61, 0.78)),
    url("assets/solution-frying-line.jpg");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, contain;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.contact-panel a,
.contact-panel span {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.footer {
  padding: 22px max(18px, calc((100vw - 1120px) / 2));
  color: var(--muted);
  background: #f8faf9;
  font-size: 13px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--green-dark);
  font-weight: 750;
}

.footer-inner {
  width: min(1320px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}

.section-action-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.text-action,
.catalog-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.text-action {
  min-height: 42px;
  padding: 0 2px;
  border-bottom: 1px solid #9ebbb2;
}

.text-action:hover,
.text-action:focus-visible {
  color: var(--green);
  border-bottom-color: var(--green);
}

.home-featured-solutions {
  padding-top: 78px;
  padding-bottom: 78px;
}

.home-solution-grid .solution-card-body {
  min-height: 220px;
}

.home-solution-grid .catalog-kicker {
  margin-bottom: 10px;
}

.catalog-kicker {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-module-grid a.process-module {
  display: block;
}

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

.featured-equipment {
  min-width: 0;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.featured-equipment:hover,
.featured-equipment:focus-visible {
  border-color: var(--green);
  box-shadow: 0 10px 22px rgba(23, 75, 61, 0.11);
  transform: translateY(-2px);
}

.featured-equipment img {
  display: block;
  width: 74px;
  height: 64px;
  padding: 4px;
  border-radius: 5px;
  background: #f4f8f6;
  object-fit: contain;
}

.featured-equipment span,
.featured-equipment small,
.featured-equipment strong {
  display: block;
  min-width: 0;
}

.featured-equipment small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-equipment strong {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.3;
}

.featured-equipment > i {
  color: var(--green-dark);
}

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

.home-cta {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #183e35 url("assets/nut-roaster.jpg") right center / contain no-repeat;
  isolation: isolate;
}

.home-cta-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 64%;
  z-index: -1;
  background: rgba(10, 38, 32, 0.9);
  box-shadow: 150px 0 130px rgba(10, 38, 32, 0.46);
}

.home-cta-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.home-cta-content h2,
.home-cta-content > p {
  max-width: 650px;
}

.home-cta-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.home-cta-content .eyebrow {
  color: #9ee3c7;
}

.home-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.home-contact-row a:hover,
.home-contact-row a:focus-visible {
  color: white;
  text-decoration: underline;
}

.page-hero {
  position: relative;
  min-height: 400px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background-color: #163f36;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  isolation: isolate;
}

.page-hero-applications {
  background-image: url("assets/application-fresh-produce.jpg");
  background-position: right center;
}

.page-hero-solutions {
  background-image: url("assets/continuous-fryer.jpg");
}

.page-hero-support {
  background-image: url("assets/solution-frying-line.jpg");
}

.page-hero-rfq {
  background-image: url("assets/round-pot-fryer.jpg");
}

.page-hero-equipment {
  background-image: url("assets/continuous-fryer.jpg");
  background-position: right center;
}

.page-hero-resources {
  background-image: url("assets/mesh-belt-dryer.jpg");
  background-position: right center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 60%;
  z-index: -1;
  background: rgba(9, 34, 29, 0.86);
  box-shadow: 160px 0 150px rgba(9, 34, 29, 0.5);
}

.page-hero-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 64px;
}

.page-hero h1 {
  max-width: 720px;
  font-size: 52px;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.65;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: white;
  text-decoration: underline;
}

.catalog-detail-hero {
  background-color: #f5f8f7;
  background-position: right center;
  background-size: contain;
}

.product-detail-hero {
  background-size: contain;
}

.catalog-section {
  padding-top: 72px;
}

.catalog-grid {
  display: grid;
  gap: 16px;
}

.application-catalog-grid,
.solution-catalog-grid,
.equipment-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 7px 18px rgba(19, 43, 58, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.catalog-card:hover,
.catalog-card:focus-visible {
  border-color: var(--green);
  outline: 2px solid rgba(31, 111, 85, 0.12);
  outline-offset: 2px;
  box-shadow: 0 14px 28px rgba(19, 75, 61, 0.13);
  transform: translateY(-3px);
}

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

.catalog-card > img {
  display: block;
  width: 100%;
  height: 230px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #f5f8f7;
  object-fit: contain;
}

.solution-list-card > img,
.equipment-list-card > img {
  padding: 10px;
  object-fit: contain;
}

.catalog-card-body {
  display: flex;
  min-height: 270px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.catalog-card-body h2 {
  margin: 9px 0 10px;
  font-size: 23px;
}

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

.catalog-card-body .catalog-action {
  margin-top: auto;
  padding-top: 22px;
}

.catalog-module-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 16px;
}

.catalog-module-row span {
  padding: 5px 7px;
  border: 1px solid #d4e0dc;
  border-radius: 4px;
  color: #49645d;
  background: #f8fbfa;
  font-size: 10px;
  font-weight: 700;
}

.catalog-filters {
  margin-top: 0;
  margin-bottom: 24px;
}

.line-catalog-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 44px 0 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.line-catalog-intro h2,
.catalog-subheading h2 {
  margin: 7px 0 8px;
  font-size: 26px;
}

.line-catalog-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.line-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 50px;
}

.line-catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.line-catalog-card:hover,
.line-catalog-card:focus-visible {
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(23, 75, 61, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.line-catalog-card img {
  display: block;
  width: 100%;
  height: 168px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f5f8f7;
  object-fit: contain;
}

.line-catalog-card > :not(img) {
  margin-left: 16px;
  margin-right: 16px;
}

.line-catalog-card .catalog-kicker {
  margin-top: 16px;
}

.line-catalog-card h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 18px;
}

.line-catalog-card p {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.line-catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  padding-bottom: 16px;
  color: var(--green-dark);
  font-size: 12px;
}

.line-catalog-meta strong {
  font-weight: 750;
}

.catalog-subheading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.catalog-subheading > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.catalog-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.catalog-search-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.catalog-search {
  min-height: 48px;
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid #cbd8d4;
  border-radius: 6px;
  background: white;
}

.catalog-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 111, 85, 0.12);
}

.catalog-search i {
  color: var(--green-dark);
  font-size: 20px;
}

.catalog-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.equipment-list-card {
  position: relative;
}

.equipment-card-link {
  min-height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.equipment-card-link > img {
  display: block;
  width: 100%;
  height: 230px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #f5f8f7;
  object-fit: contain;
}

.compare-select {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-top: 1px solid var(--line);
  color: #3d5851;
  background: #f8fbfa;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.compare-select input {
  width: 16px;
  height: 16px;
  accent-color: var(--green-dark);
}

.compare-bar {
  position: fixed;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 30;
  width: min(860px, calc(100% - 48px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  border: 1px solid #a9c4ba;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 46px rgba(10, 45, 36, 0.22);
}

.compare-bar[hidden] {
  display: none;
}

.compare-bar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-bar i {
  color: var(--green-dark);
  font-size: 24px;
}

.compare-bar span {
  color: var(--muted);
  font-size: 12px;
}

.compare-dialog {
  width: min(1050px, calc(100% - 32px));
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: auto;
  border: 1px solid #b8ccc5;
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 70px rgba(7, 31, 25, 0.28);
}

.compare-dialog::backdrop {
  background: rgba(6, 26, 22, 0.66);
}

.compare-dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.compare-dialog-header h2 {
  font-size: 25px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #c8d5d1;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--green);
  color: var(--green-dark);
}

#compareContent {
  padding: 24px;
}

.compare-table-scroll,
.model-table-scroll {
  overflow-x: auto;
}

.compare-table,
.model-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 13px;
}

.compare-table th,
.compare-table td,
.model-table th,
.model-table td {
  min-width: 170px;
  padding: 15px;
  border: 1px solid #d5e0dc;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.compare-table th:first-child,
.model-table th {
  min-width: 145px;
  color: var(--green-dark);
  background: #edf5f2;
}

.compare-table thead th {
  color: var(--ink);
  background: #f6f9f8;
}

.compare-table thead img {
  width: 150px;
  height: 92px;
  display: block;
  margin-bottom: 10px;
  object-fit: contain;
}

.compare-dialog-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.buyer-prep-grid,
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.buyer-prep-grid article,
.boundary-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.buyer-prep-grid i,
.boundary-grid i {
  color: var(--green-dark);
  font-size: 30px;
}

.buyer-prep-grid span {
  display: block;
  margin: 24px 0 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.buyer-prep-grid p,
.boundary-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.scope-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.scope-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.scope-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d7e1de;
  border-radius: 8px;
  background: #d7e1de;
}

.scope-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: white;
  color: #334b45;
  font-weight: 700;
}

.scope-list i {
  color: var(--green);
  font-size: 20px;
}

.detail-page {
  padding-top: 72px;
}

.detail-intro-grid,
.detail-media-layout,
.detail-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.detail-intro-grid > div:first-child > p:not(.eyebrow),
.detail-copy > p:not(.eyebrow),
.detail-two-column p,
.detail-two-column li {
  color: var(--muted);
}

.detail-check-panel {
  padding: 24px;
  border-left: 4px solid var(--blue);
  background: var(--soft-2);
}

.detail-check-panel > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-check-panel ul,
.check-list {
  display: grid;
  gap: 9px;
  margin: 15px 0 0;
  padding-left: 20px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0;
  overflow: hidden;
  border: 1px solid #d6e0dd;
  border-radius: 8px;
  background: #d6e0dd;
}

.process-flow > div {
  min-height: 126px;
  padding: 16px;
  background: white;
}

.process-flow span,
.process-flow strong {
  display: block;
}

.process-flow span {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.process-flow strong {
  font-size: 13px;
  line-height: 1.45;
}

.detail-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 52px 0;
  padding: 34px;
  border-top: 1px solid #cbdad5;
  border-bottom: 1px solid #cbdad5;
  background: #f4f8f6;
}

.detail-feature-band p:not(.eyebrow) {
  color: var(--muted);
}

.related-section {
  margin-top: 58px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

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

.related-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.related-card:hover,
.related-card:focus-visible {
  border-color: var(--green);
}

.related-card img {
  width: 86px;
  height: 72px;
  padding: 4px;
  background: #f5f8f7;
  object-fit: contain;
}

.insight-related-card img {
  padding: 4px;
  object-fit: contain;
}

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

.related-card small {
  color: var(--blue);
  font-size: 10px;
  text-transform: uppercase;
}

.related-card strong {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.detail-media-frame {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f9f8;
}

.detail-media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.catalog-media-frame {
  min-height: 0;
  display: block;
  margin: 0;
}

.detail-media-frame.catalog-media-frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.catalog-media-frame figcaption {
  width: 100%;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
}

.full-sheet-frame {
  min-height: 0;
  display: block;
  margin: 0;
  padding: 14px;
}

.full-sheet-link {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  border: 1px solid #d9e2df;
  background: white;
}

.detail-media-frame.full-sheet-frame img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.full-sheet-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.full-sheet-frame figcaption a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  white-space: nowrap;
}

.detail-copy h2 {
  margin-bottom: 14px;
}

.detail-fact-grid,
.detail-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d5e1dd;
  border-radius: 8px;
  background: #d5e1dd;
}

.detail-fact-grid {
  margin-top: 42px;
}

.detail-fact-grid > div,
.detail-spec-list > div {
  min-height: 118px;
  padding: 18px;
  background: white;
}

.detail-fact-grid span,
.detail-spec-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.detail-fact-grid strong,
.detail-spec-list strong {
  display: block;
  color: #344b46;
  font-size: 13px;
  line-height: 1.55;
}

.detail-spec-list {
  margin-top: 24px;
}

.product-purchase-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.75;
}

.ideal-applications {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--green);
  background: #f2f7f5;
}

.ideal-applications span,
.confirm-before-quote span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ideal-applications strong {
  color: #304a43;
  font-size: 14px;
  line-height: 1.6;
}

.product-spec-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid #d3dfdb;
  border-radius: 8px;
  background: #d3dfdb;
}

.product-spec-band article {
  min-height: 146px;
  padding: 19px;
  background: white;
}

.product-spec-band span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-spec-band strong {
  color: #344b46;
  font-size: 13px;
  line-height: 1.6;
}

.confirm-before-quote {
  margin-top: 22px;
  padding: 17px 18px;
  border: 1px solid #d5e1dd;
  border-radius: 7px;
  background: #f7faf9;
}

.confirm-before-quote p {
  margin: 0;
  color: #40564f;
  font-size: 13px;
  line-height: 1.65;
}

.model-section,
.faq-section {
  margin-top: 62px;
}

.model-table th,
.model-table td {
  min-width: 160px;
}

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

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

.faq-list details {
  border: 1px solid #d2dfda;
  border-radius: 7px;
  background: white;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: #2e4740;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list summary i {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 19px;
  transition: transform 160ms ease;
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.source-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 46px;
  padding: 16px 18px;
  border: 1px solid #d6e0dd;
  border-radius: 7px;
  background: #f7faf9;
}

.source-note i {
  color: var(--green-dark);
  font-size: 22px;
}

.source-note p {
  margin: 0;
  color: #51655f;
  font-size: 12px;
  line-height: 1.65;
}

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

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

.acceptance-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 32px;
  padding: 28px;
  border-top: 1px solid #c8d7d2;
  border-bottom: 1px solid #c8d7d2;
  background: #f2f7f5;
}

.acceptance-panel p:last-child {
  margin: 0;
  color: #445b54;
  line-height: 1.7;
}

.boundary-note {
  margin: 28px 0 0;
  padding: 17px 18px;
  border-left: 4px solid var(--amber);
  background: #fff8e8;
  color: #654b1b;
  font-size: 13px;
  line-height: 1.65;
}

.detail-two-column {
  margin-top: 56px;
}

.numbered-process {
  display: grid;
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8e1df;
  border-radius: 8px;
  background: #d8e1df;
  counter-reset: process-step;
  list-style: none;
}

.numbered-process li {
  padding: 14px 16px;
  background: white;
  counter-increment: process-step;
}

.numbered-process li::before {
  margin-right: 12px;
  color: var(--blue);
  font-weight: 850;
  content: counter(process-step, decimal-leading-zero);
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding: 34px;
  border: 1px solid #bcd1c9;
  border-radius: 8px;
  background: #edf6f2;
}

.detail-cta h2 {
  max-width: 720px;
  font-size: 30px;
}

.published-content-block {
  margin-top: 54px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.published-content-block p {
  max-width: 820px;
  color: var(--muted);
}

.published-content-block h3 {
  margin-top: 24px;
}

.published-content-bullet {
  position: relative;
  padding-left: 20px;
}

.published-content-bullet::before {
  position: absolute;
  top: 0.7em;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.page-end-cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 82px;
}

.support-stage-list {
  display: grid;
}

.support-stage-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(220px, 0.44fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.support-stage-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.support-stage-list > article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.support-stage-list h2 {
  font-size: 28px;
}

.support-stage-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.support-stage-list article > strong {
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.55;
}

.service-scope-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.service-scope-grid article {
  min-width: 0;
  padding: 22px;
  background: white;
}

.service-scope-grid i {
  color: var(--green);
  font-size: 26px;
}

.service-scope-grid h3 {
  margin: 18px 0 10px;
  font-size: 17px;
  line-height: 1.3;
}

.service-scope-grid p,
.service-scope-grid strong {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.service-scope-grid strong {
  margin-top: 14px;
  color: var(--green-dark);
}

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

.resource-guide-grid article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 24px;
  background: white;
}

.resource-guide-grid i {
  color: var(--green);
  font-size: 28px;
}

.resource-guide-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

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

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

.resource-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.resource-card-image {
  display: grid;
  place-items: center;
  height: 220px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #f5f8f7;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resource-card-body {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 20px;
}

.resource-card-body > small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-card-body h2 {
  margin: 9px 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

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

.resource-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.resource-card-actions .text-link {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.resource-card-actions .btn.secondary {
  min-height: 38px;
  padding: 0 11px;
  border-color: #bfd0ca;
  color: var(--green-dark);
  background: white;
  font-size: 11px;
}

.resource-card-actions .btn.secondary:hover {
  background: #edf5f2;
}

.insight-search-row {
  margin-bottom: 18px;
}

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

.insight-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.insight-card-image {
  display: block;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e8efed;
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.insight-card:hover .insight-card-image img {
  transform: none;
}

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

.insight-card-body > small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card-body h2 {
  margin: 9px 0 10px;
  font-size: 23px;
  line-height: 1.25;
}

.insight-card-body h2 a:hover,
.insight-card-body h2 a:focus-visible {
  color: var(--green);
}

.insight-card-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.insight-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.insight-card-meta .text-link {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

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

.home-insight-grid .insight-card-image {
  height: 180px;
}

.home-insight-grid .insight-card-body {
  min-height: 230px;
  padding: 18px;
}

.home-insight-grid .insight-card-body h3 {
  margin: 8px 0 10px;
  font-size: 19px;
  line-height: 1.3;
}

.home-insight-grid .insight-card-body h3 a:hover,
.home-insight-grid .insight-card-body h3 a:focus-visible {
  color: var(--green);
}

.insight-detail-hero {
  min-height: 500px;
  background-color: #123e35;
  background-image: var(--article-hero);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
}

.insight-detail-hero .page-hero-overlay {
  width: 72%;
  background: rgba(8, 31, 27, 0.9);
  box-shadow: 180px 0 150px rgba(8, 31, 27, 0.55);
}

.insight-detail-hero h1 {
  max-width: 840px;
  font-size: 50px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(250px, 300px);
  gap: 58px;
  align-items: start;
}

.article-prose {
  min-width: 0;
}

.article-lead {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.article-lead p {
  margin: 0;
  color: #344b52;
  font-size: 19px;
  line-height: 1.75;
}

.article-lead p + p {
  margin-top: 18px;
}

.article-takeaway,
.article-boundary {
  margin: 32px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  background: var(--soft);
}

.article-takeaway strong,
.article-boundary strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.article-takeaway p,
.article-boundary p {
  margin: 0;
  color: #3f555b;
  line-height: 1.7;
}

.article-boundary {
  border-left-color: #b7791f;
  background: #fff8e9;
}

.article-boundary strong {
  color: #76531d;
}

.article-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 88px;
}

.article-section h2 {
  margin-bottom: 18px;
  font-size: 31px;
  line-height: 1.2;
}

.article-section p {
  margin: 0;
  color: #43575e;
  font-size: 15px;
  line-height: 1.82;
}

.article-section p + p {
  margin-top: 16px;
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #334950;
}

.article-list li {
  padding-left: 4px;
  line-height: 1.65;
}

.article-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: white;
}

.article-table th,
.article-table td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
  font-size: 12px;
  line-height: 1.55;
}

.article-table th {
  color: var(--green-dark);
  background: #edf4f2;
  font-size: 11px;
  text-transform: uppercase;
}

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

.article-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #354b52;
  line-height: 1.55;
}

.article-checklist i {
  color: var(--green);
  font-size: 19px;
}

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

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

.article-faq summary {
  padding: 18px 30px 18px 0;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.article-faq p {
  padding: 0 30px 20px 0;
}

.article-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 18px;
}

.article-sidebar-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.article-sidebar-block > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--green-dark);
  font-size: 13px;
}

.article-sidebar nav {
  display: grid;
  gap: 9px;
}

.article-sidebar nav a {
  color: #51636a;
  font-size: 12px;
  line-height: 1.45;
}

.article-sidebar nav a:hover,
.article-sidebar nav a:focus-visible {
  color: var(--green);
}

.article-sidebar-action > i {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 30px;
}

.article-sidebar-action p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.article-sidebar-action .btn {
  width: 100%;
  font-size: 12px;
}

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

.article-related-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 20px;
  gap: 13px;
  align-items: center;
  min-height: 104px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.article-related-card:hover,
.article-related-card:focus-visible {
  border-color: #90b3a7;
}

.article-related-image {
  display: grid;
  place-items: center;
  width: 86px;
  height: 76px;
  overflow: hidden;
  background: #f2f6f5;
}

.article-related-image img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

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

.article-related-card small {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-related-card strong {
  font-size: 13px;
  line-height: 1.35;
}

.article-related-card > i {
  color: var(--green);
}

.standalone-rfq {
  padding-top: 72px;
}

.rfq-contact-panel {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.rfq-contact-panel > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfq-contact-panel a {
  width: fit-content;
  color: var(--green-dark);
  font-weight: 750;
}

.rfq-contact-panel small {
  color: var(--muted);
}

.rfq-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.rfq-privacy {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.rfq-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.after-rfq {
  margin-top: 0;
}

.after-rfq-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d7e1de;
  border-radius: 8px;
  background: #d7e1de;
}

.after-rfq-steps span {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: white;
  color: #40544f;
  font-size: 13px;
  font-weight: 700;
}

.after-rfq-steps strong {
  color: var(--blue);
}

@media (max-width: 1120px) {
  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-legal {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-bottom: 1px solid #edf1ef;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

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

  .project-field {
    min-height: 70px;
  }

  .project-field:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .project-field:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .project-submit {
    grid-column: 1 / -1;
    margin: 8px 0 0;
  }

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

  .featured-equipment-grid,
  .buyer-prep-grid,
  .boundary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-overlay {
    width: 70%;
  }
}

@media (max-width: 980px) {

  .intro-grid,
  .solution-grid,
  .line-catalog-grid,
  .process,
  .updates-grid,
  .home-insight-grid,
  .product-explorer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.split,
  .rfq,
  .contact,
  .solution-detail,
  .scope-band,
  .detail-intro-grid,
  .detail-media-layout,
  .detail-two-column,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .compact-process,
  .after-rfq-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-spec-band,
  .line-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .support-stage-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .support-stage-list article > strong {
    grid-column: 2;
  }

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

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

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

  .line-catalog-intro,
  .catalog-subheading {
    align-items: start;
    flex-direction: column;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .nav {
    right: 12px;
    left: 12px;
  }

  .service-scope-grid,
  .resource-guide-grid,
  .resource-grid,
  .insight-grid,
  .home-insight-grid,
  .article-related-grid,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .insight-card-image {
    height: 205px;
  }

  .insight-card-body {
    min-height: 0;
  }

  .insight-card-meta {
    margin-top: 18px;
  }

  .insight-detail-hero {
    min-height: 520px;
    background-position: right center;
  }

  .insight-detail-hero .page-hero-overlay {
    width: 100%;
    background: rgba(8, 31, 27, 0.82);
    box-shadow: none;
  }

  .insight-detail-hero h1 {
    font-size: 36px;
  }

  .article-layout {
    gap: 34px;
  }

  .article-lead p {
    font-size: 17px;
  }

  .article-section h2 {
    font-size: 26px;
  }

  .article-checklist ul {
    grid-template-columns: 1fr;
  }

  .resource-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: 0;
    padding-bottom: 280px;
  }

  .hero-media {
    inset: auto 0 0;
    height: 280px;
    background-position: center;
    background-size: contain;
  }

  .hero-overlay {
    inset: 0 0 280px;
    width: auto;
    background: #173e35;
    box-shadow: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 56px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-rail {
    width: calc(100% - 24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding: 10px 12px 12px;
  }

  .project-field {
    min-height: 72px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
    padding: 10px 8px;
    border-top: 0;
    border-left: 0;
  }

  .project-field:nth-child(2),
  .project-field:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .project-field:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .project-field > i {
    font-size: 21px;
  }

  .project-field small {
    font-size: 8px;
  }

  .project-field select {
    min-width: 0;
    font-size: 11px;
  }

  .project-submit {
    grid-column: 1 / -1;
    min-height: 50px;
  }

  .section-wide {
    width: calc(100% - 32px);
  }

  .applications {
    padding-top: 46px;
  }

  .applications .section-heading {
    margin-bottom: 24px;
  }

  .application-grid {
    width: calc(100vw - 16px);
    grid-template-columns: none;
    grid-auto-columns: minmax(180px, 72vw);
    grid-auto-flow: column;
    gap: 12px;
    margin-right: -16px;
    padding: 3px 16px 16px 1px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .application-card {
    scroll-snap-align: start;
  }

  .section {
    padding: 62px 0;
  }

  .intro-grid,
  .solution-grid,
  .process,
  .quality-grid,
  .updates-grid,
  .product-explorer,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .product-detail {
    position: static;
  }

  .solution-card-media {
    height: 205px;
  }

  .solution-detail-media {
    min-height: 250px;
  }

  .solution-detail-main {
    padding: 22px 18px;
  }

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

  .rfq-form {
    padding: 18px;
  }

  .footer-inner,
  .detail-cta,
  .detail-feature-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    display: flex;
  }

  .footer-links {
    gap: 10px 16px;
  }

  .section-action-row {
    justify-content: flex-start;
  }

  .featured-equipment-grid,
  .buyer-prep-grid,
  .boundary-grid,
  .application-catalog-grid,
  .solution-catalog-grid,
  .equipment-catalog-grid,
  .related-grid,
  .detail-fact-grid,
  .detail-spec-list,
  .after-rfq-steps {
    grid-template-columns: 1fr;
  }

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

  .home-cta {
    min-height: 520px;
  }

  .home-cta-overlay,
  .page-hero-overlay {
    width: 100%;
    background: rgba(8, 31, 27, 0.8);
    box-shadow: none;
  }

  .home-cta-content {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .home-contact-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 440px;
    background-position: center bottom;
    background-size: contain;
  }

  .page-hero-content {
    width: calc(100% - 32px);
    padding: 48px 0 56px;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .catalog-detail-hero,
  .product-detail-hero {
    background-position: center bottom;
    background-size: contain;
  }

  .catalog-card > img {
    height: 220px;
  }

  .equipment-card-link > img {
    height: 220px;
  }

  .catalog-card-body {
    min-height: 240px;
  }

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

  .product-spec-band,
  .line-fact-grid {
    grid-template-columns: 1fr;
  }

  .product-spec-band article {
    min-height: 0;
  }

  .catalog-search-row,
  .compare-bar,
  .compare-bar > div,
  .acceptance-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-search-row > span {
    display: none;
  }

  .compare-bar {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 13px;
  }

  .compare-bar > div:last-child {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }

  .compare-bar > div:last-child .btn {
    width: 100%;
  }

  .compare-dialog-header,
  #compareContent {
    padding: 18px;
  }

  .compare-dialog-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-actions .btn,
  .compare-dialog-actions .btn {
    width: 100%;
  }

  .acceptance-panel {
    display: flex;
    gap: 12px;
    padding: 22px 18px;
  }

  .process-flow > div {
    min-height: 88px;
  }

  .process-flow span {
    margin-bottom: 10px;
  }

  .detail-feature-band {
    display: flex;
    padding: 26px 20px;
  }

  .detail-media-frame {
    min-height: 280px;
  }

  .detail-media-frame.full-sheet-frame {
    min-height: 0;
    padding: 8px;
  }

  .detail-media-frame.full-sheet-frame img {
    width: 100%;
    max-height: none;
  }

  .full-sheet-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .detail-cta {
    display: flex;
    padding: 26px 20px;
  }

  .detail-cta h2 {
    font-size: 25px;
  }

  .support-stage-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .support-stage-list h2 {
    font-size: 23px;
  }

  .related-card {
    grid-template-columns: 74px minmax(0, 1fr) 18px;
  }

  .related-card img {
    width: 74px;
    height: 64px;
  }
}
