:root {
  --background: #f3f5f7;
  --foreground: #111a27;
  --card: #ffffff;
  --card-foreground: #111a27;
  --popover: #ffffff;
  --popover-foreground: #111a27;
  --primary: #208c9b;
  --primary-foreground: #ffffff;
  --secondary: #e8edf2;
  --secondary-foreground: #111a27;
  --muted: #edf1f4;
  --muted-foreground: #637083;
  --accent: #f1f4f7;
  --accent-foreground: #111a27;
  --destructive: #e60012;
  --border: #d9e0e7;
  --input: #cdd6df;
  --ring: #208c9b;
  --radius: 0.25rem;
  --mtx-black: #06131f;
  --mtx-blue: #208c9b;
  --mtx-cobalt: #176d78;
  --tsugami-blue: #005bac;
  --tsugami-red: #e60012;
  --navy: #102c45;
  --navy-soft: var(--tsugami-blue);
  --steel: #7e8a98;
  --red: var(--tsugami-red);
  --paper: #f3f5f7;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.section-wrap {
  width: min(100% - 40px, 1440px);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid #dce4e8;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(16, 44, 69, 0.07);
}

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

.mtx-logo {
  display: block;
  width: 184px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  color: #334b60;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--mtx-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 18px;
  background: var(--mtx-blue);
  color: #fff;
  transition: background 160ms ease;
}

.nav-cta:hover {
  background: var(--mtx-cobalt);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #ccd7dd;
  background: transparent;
  color: var(--navy);
}

.mobile-nav {
  position: absolute;
  top: 84px;
  right: 0;
  left: 0;
  display: grid;
  padding: 18px 22px 24px;
  border-top: 1px solid #dce4e8;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 24px 45px rgba(16, 44, 69, 0.18);
}

.mobile-nav a {
  padding: 15px 4px;
  border-bottom: 1px solid #e0e7eb;
  font-size: 15px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 34%, rgba(32, 140, 155, 0.38), transparent 31%),
    linear-gradient(112deg, var(--mtx-black) 0%, var(--navy) 58%, var(--tsugami-blue) 100%);
  color: #fff;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.09);
  content: "";
  transform: skewX(-20deg);
}

.hero-grid {
  position: absolute;
  inset: 0 0 0 45%;
  opacity: 0.29;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1440px);
  margin-inline: auto;
  padding: 112px 0 176px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: #b9c4d2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  background: var(--red);
}

.eyebrow.dark {
  color: #5b6878;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: -0.08em;
  padding-top: 0.12em;
  background: linear-gradient(90deg, #36b4c4, #62d3df 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.98;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 710px;
  margin: 36px 0 0;
  color: #c1cad5;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.hero-primary {
  height: 52px;
  border-radius: 0;
  padding-inline: 24px;
  background: var(--mtx-blue);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-primary:hover {
  background: var(--mtx-cobalt);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #e8edf2;
  font-size: 14px;
  font-weight: 700;
}

.hero-secondary svg {
  width: 18px;
  color: var(--red);
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1440px) / 2));
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  width: min(690px, calc(100% - 40px));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 9, 18, 0.78);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-facts strong {
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 35px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-facts span {
  margin-top: 4px;
  color: #9cabbc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-strip {
  position: relative;
  z-index: 4;
  padding: 0 0 82px;
  background: #fff;
}

.category-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  transform: translateY(34px);
  box-shadow: 0 18px 55px rgba(15, 28, 45, 0.12);
}

.category-tile {
  position: relative;
  display: grid;
  min-height: 158px;
  align-content: space-between;
  justify-items: start;
  padding: 25px 22px 20px;
  border: 0;
  border-right: 1px solid #e1e6eb;
  background: #fff;
  color: #152235;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.category-tile:last-child {
  border-right: 0;
}

.category-tile:hover,
.category-tile:focus-visible,
.category-tile.is-active {
  z-index: 2;
  background: var(--navy-soft);
  color: #fff;
  transform: translateY(-7px);
}

.category-tile > span {
  color: var(--red);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.category-tile strong {
  max-width: 160px;
  font-size: 15px;
  line-height: 1.3;
}

.category-tile svg {
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 15px;
  color: #9fa9b5;
}

.company-section {
  position: relative;
  padding: 112px 0;
  background: #fff;
}

.company-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(32, 140, 155, 0.055));
  content: "";
  pointer-events: none;
}

.company-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
  gap: 96px;
  align-items: center;
}

