:root {
  --red: #D71920;
  --ink: #16202A;
  --muted: #425466;
  --line: #E5E7EB;
  --steel: #F7F8FA;
  --blue: #123A5C;
  --green: #2f6f5e;
  --white: #fff;
  --max: 1180px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p {
  max-width: 740px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 { color: var(--ink); font-weight: 700; letter-spacing: 0; }
h1 { max-width: 680px; font-size: clamp(44px, 4vw, 52px); line-height: 1.12; }
h2 { font-size: clamp(32px, 3vw, 38px); line-height: 1.2; }
h3 { font-size: clamp(24px, 2.2vw, 28px); line-height: 1.3; }
h4 { font-size: clamp(20px, 1.8vw, 22px); line-height: 1.35; }
h5 { font-size: clamp(17px, 1.5vw, 18px); line-height: 1.4; }
h6 {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 96px;
  height: 56px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  border-radius: 3px;
}
.brand strong { display: block; letter-spacing: .01em; }
.brand small { display: block; color: var(--muted); font-size: 12px; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; }
.nav-quote {
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav-quote:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: none;
}
.menu-button { display: none; border: 1px solid var(--line); background: #fff; padding: 10px 12px; border-radius: 3px; font-weight: 700; }
.mobile-nav { display: none; }
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 20px 64px;
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  gap: 44px;
  align-items: center;
  min-height: 590px;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  max-width: 660px;
  font-size: clamp(44px, 3.7vw, 52px);
  line-height: 1.12;
  margin: 12px 0 18px;
  letter-spacing: 0;
  color: var(--ink);
}
.hero p { max-width: 680px; font-size: 18px; line-height: 1.7; margin: 0; color: var(--muted); }
.hero-note {
  margin-top: 16px !important;
  padding-left: 14px;
  border-left: 3px solid var(--red);
  font-weight: 700;
  color: var(--ink) !important;
}
.hero-image {
  background: var(--steel);
  border: 1px solid var(--line);
  padding: 10px;
}
.hero-image img {
  width: 100%;
  min-height: 395px;
  object-fit: cover;
  background: var(--steel);
}
.quick-quote {
  align-self: center;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(18,58,92,.08);
}
.quick-quote h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.16;
}
.quick-quote p {
  margin: 0 0 18px;
  font-size: 14px;
}
.quick-quote label {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  font-size: 13px;
  font-weight: 800;
  color: #2f3d4b;
}
.quick-quote input,
.quick-quote select,
.quick-quote textarea {
  width: 100%;
  border: 1px solid #cbd4dc;
  border-radius: 3px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
.quick-quote .button {
  width: 100%;
  margin-top: 8px;
}
.series-hero,.product-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 20px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center;
}
.series-hero h1,.product-hero h1,.subhero h1 {
  max-width: 680px;
  font-size: clamp(44px, 4vw, 52px);
  line-height: 1.12;
  margin: 10px 0 20px;
  letter-spacing: 0;
}
.series-hero p,.product-hero p,.subhero p { font-size: 18px; line-height: 1.7; max-width: 740px; }
.split img,.series-hero img,.product-hero img { border-radius: 3px; background: var(--steel); }
.eyebrow {
  display: inline-flex;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 13px;
}
.hero-actions,.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(42px, 4vw, 48px);
  padding: clamp(10px, 1.2vw, 13px) clamp(18px, 2.1vw, 24px);
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.18;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button:focus-visible {
  outline: 3px solid rgba(215,25,32,.22);
  outline-offset: 2px;
}
.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(215,25,32,.16);
}
.button.primary:hover {
  background: #b9141b;
  box-shadow: none;
}
.secondary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(18,58,92,.14);
}
.button.secondary:hover {
  background: #0d2f4c;
  box-shadow: none;
}
.ghost {
  border-color: #cbd4dc;
  background: #fff;
  color: var(--ink);
}
.button.ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f7fafc;
  box-shadow: none;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 34px 0 0;
}
.metrics div {
  padding: 15px 16px;
  border-radius: 8px;
  transition: background-color .18s ease, color .18s ease;
}
.metrics div:hover { background: #fff1f2; }
.metrics dt { font-size: 22px; line-height: 1; font-weight: 800; color: var(--blue); }
.metrics div:hover dt { color: var(--red); }
.metrics dd { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.section { max-width: var(--max); margin: 0 auto; padding: 58px 20px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 24px;
  align-items: end;
  margin-bottom: 26px;
}
.section-heading > .eyebrow {
  grid-column: 1 / -1;
}
.section-heading > h2 {
  grid-column: 1;
  max-width: 760px;
}
.section-heading > .text-link {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  white-space: nowrap;
}
.section-heading > div {
  grid-column: 1;
}
.section-heading > div h2 {
  max-width: 760px;
}
.section-heading h2,.section h2,.cta-band h2 { font-size: clamp(32px,3vw,38px); line-height: 1.2; margin: 8px 0 12px; }
.intro-grid,.two-col,.quote-section,.feature-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.trust-panel,.contact-panel { border: 1px solid var(--line); border-top: 4px solid var(--green); padding: 24px; background: #fff; }
.check-list { padding: 0; margin: 18px 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; margin: 10px 0; color: #334252; }
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px #fff1f2;
}
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-grid.wide { grid-template-columns: repeat(2,1fr); }
.product-card { border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; min-height: 100%; }
.product-card>div { padding: 20px; }
.product-media { height: 210px; background: var(--steel); display: grid; place-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: contain; }
.tag { font-size: 12px; color: var(--blue); font-weight: 900; text-transform: uppercase; }
.product-card h3 { font-size: 24px; line-height: 1.3; margin: 8px 0; }
.text-link { color: var(--red); font-weight: 900; }
.application-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.application-links article {
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  padding: 20px;
  background: #fff;
}
.application-links h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}
.application-links p {
  margin: 0;
  font-size: 14px;
}
.factory-proof img {
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.product-hero-panel {
  display: grid;
  gap: 18px;
}
.product-hero-panel > img {
  max-height: 340px;
  object-fit: contain;
  justify-self: center;
}
.product-hero-panel .quick-quote {
  box-shadow: none;
}
.selection-guide {
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 24px;
  background: var(--steel);
}
.selection-guide h2 {
  margin-top: 0;
}
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 38px; align-items: center; }
.split img { border: 1px solid var(--line); background: var(--steel); padding: 8px; }
.cta-band { max-width: var(--max); margin: 26px auto 70px; padding: 34px 28px; background: #17222d; color: #fff; display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; align-items: center; }
.cta-band p { color: #d5dee7; }
.subhero { max-width: var(--max); margin: 0 auto; padding: 62px 20px 30px; }
.application-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.application-grid article { border-left: 4px solid var(--red); background: var(--steel); padding: 22px; }
.application-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 20px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: 38px;
  align-items: center;
}
.application-hero h1 {
  max-width: 680px;
  margin: 10px 0 16px;
  font-size: clamp(44px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}
.application-hero p {
  max-width: 740px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}
.application-hero img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--steel);
}
.application-overview {
  padding-top: 44px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.solution-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background: #fff;
  min-height: 100%;
}
.solution-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  padding: 14px;
  background: var(--steel);
  border-right: 1px solid var(--line);
}
.solution-card > div {
  padding: 20px;
}
.solution-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
}
.solution-card dl {
  margin: 0 0 16px;
}
.solution-card dt {
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.solution-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.solution-card .button {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 15px;
}
.application-details {
  padding-top: 32px;
}
.application-detail {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.application-detail:last-child {
  border-bottom: 1px solid var(--line);
}
.application-detail-media {
  align-self: start;
  border: 1px solid var(--line);
  background: var(--steel);
}
.application-detail-media img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 14px;
}
.application-detail h3 {
  margin: 6px 0 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.3;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}
.detail-grid h4 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.35;
  text-transform: uppercase;
}
.detail-grid p {
  margin: 0;
  font-size: 16px;
}
.related-machines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.related-machines strong {
  color: var(--ink);
  font-size: 14px;
}
.related-machines a {
  border: 1px solid var(--line);
  padding: 7px 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  background: #fff;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}
.selection-matrix {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}
.selection-matrix th,
.selection-matrix td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.selection-matrix th {
  background: #17222d;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}
.selection-matrix td {
  color: #334252;
}
.selection-matrix tbody tr:nth-child(even) td {
  background: #F7F8FA;
}
.selection-matrix tbody tr:hover td {
  background: #fff8f8;
}
.workflow-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 34px;
  align-items: start;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
}
.workflow-steps li {
  position: relative;
  min-height: 164px;
  padding: 22px 16px 18px;
  border-right: 1px solid var(--line);
  background: #fff;
}
.workflow-steps li:last-child {
  border-right: 0;
}
.workflow-steps li:before {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--red);
}
.workflow-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 17px;
}
.workflow-steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.application-quote {
  align-items: start;
}
.application-quote img {
  margin-top: 20px;
  border: 1px solid var(--line);
  background: var(--steel);
}
.application-form {
  border-top: 4px solid var(--red);
  box-shadow: 0 14px 30px rgba(18,58,92,.08);
}
.press-campaign-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 20px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
  gap: 42px;
  align-items: center;
}
.press-campaign-hero h1 {
  max-width: 680px;
  margin: 10px 0 18px;
  font-size: clamp(44px, 4vw, 52px);
  line-height: 1.12;
}
.press-campaign-hero p {
  max-width: 740px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}
