:root {
  color-scheme: light;
  --ink: #172026;
  --ink-soft: #4e5b63;
  --muted: #fbf0f0;
  --surface: #ffffff;
  --surface-strong: #fffbfb;
  --primary: #ef6f6f;
  --primary-dark: #9d3039;
  --coral: #ef6f6f;
  --gold: #c94f5d;
  --line: #ead9dc;
  --shadow: 0 20px 60px rgba(18, 34, 39, 0.14);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
}

.shell {
  width: min(100% - 40px, var(--shell));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-bleed {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px 32px;
  color: #ffffff;
  background: rgba(38, 18, 22, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(17, 34, 39, 0.08);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  font-size: 12px;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-nav a[aria-current="page"] {
  background: rgba(239, 111, 111, 0.2);
}

.site-header.is-solid .site-nav a:hover,
.site-header.is-solid .site-nav a:focus-visible {
  background: var(--muted);
}

.site-header.is-solid .site-nav a[aria-current="page"] {
  color: var(--primary-dark);
  background: var(--muted);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 76vh;
  max-height: 820px;
  overflow: hidden;
  color: #ffffff;
  background: #2b1519;
}

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

.hero-image {
  object-fit: cover;
  object-position: 62% 52%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(34, 16, 19, 0.88) 0%, rgba(34, 16, 19, 0.64) 42%, rgba(34, 16, 19, 0.16) 100%),
    linear-gradient(0deg, rgba(110, 30, 38, 0.34) 0%, rgba(34, 16, 19, 0.06) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd2d2;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 68px;
  line-height: 0.95;
  font-weight: 850;
}

h2 {
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 780;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.contact-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 164px 0 96px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 12%, rgba(239, 111, 111, 0.32), transparent 36%),
    linear-gradient(135deg, #2a1519 0%, #6e1f2a 58%, #9d3039 100%);
}

.page-hero .shell {
  max-width: 940px;
}

.page-hero .eyebrow {
  color: #ffd2d2;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: 54px;
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
  border-color: var(--coral);
}

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

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

.button.outline.light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.button.full-width {
  width: 100%;
}

.proof-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

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

.proof-grid div {
  min-height: 116px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  display: block;
  color: var(--primary-dark);
  font-size: 29px;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.company-grid,
.integration-grid,
.manufacturing-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-intro p,
.section-heading p,
.integration-grid p,
.contact-grid p {
  color: var(--ink-soft);
}

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

.role-item {
  min-height: 270px;
  padding: 30px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-top: 5px solid var(--primary);
  border-radius: var(--radius);
}

.role-item:nth-child(2) {
  border-top-color: var(--coral);
}

.role-item span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.role-item p {
  color: var(--ink-soft);
}

.muted-band {
  padding: 92px 0;
  background: var(--muted);
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: var(--primary-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 720;
}

.image-frame,
.wide-visual,
.visual-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-frame {
  aspect-ratio: 1.35;
}

.image-frame img,
.wide-visual img,
.visual-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 38px;
}

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

.feature-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0 0 26px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(80, 26, 32, 0.07);
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 111, 111, 0.55);
  outline: none;
}

.feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #fff6f6;
}

.feature-card > span {
  margin: 24px 24px 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.feature-card h3,
.feature-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.text-only .feature-card {
  padding-top: 28px;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.media-split.reverse {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
}

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

.mini-product-row img {
  width: 100%;
  min-height: 250px;
  padding: 20px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(80, 26, 32, 0.07);
}

.page-cta {
  max-width: 860px;
  text-align: center;
}

.page-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-strip article {
  min-height: 258px;
  padding: 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.process-strip article:last-child {
  border-right: 0;
}

.process-strip span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.process-strip p,
.platform-grid p,
.platform-grid li,
.product-card p,
.manufacturing-points p,
.footer-grid span,
.footer-grid p {
  color: var(--ink-soft);
}

.platform-band {
  padding: 92px 0;
  color: #ffffff;
  background: #2b1519;
}

.platform-band .section-heading p,
.platform-band .platform-grid li,
.platform-band .platform-grid p {
  color: rgba(255, 255, 255, 0.78);
}

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

.platform-grid article {
  min-height: 282px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 210, 210, 0.18);
  border-radius: var(--radius);
}

.platform-grid h3 {
  color: #ffffff;
  font-size: 26px;
}

.platform-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.platform-grid li {
  position: relative;
  padding-left: 20px;
}

.platform-grid li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.integration-grid {
  align-items: center;
}

.metric-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.metric-line span {
  min-height: 96px;
  padding: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
}

.metric-line strong {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 32px;
  line-height: 1;
}

.wide-visual {
  aspect-ratio: 1.85;
}

.wide-visual img {
  object-fit: contain;
  background: #ffffff;
}

.product-band {
  padding: 92px 0;
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 760;
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--primary);
  outline: none;
}

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

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(80, 26, 32, 0.07);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

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

.product-card.featured {
  grid-column: span 1;
  border-top: 5px solid var(--coral);
}

.product-media {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 26px;
  background: #fff4f4;
  aspect-ratio: 1.45;
}

.product-media img {
  max-height: 220px;
  object-fit: contain;
}

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

.product-cluster img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.product-cluster img:nth-child(3) {
  grid-column: 1 / -1;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-family {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

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

.spec-list div {
  min-height: 70px;
  padding: 12px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-list dt {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 720;
}

.spec-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.25;
}

.manufacturing-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

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

.manufacturing-points article {
  min-height: 244px;
  padding: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.visual-band {
  background: #fbf0f0;
}

.no-shadow {
  box-shadow: none;
}

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

.visual-grid figure {
  position: relative;
  aspect-ratio: 2.25;
  border-radius: 0;
  box-shadow: none;
}

.visual-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(23, 32, 38, 0.74);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.contact-grid {
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 16px 18px;
  background: #fff7f5;
  border: 1px solid rgba(239, 111, 111, 0.26);
  border-radius: var(--radius);
}

.contact-details strong {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--coral-dark);
  font-size: 18px;
  font-weight: 820;
}

.brief-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brief-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.hidden-field {
  display: none;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brief-form textarea {
  resize: vertical;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(15, 159, 179, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 720;
}

.site-footer {
  padding: 34px 0;
  background: #172026;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid img {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: var(--radius);
}

.footer-grid strong,
.footer-grid span {
  display: block;
}

.footer-grid span,
.footer-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1120px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .process-strip article:nth-child(3n) {
    border-right: 0;
  }

  .process-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding: 10px 20px;
  }

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

  .site-nav {
    position: fixed;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 620px;
    height: 78vh;
  }

  .hero-image {
    object-position: 66% 52%;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 31px;
  }

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

  .proof-grid,
  .company-grid,
  .layout-split,
  .media-split,
  .media-split.reverse,
  .section-heading,
  .integration-grid,
  .manufacturing-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .role-panel,
  .platform-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .role-item {
    min-height: auto;
  }

  .section-heading {
    gap: 8px;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid figure {
    aspect-ratio: 1.65;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .section,
  .muted-band,
  .platform-band,
  .product-band {
    padding: 68px 0;
  }

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 590px;
    height: 82vh;
  }

  .hero-content {
    padding-top: 86px;
  }

  h1 {
    font-size: 41px;
  }

  .page-hero {
    padding: 126px 0 66px;
  }

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

  .page-hero p {
    font-size: 17px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 18px;
  }

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

  .button {
    width: 100%;
  }

  .proof-grid,
  .process-strip,
  .product-grid,
  .manufacturing-points,
  .metric-line,
  .mini-product-row {
    grid-template-columns: 1fr;
  }

  .process-strip article,
  .process-strip article:nth-child(3n),
  .process-strip article:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-strip article:last-child {
    border-bottom: 0;
  }

  .product-media {
    min-height: 222px;
  }

  .feature-card img {
    height: 190px;
  }

  .mini-product-row img {
    min-height: 210px;
  }

  .product-cluster img {
    height: 126px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .brief-form {
    padding: 22px;
  }
}