.company-copy h2,
.services-heading h2 {
  max-width: 880px;
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(40px, 4.7vw, 68px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.company-copy > p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px 0 0;
  color: #566678;
  font-size: 16px;
  line-height: 1.78;
}

.company-copy .company-lead {
  margin-top: 32px;
  color: #253c50;
  font-size: 19px;
  line-height: 1.68;
}

.company-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  background: var(--navy);
  color: #fff;
  box-shadow: 20px 22px 0 rgba(32, 140, 155, 0.14);
}

.company-panel::before {
  position: absolute;
  top: -50px;
  right: -46px;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(32, 140, 155, 0.2);
  border-radius: 50%;
  content: "";
}

.panel-kicker {
  margin: 0;
  color: #66c4cf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.company-panel h3 {
  position: relative;
  max-width: 430px;
  margin: 18px 0 28px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.company-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.company-panel li {
  display: flex;
  gap: 10px;
  color: #d7e0e7;
  font-size: 13px;
  line-height: 1.5;
}

.company-panel li svg {
  width: 16px;
  min-width: 16px;
  color: #58bdc9;
  stroke-width: 3;
}

.company-panel > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.company-panel > a svg {
  width: 15px;
  color: #66c4cf;
}

.services-section {
  padding: 108px 0 114px;
  background: #e9eff1;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
  gap: 72px;
  align-items: end;
}

.services-heading > p {
  margin: 0 0 4px;
  color: #566678;
  font-size: 16px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 30px 28px;
  border-top: 4px solid var(--mtx-blue);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 44, 69, 0.065);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: #e3f1f3;
  color: var(--mtx-blue);
}

.service-icon svg {
  width: 25px;
}

.service-card > p {
  position: absolute;
  top: 32px;
  right: 28px;
  margin: 0;
  color: #bdc9ce;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 34px 0 14px;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card > span:last-child {
  color: #596a7b;
  font-size: 14px;
  line-height: 1.7;
}

.catalog-section {
  padding: 88px 0 112px;
  background:
    linear-gradient(90deg, rgba(15, 30, 50, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 100%;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.consulting-section h2 {
  max-width: 840px;
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0 0 4px;
  color: #5d6979;
  font-size: 16px;
  line-height: 1.7;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(250px, 0.48fr) minmax(210px, 0.35fr);
  gap: 12px;
  margin-top: 50px;
  padding: 16px;
  border: 1px solid #dbe1e7;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 34, 51, 0.06);
}

.search-control {
  position: relative;
  display: flex;
  align-items: center;
}

.search-control > svg {
  position: absolute;
  z-index: 2;
  left: 16px;
  width: 18px;
  color: #687587;
}

.catalog-search {
  height: 50px;
  border-radius: 0;
  padding: 0 46px;
  border-color: #cfd7df;
  background: #f8fafb;
  box-shadow: none;
  font-size: 14px;
}

.search-control button {
  position: absolute;
  z-index: 2;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #667386;
  cursor: pointer;
}

.search-control button svg {
  width: 16px;
}

.filter-panel > [data-slot="native-select-wrapper"] {
  width: 100%;
}

.filter-select,
.sort-select {
  height: 50px;
  border-radius: 0;
  border-color: #cfd7df;
  background: #f8fafb;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}

.results-bar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d8dee5;
}

.results-bar p {
  margin: 0;
  color: #667386;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.results-bar p strong {
  color: var(--red);
}

.results-bar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #344255;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.results-bar button svg {
  width: 15px;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 32px;
}

.machine-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d7dee5;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 31, 47, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.machine-card:hover {
  border-color: #b8c2cd;
  box-shadow: 0 20px 44px rgba(18, 31, 47, 0.11);
  transform: translateY(-5px);
}

.machine-visual-link {
  display: block;
}

.machine-visual-link:focus-visible,
.machine-card h3 a:focus-visible,
.details-button:focus-visible {
  outline: 3px solid rgba(32, 140, 155, 0.35);
  outline-offset: 3px;
}

.machine-visual {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: flex-end;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(32, 140, 155, 0.1), transparent 48%),
    #f7f9fb;
  background-position: center;
  background-size: cover;
}

.machine-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 6%, #000 62%);
}

.machine-visual::after {
  position: absolute;
  z-index: 1;
  inset: 34% 0 0;
  background: linear-gradient(0deg, rgba(3, 9, 18, 0.9), rgba(0, 91, 172, 0.1) 82%, transparent);
  content: "";
}

.machine-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 10px 18px 22px;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.machine-card:hover .machine-visual__image {
  transform: scale(1.035);
}

