:root {
  --ink: #20242b;
  --muted: #697180;
  --line: #dfe3ea;
  --red: #f21f1f;
  --red-dark: #c5161b;
  --steel: #34373c;
  --mist: #f5f6f8;
  --white: #fff;
  --shadow: 0 18px 45px rgba(25, 35, 50, .10);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Poppins, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  text-decoration: none;
  font-weight: 900;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  min-height: 92px;
  padding: 20px clamp(24px, 4vw, 64px);
  background: rgba(52, 55, 60, .98);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(20, 30, 45, .16);
}
.home-page .site-header {
  position: absolute;
  width: 100%;
  min-height: 118px;
  padding-top: 42px;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}
.brand {
  flex: 0 0 160px;
  text-decoration: none;
}
.brand-logo {
  width: 126px;
  height: auto;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.46);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.menu-lines {
  display: grid;
  gap: 4px;
}
.menu-lines span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
body.nav-open .menu-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-lines span:nth-child(2) { opacity: 0; }
body.nav-open .menu-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.site-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  flex: 1;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,.38);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.nav-caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 6px;
  color: rgba(255,255,255,.94);
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}
.language-switcher span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 3px;
}
.language-switcher .active {
  color: #fff;
  background: rgba(242,31,31,.92);
  border-color: rgba(242,31,31,.92);
}
.primary-action,
.secondary-action,
.secondary-dark-action,
.category-card a,
.product-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 800;
}
.primary-action,
.category-card a,
.product-card-actions a:first-child {
  color: #fff;
  background: var(--red);
}
.primary-action:hover,
.category-card a:hover,
.product-card-actions a:first-child:hover { background: var(--red-dark); }
.product-card-actions a.product-pdf-link {
  color: var(--ink);
  background: #fff;
  border: 1px solid #aeb6c2;
}
.product-card-actions a.product-pdf-link:hover {
  color: var(--red);
  border-color: var(--red);
}
.secondary-action {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.75);
}
.secondary-dark-action {
  color: var(--ink);
  background: #fff;
  border: 1px solid #aeb6c2;
}
.home-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(820px, 100vh);
  padding: 205px clamp(20px, 4vw, 72px) 145px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(24,31,39,.58), rgba(24,31,39,.60)),
    url("hero-factory.jpg") center center / cover no-repeat;
}
.home-hero-copy {
  max-width: 1320px;
}
.home-hero h1 {
  margin: 0;
  font-size: clamp(44px, 4.2vw, 72px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 4px 16px rgba(0,0,0,.38);
}
.home-hero h1 span { display: block; }
.hero-title-line { white-space: nowrap; }
.home-hero p {
  margin: 42px auto 0;
  max-width: 1050px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 500;
  text-shadow: 0 3px 12px rgba(0,0,0,.42);
}
.home-hero .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 60px;
}
.home-hero .primary-action,
.home-hero .secondary-action {
  min-width: 212px;
  min-height: 78px;
  gap: 28px;
  font-size: 21px;
}
.intro-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: calc(100% - clamp(36px, 7vw, 136px));
  max-width: 1720px;
  margin: -42px auto 0;
  padding: 36px clamp(24px, 4vw, 56px);
  background: #fff;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -12px 35px rgba(20,28,36,.10);
}
.intro-card {
  min-height: 118px;
  padding: 10px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}
.intro-card:last-child { border-right: 0; }
.intro-card h3 {
  margin: 0 0 10px;
  color: var(--steel);
  font-size: 24px;
  line-height: 1.15;
}
.intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}
.hero p,
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section {
  padding: clamp(54px, 8vw, 98px) clamp(20px, 5vw, 76px);
}
.section-heading {
  display: grid;
  grid-template-columns: .34fr 1fr;
  gap: 28px;
  align-items: end;
  max-width: 1560px;
  margin: 0 auto 28px;
}
.section-heading h2,
.two-column h2,
.trust-layout h2,
.center-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.12;
  font-weight: 900;
}
.trust-layout {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.trust-layout p {
  color: var(--muted);
  font-size: 17px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
}
.industry-chip {
  display: grid;
  justify-items: center;
  align-content: center;
  align-items: center;
  gap: 10px;
  min-height: 116px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.industry-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(242,31,31,.35);
  box-shadow: 0 14px 28px rgba(25,35,50,.08);
}
.industry-chip img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.industry-chip span { font-weight: 900; font-size: 12px; letter-spacing: .03em; text-transform: uppercase; }
.solutions-intro {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: start;
  max-width: 1560px;
  margin: 0 auto;
  background: #fff;
}
.solutions-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1560px;
  margin: 0 auto;
}
.solution-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  min-height: 184px;
  padding: 24px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(25,35,50,.06);
  scroll-margin-top: 120px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.solution-card:hover,