.press-hero-panel {
  display: grid;
  gap: 14px;
}
.press-hero-panel img,
.press-product-hero > img {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--steel);
  padding: 14px;
}
.mini-proof {
  border-left: 4px solid var(--red);
  background: var(--steel);
  padding: 16px 18px;
}
.mini-proof strong,
.mini-proof span {
  display: block;
}
.mini-proof strong {
  color: var(--blue);
  font-size: 16px;
}
.mini-proof span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}
.press-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.press-type-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background: #fff;
}
.press-type-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  padding: 14px;
  background: var(--steel);
  border-right: 1px solid var(--line);
}
.press-type-card > div {
  padding: 20px;
}
.press-type-card h3 {
  margin: 8px 0 12px;
  font-size: 24px;
  line-height: 1.3;
}
.press-type-card dl {
  margin: 0 0 14px;
}
.press-type-card dt {
  margin-top: 11px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.press-type-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}
.press-type-card,
.comparison-grid article,
.press-brake-form,
.catalog-feature-card {
  border: 1px solid #e4e9ee;
}
.press-type-grid {
  align-items: stretch;
}
.press-type-card > div {
  display: flex;
  flex-direction: column;
}
.press-type-card .text-link {
  margin-top: auto;
  width: fit-content;
}
.press-comparison {
  padding-top: 38px;
}
.press-comparison > p {
  max-width: 760px;
  margin-top: -8px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
.comparison-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16,24,32,.05);
}
.comparison-grid h3 {
  margin: 8px 0 10px;
  color: var(--blue);
}
.comparison-grid p {
  margin: 0 0 14px;
  color: #425466;
}
.comparison-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.comparison-grid li {
  position: relative;
  margin: 10px 0;
  padding-left: 30px;
  color: #16202A;
  line-height: 1.62;
}
.comparison-grid li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff1f2;
  border: 1px solid #ffd7d9;
}
.comparison-grid li:after {
  content: "";
  position: absolute;
  left: 6px;
  top: .78em;
  width: 7px;
  height: 2px;
  background: var(--red);
}
.comparison-note {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 14px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #F7F8FA;
}
.comparison-note strong {
  color: var(--blue);
  white-space: nowrap;
}
.comparison-note span {
  color: #425466;
}
.press-guide-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 36px;
  align-items: start;
}
.guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  border: 1px solid var(--line);
  padding: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16,24,32,.05);
}
.guide-list li {
  margin: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 34px;
  border-radius: 6px;
  background: #F7F8FA;
}
.guide-list li:before {
  left: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
}
.press-quote-section {
  align-items: start;
}
.press-brake-form {
  border-top: 4px solid var(--red);
  box-shadow: 0 14px 30px rgba(18,58,92,.08);
}
.press-brake-form label {
  font-weight: 700;
}
.press-brake-form input,
.press-brake-form select,
.press-brake-form textarea {
  border-color: #cfd8e3;
  background: #fff;
}
.press-brake-form input:focus,
.press-brake-form select:focus,
.press-brake-form textarea:focus {
  outline: 2px solid rgba(215,25,32,.16);
  border-color: var(--red);
}
.press-brake-form input[type="file"] {
  padding: 9px 12px;
}
.control-crowning-section {
  padding-top: 42px;
}
.control-crowning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.catalog-feature-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background: #fff;
}
.control-crowning-section .section-heading h2 {
  max-width: 780px;
}
.controller-list li {
  border-left-width: 3px;
  background: #fff;
}
.catalog-feature-card.crowning-card {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  align-items: center;
}
.catalog-feature-card img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: var(--steel);
}
.catalog-feature-card > div {
  padding: 22px;
}
.catalog-feature-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.3;
}
.catalog-feature-card p {
  margin: 0;
}
.controller-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
  padding: 0;
  list-style: none;
}
.controller-list li {
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  background: var(--steel);
  padding: 13px 14px;
}
.controller-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 18px;
}
.controller-list span {
  display: block;
  color: #334252;
  font-size: 15px;
  line-height: 1.55;
}
.catalog-feature-card .check-list {
  margin-bottom: 0;
}
.secondary-contact {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.secondary-contact a {
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
}
.thank-you-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 78px 20px 46px;
  text-align: center;
}
.thank-you-hero h1 {
  max-width: 680px;
  margin: 10px 0 16px;
  font-size: clamp(44px, 4vw, 52px);
  line-height: 1.12;
}
.thank-you-hero p {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
  font-size: 18px;
  line-height: 1.7;
}
.thank-you-hero .hero-actions {
  justify-content: center;
}
.thank-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.product-hero { padding-bottom: 36px; }
.product-hero img,.series-hero img { max-height: 480px; object-fit: contain; justify-self: center; }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.spec-table th,.spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { width: 42%; background: var(--steel); color: #263340; }
.note,.form-note { font-size: 13px; color: var(--muted); }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; border: 1px solid var(--line); padding: 20px; background: #fff; }
.quote-form label { display: grid; gap: 6px; font-weight: 800; font-size: 13px; color: #2f3d4b; }
.quote-form input,.quote-form select,.quote-form textarea { width: 100%; border: 1px solid #cbd4dc; border-radius: 3px; padding: 12px; font: inherit; }
.quote-form textarea,.quote-form .button,.quote-form .form-note { grid-column: 1/-1; }
.policy { max-width: 820px; }
.policy h2 { font-size: 32px; line-height: 1.2; }
.faq { max-width: var(--max); margin: 0 auto 60px; padding: 0 20px; }
.faq details { border: 1px solid var(--line); padding: 16px; margin: 10px 0; }
.faq summary { font-weight: 900; cursor: pointer; }
.site-header {
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(16,24,32,.06);
}
.menu-button {
  border: 0;
  background: #f4f7fa;
  border-radius: 999px;
}
.hero-image,
.quick-quote,
.trust-panel,
.contact-panel,
.product-card,
.application-links article,
.selection-guide,
.split img,
.application-hero img,
.solution-card,
.application-detail-media,
.table-wrap,
.application-quote img,
.press-hero-panel img,
.press-product-hero > img,
.press-type-card,
.guide-list,
.catalog-feature-card,
.quote-form,
.faq details {
  border: 0;
}
.quick-quote,
.trust-panel,
.contact-panel,
.product-card,
.solution-card,
.press-type-card,
.catalog-feature-card,
.quote-form,
.faq details {
  box-shadow: 0 10px 26px rgba(16,24,32,.07);
}
.quick-quote,
.trust-panel,
.contact-panel,
.product-card,
.solution-card,
.press-type-card,
.catalog-feature-card,
.quote-form,
.faq details,
.application-links article,
.selection-guide,
.application-grid article,
.mini-proof,
.controller-list li,
.workflow-steps li {
  border-radius: 8px;
}
.quick-quote,
.application-form,
.press-brake-form,
.catalog-feature-card {
  border-top: 0;
}
.product-card,
.solution-card,
.press-type-card,
.catalog-feature-card,
.application-links article,
.workflow-steps li,
.controller-list li,
.faq details {
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.product-card:hover,
.solution-card:hover,
.press-type-card:hover,
.catalog-feature-card:hover,
.faq details:hover {
  background: #fbfcfd;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16,24,32,.10);
}
.application-links article:hover,
.application-grid article:hover,
.workflow-steps li:hover,
.controller-list li:hover,
.related-machines a:hover {
  background: #fff1f2;
}
.product-media,
.catalog-feature-card img,
.solution-card img,
.press-type-card img {
  border: 0;
}
.product-media img,
.solution-card img,
.press-type-card img,
.application-detail-media img {
  object-fit: cover;
  padding: 0;
}
.solution-card img,
.press-type-card img,
.application-detail-media,
.factory-proof img,
.product-media {
  border-radius: 6px;
}
.application-detail {
  border-top: 0;
  margin-bottom: 18px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16,24,32,.06);
  border-radius: 8px;
}
.application-detail:last-child {
  border-bottom: 0;
}
.solution-card,
.press-type-card {
  grid-template-columns: 1fr;
}
.solution-card img,
.press-type-card img {
  width: 100%;
  height: 220px;
  min-height: 0;
  object-fit: cover;
}
.press-type-card img {
  object-fit: contain;
  padding: 12px;
  background: #edf2f6;
}
.press-type-card {
  overflow: hidden;
}
.press-type-card:hover {
  transform: translateY(-2px);
}
.press-type-card h3,
.catalog-feature-card h3,
.comparison-grid h3 {
  min-height: 1.3em;
}
.press-type-card dl {
  display: grid;
  gap: 2px;
}
.press-type-card dt:first-child {
  margin-top: 0;
}
.press-type-card dd {
  min-height: 1.55em;
}
.guide-list li:hover {
  background: #fff8f8;
}
.selection-matrix tr:first-child th:first-child {
  border-top-left-radius: 6px;
}
.selection-matrix tr:first-child th:last-child {
  border-top-right-radius: 6px;
}
.table-wrap {
  background: #fff;
  box-shadow: 0 8px 22px rgba(16,24,32,.05);
}
.press-brake-form {
  border-radius: 8px;
}
.press-brake-form .button {
  margin-top: 6px;
}
.controller-list li {
  background: #fff;
}
.controller-list li:hover {
  transform: translateY(-1px);
}
.catalog-feature-card.crowning-card img {
  border-radius: 0;
}
.related-machines {
  border-top: 0;
  padding-top: 10px;
}
.related-machines a {
  border: 0;
  border-radius: 999px;
  background: var(--steel);
}
.workflow-steps {
  gap: 10px;
  border: 0;
}
.workflow-steps li {
  border-right: 0;
}
.mobile-nav.open {
  border-bottom: 0;
  box-shadow: 0 14px 24px rgba(16,24,32,.08);
}

main {
  background: #fff;
}
main > .section:nth-of-type(even) {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.section,
.series-hero,
.product-hero,
.application-hero,
.press-campaign-hero,
.about-hero,
.subhero {
  scroll-margin-top: 92px;
}
.site-nav a:not(.nav-quote) {
  position: relative;
  color: #263340;
  transition: color .18s ease;
}
.site-nav a:not(.nav-quote):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-nav a:not(.nav-quote):hover {
  color: var(--blue);
}
.site-nav a:not(.nav-quote):hover:after {
  transform: scaleX(1);
}
.hero-image,
.application-hero img,
.series-hero img,
.product-hero img,
.split img,
.factory-proof img,
.about-hero img,
.about-intro img,
.about-focus img,
.about-export img,
.application-quote img,
.press-hero-panel img,
.press-product-hero > img {
  background: #eef3f7;
  box-shadow: 0 12px 28px rgba(16,24,32,.08);
  border-radius: 8px;
}
.series-hero img,
.product-hero img,
.press-product-hero > img,
.product-media img,
.press-type-card img,
.catalog-feature-card img {
  object-fit: contain;
}
.product-card,
.solution-card,
.application-links article,
.application-grid article,
.selection-guide,
.trust-panel,
.contact-panel,
.quick-quote,
.quote-form,
.application-form,
.press-brake-form,
.catalog-feature-card,
.about-product-grid a,
.capability-list article,
.factory-timeline li,
.document-grid span,
.buyer-reasons div,
.about-numbers div {
  border: 0;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16,24,32,.06);
  border-radius: 8px;
}
.product-card,
.solution-card,
.application-links article,
.application-grid article,
.about-product-grid a,
.capability-list article,
.factory-timeline li,
.document-grid span,
.buyer-reasons div,
.about-numbers div,
.selection-guide {
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.product-card:hover,
.solution-card:hover,
.application-links article:hover,
.application-grid article:hover,
.about-product-grid a:hover,
.capability-list article:hover,
.factory-timeline li:hover,
.document-grid span:hover,
.buyer-reasons div:hover,
.about-numbers div:hover,
.selection-guide:hover {
  background: #fffafa;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16,24,32,.10);
}
.product-card > div,
.solution-card > div,
.application-links article,
.application-grid article,
.selection-guide {
  display: flex;
  flex-direction: column;
}
.product-card .text-link,
.solution-card .button,
.application-links .text-link,
.application-grid .text-link {
  margin-top: auto;
}
.product-media {
  background: linear-gradient(180deg, #f3f6f9, #eaf0f5);
}
.product-media img {
  padding: 10px;
  mix-blend-mode: normal;
}
.product-grid,
.solution-grid,
.application-grid,
.application-links,
.about-product-grid {
  align-items: stretch;
}
.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.product-grid.wide {
  grid-template-columns: 1fr;
  gap: 18px;
}
.product-card {
  display: grid;
  grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
  grid-template-rows: 1fr;
  min-height: 260px;
  overflow: hidden;
}
.product-grid.wide .product-card {
  grid-template-columns: minmax(280px, .36fr) minmax(0, 1fr);
  min-height: 250px;
}
.product-media {
  height: auto;
  min-height: 260px;
  border-bottom: 0;
  border-right: 1px solid rgba(18,58,92,.08);
}
.product-grid.wide .product-media {
  min-height: 250px;
}
.product-card > div {
  min-height: 100%;
  padding: 24px 24px 26px;
}
.product-card .tag {
  display: block;
  min-height: 0;
  margin-bottom: 10px;
}
.product-card h3 {
  min-height: 0;
  margin: 0 0 12px;
}
.product-card p {
  min-height: 0;
  margin: 0 0 18px;
}
.product-card .text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
}
.product-grid.wide .product-card h3 {
  min-height: 0;
}
.product-grid.wide .product-card p {
  min-height: 0;
}
.application-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.application-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.application-links article,
.application-grid article {
  min-height: 210px;
}
.about-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.solution-card > div {
  min-height: 100%;
}
.solution-card h3 {
  min-height: 2.6em;
}
.solution-card dl {
  flex: 1;
}
.solution-card .button {
  width: fit-content;
}
.application-links h3,
.application-grid h3 {
  min-height: 2.5em;
}
.application-links p,
.application-grid p {
  flex: 1;
}
.about-product-grid a {
  grid-template-rows: 150px minmax(46px, auto) 1fr;
}
.about-product-grid strong {
  min-height: 2.7em;
}
.press-type-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.press-type-card {
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  min-height: 260px;
}
.press-type-card img {
  height: 100%;
  min-height: 260px;
}
.application-links article,
.application-grid article,
.mini-proof {
  border-left: 0;
  position: relative;
}
.application-links article:before,
.application-grid article:before,
.mini-proof:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 3px;
  background: var(--red);
}
.application-links article,
.application-grid article {
  padding-top: 34px;
}
.mini-proof {
  padding-top: 34px;
}
.quick-quote input,
.quick-quote select,
.quick-quote textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  border-color: #cfd8e3;
  border-radius: 6px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.quick-quote input:focus,
.quick-quote select:focus,
.quick-quote textarea:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,25,32,.12);
}
.spec-table,
.selection-matrix {
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16,24,32,.05);
}
.spec-table th,
.spec-table td {
  padding: 14px 16px;
}
.spec-table tr:nth-child(even) td,
.spec-table tr:nth-child(even) th {
  background: #f8fafc;
}
.spec-table tr:hover td,
.spec-table tr:hover th {
  background: #fff8f8;
}
.cta-band {
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(16,24,32,.14);
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #d5dee7;
}
.workflow-steps li {
  min-height: 170px;
  padding: 22px 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16,24,32,.06);
}
.workflow-steps li:before {
  width: 34px;
  height: 3px;
  border-radius: 999px;
}
.factory-timeline li {
  min-height: 176px;
}
.document-grid span {
  border-left: 0;
  background: #fff;
}
.footer-links a,
.footer-contact a {
  border-radius: 999px;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, .75fr) minmax(190px, .8fr);
  gap: 36px;
  padding: 44px max(20px,calc((100vw - var(--max))/2)) 24px;
  background: #101820;
  color: #fff;
}
.footer-brand {
  position: relative;
  padding-top: 18px;
}
.footer-brand:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--red);
}
.site-footer strong {
  display: block;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.25;
}
.site-footer p {
  color: #cbd6df;
  max-width: 560px;
  margin: 14px 0 0;
}
.footer-links span {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.site-footer a {
  display: block;
  width: fit-content;
  color: #cbd6df;
  margin: 8px 0;
  font-size: 14px;
  transition: color .18s ease, background-color .18s ease, padding-left .18s ease;
}
.site-footer a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-contact a:first-of-type {
  color: #fff;
  font-weight: 800;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding-top: 20px;
  color: #90a1b2;
  font-size: 13px;
}
.about-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 20px 46px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}
.about-hero h1 {
  max-width: 680px;
  margin: 10px 0 16px;
  font-size: clamp(44px, 4vw, 52px);
  line-height: 1.12;
}
.about-hero p {
  max-width: 690px;
  font-size: 18px;
  line-height: 1.7;
}
.about-hero img,
.about-intro img,
.about-focus img,
.about-export img {
  width: 100%;
  object-fit: cover;
  background: var(--steel);
  box-shadow: 0 10px 26px rgba(16,24,32,.07);
  border-radius: 8px;
}
.about-hero img { min-height: 360px; }
.about-intro,
.about-focus,
.about-capability,
.about-export,
.about-documents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.about-intro img,
.about-export img { min-height: 320px; }
.about-numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.about-numbers div,
.buyer-reasons div {
  padding: 20px;
  background: var(--steel);
  border-radius: 8px;
  transition: background-color .18s ease;
}
.about-numbers div:hover,
.buyer-reasons div:hover { background: #fff1f2; }
.about-numbers strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}
.about-numbers span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.about-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.about-product-grid a {
  display: grid;
  grid-template-rows: 150px auto auto;
  gap: 10px;
  padding: 12px 12px 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(16,24,32,.07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.about-product-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16,24,32,.10);
}
.about-product-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--steel);
}
.about-product-grid strong {
  color: var(--blue);
  font-size: 17px;
  line-height: 1.35;
}
.about-product-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.about-focus {
  background: #f8fafc;
  max-width: none;
  padding-left: max(20px,calc((100vw - var(--max))/2));
  padding-right: max(20px,calc((100vw - var(--max))/2));
}
.about-focus img { max-height: 380px; object-fit: cover; }
.about-capability {
  max-width: none;
  padding-left: max(20px,calc((100vw - var(--max))/2));
  padding-right: max(20px,calc((100vw - var(--max))/2));
  background: #F7F8FA;
  display: block;
}
.capability-content > p {
  max-width: 760px;
  color: #425466;
}
.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.capability-list article,
.document-grid span {
  padding: 18px 18px 17px;
  background: #fff;
  border-radius: 8px;
}
.capability-list article {
  border: 1px solid #e5e9ee;
  box-shadow: 0 5px 16px rgba(16,24,32,.04);
}
.capability-list article span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.capability-list article strong {
  display: block;
  color: #16202A;
  font-size: 17px;
  line-height: 1.35;
}
.capability-list article p {
  margin: 7px 0 0;
  color: #425466;
  font-size: 15px;
  line-height: 1.6;
}
.capability-cta {
  margin-top: 22px;
}
.factory-timeline {
  counter-reset: process-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.factory-timeline li {
  position: relative;
  min-height: 190px;
  padding: 22px 18px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16,24,32,.06);
}
.factory-timeline li:before {
  counter-increment: process-step;
  content: counter(process-step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.factory-timeline li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 39px;
  right: -13px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 2px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: none;
}
.factory-timeline strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  line-height: 1.35;
}
.factory-timeline span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.about-documents {
  align-items: stretch;
}
.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.document-grid span {
  display: grid;
  place-items: center start;
  min-height: 86px;
  background: linear-gradient(135deg, #f8fafc, #eef3f7);
  border-left: 4px solid var(--red);
}
.buyer-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.buyer-reasons strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
}
.buyer-reasons p {
  margin: 8px 0 0;
  font-size: 16px;
}
.mobile-nav .site-nav { display: none; }
@media (max-width:900px) {
  .site-header>.site-nav { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav.open { display: block; background: #fff; }
  .mobile-nav.open .site-nav { display: grid; padding: 14px 20px; gap: 12px; }
  .hero,.series-hero,.product-hero,.application-hero,.press-campaign-hero,.about-hero,.about-intro,.about-focus,.about-capability,.about-export,.about-documents,.intro-grid,.two-col,.quote-section,.feature-columns,.split,.cta-band,.workflow-section,.press-guide-grid,.thank-you-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 38px; gap: 32px; }
  .hero-copy { max-width: none; }
  .hero h1 { font-size: clamp(34px, 8vw, 38px); line-height: 1.12; }
  .hero-image img { min-height: 260px; }
  .application-links { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: repeat(2,1fr); }
  .product-grid,.product-grid.wide,.application-grid,.solution-grid,.press-type-grid,.about-product-grid,.buyer-reasons,.comparison-grid { grid-template-columns: 1fr 1fr; }
  .about-numbers { grid-template-columns: repeat(2, 1fr); }
  .capability-list { grid-template-columns: 1fr 1fr; }
  .factory-timeline { grid-template-columns: 1fr 1fr; }
  .factory-timeline li:nth-child(2n):after { display: none; }
  .catalog-feature-card.crowning-card { grid-template-columns: 1fr; }
  .solution-card,.application-detail { grid-template-columns: 1fr; }
  .press-type-card { grid-template-columns: 1fr; }
  .solution-card img { height: 220px; min-height: 0; border-right: 0; border-bottom: 0; }
  .press-type-card img { height: 220px; min-height: 0; border-right: 0; border-bottom: 0; }
  .application-detail-media img { height: 220px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps li { min-height: auto; border-right: 0; border-bottom: 0; }
  .workflow-steps li:last-child { border-bottom: 0; }
  .section-heading { display: block; }
  .cta-band { margin-left: 20px; margin-right: 20px; }
  .quote-form { grid-template-columns: 1fr; }
}
@media (max-width:560px) {
  .brand small { display: none; }
  .brand-logo { width: 88px; height: 50px; }
  h1,.series-hero h1,.product-hero h1,.subhero h1,.application-hero h1,.press-campaign-hero h1,.about-hero h1,.thank-you-hero h1 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.12;
  }
  h2,.section-heading h2,.section h2,.cta-band h2 {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.2;
  }
  h3,.product-card h3,.solution-card h3,.press-type-card h3,.catalog-feature-card h3,.application-detail h3 {
    font-size: clamp(24px, 6vw, 26px);
    line-height: 1.3;
  }
  .hero,.series-hero,.product-hero,.application-hero,.press-campaign-hero,.section,.subhero { padding-left: 16px; padding-right: 16px; }
  .about-hero { padding-left: 16px; padding-right: 16px; }
  .about-focus { padding-left: 16px; padding-right: 16px; }
  .about-capability { padding-left: 16px; padding-right: 16px; }
  .application-hero img { min-height: 230px; }
  .product-grid,.product-grid.wide,.application-grid,.solution-grid,.detail-grid,.press-type-grid,.guide-list,.controller-list,.about-product-grid,.about-numbers,.capability-list,.factory-timeline,.document-grid,.buyer-reasons,.comparison-grid { grid-template-columns: 1fr; }
  .comparison-note { display: grid; gap: 6px; }
  .factory-timeline li:not(:last-child):after {
    content: "";
    top: auto;
    right: auto;
    left: 30px;
    bottom: -21px;
    display: grid;
    width: 2px;
    height: 26px;
  }
  .catalog-feature-card img { height: 250px; }
  .metrics { grid-template-columns: 1fr; }
  .application-links { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { display: grid; gap: 6px; }
  .button { width: 100%; }
  .product-card,
  .product-grid.wide .product-card {
    grid-template-columns: 1fr;
    grid-template-rows: 190px 1fr;
    min-height: 0;
  }
  .product-media { height: 190px; }
  .product-media,
  .product-grid.wide .product-media {
    min-height: 190px;
    border-right: 0;
  }
}