.visual-index {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  color: rgba(3, 9, 18, 0.52);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.visual-model {
  position: relative;
  z-index: 2;
  max-width: 90%;
  color: #fff;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.visual-line {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 78px;
  height: 5px;
  background: linear-gradient(90deg, var(--tsugami-red), var(--mtx-blue));
}

.machine-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card-kicker {
  display: flex;
  min-height: 25px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  color: #687487;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.feature-badge {
  max-width: 138px;
  border-radius: 0;
  padding: 4px 7px;
  background: #fbe7e8;
  color: #af171d;
  font-size: 8px;
  letter-spacing: 0.07em;
  white-space: normal;
}

.machine-card h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.machine-card h3 a:hover {
  color: var(--mtx-cobalt);
}

.machine-summary {
  min-height: 70px;
  margin: 15px 0 20px;
  color: #596677;
  font-size: 14px;
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid #dce2e8;
  border-bottom: 1px solid #dce2e8;
}

.spec-grid > div {
  min-width: 0;
  padding: 15px 10px 15px 0;
}

.spec-grid > div + div {
  padding-left: 12px;
  border-left: 1px solid #dce2e8;
}

.spec-grid dt {
  margin-bottom: 7px;
  color: #84909e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #1a2738;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.tag-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  color: #4c5a6d;
  font-size: 11px;
  list-style: none;
}

.tag-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.tag-list svg {
  width: 13px;
  min-width: 13px;
  margin-top: 2px;
  color: var(--mtx-blue);
  stroke-width: 3;
}

.card-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.details-button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  background: var(--mtx-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 160ms ease;
}

.details-button:hover {
  background: var(--mtx-cobalt);
}

.details-button svg {
  width: 15px;
}

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

.inquiry-button {
  height: 40px;
  border: 1px solid #55b5c1;
  border-radius: 0;
  padding-inline: 14px;
  background: #73cbd4;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 7px 16px rgba(32, 140, 155, 0.16);
}

.inquiry-button:hover {
  border-color: #73cbd4;
  background: #9adce2;
  color: var(--navy);
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6b7787;
  font-size: 10px;
  font-weight: 700;
}

.source-link:hover {
  color: var(--red);
}

.source-link svg {
  width: 13px;
}

.empty-state {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  gap: 12px;
  margin-top: 32px;
  border: 1px dashed #bdc7d1;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.empty-state > svg {
  width: 36px;
  height: 36px;
  color: #7a8797;
}

.empty-state h3,
.empty-state p {
  margin: 0;
}

.empty-state h3 {
  color: var(--navy);
  font-size: 22px;
}

.empty-state p {
  color: #6a7788;
  font-size: 14px;
}

.empty-state button {
  margin-top: 10px;
  border-radius: 0;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 0;
}

.catalog-pagination button {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #cfd7df;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.catalog-pagination button:hover,
.catalog-pagination button.is-active {
  border-color: var(--mtx-blue);
  background: var(--mtx-blue);
  color: #fff;
}

.catalog-pagination button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.catalog-note {
  margin: 28px 0 0;
  color: #7b8795;
  font-size: 11px;
  line-height: 1.65;
}

.detail-page-shell {
  min-height: 100vh;
  background: var(--paper);
}

.detail-topbar {
  position: relative;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #334b60;
  font-size: 13px;
  font-weight: 800;
}

.detail-back-link:hover {
  color: var(--mtx-cobalt);
}

.detail-back-link svg {
  width: 17px;
}

.machine-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  background:
    radial-gradient(circle at 80% 15%, rgba(32, 140, 155, 0.35), transparent 33%),
    linear-gradient(118deg, var(--mtx-black), var(--navy) 64%, var(--tsugami-blue));
  color: #fff;
}

.detail-grid-pattern {
  position: absolute;
  inset: 0 0 0 54%;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: skewX(-10deg);
}

.machine-detail-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
}

.machine-detail-visual {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, #fff, #e9eff3);
  box-shadow: 20px 22px 0 rgba(32, 140, 155, 0.2);
}

.machine-detail-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 6px;
  background: linear-gradient(90deg, var(--tsugami-red), var(--mtx-blue));
  content: "";
}

.machine-detail-visual img {
  width: 100%;
  height: 350px;
  object-fit: contain;
}

.machine-detail-visual > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(16, 44, 69, 0.42);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  color: #90a0b3;
  font-size: 11px;
  font-weight: 700;
}

.detail-breadcrumb a:hover {
  color: #fff;
}