.solution-card:target {
  transform: translateY(-3px);
  border-color: #c8d0dc;
  box-shadow: 0 18px 38px rgba(25,35,50,.12);
}
.solution-card:target {
  box-shadow: inset 3px 0 0 var(--red), 0 18px 38px rgba(25,35,50,.12);
}
.solution-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.solution-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.solution-card p {
  margin: 0 0 12px;
  color: var(--muted);
}
.solution-card b {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.solution-detail-section {
  background: #fff;
}
.solution-detail-list {
  display: grid;
  gap: 22px;
  max-width: 1560px;
  margin: 0 auto;
}
.solution-detail {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(420px, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  background: #f6f7f9;
  border: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.solution-detail:nth-child(even) {
  grid-template-columns: minmax(420px, 1fr) minmax(340px, .78fr);
}
.solution-detail:nth-child(even) > img {
  order: 2;
}
.solution-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
}
.solution-detail h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.12;
}
.solution-detail p {
  color: var(--muted);
  font-size: 17px;
}
.solution-detail ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.solution-detail li {
  padding: 12px 14px;
  background: #fff;
  border-left: 3px solid var(--red);
  color: #3d4652;
}
.solution-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}
.solution-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.1;
}
.solution-cta p {
  max-width: 860px;
  color: var(--muted);
}
.contrast-section,
.featured-section { background: #fff; }
.center-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}
.product-grid,
.category-grid,
.updates-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.featured-section .product-grid,
.related-products-section .product-grid {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  max-width: 1560px;
  margin: 0 auto;
}
.manipulator-showcase .product-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  max-width: 1560px;
  margin: 0 auto;
}
.product-card,
.category-card,
.update-card,
.process-card,
.contact-grid article,
.three-values article {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(25,35,50,.06);
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: #c8d0dc;
  box-shadow: 0 18px 38px rgba(25,35,50,.12);
}
.category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(25,35,50,.12);
}
.category-card figure {
  margin: 0;
  background: linear-gradient(135deg, #f6f7f9, #e9edf2);
  border-bottom: 1px solid var(--line);
}
.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 22px;
}
.category-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 2.2vw, 34px);
  background: #f4f6f9;
  transition: transform .18s ease;
}
.product-card:hover img {
  transform: scale(1.025);
}
.product-image-link {
  display: block;
  min-height: 0;
  padding: 0;
  background: #f1f3f6;
  text-decoration: none;
}
.product-title-link {
  display: inline;
  min-height: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-decoration: none;
}
.product-title-link:hover {
  color: var(--red);
}
.product-card-copy { padding: 18px; }
.product-card-copy p {
  min-height: 84px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-card-actions a {
  width: max-content;
  min-width: 104px;
}
.product-card-copy span,
.update-card span,
.process-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-card h3,
.category-card h3,
.update-card h3,
.process-card h3,
.contact-grid h2,
.three-values h3 {
  margin: 8px 0 14px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}
.category-card h3 {
  min-height: 54px;
}
.category-card p,
.category-card span {
  margin: 0;
  color: var(--muted);
}
.category-card span {
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  color: var(--steel);
}
.category-card b {
  color: var(--red);
  font-size: 13px;
}
.two-column {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.point-list {
  display: grid;
  gap: 14px;
}
.point-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}
.point-list h3 { margin: 0 0 6px; }
.point-list p { margin: 0; color: var(--muted); }
.update-card,
.process-card,
.contact-grid article,
.three-values article {
  padding: 22px;
}
.update-card h3 a {
  color: inherit;
  text-decoration: none;
}
.update-card h3 a:hover {
  color: var(--red);
}
.cert-section { background: #e9edf2; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.cert-grid img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.page-hero {
  padding: clamp(58px, 10vw, 128px) clamp(18px, 5vw, 76px) clamp(34px, 5vw, 60px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.text-page-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}
.text-page-hero > div {
  width: min(100%, 960px);
}
.text-page-hero p {
  margin-left: auto;
  margin-right: auto;
}
.visual-page-hero {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: center;
  max-width: 1560px;
  margin: 0 auto;
}
.visual-page-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #eef1f5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.centered-image-hero {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.centered-image-hero > div {
  max-width: 760px;
  margin: 0 auto;
}
.centered-image-hero p {
  margin-left: auto;
  margin-right: auto;
}
.centered-image-hero img {
  width: min(100%, 980px);
  max-height: 560px;
  justify-self: center;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.product-catalog-section {
  background: #f1f3f6;
}
.product-family-detail {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 112px;
}
.product-family-detail.product-family-reverse {
  background: #f6f7f9;
}
.product-family-detail.product-family-reverse > div {
  order: 2;
}
.product-family-detail h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
}
.product-family-detail p {
  color: var(--muted);
}
.product-family-detail > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: clamp(18px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.family-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}
.family-points li {
  padding: 12px 14px;
  background: #f1f3f6;
  border-left: 4px solid var(--red);
  color: #3d4652;
}
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(460px, .92fr) minmax(440px, .84fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  max-width: 1640px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 104px) clamp(24px, 5vw, 76px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.product-detail-media,
.product-detail-summary {
  min-width: 0;
}
.product-detail-media img {
  width: min(100%, 900px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: clamp(20px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.product-detail-summary h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}
.product-detail-summary > p {
  color: var(--muted);
  font-size: 18px;
}
.product-attribute-table {
  width: 100%;
  margin: 28px 0 26px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  table-layout: fixed;
}
.product-attribute-table th,
.product-attribute-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.product-attribute-table tr:nth-child(odd) {
  background: #f1f3f8;
}
.product-attribute-table tr:last-child th,
.product-attribute-table tr:last-child td {
  border-bottom: 0;
}
.product-attribute-table th {
  width: 34%;
  font-weight: 900;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.product-overview-section {
  background: #f6f7f9;
}
.product-overview-layout {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  max-width: 1420px;
  margin: 0 auto;
}
.product-overview-copy {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(25,35,50,.06);
}
.product-overview-copy p {
  margin: 0 0 18px;
  color: #3d4652;
  font-size: 17px;
}
.product-overview-copy p:last-child {
  margin-bottom: 0;
}
.product-overview-visual {
  margin: 0;
}
.product-overview-visual img {
  width: 100%;
  max-height: 820px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(25,35,50,.06);
}
.brochure-section {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(25,35,50,.06);
}
.brochure-section h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}
.brochure-section p {
  max-width: 620px;
  color: var(--muted);
}
.related-products-section {
  background: #fff;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.product-feature-band {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: center;
  background: #fff;
  scroll-margin-top: 112px;
}
.product-feature-band p {
  color: var(--muted);
}
.product-feature-band img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow);
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #34373c;
  color: #fff;
}
.stats-strip div {
  padding: 28px clamp(20px, 4vw, 76px);
  border-right: 1px solid rgba(255,255,255,.16);
}
.stats-strip div:last-child { border-right: 0; }
.stats-strip strong {
  display: block;
  font-size: 40px;
  line-height: 1;
}
.stats-strip span {
  color: #d9dee7;
}
.capability-section {
  background: #fff;
}
.visual-proof-section {
  background: #f1f3f6;
}
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}
.service-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.1;
}
.manipulator-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  background: #fff;
}
.manipulator-showcase > div:first-child {
  max-width: 940px;
}
.manipulator-showcase h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.1;
}
.manipulator-showcase p {
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
}
.gallery-grid img:first-child {
  grid-row: auto;
}
.equipment-gallery-section {
  background: #f1f3f6;
}
.equipment-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.equipment-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
}
.three-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #fff;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}
.timeline div {
  min-height: 150px;
  padding: 18px;
  background: #fff;
}
.timeline strong {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
}
.site-footer {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 32px;
  padding: 44px clamp(18px, 5vw, 76px);
  background: #2f3540;
  color: #fff;
}
.site-footer p,
.site-footer a {
  color: #d4d9e1;
}
.contact-prep {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: #fff;
}
.contact-prep h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.1;
}
.contact-prep ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.contact-prep li {
  padding: 18px 20px;
  background: #f1f3f6;
  border-left: 4px solid var(--red);
  font-weight: 800;
}
.inquiry-section {
  background: #f1f3f6;
  scroll-margin-top: 112px;
}
.inquiry-note {
  max-width: 980px;
  margin: -12px 0 22px;
  color: var(--muted);
  font-weight: 700;
}
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1100px;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(25,35,50,.06);
}
.inquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}
.inquiry-form label:nth-child(4) {
  grid-column: 1 / -1;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #c7ced8;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(242,31,31,.18);
  border-color: var(--red);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
}
.form-actions .primary-action,
.form-actions .secondary-dark-action {
  border-radius: 0;
  border-width: 1px;
  min-width: 170px;
  cursor: pointer;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(25,35,50,.06);
  overflow: hidden;
}
.blog-card-image {
  display: block;
  background: #eef1f5;
}
.blog-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fff;
}
.blog-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
}
.blog-card-copy span,
.article-hero span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-card-copy h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.14;
}
.blog-card-copy h3 a,
.text-link,
.back-link {
  color: inherit;
  text-decoration: none;
}
.blog-card-copy h3 a:hover,
.text-link:hover,
.back-link:hover {
  color: var(--red);
}
.blog-card-copy p {
  margin: 0;
  color: var(--muted);
}
.text-link,
.back-link {
  font-weight: 900;
}
.article-hero {
  display: grid;
  gap: 18px;
  padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 76px) 36px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.article-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.06;
  font-weight: 900;
}
.article-hero p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.article-hero img {
  width: min(100%, 1120px);
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  margin-top: 10px;
  background: #eef1f5;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.article-shell {
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 76px);
}
.article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(25,35,50,.06);
}
.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 1.55em 0 .55em;
  line-height: 1.14;
}
.article-body h2 { font-size: clamp(28px, 3vw, 40px); }
.article-body h3 { font-size: 25px; }
.article-body p,
.article-body li {
  color: #3d4652;
  font-size: 17px;
}
.article-body img {
  width: 100%;
  height: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
}
.article-body figure {
  margin: 28px 0;
}
.article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}
.article-body th,
.article-body td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}
@media (max-width: 900px) {
  .site-header,
  .home-page .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
    padding: 14px 20px;
    background: rgba(52, 55, 60, .96);
    box-shadow: 0 10px 30px rgba(20, 30, 45, .18);
  }
  .home-page .site-header { position: absolute; }
  .brand { flex: 0 0 auto; }
  .brand-logo { width: 118px; }
  .menu-toggle { display: inline-flex; }
  .language-switcher {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    margin-left: 0;
    overflow-x: auto;
    padding-top: 2px;
  }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 18px;
    background: rgba(47, 53, 64, .98);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 20px 40px rgba(18, 25, 34, .28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a {
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
    font-size: 16px;
  }
  .site-nav a:last-child { border-bottom: 0; }
  .hero-title-line { white-space: normal; }
  .home-hero {
    min-height: 720px;
    padding-top: 160px;
  }
  .home-hero .primary-action,
  .home-hero .secondary-action {
    width: min(100%, 280px);
    min-height: 60px;
    font-size: 17px;
  }
  .intro-panel,
  .hero,
  .visual-page-hero,
  .solutions-intro,
  .solution-cta,
  .product-detail-hero,
  .product-overview-layout,
  .brochure-section,
  .product-family-detail,
  .product-feature-band,
  .manipulator-showcase,
  .solution-detail,
  .solution-detail:nth-child(even),
  .two-column,
  .section-heading,
  .trust-layout,
  .contact-prep,
  .inquiry-form,
  .service-cta,
  .site-footer,
  .three-values,
  .timeline {
    grid-template-columns: 1fr;
  }
  .inquiry-form label:nth-child(4) { grid-column: auto; }
  .product-family-detail.product-family-reverse > div { order: 0; }
  .solution-detail:nth-child(even) > img { order: 0; }
  .inline-actions .primary-action,
  .inline-actions .secondary-dark-action,
  .product-detail-actions .primary-action,
  .product-detail-actions .secondary-dark-action { width: 100%; }
  .intro-panel {
    width: calc(100% - 24px);
    margin-top: -28px;
    padding: 22px;
  }
  .intro-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 4px;
  }
  .intro-card:last-child { border-bottom: 0; }
  .hero { min-height: auto; }
  .stats-strip { grid-template-columns: 1fr; }
  .stats-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .industry-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .solution-grid,
  .featured-section .product-grid,
  .related-products-section .product-grid,
  .manipulator-showcase .product-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .solution-card { grid-template-columns: 70px 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img,
  .gallery-grid img:first-child { height: auto; }
}
@media (max-width: 520px) {
  .home-hero h1 { font-size: 40px; }
  .home-hero p { font-size: 18px; margin-top: 26px; }
  .home-hero .hero-actions { margin-top: 34px; }
  .industry-grid { grid-template-columns: 1fr; }
  .solution-grid,
  .featured-section .product-grid,
  .related-products-section .product-grid,
  .manipulator-showcase .product-grid {
    grid-template-columns: 1fr;
  }
  .solution-card { grid-template-columns: 1fr; }
}