.detail-breadcrumb strong {
  color: #d8e0e9;
}

.machine-detail-intro .eyebrow {
  margin-bottom: 20px;
}

.machine-detail-intro h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(54px, 6.8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.machine-detail-intro > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: #c1cad5;
  font-size: 18px;
  line-height: 1.7;
}

.machine-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
}

.detail-primary-action,
.detail-phone-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.detail-primary-action {
  border: 1px solid #55b5c1;
  padding: 13px 20px;
  background: #73cbd4;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(32, 140, 155, 0.2);
}

.detail-primary-action:hover {
  border-color: #73cbd4;
  background: #9adce2;
  color: var(--navy);
}

.detail-primary-action svg,
.detail-phone-action svg {
  width: 17px;
}

.detail-phone-action {
  color: #edf3f7;
}

.detail-phone-action svg {
  color: var(--tsugami-red);
}

.machine-detail-content {
  padding: 0 0 110px;
}

.detail-keyfacts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -36px;
  border: 1px solid #d8e1e7;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 44, 69, 0.11);
}

.detail-keyfacts > div {
  min-width: 0;
  padding: 25px 24px;
}

.detail-keyfacts > div + div {
  border-left: 1px solid #dce4e8;
}

.detail-keyfacts span,
.detail-data-card dt {
  display: block;
  margin-bottom: 8px;
  color: #7c8998;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-keyfacts strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.machine-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 74px;
  align-items: center;
  margin-top: 96px;
}

.machine-editorial__copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(36px, 4.1vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.machine-editorial__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #59697a;
  font-size: 16px;
  line-height: 1.75;
}

.machine-workspace-figure {
  min-width: 0;
  margin: 0;
}

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

.machine-workspace-figure__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid #cfdbe2;
  background: #e9eef2;
}

.machine-workspace-figure__image.is-primary {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
  box-shadow: 18px 20px 0 rgba(32, 140, 155, 0.12);
}

.machine-workspace-figure__image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 5px;
  background: linear-gradient(90deg, var(--tsugami-red), var(--mtx-blue));
  content: "";
}

.machine-workspace-figure__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-workspace-figure__image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  background: rgba(16, 44, 69, 0.9);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.machine-workspace-figure figcaption {
  max-width: 760px;
  margin-top: 18px;
  color: #6b7888;
  font-size: 12px;
  line-height: 1.65;
}

.machine-workspace-figure figcaption a {
  color: var(--mtx-cobalt);
  font-weight: 800;
}

.machine-workspace-figure figcaption a:hover {
  text-decoration: underline;
}

.detail-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.76fr);
  gap: 74px;
  align-items: end;
  margin-top: 104px;
}

.detail-section-heading h2,
.detail-information-grid h2,
.machine-detail-note h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(35px, 4.2vw, 60px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.detail-section-heading > p {
  margin: 0;
  color: #59697a;
  font-size: 16px;
  line-height: 1.75;
}

.detail-information-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.78fr);
  gap: 22px;
  margin-top: 46px;
}

.detail-data-card,
.detail-capability-card {
  padding: 42px;
}

.detail-data-card {
  border: 1px solid #d7e0e6;
  background: #fff;
}

.detail-capability-card {
  background: var(--navy);
  color: #fff;
}

.detail-card-kicker {
  margin: 0 0 16px;
  color: var(--mtx-cobalt);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-capability-card .detail-card-kicker {
  color: #66c4cf;
}

.detail-information-grid h2 {
  max-width: 600px;
  font-size: clamp(30px, 3.3vw, 47px);
}

.detail-capability-card h2 {
  color: #fff;
}

.detail-data-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 34px 0 0;
  border-top: 1px solid #dce4e8;
}

.detail-data-card dl > div {
  padding: 21px 0;
  border-bottom: 1px solid #dce4e8;
}

.detail-data-card dd {
  margin: 0;
  color: #263b50;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.detail-capability-card ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.detail-capability-card li {
  display: flex;
  gap: 10px;
  color: #d7e0e7;
  font-size: 14px;
  line-height: 1.5;
}

.detail-capability-card li svg {
  width: 16px;
  min-width: 16px;
  color: #66c4cf;
  stroke-width: 3;
}

.axis-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.axis-chip-list span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  color: #d7e0e7;
  font-size: 10px;
  font-weight: 800;
}

.machine-detail-note {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 64px;
  align-items: center;
  margin-top: 22px;
  padding: 46px 48px;
  border-left: 5px solid var(--tsugami-red);
  background: #e8eff2;
}

.machine-detail-note h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.5vw, 48px);
}

.machine-detail-note > div > p:last-child {
  max-width: 820px;
  margin: 20px 0 0;
  color: #59697a;
  font-size: 15px;
  line-height: 1.7;
}

.machine-detail-note__actions {
  display: grid;
  border-top: 1px solid #c9d6dc;
}

.machine-detail-note__actions a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #c9d6dc;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.machine-detail-note__actions a svg {
  width: 16px;
  color: var(--mtx-cobalt);
}

.machine-detail-note__actions a svg:last-child {
  margin-left: auto;
}

.machine-detail-note__actions a:hover {
  color: var(--mtx-cobalt);
}

.machine-detail-view[hidden] {
  display: none;
}

.consulting-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(32, 140, 155, 0.36), transparent 32%),
    var(--navy);
  color: #fff;
}

.consulting-section::before {
  position: absolute;
  inset: 0 0 0 56%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  transform: skewX(-12deg);
}

.consulting-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.consulting-section h2 {
  color: #fff;
}

.consulting-section p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0 0;
  color: #afbac8;
  font-size: 16px;
  line-height: 1.75;
}

.consulting-actions {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.consulting-actions a {
  display: grid;
  grid-template-columns: 36px 1fr 22px;
  gap: 14px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
}

.consulting-actions a > svg:first-child {
  width: 21px;
  color: var(--mtx-blue);
}

.consulting-actions a > svg:last-child {
  width: 17px;
  color: #8190a2;
  transition: color 160ms ease, transform 160ms ease;
}

.consulting-actions a:hover > svg:last-child {
  color: #fff;
  transform: translate(3px, -3px);
}

.consulting-actions span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consulting-actions small {
  color: #8391a2;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.imprint-section {
  padding: 100px 0;
  border-top: 1px solid #dce4e8;
  background: #fff;
}

.imprint-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.imprint-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(40px, 4.7vw, 68px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.imprint-heading > p {
  margin: 0 0 4px;
  color: #687688;
  font-size: 14px;
}

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

.imprint-grid article {
  padding: 28px;
  border: 1px solid #d9e2e7;
  border-top: 4px solid var(--mtx-blue);
  background: #f6f9fa;
}

.imprint-grid h3,
.imprint-responsibility h3,
.imprint-notes h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.imprint-grid p,
.imprint-responsibility p,
.imprint-notes p {
  margin: 0;
  color: #566779;
  font-size: 15px;
  line-height: 1.75;
}

.imprint-grid p + p {
  margin-top: 18px;
}

.imprint-grid strong {
  color: #243c51;
}

.imprint-grid a {
  color: var(--mtx-cobalt);
  font-weight: 700;
}

.imprint-responsibility {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 18px;
  padding: 28px;
  border-left: 4px solid var(--tsugami-blue);
  background: #edf3f5;
}

.imprint-responsibility h3,
.imprint-responsibility p {
  margin: 0;
}

.imprint-notes {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid #dce4e8;
}

.imprint-notes h3,
.imprint-notes p {
  margin: 0;
}

.location-section {
  padding: 108px 0;
  border-top: 1px solid #dce4e8;
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: stretch;
}

.location-copy h2 {
  max-width: 560px;
  margin: 20px 0 24px;
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.location-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 28px;
  color: #5f6d7d;
  font-size: 16px;
  line-height: 1.75;
}

.location-copy address {
  display: flex;
  gap: 16px;
  margin: 0 0 26px;
  padding: 22px;
  border-left: 4px solid var(--mtx-blue);
  background: #edf3f5;
  color: var(--navy);
  font-style: normal;
  line-height: 1.65;
}

.location-copy address svg {
  width: 24px;
  min-width: 24px;
  color: var(--mtx-blue);
}

.route-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.route-link:hover {
  background: var(--mtx-blue);
}

.route-link svg {
  width: 18px;
}

.map-frame {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #d7e0e7;
  background: #e9eef2;
  box-shadow: 0 24px 70px rgba(16, 44, 69, 0.14);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.map-consent {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(45deg, #dce5ea 0 1px, transparent 1px 22px);
  text-align: center;
}

.map-consent > svg {
  width: 42px;
  height: 42px;
  color: var(--mtx-blue);
}

.map-consent h3 {
  margin: 20px 0 12px;
  color: var(--navy);
  font-size: 24px;
}

.map-consent p {
  max-width: 470px;
  margin: 0;
  color: #667384;
  font-size: 14px;
  line-height: 1.7;
}

.map-consent button {
  min-height: 50px;
  margin-top: 24px;
  padding: 0 22px;
  border: 0;
  background: var(--mtx-blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.map-consent button:hover {
  background: var(--navy);
}

.legal-page-shell {
  min-height: 100vh;
  background: var(--paper);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 96px;
  background: var(--navy);
  color: #fff;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 950px;
  margin: 28px 0 24px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.legal-hero__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #c7d2de;
  font-size: 18px;
  line-height: 1.65;
}

.legal-updated {
  display: inline-block;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 2px solid var(--mtx-blue);
  color: #9eacba;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  padding: 96px 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  border-top: 3px solid var(--mtx-blue);
  background: #fff;
  box-shadow: 0 16px 46px rgba(16, 44, 69, 0.08);
}

.legal-toc strong,
.legal-toc a {
  padding: 15px 18px;
  border-bottom: 1px solid #e2e7ec;
  color: var(--navy);
  font-size: 12px;
}

.legal-toc a:hover {
  color: var(--mtx-blue);
}

.legal-articles {
  display: grid;
  gap: 20px;
}

.legal-articles article {
  scroll-margin-top: 110px;
  padding: 42px clamp(24px, 5vw, 62px);
  border: 1px solid #dce3e9;
  background: #fff;
}

.legal-articles article > span {
  display: block;
  color: var(--mtx-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.legal-articles h2 {
  margin: 12px 0 24px;
  color: var(--navy);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.legal-articles p {
  margin: 0 0 18px;
  color: #536273;
  font-size: 16px;
  line-height: 1.78;
}

.legal-articles p:last-child {
  margin-bottom: 0;
}

.legal-articles a {
  color: var(--tsugami-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 10px;
}

.legal-contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

.legal-contact-line svg {
  width: 18px;
}

.legal-authority {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid var(--mtx-blue);
  background: #edf3f5;
}

.legal-authority strong {
  color: var(--navy);
}

.legal-authority p {
  margin: 10px 0 0;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid #25344a;
  background: var(--navy);
  color: #a6b0bd;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.footer-brand {
  width: max-content;
  padding: 7px 11px;
  background: #fff;
}

.footer-logo {
  width: 148px;
  height: 48px;
}

.footer-grid > p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1180px) {
  .category-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-tile:nth-child(3) {
    border-right: 0;
  }

  .category-tile:nth-child(-n + 3) {
    border-bottom: 1px solid #e1e6eb;
  }

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

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

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-control {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-facts {
    right: 20px;
    left: 20px;
    width: auto;
  }

  .company-grid,
  .services-heading,
  .section-heading,
  .consulting-grid,
  .location-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .legal-toc strong {
    grid-column: 1 / -1;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .consulting-actions {
    max-width: 650px;
  }

  .imprint-heading,
  .imprint-grid,
  .imprint-responsibility,
  .imprint-notes {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .machine-detail-hero__grid,
  .machine-editorial,
  .detail-section-heading,
  .detail-information-grid,
  .machine-detail-note {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .machine-detail-intro {
    order: -1;
  }

  .machine-detail-visual {
    min-height: 360px;
  }

  .machine-detail-visual img {
    height: 300px;
  }

  .machine-editorial {
    gap: 42px;
  }

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

  .detail-keyfacts > div:nth-child(3) {
    border-left: 0;
  }

  .detail-keyfacts > div:nth-child(n + 3) {
    border-top: 1px solid #dce4e8;
  }

}

@media (max-width: 680px) {
  .section-wrap,
  .hero-content {
    width: min(100% - 28px, 1440px);
  }

  .topbar {
    min-height: 68px;
    padding-inline: 14px;
  }

  .mobile-nav {
    top: 68px;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }

  .mtx-logo {
    width: 134px;
    height: 50px;
  }

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

  .hero-content {
    padding: 54px 0 34px;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 0.13em;
    line-height: 1.45;
  }

  .eyebrow span {
    width: 25px;
    min-width: 25px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
    letter-spacing: -0.045em;
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 28px);
    margin: 0 auto;
  }

  .hero-facts div {
    min-height: 82px;
    padding: 13px 9px;
    border-bottom: 0;
    text-align: left;
  }

  .hero-facts strong {
    font-size: clamp(19px, 6vw, 25px);
    line-height: 1;
  }

  .hero-facts span {
    margin-top: 7px;
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .category-strip {
    overflow-x: auto;
    padding: 18px 0 48px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .category-strip__inner {
    display: flex;
    width: max-content;
    margin-inline: 14px;
    transform: none;
  }

  .category-tile {
    width: 178px;
    min-height: 112px;
    flex: 0 0 178px;
    padding: 17px 15px;
    border-right: 1px solid #e1e6eb !important;
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .category-tile:last-child {
    border-right: 0 !important;
  }

  .category-tile strong {
    max-width: 145px;
    font-size: 12px;
  }

  .catalog-section {
    padding: 66px 0 78px;
  }

  .company-section,
  .services-section {
    padding: 60px 0;
  }

  .company-panel {
    padding: 32px 25px;
    box-shadow: 10px 12px 0 rgba(32, 140, 155, 0.14);
  }

  .company-copy h2,
  .services-heading h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
  }

  .company-copy .company-lead {
    font-size: 17px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .service-card {
    min-height: 0;
  }

  .section-heading h2,
  .consulting-section h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    margin-top: 34px;
    padding: 10px;
  }

  .search-control {
    grid-column: auto;
  }

  .results-bar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .machine-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .machine-card:hover {
    transform: none;
  }

  .machine-visual {
    min-height: 190px;
    padding: 20px;
  }

  .machine-card__body {
    padding: 20px;
  }

  .machine-card h3 {
    font-size: 25px;
  }

  .machine-summary {
    min-height: 0;
    margin: 13px 0 17px;
    font-size: 15px;
    line-height: 1.62;
  }

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

  .spec-grid > div,
  .spec-grid > div + div {
    display: grid;
    grid-template-columns: minmax(95px, 0.55fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-left: 0;
  }

  .spec-grid > div + div {
    border-top: 1px solid #dce2e8;
  }

  .spec-grid dt {
    margin: 0;
    font-size: 9px;
  }

  .spec-grid dd {
    font-size: 13px;
  }

  .tag-list {
    gap: 9px;
    margin: 17px 0 20px;
    font-size: 13px;
  }

  .card-actions {
    gap: 10px;
  }

  .details-button {
    min-height: 50px;
    padding-inline: 17px;
    font-size: 13px;
  }

  .card-secondary-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .inquiry-button {
    width: 100%;
    height: auto;
    min-height: 52px;
    justify-content: space-between;
    padding-inline: 17px;
    font-size: 14px;
  }

  .inquiry-button svg {
    width: 17px;
  }

  .source-link {
    justify-content: center;
    min-height: 44px;
    font-size: 12px;
  }

  .consulting-section {
    padding: 76px 0;
  }

  .location-section,
  .legal-content {
    padding: 72px 0;
  }

  .map-frame,
  .map-frame iframe,
  .map-consent {
    min-height: 400px;
  }

  .legal-hero {
    padding: 72px 0 66px;
  }

  .imprint-section {
    padding: 72px 0;
  }

  .imprint-heading h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .imprint-grid {
    margin-top: 36px;
  }

  .imprint-grid article,
  .imprint-responsibility {
    padding: 24px;
  }

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

  .footer-grid > p {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-links {
    gap: 20px;
  }

  .location-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .map-consent {
    padding: 28px 20px;
  }

  .legal-hero h1 {
    font-size: clamp(45px, 14vw, 68px);
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-toc strong {
    grid-column: 1;
  }

  .legal-articles article {
    padding: 30px 22px;
  }

  .detail-topbar {
    gap: 12px;
  }

  .detail-back-link {
    gap: 6px;
    font-size: 11px;
  }

  .detail-back-link svg {
    width: 15px;
  }

  .machine-detail-hero {
    padding: 44px 0 62px;
  }

  .machine-detail-hero__grid {
    gap: 28px;
  }

  .detail-breadcrumb {
    gap: 6px;
    margin-bottom: 28px;
    font-size: 10px;
    line-height: 1.5;
  }

  .machine-detail-intro h1 {
    overflow-wrap: anywhere;
    font-size: clamp(38px, 13vw, 56px);
    line-height: 0.94;
  }

  .machine-detail-intro > p:not(.eyebrow) {
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.62;
  }

  .machine-detail-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .detail-primary-action,
  .detail-phone-action {
    width: 100%;
    min-height: 54px;
    padding: 15px 18px;
    font-size: 14px;
  }

  .machine-detail-visual {
    min-height: 250px;
    padding: 18px;
    box-shadow: 10px 12px 0 rgba(32, 140, 155, 0.2);
  }

  .machine-detail-visual img {
    height: 220px;
  }

  .machine-detail-content {
    padding-bottom: 72px;
  }

  .detail-keyfacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -28px;
  }

  .detail-keyfacts > div {
    padding: 18px 15px;
  }

  .detail-keyfacts strong {
    font-size: 15px;
  }

  .detail-keyfacts > div:nth-child(n + 3) {
    grid-column: 1 / -1;
    border-left: 0;
  }

  .detail-section-heading {
    gap: 22px;
    margin-top: 68px;
  }

  .machine-editorial {
    gap: 30px;
    margin-top: 62px;
  }

  .machine-editorial__copy h2 {
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .machine-editorial__copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .machine-workspace-figure__image {
    box-shadow: 10px 12px 0 rgba(32, 140, 155, 0.12);
  }

  .machine-workspace-gallery {
    gap: 8px;
  }

  .machine-workspace-figure__image:not(.is-primary) {
    box-shadow: none;
  }

  .machine-workspace-figure__image > span {
    top: 10px;
    left: 10px;
    padding: 6px 7px;
    font-size: 7px;
  }

  .machine-workspace-figure figcaption {
    margin-top: 15px;
    font-size: 12px;
  }

  .detail-section-heading h2,
  .detail-information-grid h2,
  .machine-detail-note h2 {
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .detail-section-heading > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .detail-information-grid {
    gap: 14px;
    margin-top: 36px;
  }

  .detail-data-card,
  .detail-capability-card {
    padding: 26px 21px;
  }

  .detail-data-card dl {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .detail-data-card dd,
  .detail-capability-card li {
    font-size: 15px;
  }

  .machine-detail-note {
    gap: 28px;
    margin-top: 14px;
    padding: 30px 22px;
  }

  .machine-detail-note > div > p:last-child {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .category-strip {
    scrollbar-width: none;
  }

  .category-strip::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 380px) {
  .detail-back-link {
    max-width: 108px;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

    .standalone-cta,.inquiry-button{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:0;text-decoration:none}
    .inquiry-button{color:var(--navy);padding-inline:14px}
    .catalog-search{width:100%;outline:none}
    .filter-panel select{width:100%;appearance:auto;padding:0 14px}
    .feature-badge{display:inline-flex;align-items:center;font-weight:800}
    .category-tile>b{position:absolute;right:16px;bottom:17px;color:#9fa9b5;font-size:15px}
    .tag-list b{width:13px;min-width:13px;color:var(--mtx-blue);font-size:13px;line-height:1.2}
    .consulting-actions a>b:first-child{color:var(--mtx-blue);font-size:19px}.consulting-actions a>b:last-child{color:#8190a2;font-size:15px}
    .location-copy address>b{width:24px;min-width:24px;color:var(--mtx-blue);font-size:25px;line-height:1.2}
    .standalone-top-cta{display:inline-flex;padding:12px 18px;background:var(--mtx-blue);color:#fff;font-size:12px;font-weight:800}
    .company-panel li>b{width:16px;min-width:16px;color:#58bdc9;font-size:15px;line-height:1.35}.service-icon{font-size:24px;font-weight:900}
    .standalone-category-empty{display:none}
    .machine-card[hidden]{display:none}
    .standalone-detail-header{position:sticky;z-index:60;top:0;display:flex;min-height:76px;align-items:center;justify-content:space-between;gap:20px;padding:0 max(20px,calc((100vw - 1440px)/2));border-bottom:1px solid #dce4e8;background:rgba(255,255,255,.98);box-shadow:0 8px 28px rgba(16,44,69,.08)}
    .standalone-detail-header .mtx-logo{width:160px;height:58px}
    .standalone-detail-header .detail-back-link{border:0;background:transparent;cursor:pointer}
    .standalone-note{margin:26px 0 0;color:#7b8795;font-size:11px;line-height:1.6}
    .catalog-pagination{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:8px;margin:30px 0 0}
    .catalog-pagination button{min-width:40px;height:40px;padding:0 12px;border:1px solid #cfd7df;background:#fff;color:var(--navy);font-size:12px;font-weight:800;cursor:pointer}
    .catalog-pagination button:hover,.catalog-pagination button.is-active{border-color:var(--mtx-blue);background:var(--mtx-blue);color:#fff}
    .catalog-pagination button:disabled{opacity:.38;cursor:not-allowed}
    @media(max-width:680px){.standalone-top-cta{padding:10px 12px;font-size:10px}.standalone-detail-header{min-height:66px;padding-inline:14px}.standalone-detail-header .mtx-logo{width:128px;height:48px}}
