:root {
  --ink: #0b1c30;
  --muted: #5c6675;
  --line: #dce4ec;
  --surface: #f5f8fb;
  --surface-strong: #e8f0f7;
  --white: #ffffff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --orange: #f26a1b;
  --green: #168468;
  --cyan: #0369a1;
  --cta: #0369a1;
  --shadow: 0 24px 60px rgba(11, 28, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
button, a { transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease; }
a, button, .content-card, .line-card, .news-card, .download-card, .industry-panel, .contact-card { cursor: pointer; }
a, button { -webkit-tap-highlight-color: rgba(242, 106, 27, .18); }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(3, 105, 161, .42);
  outline-offset: 4px;
  border-radius: 6px;
}
.skip-link { position: absolute; left: 16px; top: -48px; background: var(--ink); color: white; padding: 10px 14px; z-index: 100; }
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 140;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(248,250,252,.98) 100%);
  border-bottom: 1px solid rgba(215, 225, 234, 0.9);
  border-radius: 0;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .055);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cta), rgba(22, 132, 104, .85));
  opacity: .9;
}
.site-header.is-scrolled { box-shadow: 0 14px 34px rgba(15, 23, 42, .1); }
.site-header-spacer {
  height: 76px;
  transition: height .18s ease-out;
}
.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1510px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 310px;
  align-self: stretch;
  padding: 0 22px 0 0;
  background: linear-gradient(90deg, rgba(242, 106, 27, .08), rgba(255,255,255,0));
}
.brand img { width: 158px; height: auto; }
.brand span {
  color: #4f5b6b;
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
  padding-left: 16px;
  border-left: 1px solid #d9e2eb;
}
.primary-nav { display: flex; align-items: stretch; align-self: stretch; gap: 2px; }
.primary-nav > a,
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  padding: 0 15px;
  font-weight: 700;
  font-size: 15px;
  color: #0d1b2d;
  transition: color .18s ease, background-color .18s ease;
}
.primary-nav > a::after,
.nav-item::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -1px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: auto;
  padding: 0;
  border-bottom: 0;
  font-weight: 700;
  font-size: 15px;
}
.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.primary-nav .active,
.nav-item:hover > a,
.nav-item:focus-within > a,
.nav-item.is-open > a,
.nav-item.active > a {
  color: var(--orange);
}
.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-item:hover,
.nav-item:focus-within,
.nav-item.is-open,
.nav-item.active,
.primary-nav > a.active {
  background: rgba(242, 106, 27, .07);
}
.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.active::after,
.nav-item:hover::after,
.nav-item:focus-within::after,
.nav-item.is-open::after,
.nav-item.active::after {
  transform: scaleX(1);
}
@media (hover: none) {
  .primary-nav > a:hover,
  .nav-item:hover > a {
    color: #0d1b2d;
  }
  .primary-nav > a.active,
  .primary-nav .active,
  .nav-item.is-open > a,
  .nav-item.active > a {
    color: var(--orange);
  }
  .primary-nav > a:hover::after,
  .nav-item:hover::after {
    transform: scaleX(0);
  }
}
.mega-trigger {
  border: 0;
  background: transparent;
  color: currentColor;
  width: 22px;
  min-height: 76px;
  padding: 0;
  margin-left: 5px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  opacity: .76;
}
.nav-search-button {
  align-self: center;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(11, 28, 48, .1);
  border-radius: 4px;
  background: #172333;
  color: white;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.nav-search-button svg {
  width: 20px;
  height: 20px;
}
.nav-search-button:hover,
.nav-search-button:focus-visible {
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(242, 106, 27, .24);
  transform: translateY(-1px);
}
.nav-item:hover .mega-trigger,
.nav-item:focus-within .mega-trigger,
.nav-item.is-open .mega-trigger {
  opacity: 1;
  transform: translateY(1px);
}
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: white; -webkit-appearance: none; appearance: none; touch-action: manipulation; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

body.search-open {
  overflow: hidden;
}
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 260;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}
.float-action {
  pointer-events: auto;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.float-top {
  --scroll-angle: 0deg;
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(var(--orange) var(--scroll-angle), rgba(15, 23, 42, .14) 0deg);
  color: #172333;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .14);
}
.float-top::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06);
}
.float-top svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}
.float-top:hover,
.float-top:focus-visible,
.float-top.is-active {
  color: var(--orange);
  transform: translateY(-2px);
}
.float-solution {
  min-width: 128px;
  height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange), #c2410c);
  color: white;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 18px 36px rgba(242, 106, 27, .26);
}
.float-solution svg {
  width: 19px;
  height: 19px;
}
.float-solution:hover,
.float-solution:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(242, 106, 27, .34);
}
.site-search-layer {
  position: fixed;
  inset: 0;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.site-search-layer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .58);
  backdrop-filter: blur(4px);
}
.site-search-dialog {
  position: relative;
  width: min(900px, calc(100% - 40px));
  min-height: 300px;
  margin: 0 auto;
  padding: 72px 30px 42px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(216, 227, 236, .9);
  box-shadow: 0 28px 72px rgba(2, 6, 23, .18);
}
.site-search-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, .32);
  color: white;
  cursor: pointer;
}
.site-search-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.8;
}
.site-search-close:hover,
.site-search-close:focus-visible {
  background: var(--orange);
  transform: rotate(90deg);
}
.site-search-dialog h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.18;
  text-align: center;
}
.site-search-form {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.site-search-form input {
  width: 100%;
  height: 58px;
  border: 0;
  padding: 0 18px;
  color: var(--ink);
  font-size: 16px;
  outline: 0;
}
.site-search-form input::placeholder {
  color: #8b97a6;
}
.site-search-form button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--orange);
  color: white;
  cursor: pointer;
}
.site-search-form button svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.5;
}
.site-search-form button:hover,
.site-search-form button:focus-visible {
  background: #0f172a;
}
.site-search-suggestions {
  width: min(760px, 100%);
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.site-search-suggestions button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #d8e3ec;
  border-radius: 4px;
  background: #f6f9fc;
  color: #4f5b6b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.site-search-suggestions button:hover,
.site-search-suggestions button:focus-visible {
  border-color: rgba(242, 106, 27, .34);
  background: rgba(242, 106, 27, .1);
  color: var(--orange);
}
.site-search-results {
  width: min(760px, 100%);
  margin: 22px auto 0;
}
.site-search-result-list {
  display: grid;
  gap: 10px;
}
.site-search-result {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 5px 16px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .045);
}
.site-search-result span {
  grid-row: 1 / 3;
  align-self: start;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.site-search-result strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}
.site-search-result p,
.site-search-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.site-search-result:hover,
.site-search-result:focus-visible {
  border-color: rgba(242, 106, 27, .36);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
}
.mega-panels {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  background: rgba(255,255,255,.98);
}
.mega-panel {
  display: none;
  padding: 0;
}
.mega-panel.is-open {
  display: block;
  animation: megaReveal .18s ease-out both;
}
@keyframes megaReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.mega-shell {
  position: relative;
  margin: 0 auto 20px;
  width: calc(100% - 80px);
  max-width: 1428px;
  background: #ffffff;
  border: 1px solid #d8e3ec;
  border-top: 0;
  box-shadow: 0 22px 46px rgba(15, 23, 42, .095);
  border-radius: 0 0 6px 6px;
  display: grid;
  grid-template-columns: 292px 1fr;
  min-height: 388px;
  overflow: hidden;
}
.mega-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--orange);
}
.mega-intro {
  position: relative;
  padding: 32px 32px 30px;
  background: #f7f9fb;
  color: var(--ink);
  border-right: 1px solid #dce5ed;
}
.mega-intro::before {
  display: none;
}
.mega-intro p, .eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.mega-intro strong { display: block; font-size: 27px; line-height: 1.18; margin-bottom: 12px; }
.mega-intro span { color: #536173; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: #f8fafc; }
.industries-mega { grid-template-columns: repeat(4, 1fr); }
.mega-group { padding: 30px; border-right: 1px solid #dce5ed; border-bottom: 1px solid #dce5ed; background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%); }
.mega-title { display: flex; align-items: center; gap: 12px; font-weight: 800; margin-bottom: 8px; }
.mega-title img { width: 90px; height: 32px; object-fit: contain; object-position: left center; }
.mega-title.text-title { font-size: 19px; }
.mega-group p { color: var(--muted); margin: 0 0 14px; font-size: 13px; min-height: 42px; }
.mega-group a:not(.mega-title) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  color: var(--ink);
  font-size: 14px;
  border-bottom: 0;
}
.mega-group a:not(.mega-title):hover { color: var(--cta); }

.product-tabs {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid #dce5ed;
}
.product-tab {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid #dce5ed;
  border-radius: 0;
  color: #17243a;
  background: transparent;
  text-align: left;
  box-shadow: none;
}
.product-tab img {
  width: 82px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
  filter: none;
  opacity: .9;
}
.product-tab span {
  color: inherit;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 800;
}
.product-tab:hover,
.product-tab:focus-visible,
.product-tab.is-active {
  color: #061121;
  background: #ffffff;
  box-shadow: inset 3px 0 0 var(--orange);
}
.product-tab:hover {
  color: var(--cta);
}
.industry-tab {
  grid-template-columns: 1fr;
}
.product-mega-content {
  position: relative;
  background: #ffffff;
  min-height: 388px;
}
.product-mega-panel {
  display: none;
  padding: 38px 38px 36px;
}
.product-mega-panel.is-active {
  display: block;
}
.product-mega-head {
  display: grid;
  grid-template-columns: 178px 1fr auto;
  align-items: start;
  gap: 28px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dce5ed;
}
.product-mega-head img {
  width: 164px;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
  margin-top: 4px;
}
.industry-mega-head {
  grid-template-columns: 88px 1fr auto;
}
.industry-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e2ec;
  border-radius: 4px;
  background: #f8fbfd;
  color: var(--cta);
  font-size: 21px;
  font-weight: 900;
}
.product-mega-head h2 {
  font-size: 27px;
  margin-bottom: 6px;
}
.product-mega-head p,
.product-mega-head span {
  display: block;
  color: var(--muted);
  margin: 0;
}
.product-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #d7e1ea;
  border-radius: 4px;
  color: var(--cta);
  font-weight: 900;
  white-space: nowrap;
  background: #ffffff;
}
.product-all-link:hover {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
}
.mega-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 30px;
}
.mega-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 10px 0;
  border-bottom: 1px solid #e1e9f0;
  color: var(--ink);
  font-weight: 700;
}
.mega-link-grid a:hover {
  color: var(--orange);
  border-bottom-color: rgba(242, 106, 27, .72);
}

.home-hero {
  height: min(100svh, 920px);
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}
.hero-video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; opacity: .82; }
.hero-overlay { background: linear-gradient(90deg, rgba(6, 17, 31, .86), rgba(6, 17, 31, .35) 58%, rgba(6, 17, 31, .12)); }
.hero-video-toggle {
  position: absolute;
  right: 36px;
  bottom: 34px;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  color: white;
  background: rgba(15, 23, 42, .58);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.hero-video-toggle:hover,
.hero-video-toggle:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}
.hero-video-toggle .toggle-icon {
  display: grid;
  place-items: center;
  font-size: 20px;
}
.hero-video-toggle .toggle-play { display: none; }
.hero-video-toggle.is-paused .toggle-pause { display: none; }
.hero-video-toggle.is-paused .toggle-play { display: grid; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  padding: 160px 36px 92px;
  margin: 0 auto;
  width: 100%;
  color: white;
}
h1, h2, h3 { line-height: 1.18; margin: 0; letter-spacing: 0; }
h1, h2, h3, .mega-intro strong { font-family: Lexend, "PingFang SC", "Microsoft YaHei", Arial, sans-serif; }
h1 { font-size: 78px; max-width: 900px; }
h2 { font-size: 44px; }
h3 { font-size: 22px; }
.hero-content > .eyebrow {
  font-size: clamp(30px, 2.6vw, 39px);
  line-height: 1.12;
  margin: 12px 0 0;
  max-width: 900px;
}
.hero-copy { max-width: 680px; font-size: 22px; color: #dbe4ee; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 800;
}
.btn.primary { background: var(--cta); color: white; border-color: var(--cta); box-shadow: 0 10px 24px rgba(3, 105, 161, .22); }
.btn.primary:hover { background: var(--orange); border-color: var(--orange); box-shadow: 0 12px 28px rgba(242, 106, 27, .24); }
.btn.ghost { color: white; background: rgba(255,255,255,.08); }
.btn.ghost-dark { color: var(--ink); background: white; border-color: var(--line); }
.btn:hover { transform: translateY(-1px); }

.stats-band {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.stats-band div { padding: 26px 22px; border-right: 1px solid var(--line); }
.stats-band strong { display: block; color: var(--orange); font-size: 30px; line-height: 1.1; }
.stats-band span { color: var(--muted); font-size: 13px; font-weight: 700; }

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.trust-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font-size: 13px;
}

.section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 96px 36px;
}
.section-tight { padding-top: 86px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}
.section-head.inverted { color: white; }
.product-line-grid, .card-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.line-card, .content-card, .news-card, .download-card, .service-card, .contact-card, .about-slide {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}
.line-card {
  min-height: 246px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.line-card:hover, .content-card:hover, .news-card:hover, .download-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.line-card img { width: 150px; height: 42px; object-fit: contain; object-position: left center; }
.line-card span { color: var(--green); font-weight: 800; }
.line-card p, .content-card p, .news-card p { color: var(--muted); margin: 0; }

.dark-section {
  background: var(--dark);
  padding: 96px 36px;
}
.dark-section > * { max-width: 1480px; margin-left: auto; margin-right: auto; }
.dark-section-copy {
  max-width: 1480px;
  margin: 0 auto 36px;
}
.dark-section-copy .section-head {
  margin-bottom: 18px;
}
.dark-section-lead {
  max-width: 900px;
  margin: 0;
  padding-left: 24px;
  color: #d6dee7;
  font-size: 18px;
  line-height: 1.85;
}
.industry-band { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.15); }
.industry-panel {
  min-height: 460px;
  position: relative;
  color: white;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.15);
}
.industry-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  opacity: .9;
  transition: transform .8s ease, opacity .3s ease;
}
.industry-panel:hover img { transform: scale(1.05); opacity: .96; }
.industry-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, .02) 0%, rgba(2, 6, 23, .12) 42%, rgba(2, 6, 23, .76) 100%);
}
.industry-panel span, .industry-panel strong, .industry-panel p { position: relative; z-index: 1; }
.industry-panel span {
  display: block;
  min-height: 32px;
  color: var(--orange);
  font-size: 26px;
  line-height: 1.22;
  font-weight: 900;
  margin-bottom: 10px;
}
.industry-panel strong {
  display: flex;
  align-items: flex-start;
  min-height: 68px;
  font-size: 26px;
  line-height: 1.22;
  margin: 0;
}
.industry-panel p {
  min-height: 58px;
  color: #d6dee7;
  margin: 12px 0 0;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.split-feature p { color: var(--muted); font-size: 18px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 900;
}
.about-metrics { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.about-metrics div { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-metrics strong { display: block; color: var(--cyan); font-size: 42px; line-height: 1; }
.about-metrics span { color: var(--muted); font-weight: 800; }

.contact-strip {
  margin: 0 auto 80px;
  max-width: 1408px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.home-v2-hero {
  min-height: calc(100svh - 76px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #07111f;
}
.home-v2-video, .home-v2-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-v2-video { object-fit: cover; opacity: .72; filter: saturate(.86) contrast(1.08); }
.home-v2-hero-shade {
  background:
    linear-gradient(90deg, rgba(5,14,25,.96), rgba(5,14,25,.74) 46%, rgba(5,14,25,.36)),
    linear-gradient(180deg, rgba(5,14,25,.18), rgba(5,14,25,.72));
}
.home-v2-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 78px 36px 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 64px;
  align-items: center;
}
.home-v2-hero-copy h1 { max-width: 900px; font-size: 72px; color: white; }
.home-v2-hero-copy p:not(.eyebrow) { max-width: 740px; margin: 24px 0 0; color: #dbe7f2; font-size: 22px; }
.home-v2-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.home-v2-video-toggle { right: 36px; bottom: 34px; }
.home-v2-flow-model {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(214, 226, 239, .28);
  background: rgba(6, 17, 31, .62);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .34);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: flowModelLift 6s ease-in-out infinite;
}
.flow-model-grid {
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(620px) rotateX(58deg) translateY(88px) scale(1.2);
  transform-origin: center bottom;
}
.flow-node {
  position: absolute;
  width: 186px;
  padding: 16px;
  border: 1px solid rgba(219, 231, 242, .26);
  background: rgba(7, 17, 31, .86);
  backdrop-filter: blur(10px);
}
.flow-node span { display: inline-flex; color: var(--orange); font-weight: 900; font-size: 12px; }
.flow-node strong { display: block; margin-top: 6px; font-size: 18px; }
.flow-node em { display: block; color: #b8c8d8; font-style: normal; font-size: 12px; line-height: 1.45; margin-top: 4px; }
.flow-node-sense { left: 28px; top: 42px; }
.flow-node-decision { right: 28px; top: 92px; }
.flow-node-execute { right: 42px; bottom: 62px; }
.flow-node-operate { left: 38px; bottom: 98px; }
.flow-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 174px;
  height: 174px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(242, 106, 27, .74);
  background: linear-gradient(135deg, rgba(242,106,27,.2), rgba(3,105,161,.18));
  box-shadow: inset 0 0 42px rgba(3,105,161,.24), 0 0 42px rgba(242,106,27,.2);
}
.flow-core span { display: block; color: var(--orange); font-family: Lexend, "Microsoft YaHei", Arial, sans-serif; font-size: 34px; font-weight: 900; }
.flow-core strong { display: block; color: #dce8f5; font-size: 12px; }
.flow-rail {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242,106,27,.92), rgba(3,169,244,.78), transparent);
  transform-origin: left center;
  animation: flowPulse 2.6s linear infinite;
}
.flow-rail-a { width: 280px; left: 154px; top: 150px; transform: rotate(18deg); }
.flow-rail-b { width: 270px; right: 120px; top: 258px; transform: rotate(92deg); }
.flow-rail-c { width: 310px; left: 118px; bottom: 160px; transform: rotate(-18deg); }

.home-v2-proof {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}
.home-v2-proof div { padding: 28px 32px; border-right: 1px solid var(--line); }
.home-v2-proof strong { display: block; color: var(--orange); font-size: 34px; line-height: 1; }
.home-v2-proof span { display: block; margin-top: 8px; color: var(--muted); font-weight: 800; }
.home-v2-section { max-width: 1480px; margin: 0 auto; padding: 108px 36px; }
.home-v2-section-head { max-width: 920px; margin-bottom: 42px; }
.home-v2-section-head.split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.home-v2-section-head h2 { font-size: 48px; }
.home-v2-section-head p:not(.eyebrow) { color: var(--muted); font-size: 18px; margin: 14px 0 0; }
.home-v2-tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.home-v2-tech-card { min-height: 280px; padding: 32px; border: 1px solid var(--line); background: linear-gradient(180deg, #fff, #f8fbfd); }
.home-v2-tech-card span { color: var(--orange); font-size: 13px; font-weight: 900; }
.home-v2-tech-card h3 { margin-top: 34px; font-size: 30px; }
.home-v2-tech-card p { color: var(--muted); margin: 16px 0 0; }

.home-v2-industries { max-width: none; background: #f7fafc; }
.home-v2-industries > * { max-width: 1480px; margin-left: auto; margin-right: auto; }
.home-v2-industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.home-v2-industry-tile { min-height: 540px; display: grid; grid-template-rows: 220px 1fr; background: white; border-right: 1px solid var(--line); overflow: hidden; }
.home-v2-industry-tile img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .7s ease; }
.home-v2-industry-tile:hover img { transform: scale(1.04); }
.home-v2-industry-tile > div { padding: 28px; }
.home-v2-industry-tile span { color: var(--orange); font-size: 13px; font-weight: 900; }
.home-v2-industry-tile h3 { margin-top: 10px; font-size: 24px; }
.home-v2-industry-tile p { color: var(--muted); margin: 12px 0 18px; }
.home-v2-industry-tile nav { display: grid; gap: 8px; }
.home-v2-industry-tile nav a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 9px; border-top: 1px solid var(--line); color: #10243a; font-weight: 800; font-size: 14px; }
.home-v2-industry-tile nav a:hover { color: var(--orange); }

.home-v2-products { padding: 108px 36px; background: #07111f; color: white; }
.home-v2-products > * { max-width: 1480px; margin-left: auto; margin-right: auto; }
.home-v2-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.home-v2-product-line { display: grid; grid-template-rows: auto 210px auto 1fr; min-height: 520px; border: 1px solid rgba(220, 228, 236, .2); background: rgba(255, 255, 255, .055); overflow: hidden; }
.home-v2-product-head { padding: 26px 26px 18px; }
.home-v2-product-head img { width: 168px; height: 48px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.home-v2-product-head span { display: block; margin-top: 12px; color: #b9c8d7; font-weight: 800; }
.home-v2-product-image { width: 100%; height: 210px; object-fit: cover; opacity: .82; }
.home-v2-product-line p { margin: 20px 26px 16px; color: #cfdae5; }
.home-v2-product-line div { display: grid; align-content: end; padding: 0 26px 24px; gap: 8px; }
.home-v2-product-line div a { display: flex; min-height: 36px; align-items: center; border-top: 1px solid rgba(220, 228, 236, .18); color: white; font-weight: 800; font-size: 14px; }
.home-v2-product-line div a:hover { color: var(--orange); }

.home-v2-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.home-v2-case-card { min-height: 440px; border: 1px solid var(--line); background: white; overflow: hidden; }
.home-v2-case-card img { width: 100%; height: 230px; object-fit: cover; }
.home-v2-case-card span { display: block; margin: 22px 22px 8px; color: var(--orange); font-size: 13px; font-weight: 900; }
.home-v2-case-card h3 { margin: 0 22px 10px; font-size: 23px; }
.home-v2-case-card p { margin: 0 22px 24px; color: var(--muted); }
.home-v2-honors { padding: 108px 36px; display: grid; grid-template-columns: minmax(340px, .75fr) minmax(0, 1.25fr); gap: 42px; align-items: center; background: #eef4f8; }
.home-v2-honor-copy { max-width: 520px; justify-self: end; }
.home-v2-honor-copy h2 { font-size: 46px; }
.home-v2-honor-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.home-v2-honor-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.home-v2-honor-tags span { padding: 8px 12px; border: 1px solid #cbd9e4; background: rgba(255,255,255,.74); color: #12314c; font-weight: 800; font-size: 13px; }
.home-v2-honor-media { max-width: 900px; }
.home-v2-honor-main { width: 100%; border: 1px solid #cbd9e4; box-shadow: 0 24px 60px rgba(15, 23, 42, .12); }
.home-v2-honor-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.home-v2-honor-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid #d2dde7; background: white; }
.home-v2-cta { max-width: 1480px; margin: 0 auto; padding: 72px 36px 96px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.home-v2-cta h2 { max-width: 780px; font-size: 42px; }

@keyframes flowPulse {
  0% { opacity: .2; filter: saturate(.6); }
  50% { opacity: 1; filter: saturate(1.5); }
  100% { opacity: .2; filter: saturate(.6); }
}
@keyframes flowModelLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.page-hero, .detail-hero {
  position: relative;
  min-height: 520px;
  padding: 140px 36px 76px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
  color: white;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,17,31,.9), rgba(6,17,31,.35));
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1408px;
  width: 100%;
  margin: 0 auto;
}
.page-hero p:not(.eyebrow) { max-width: 760px; color: #dce6ef; font-size: 20px; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #c8d4df;
  margin-bottom: 24px;
  font-size: 14px;
}
.breadcrumbs a:hover { color: white; }

.product-index { display: grid; gap: 52px; }
.anchor-tabs {
  position: sticky;
  top: 112px;
  z-index: 10;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  margin: -30px 0 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.anchor-tabs a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
}
.anchor-tabs a:hover, .anchor-tabs a:focus-visible {
  color: white;
  background: var(--cta);
  border-color: var(--cta);
}
.family-block { scroll-margin-top: 136px; }
.family-head {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.family-head.text-only { grid-template-columns: 1fr; }
.family-head img { width: 170px; max-height: 58px; object-fit: contain; object-position: left center; }
.family-head p { max-width: 760px; color: var(--muted); margin: 8px 0 0; }
.content-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.content-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--surface); }
.content-card span { color: var(--orange); font-weight: 900; font-size: 13px; margin: 20px 20px 8px; }
.content-card h3 { margin: 0 20px 10px; }
.content-card p { margin: 0 20px 22px; }

.detail-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 46%);
  gap: 48px;
  align-items: center;
  min-height: 440px;
  padding: 78px 36px 58px;
  color: var(--ink);
  background: linear-gradient(90deg, #f4f8fb, #ffffff);
}
.detail-hero-copy { max-width: 760px; justify-self: end; width: 100%; }
.detail-hero-copy .breadcrumbs { color: var(--muted); }
.detail-hero-copy .breadcrumbs a:hover { color: var(--orange); }
.detail-hero-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.detail-hero-media {
  align-self: stretch;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.detail-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
}
.zenx-detail-hero .detail-hero-copy {
  max-width: 840px;
}
.zenx-detail-hero .zenx-hero-core {
  max-width: 780px;
  margin: 12px 0 0;
  color: #25384d;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.7;
}
.detail-layout {
  max-width: 1480px;
  margin: 0 auto;
  padding: 80px 36px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
}
.detail-aside {
  position: sticky;
  top: 106px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 900; margin-bottom: 18px; }
.detail-aside dl { margin: 0; }
.detail-aside dt { color: var(--muted); font-size: 12px; font-weight: 900; margin-top: 14px; }
.detail-aside dd { margin: 2px 0 0; word-break: break-word; }
.detail-content {
  max-width: 1000px;
  font-size: 17px;
}
.detail-content h2 {
  margin: 42px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
  font-size: 30px;
}
.detail-content p { color: #26384c; margin: 0 0 18px; }
.detail-content ul { margin: 0 0 22px; padding-left: 24px; }
.detail-content li { margin-bottom: 10px; color: #26384c; line-height: 1.8; }
.detail-case {
  margin: 18px 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #f8fbfd;
}
.detail-case h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.detail-case p { margin: 0; }
.syncore-detail-content {
  max-width: 1080px;
}
.syncore-lead-block {
  margin-bottom: 46px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fafc 100%);
}
.syncore-detail-content .syncore-lead-block h2 {
  margin: 8px 0 12px;
  padding: 0;
  border-left: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.18;
}
.syncore-subtitle {
  color: #0f2f4d;
  font-size: 22px;
  font-weight: 900;
}
.syncore-lead-block p:last-child {
  max-width: 860px;
  margin-bottom: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}
.syncore-section {
  margin-top: 44px;
}
.syncore-section h2 {
  margin-top: 0;
}
.syncore-text-stack {
  display: grid;
  gap: 16px;
}
.syncore-text-stack p {
  margin: 0;
  color: #26384c;
  line-height: 1.9;
}
.syncore-section-lead {
  margin: -4px 0 22px;
  color: #0f2f4d;
  font-size: 20px;
  font-weight: 900;
}
.syncore-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.syncore-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .055);
}
.syncore-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.syncore-card h3,
.syncore-value-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
}
.syncore-card p,
.syncore-value-list p,
.syncore-layer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.syncore-card-grid.compact .syncore-card {
  min-height: 170px;
}
.zenx-card-grid .syncore-card {
  min-height: 178px;
}
.zenx-card-grid .syncore-card p {
  font-size: 16px;
}
.zenx-model-table table {
  min-width: 760px;
}
.zenx-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.zenx-spec-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .055);
}
.zenx-spec-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 21px;
}
.zenx-spec-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}
.zenx-spec-card dl div {
  display: grid;
  grid-template-columns: minmax(120px, 34%) minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.zenx-spec-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.zenx-spec-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.zenx-spec-card dd {
  margin: 0;
  color: #26384c;
  font-weight: 800;
}
.syncore-value-list {
  display: grid;
  gap: 12px;
}
.syncore-value-list article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #f8fbfd;
}
.syncore-layer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.syncore-layer-grid article {
  min-height: 168px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbfd);
}
.syncore-layer-grid article:last-child {
  border-right: 0;
}
.syncore-layer-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}
.product-application-images {
  margin: 26px 0 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.product-application-images figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
  box-shadow: 0 18px 42px rgba(8, 27, 45, .08);
}
.product-application-images img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-sizing: border-box;
}
.product-application-images figure:nth-child(-n + 2) img {
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #edf3f6 100%);
}
.product-application-images figcaption {
  padding: 12px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  background: #fff;
  border-top: 1px solid var(--line);
}
.product-video-section {
  margin: 32px 0 42px;
}
.product-video-grid {
  display: grid;
  gap: 18px;
}
.product-video-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #06111f;
}
.product-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #06111f;
}
.product-video-card figcaption {
  padding: 12px 16px;
  color: white;
  font-weight: 900;
}
.table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--surface-strong); color: var(--ink); }
td { color: #2b3c50; }
.gallery-section { margin-top: 54px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid figure { margin: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--surface); }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.related-section { padding-top: 28px; }

.rse-hero {
  position: relative;
  min-height: 620px;
  padding: 104px 36px 72px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .86fr);
  gap: 64px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, #f7fafc 0%, #ffffff 54%, #edf5f7 100%);
}
.rse-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 105, 161, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3, 105, 161, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
}
.rse-hero-copy,
.rse-hero-media {
  position: relative;
  z-index: 1;
}
.rse-hero-copy {
  width: 100%;
  max-width: 760px;
  justify-self: end;
}
.rse-hero .breadcrumbs {
  color: var(--muted);
}
.rse-hero h1 {
  font-size: clamp(52px, 6vw, 82px);
  max-width: 760px;
}
.rse-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: #2a3d51;
  font-size: 20px;
  line-height: 1.85;
  margin: 20px 0 0;
}
.rse-hero-media {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid #d7e2eb;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.52)),
    radial-gradient(circle at 50% 86%, rgba(3,105,161,.18), transparent 42%);
  box-shadow: 0 28px 80px rgba(10, 35, 55, .12);
}
.rse-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: 20px;
}
.rse-spec-strip {
  max-width: 1480px;
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  background: #07111f;
  box-shadow: 0 18px 46px rgba(6, 17, 31, .18);
}
.rse-spec-strip div {
  min-height: 108px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.rse-spec-strip div:last-child {
  border-right: 0;
}
.rse-spec-strip span {
  display: block;
  color: #aebdcc;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}
.rse-spec-strip strong {
  color: white;
  font-size: 34px;
  line-height: 1;
}
.rse-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: center;
}
.rse-intro h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
.rse-intro p:not(.eyebrow) {
  color: #26384c;
  font-size: 18px;
  line-height: 1.95;
}
.rse-flow-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid #d7e2eb;
  border-radius: 8px;
  background: #f8fbfd;
}
.rse-flow-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border-left: 4px solid var(--orange);
  background: white;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}
.rse-flow-card span::after {
  content: "→";
  color: var(--cta);
}
.rse-flow-card span:last-child::after {
  content: "";
}
.rse-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.rse-advantage-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.rse-advantage-card span,
.rse-scenario-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.rse-advantage-card h3 {
  margin: 18px 0 12px;
  font-size: 26px;
}
.rse-advantage-card p,
.rse-scenario-card p {
  color: #31465c;
  line-height: 1.8;
  margin: 0;
}
.rvm-advantage-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.rvm-advantage-grid .rse-advantage-card {
  min-height: 320px;
  padding: 26px;
}
.rvm-advantage-grid h3 {
  font-size: 23px;
}
.rse-specs {
  padding-top: 80px;
}
.rse-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 34px;
  align-items: stretch;
}
.rse-spec-table {
  margin: 0;
  background: white;
}
.rse-spec-table th[scope="row"] {
  width: 34%;
  background: #f8fbfd;
}
.rse-spec-media {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfd, #eef3f6);
}
.rse-spec-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  padding: 22px;
}
.rse-spec-media figcaption,
.rse-case-main figcaption,
.rse-case-side figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  background: white;
}
.rse-scenarios {
  max-width: none;
  background: #f5f8fb;
}
.rse-scenarios > * {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}
.rse-scenario-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.rse-scenario-card {
  min-height: 360px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.rse-scenario-card:last-child {
  border-right: 0;
}
.rse-scenario-card h3 {
  margin: 16px 0 16px;
  font-size: 23px;
}
.rse-scenario-card p + p {
  margin-top: 14px;
}
.rse-scenario-card strong {
  color: var(--ink);
}
.rvm-scenario-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.rse-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 24px;
  align-items: stretch;
}
.rse-case-main,
.rse-case-side {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbfd;
}
.rse-case-main img,
.rse-case-side img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.rse-case-side img {
  object-fit: contain;
  padding: 20px;
  background: #eef2f5;
}
.rsl-case-main {
  background: #eef2f5;
}
.rsl-case-frame {
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(3, 105, 161, .12), transparent 48%),
    #eef2f5;
}
.rsl-case-main .rsl-case-frame img {
  width: clamp(300px, 58%, 520px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  padding: 0;
  background: transparent;
  transform: rotate(-90deg);
  box-shadow: 0 18px 42px rgba(6, 17, 31, .18);
}
.rvm-product-images .rse-case-main img,
.rvm-product-images .rse-case-side img {
  object-fit: contain;
  padding: 24px;
  background: #eef2f5;
}

.section-lead {
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin: -14px 0 34px;
}
.mining-hero {
  position: relative;
  min-height: 560px;
  padding: 112px 36px 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  color: white;
  background: #06111f;
  overflow: hidden;
}
.mining-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,17,31,.96), rgba(6,17,31,.62) 52%, rgba(6,17,31,.24)),
    linear-gradient(180deg, rgba(6,17,31,.1), rgba(6,17,31,.84));
}
.mining-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  width: 100%;
  justify-self: center;
}
.mining-hero .breadcrumbs { color: #cbd7e2; }
.mining-hero h1 {
  max-width: 1180px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.mining-hero p:not(.eyebrow) {
  max-width: 1120px;
  color: #dbe7ef;
  font-size: 19px;
}
.mining-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #07111f;
  box-shadow: none;
  overflow: hidden;
  opacity: .58;
}
.mining-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mining-visual-stage {
  position: absolute;
  z-index: 2;
  min-width: 116px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  background: rgba(6,17,31,.82);
  color: white;
  font-weight: 900;
  text-align: center;
}
.stage-source { left: 32px; top: 52px; }
.stage-sensing { left: 50%; top: 50%; transform: translate(-50%, -50%); color: var(--orange); }
.stage-value { right: 32px; bottom: 54px; }
.mining-beam {
  position: absolute;
  height: 3px;
  width: 72%;
  left: 14%;
  background: linear-gradient(90deg, transparent, #38bdf8, #f97316, transparent);
  transform-origin: center;
  opacity: .86;
}
.beam-one { top: 43%; transform: rotate(18deg); }
.beam-two { top: 57%; transform: rotate(-18deg); }
.mining-gridline {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(56,189,248,.22);
  border-radius: 6px;
}
.mining-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: stretch;
}
.mining-overview-copy {
  color: #26384c;
  font-size: 18px;
  line-height: 1.9;
}
.mining-emphasis {
  margin-top: 22px;
  padding: 24px 26px;
  border-left: 4px solid var(--orange);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}
.mining-scenario-rail {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07111f;
}
.mining-scenario-rail span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-left: 4px solid var(--orange);
  color: white;
  font-weight: 900;
}
.mining-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mining-card,
.mining-flow-step,
.mining-loop-step,
.mining-application {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.mining-card {
  min-height: 190px;
  padding: 24px;
}
.mining-card h3,
.mining-flow-step h3,
.mining-loop-step h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.mining-card p,
.mining-flow-step p,
.mining-loop-step p,
.mining-application p {
  color: var(--muted);
  margin: 0;
}
.mining-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.mining-flow-step {
  min-height: 330px;
  padding: 28px;
  border-width: 0 1px 0 0;
  border-radius: 0;
}
.mining-flow-step:last-child { border-right: 0; }
.mining-flow-step span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.mining-flow-step strong {
  display: block;
  margin: 8px 0 22px;
  color: #0ea5e9;
  font-size: 30px;
  line-height: 1.1;
}
.mining-dark-lead {
  margin: 0;
}
.mining-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mining-tech-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  color: white;
}
.mining-tech-card h3 { font-size: 24px; margin-bottom: 16px; }
.mining-tech-card p { color: #dbe7ef; margin: 0; }
.mining-loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.mining-loop-step {
  position: relative;
  min-height: 174px;
  padding: 24px;
  overflow: hidden;
}
.mining-loop-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
}
.mining-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.mining-application {
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.mining-application > div {
  padding: 28px;
  color: white;
  background: linear-gradient(145deg, #07111f, #103047);
}
.mining-application span {
  display: block;
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}
.mining-application > div p { color: #dce7ef; }
.mining-application section {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}
.mining-application h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.srf-hero {
  background: #06111f;
}
.srf-hero .wind-hero-overlay { z-index: 1; }
.srf-hero-image { opacity: .56; }
.srf-hero .mining-hero-copy {
  width: 100%;
  max-width: 1480px;
  justify-self: center;
}
.srf-hero h1,
.srf-hero p:not(.eyebrow) {
  max-width: 1120px;
}
.srf-positioning {
  margin-top: 10px;
  color: #f4fbff !important;
  font-weight: 800;
}
.srf-visual .stage-sensing {
  color: #22c55e;
}
.srf-value-strip {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: -42px auto 0;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.srf-value-strip article {
  min-height: 154px;
  padding: 28px;
  border: 1px solid var(--line);
  border-right: 0;
  background: white;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}
.srf-value-strip article:first-child { border-radius: 8px 0 0 8px; }
.srf-value-strip article:last-child { border-right: 1px solid var(--line); border-radius: 0 8px 8px 0; }
.srf-value-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.srf-value-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}
.srf-fuel-table {
  margin-bottom: 24px;
}
.srf-fuel-table th[scope="row"] {
  color: var(--orange);
  white-space: nowrap;
}
.srf-chain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.srf-chain-step {
  min-height: 360px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: white;
}
.srf-chain-step:last-child { border-right: 0; }
.srf-chain-step span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 900;
}
.srf-chain-step p {
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.65;
}
.srf-chain-step ul,
.srf-process-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.srf-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.srf-process-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.srf-process-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.srf-process-card strong {
  display: block;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.7;
}
.srf-case-list {
  display: grid;
  gap: 24px;
}
.srf-case-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 22px 58px rgba(15, 23, 42, .06);
}
.srf-case-copy {
  padding: 32px;
}
.srf-case-copy > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.srf-case-copy h3 {
  font-size: 30px;
  margin-bottom: 18px;
}
.srf-case-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}
.srf-case-copy dl div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}
.srf-case-copy dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.srf-case-copy dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.45;
}
.srf-case-copy p {
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.srf-case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: #07111f;
}
.srf-case-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: white;
}
.srf-case-gallery img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}
.srf-case-gallery figcaption {
  padding: 10px 12px;
  color: #12314c;
  font-size: 13px;
  font-weight: 900;
}

.cdw-hero {
  position: relative;
  min-height: 600px;
  padding: 118px 36px 78px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #07111f;
}
.cdw-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
}
.cdw-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,17,31,.94), rgba(6,17,31,.64) 55%, rgba(6,17,31,.28)),
    linear-gradient(180deg, rgba(6,17,31,.1), rgba(6,17,31,.84));
}
.cdw-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.cdw-hero .breadcrumbs { color: #cbd7e2; }
.cdw-hero h1 {
  max-width: 1180px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.08;
}
.cdw-hero p:not(.eyebrow) {
  max-width: 1120px;
  color: #dbe7ef;
  font-size: 20px;
}
.cdw-hero.plastic-hero {
  min-height: 460px;
  padding: 92px 36px 58px;
  align-items: center;
}
.cdw-hero.plastic-hero .cdw-hero-image {
  opacity: .5;
}
.cdw-hero.plastic-hero .cdw-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 16, 29, .96), rgba(5, 16, 29, .72) 48%, rgba(5, 16, 29, .26)),
    linear-gradient(180deg, rgba(5, 16, 29, .18), rgba(5, 16, 29, .82));
}
.cdw-hero.plastic-hero .cdw-hero-inner {
  max-width: 1480px;
}
.cdw-hero.plastic-hero h1 {
  max-width: 1180px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.08;
}
.cdw-hero.plastic-hero p:not(.eyebrow) {
  max-width: 1120px;
  color: #edf6fb;
  font-size: 18px;
  line-height: 1.82;
}
.cdw-hero.plastic-hero .hero-actions {
  margin-top: 28px;
}
.cdw-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}
.cdw-stats div {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}
.cdw-stats strong {
  display: block;
  color: var(--orange);
  font-size: 30px;
  line-height: 1.1;
}
.cdw-stats span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.plastic-stats {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: -30px auto 52px;
  padding: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .1);
  counter-reset: plasticStep;
}
.plastic-stats div {
  position: relative;
  min-height: 116px;
  padding: 24px 22px 22px 70px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbfd);
}
.plastic-stats div:last-child {
  border-right: 0;
}
.plastic-stats div::before {
  counter-increment: plasticStep;
  content: "0" counter(plasticStep);
  position: absolute;
  left: 22px;
  top: 25px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe2ee;
  border-radius: 8px;
  background: #f1f8fc;
  color: #0369a1;
  font-size: 12px;
  font-weight: 900;
}
.plastic-stats strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
}
.plastic-stats span {
  display: block;
  margin-top: 8px;
  color: #607184;
  font-size: 12px;
  font-weight: 800;
}
.cdw-hero.mrf-hero {
  min-height: 500px;
  padding: 96px 36px 62px;
  align-items: center;
}
.cdw-hero.mrf-hero .cdw-hero-image {
  opacity: .5;
}
.cdw-hero.mrf-hero .cdw-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 16, 29, .96), rgba(5, 16, 29, .68) 52%, rgba(5, 16, 29, .24)),
    linear-gradient(180deg, rgba(5, 16, 29, .12), rgba(5, 16, 29, .84));
}
.cdw-hero.mrf-hero .cdw-hero-inner {
  max-width: 1480px;
}
.cdw-hero.mrf-hero h1 {
  max-width: 1180px;
  margin: 18px 0;
  font-size: clamp(44px, 4vw, 62px);
}
.cdw-hero.mrf-hero p:not(.eyebrow) {
  max-width: 1120px;
  color: #edf6fb;
  font-size: 18px;
  line-height: 1.82;
}
.mrf-stats {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: -30px auto 54px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .1);
}
.mrf-stats article {
  min-height: 112px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbfd);
}
.mrf-stats article:last-child { border-right: 0; }
.mrf-stats strong {
  display: block;
  color: #0369a1;
  font-size: 28px;
  line-height: 1.12;
}
.mrf-stats span {
  display: block;
  margin-top: 10px;
  color: #526579;
  font-size: 13px;
  font-weight: 800;
}
.mrf-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}
.mrf-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.mrf-copy h2 {
  margin-bottom: 16px;
}
.mrf-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}
.mrf-media,
.mrf-material-card,
.mrf-case-panel {
  min-width: 0;
}
.mrf-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef4f8;
}
.mrf-figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.mrf-figure.large img { min-height: 360px; }
.mrf-figure.wide img { min-height: 260px; }
.mrf-material-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}
.mrf-material-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.mrf-material-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.mrf-material-card p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}
.mrf-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.mrf-input-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.mrf-image-grid.count-1 { grid-template-columns: 1fr; }
.mrf-image-grid.count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mrf-image-grid.count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.municipal-stats {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.mrf-image-grid .mrf-figure img {
  min-height: 148px;
  aspect-ratio: 1.1 / 1;
}
.mrf-tech {
  padding-top: 80px;
  padding-bottom: 80px;
}
.mrf-tech-list {
  display: grid;
  gap: 18px;
}
.mrf-tech-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.mrf-tech-panel:nth-child(even) .mrf-figure { order: -1; }
.mrf-tech-panel > div {
  padding: 26px;
}
.mrf-tech-panel span {
  display: block;
  margin-bottom: 20px;
  color: #42d3ff;
  font-size: 13px;
  font-weight: 900;
}
.mrf-tech-panel h3 {
  color: #fff;
  font-size: 28px;
}
.mrf-tech-panel p {
  color: #cbd7e2;
  font-size: 17px;
  line-height: 1.8;
}
.mrf-case-list {
  display: grid;
  gap: 22px;
}
.mrf-case-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.mrf-case-panel:nth-child(even) .mrf-case-copy { order: 2; }
.mrf-case-copy {
  padding: 30px;
}
.mrf-case-copy h3 {
  font-size: 28px;
}
.mrf-case-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.mrf-case-copy dl div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
}
.mrf-case-copy dt {
  color: #607184;
  font-size: 12px;
  font-weight: 800;
}
.mrf-case-copy dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}
.mrf-case-copy p {
  color: var(--muted);
  line-height: 1.78;
}
.mrf-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px;
  background: #f1f6fa;
}
.mrf-case-grid .mrf-figure img {
  min-height: 260px;
}
.municipal-tech {
  background: #f8fafc;
}
.municipal-tech .mrf-tech-panel {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}
.municipal-tech .mrf-tech-panel h3,
.municipal-tech .mrf-tech-panel p {
  color: var(--ink);
}
.municipal-tech .mrf-tech-panel p {
  color: var(--muted);
}
.municipal-tech .mrf-tech-panel span {
  color: #0369a1;
}
.cdw-material-layout,
.cdw-process-layout,
.cdw-value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 28px;
  align-items: stretch;
}
.cdw-value-layout {
  display: block;
}
.cdw-material-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.cdw-material-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.cdw-material-media .cdw-figure img {
  min-height: 150px;
  aspect-ratio: 16 / 6;
}
.cdw-material-card,
.cdw-pain-card,
.cdw-process-card,
.cdw-tech-card,
.cdw-case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.cdw-material-card {
  padding: 24px;
}
.cdw-material-card span {
  display: block;
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}
.cdw-material-card p {
  color: var(--muted);
  margin: 0 0 12px;
}
.cdw-material-card strong {
  display: block;
  color: var(--ink);
}
.cdw-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.cdw-figure img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.cdw-figure figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: white;
}
.cdw-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cdw-pain-card {
  min-height: 220px;
  padding: 24px;
}
.cdw-pain-card span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 28px;
}
.cdw-pain-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.cdw-pain-card p,
.cdw-process-card p {
  color: var(--muted);
  margin: 0;
}
.cdw-dark-lead {
  margin: 0;
}
.cdw-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  overflow: hidden;
}
.cdw-chain-step {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  color: white;
}
.cdw-chain-step:last-child { border-right: 0; }
.cdw-chain-step span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.cdw-chain-step h3 {
  font-size: 24px;
  margin: 12px 0 18px;
}
.cdw-chain-step ul {
  margin: 0;
  padding-left: 18px;
  color: #dbe7ef;
}
.cdw-chain-step li + li { margin-top: 9px; }
.cdw-process-list {
  display: grid;
  gap: 16px;
}
.cdw-process-card {
  padding: 26px;
}
.cdw-process-card h3 {
  color: var(--ink);
  font-size: 24px;
  margin-bottom: 14px;
}
.cdw-process-card strong {
  display: block;
  margin-top: 14px;
  color: #12314c;
}
.cdw-process-media {
  display: grid;
  gap: 16px;
}
.cdw-figure.large img { min-height: 290px; }
.cdw-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.cdw-tech-card {
  min-height: 150px;
  padding: 24px;
  border-left: 4px solid var(--orange);
}
.cdw-tech-card h3 {
  font-size: 20px;
}
.cdw-value-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07111f;
}
.cdw-value-marquee::before,
.cdw-value-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}
.cdw-value-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #07111f, rgba(7,17,31,0));
}
.cdw-value-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #07111f, rgba(7,17,31,0));
}
.cdw-value-track {
  width: max-content;
  display: flex;
  padding: 16px;
  will-change: transform;
}
.cdw-value-group { display: flex; gap: 14px; padding-right: 14px; }
.cdw-value-slide {
  flex: 0 0 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: white;
}
.cdw-value-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.cdw-value-slide figcaption {
  padding: 10px 12px;
  color: #12314c;
  font-size: 13px;
  font-weight: 900;
}
@keyframes cdwMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.cdw-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cdw-case-card {
  overflow: hidden;
}
.cdw-case-card h3 {
  padding: 22px 22px 0;
  font-size: 22px;
}
.cdw-case-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}
.cdw-case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface);
}
.mixed-tech .cdw-chain {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mixed-tech .cdw-chain-step {
  min-height: 260px;
}
.mixed-case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mixed-case-card dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 8px 16px;
  margin: 0;
  padding: 16px;
  border-radius: 6px;
  background: var(--surface);
}
.mixed-case-card dt {
  color: var(--ink);
  font-weight: 900;
}
.mixed-case-card dd {
  margin: 0;
  color: var(--muted);
}
.mixed-case-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

.wind-hero {
  position: relative;
  min-height: 620px;
  padding: 118px 36px 78px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #06111f;
}
.wind-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
}
.wind-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,17,31,.96), rgba(6,17,31,.62) 50%, rgba(6,17,31,.22));
}
.wind-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.wind-hero h1 {
  max-width: 1180px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.wind-hero p:not(.eyebrow) {
  max-width: 1120px;
  color: #dce7ef;
  font-size: 19px;
}
.wind-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: white;
  border-bottom: 1px solid var(--line);
}
.wind-stats div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}
.wind-stats strong {
  display: block;
  color: var(--orange);
  font-size: 30px;
  line-height: 1.1;
}
.wind-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.wind-card-grid,
.wind-system-grid,
.wind-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.wind-card,
.wind-system-card,
.wind-value-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.wind-card h3,
.wind-system-card h3,
.wind-value-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.wind-card p,
.wind-value-card p {
  color: var(--muted);
  margin: 0;
}
.wind-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44%;
  gap: 34px;
  align-items: start;
}
.wind-process {
  display: grid;
  gap: 14px;
}
.wind-process-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.wind-process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--cta);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}
.wind-process-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.wind-process-step p {
  color: var(--muted);
  margin: 0;
}
.wind-figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.wind-figure.sticky {
  position: sticky;
  top: 106px;
}
.wind-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.wind-figure.large img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--surface);
}
.wind-figure figcaption {
  padding: 13px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  border-top: 1px solid var(--line);
}
.wind-system-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.wind-system-card {
  min-height: 260px;
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  color: white;
}
.wind-system-card p {
  color: #dbe7ef;
  margin: 0;
}
.wind-equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 36px;
  align-items: start;
}
.wind-equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.wind-equipment-list article {
  min-height: 156px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.wind-equipment-list h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.wind-equipment-list p {
  margin: 0;
  color: var(--muted);
}
.wind-equipment-media {
  display: grid;
  gap: 16px;
}
.wind-equipment-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.wind-equipment-gallery .wind-figure img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--surface);
}
.wind-metrics .table-wrap {
  margin-top: 0;
}
.wind-case-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbfd, #ffffff);
}
.wind-case-card h2 {
  font-size: 38px;
  margin-bottom: 16px;
}
.wind-case-card p:not(.eyebrow) {
  color: #26384c;
  font-size: 18px;
}
.wind-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 430px;
  gap: 46px;
  align-items: start;
}
.about-overview-copy h2 {
  max-width: 900px;
  font-size: 46px;
  line-height: 1.16;
  margin-bottom: 18px;
}
.about-lead {
  color: var(--cta);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 24px;
}
.about-paragraphs {
  display: grid;
  gap: 16px;
  color: #26384c;
  font-size: 18px;
  line-height: 1.9;
}
.about-paragraphs p { margin: 0; }
.about-proof-panel {
  position: sticky;
  top: 106px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: linear-gradient(145deg, #244f94 0%, #6f96d8 100%);
  color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(34, 75, 142, .2);
}
.about-proof-panel div {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.about-proof-panel strong {
  display: block;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.about-proof-panel span {
  color: rgba(255,255,255,.82);
  font-weight: 800;
}
.about-panorama {
  max-width: 1480px;
  margin: 0 auto 38px;
  padding: 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, .66fr);
  align-items: stretch;
}
.about-panorama img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}
.about-panorama div {
  position: relative;
  display: grid;
  align-content: center;
  padding: 48px;
  color: white;
  background: #416bb3;
}
.about-panorama div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 34px solid var(--white);
  border-right: 34px solid transparent;
}
.about-panorama h2 {
  font-size: 38px;
  margin-bottom: 14px;
}
.about-panorama p:not(.eyebrow) {
  color: rgba(255,255,255,.86);
  font-size: 18px;
  margin: 0;
}
.about-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.about-video-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
}
.about-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #06111f;
}
.about-video-card figcaption {
  padding: 14px 18px;
  color: #d8e3ee;
  font-weight: 800;
}
.about-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.about-tech-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.about-tech-card span {
  color: var(--orange);
  font-weight: 900;
}
.about-tech-card h3 {
  color: white;
  font-size: 26px;
  margin: 12px 0 16px;
}
.about-tech-card p {
  color: #c6d2df;
  margin: 0;
}
.about-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #06111f;
  margin-bottom: 28px;
}
.about-carousel-viewport {
  overflow: hidden;
}
.about-carousel-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform .58s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.about-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  background: #06111f;
}
.about-carousel-slide img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.about-carousel-slide figcaption {
  position: absolute;
  left: 28px;
  bottom: 26px;
  min-width: 260px;
  padding: 16px 18px;
  color: white;
  background: rgba(6, 17, 31, .74);
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(12px);
}
.about-carousel-slide figcaption span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}
.about-carousel-slide figcaption strong {
  display: block;
  font-size: 20px;
}
.about-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 50%;
  color: white;
  background: rgba(6, 17, 31, .54);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}
.about-carousel-btn:hover,
.about-carousel-btn:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
}
.about-carousel-btn.prev { left: 18px; }
.about-carousel-btn.next { right: 18px; }
.about-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(6, 17, 31, .52);
  transform: translateX(-50%);
}
.about-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}
.about-carousel-dots button[aria-current="true"] {
  width: 24px;
  border-radius: 999px;
  background: var(--orange);
}
.about-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-brand-card {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.about-brand-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface);
}
.about-brand-card div { padding: 22px; }
.about-brand-card h3 {
  margin-bottom: 6px;
  font-size: 24px;
}
.about-brand-card strong {
  display: block;
  color: var(--cta);
  margin-bottom: 10px;
}
.about-brand-card p {
  color: var(--muted);
  margin: 0;
}
.about-industry-story {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}
.about-story-media img {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: 8px;
}
.about-story-copy h2 {
  font-size: 42px;
  margin-bottom: 24px;
}
.about-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about-industry-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.about-industry-grid h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.about-industry-grid p {
  color: var(--muted);
  margin: 0;
}
.about-cooperation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.about-cooperation-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.about-cooperation-grid span {
  display: block;
  min-height: 44px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.about-cooperation-grid h3 {
  margin: 12px 0 10px;
  color: var(--cta);
}
.about-cooperation-grid p {
  margin: 0;
  color: #26384c;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-badges strong {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: white;
}

.about-slide-list { display: grid; gap: 20px; }
.about-slide { padding: 28px; display: grid; grid-template-columns: 72px 260px 1fr; gap: 24px; align-items: start; }
.about-slide span { color: var(--orange); font-weight: 900; font-size: 22px; }
.about-slide p { margin: 0; color: var(--muted); }
.download-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.download-card { min-height: 92px; padding: 22px; display: flex; align-items: center; gap: 14px; font-weight: 900; }
.download-card svg { color: var(--orange); font-size: 26px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card { display: grid; grid-template-columns: 42% 1fr; min-height: 320px; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-copy { padding: 28px; }
.service-copy svg { color: var(--green); font-size: 32px; margin-bottom: 18px; }
.service-copy p { color: var(--muted); margin-bottom: 0; }

.news-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--surface); }
.news-card div { padding: 20px; }
.news-card span, .news-row span { color: var(--orange); font-weight: 900; font-size: 13px; }
.news-card h3 { margin: 8px 0 10px; }
.news-list { display: grid; gap: 18px; }
.news-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 160px;
  display: grid;
  grid-template-columns: 220px 1fr 40px;
  gap: 22px;
  align-items: center;
  padding: 16px;
}
.news-row img { width: 100%; height: 128px; object-fit: cover; border-radius: 6px; }
.news-row p { color: var(--muted); margin-bottom: 0; }
.detail-main-image { width: 100%; max-height: 620px; object-fit: contain; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 28px; }

.contact-hero {
  position: relative;
  min-height: 520px;
  padding: 128px 36px 78px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #06111f;
}
.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,17,31,.95), rgba(6,17,31,.58), rgba(6,17,31,.2));
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}
.contact-hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.06;
}
.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #dce7ef;
  font-size: 19px;
}
.contact-gateway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}
.contact-gateway a {
  min-height: 110px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
  color: var(--ink);
}
.contact-gateway a:hover,
.contact-gateway a:focus-visible {
  background: var(--surface);
}
.contact-gateway span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}
.contact-gateway strong {
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
}
.contact-region-list {
  display: grid;
  gap: 28px;
}
.contact-region-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}
.contact-region-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f8fbfd, #ffffff);
}
.contact-region-head h2 {
  font-size: 36px;
  margin-bottom: 8px;
}
.contact-region-head p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}
.contact-table-wrap {
  overflow-x: auto;
}
.contact-table {
  min-width: 1080px;
  width: 100%;
  table-layout: fixed;
}
.contact-table th {
  background: #eef5fa;
}
.contact-table th:nth-child(1),
.contact-table td:nth-child(1) {
  width: 19%;
}
.contact-table th:nth-child(2),
.contact-table td:nth-child(2) {
  width: 19%;
}
.contact-table th:nth-child(3),
.contact-table td:nth-child(3) {
  width: 18%;
}
.contact-table th:nth-child(4),
.contact-table td:nth-child(4) {
  width: 20%;
}
.contact-table th:nth-child(5),
.contact-table td:nth-child(5) {
  width: 24%;
}
.contact-table td:nth-child(1),
.contact-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 900;
}
.contact-fill {
  display: block;
  min-height: 28px;
  width: 100%;
}
.contact-email {
  color: #0369a1;
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}
.contact-email:hover {
  color: var(--orange);
}
.contact-empty {
  border-bottom: 1px solid #b9c7d4;
}

.site-footer {
  background: var(--dark);
  color: #dce5ee;
  padding: 58px 36px;
}
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 60px;
}
.footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.footer-brand p { color: #b7c4d1; max-width: 460px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links h2 { font-size: 16px; margin-bottom: 16px; color: white; }
.footer-links a { display: block; color: #b7c4d1; margin: 8px 0; }
.footer-links a:hover { color: var(--orange); }
.qr { width: 96px; height: 96px; background: white; padding: 6px; margin-top: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-header { top: 0; }
  h1 { font-size: 58px; }
  h2 { font-size: 36px; }
  .header-inner { padding: 0 20px; height: auto; min-height: 74px; flex-wrap: wrap; }
  .brand { min-width: auto; }
  .brand span { display: none; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: static;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    box-shadow: none;
    max-height: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a, .nav-item { min-height: 54px; padding: 0 16px; border-bottom: 1px solid #e4ebf2; }
  .primary-nav > a::after, .nav-item::after { display: none; }
  .primary-nav a { touch-action: manipulation; }
  .nav-item { display: grid; grid-template-columns: minmax(0, 1fr) 44px; align-items: center; }
  .nav-item > a { min-height: 54px; align-self: stretch; justify-content: flex-start; }
  .mega-trigger { min-height: 54px; width: 44px; margin-left: 0; justify-self: end; -webkit-appearance: none; appearance: none; touch-action: manipulation; }
  .nav-search-button {
    width: auto;
    height: 48px;
    margin: 10px 16px 14px;
    border-radius: 6px;
    justify-self: stretch;
  }
  .floating-actions {
    right: 14px;
    bottom: 18px;
    gap: 8px;
  }
  .float-top {
    width: 48px;
    height: 48px;
  }
  .float-solution {
    min-width: 112px;
    height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }
  .site-search-dialog {
    width: calc(100% - 24px);
    min-height: 280px;
    padding: 66px 18px 30px;
  }
  .site-search-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .site-search-dialog h2 {
    font-size: 28px;
  }
  .mega-panels { padding: 0 20px; }
  .mega-panel { display: none; padding-bottom: 16px; }
  .mega-panel.is-open { display: block; }
  .mega-shell { width: 100%; grid-template-columns: 1fr; min-height: 0; box-shadow: none; border-radius: 0 0 6px 6px; }
  .mega-intro { border-right: 0; border-bottom: 1px solid #dce5ed; }
  .product-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; border-top: 0; }
  .product-tab { border: 1px solid #dce5ed; border-radius: 4px; }
  .product-mega-head, .industry-mega-head { grid-template-columns: 1fr; }
  .mega-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-grid, .industries-mega { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(4, 1fr); }
  .industry-band { grid-template-columns: repeat(2, 1fr); }
  .product-line-grid, .card-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-copy { justify-self: start; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .rse-hero { grid-template-columns: 1fr; min-height: 0; padding-top: 96px; }
  .rse-hero-copy { justify-self: start; }
  .rse-hero-media { min-height: 420px; }
  .rse-spec-strip { grid-template-columns: repeat(2, 1fr); margin-left: 36px; margin-right: 36px; }
  .rse-spec-strip div:nth-child(2) { border-right: 0; }
  .rse-spec-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .rse-intro, .rse-spec-layout, .rse-case-layout { grid-template-columns: 1fr; }
  .rse-advantage-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rse-scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rse-scenario-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
  .syncore-layer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .syncore-layer-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .syncore-layer-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
  .syncore-layer-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
  .mining-hero { grid-template-columns: 1fr; padding-top: 98px; }
  .mining-hero-copy { justify-self: start; }
  .mining-visual { min-height: 0; }
  .mining-overview-grid { grid-template-columns: 1fr; }
  .mining-card-grid, .mining-tech-grid, .mining-application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mining-flow { grid-template-columns: 1fr; }
  .mining-flow-step { border-width: 0 0 1px 0; min-height: 0; }
  .mining-flow-step:last-child { border-bottom: 0; }
  .mining-loop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .srf-chain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border: 0; gap: 16px; overflow: visible; }
  .srf-chain-step { min-height: 0; border: 1px solid var(--line); border-radius: 8px; }
  .srf-process-grid { grid-template-columns: 1fr; }
  .srf-case-panel { grid-template-columns: 1fr; }
  .srf-case-gallery img { min-height: 260px; }
  .cdw-stats { grid-template-columns: repeat(3, 1fr); }
  .plastic-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: -24px 28px 42px;
  }
  .plastic-stats div:nth-child(2n) { border-right: 0; }
  .plastic-stats div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .mrf-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -24px 28px 42px;
  }
  .mrf-stats article:nth-child(3n) { border-right: 0; }
  .mrf-stats article:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .mrf-split,
  .mrf-tech-panel,
  .mrf-case-panel {
    grid-template-columns: 1fr;
  }
  .mrf-tech-panel:nth-child(even) .mrf-figure,
  .mrf-case-panel:nth-child(even) .mrf-case-copy {
    order: 0;
  }
  .cdw-material-layout, .cdw-process-layout, .cdw-value-layout { grid-template-columns: 1fr; }
  .cdw-pain-grid, .cdw-chain, .cdw-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cdw-chain-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .cdw-tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wind-card-grid, .wind-system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wind-process-layout, .wind-equipment-layout, .wind-case-card { grid-template-columns: 1fr; }
  .wind-equipment-list, .wind-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wind-figure.sticky { position: static; }
  .contact-gateway { grid-template-columns: repeat(2, 1fr); }
  .contact-region-head { display: block; }
  .about-overview { grid-template-columns: 1fr; }
  .about-proof-panel { position: static; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .about-panorama { grid-template-columns: 1fr; }
  .about-tech-grid, .about-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-industry-story { grid-template-columns: 1fr; }
  .about-story-media img { min-height: 420px; }
  .about-cooperation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-slide { grid-template-columns: 52px 1fr; }
  .about-slide p { grid-column: 2; }
  .home-v2-hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 74px; }
  .home-v2-hero-copy h1 { font-size: 56px; }
  .home-v2-flow-model { min-height: 420px; max-width: 720px; width: 100%; }
  .home-v2-proof { grid-template-columns: repeat(3, 1fr); }
  .home-v2-tech-grid, .home-v2-product-grid { grid-template-columns: repeat(2, 1fr); }
  .home-v2-industry-grid, .home-v2-case-grid { grid-template-columns: repeat(2, 1fr); }
  .home-v2-honors { grid-template-columns: 1fr; }
  .home-v2-honor-copy { max-width: 860px; justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { top: 0; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .header-inner { min-height: 68px; }
  .brand img { width: 132px; }
  .floating-actions {
    right: 12px;
    bottom: 14px;
  }
  .float-top {
    width: 44px;
    height: 44px;
  }
  .float-solution {
    min-width: 104px;
    height: 46px;
    font-size: 13px;
  }
  .site-search-form {
    grid-template-columns: minmax(0, 1fr) 52px;
  }
  .site-search-form input {
    height: 54px;
    font-size: 15px;
  }
  .site-search-result {
    grid-template-columns: 1fr;
  }
  .site-search-result span {
    grid-row: auto;
  }
  .home-hero {
    height: 72svh;
    min-height: 520px;
    max-height: 660px;
    align-items: end;
  }
  .hero-video { object-position: center center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(6,17,31,.28) 0%, rgba(6,17,31,.62) 48%, rgba(6,17,31,.9) 100%);
  }
  .hero-video-toggle {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
  .hero-content { padding: 110px 20px 82px; }
  .hero-copy { font-size: 18px; }
  .section, .dark-section, .detail-layout { padding-left: 20px; padding-right: 20px; }
  .page-hero, .detail-hero { padding: 116px 20px 54px; min-height: 440px; }
  .detail-hero { padding: 64px 20px 42px; min-height: 360px; }
  .detail-hero-media { min-height: 240px; }
  .product-application-images { grid-template-columns: 1fr; gap: 14px; }
  .product-application-images figure:nth-child(-n + 2) img { padding: 12px; }
  .rse-hero { padding: 88px 20px 56px; }
  .rse-hero h1 { font-size: 42px; }
  .rse-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .rse-hero-media { min-height: 300px; }
  .rse-spec-strip { grid-template-columns: 1fr; margin: -22px 20px 0; }
  .rse-spec-strip div { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .rse-spec-strip div:last-child { border-bottom: 0; }
  .rse-intro { gap: 28px; }
  .rse-intro h2 { font-size: 34px; }
  .rse-flow-card { padding: 18px; }
  .rse-flow-card span { font-size: 16px; }
  .rse-advantage-grid, .rse-scenario-grid { grid-template-columns: 1fr; }
  .rse-advantage-card { min-height: 0; padding: 24px; }
  .rse-spec-media img { min-height: 260px; }
  .rse-case-main img, .rse-case-side img { min-height: 260px; }
  .syncore-lead-block { padding: 24px; }
  .syncore-detail-content .syncore-lead-block h2 { font-size: 32px; }
  .syncore-subtitle, .syncore-section-lead { font-size: 18px; }
  .syncore-card-grid, .syncore-layer-grid { grid-template-columns: 1fr; }
  .zenx-detail-hero .zenx-hero-core { font-size: 17px; }
  .zenx-spec-grid { grid-template-columns: 1fr; }
  .zenx-spec-card dl div { grid-template-columns: 1fr; gap: 4px; }
  .syncore-card { min-height: 0; padding: 22px; }
  .syncore-layer-grid article,
  .syncore-layer-grid article:nth-child(odd),
  .syncore-layer-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .syncore-layer-grid article:last-child { border-bottom: 0; }
  .rsl-case-frame { min-height: 300px; }
  .rsl-case-main .rsl-case-frame img { width: clamp(220px, 72%, 340px); }
  .mining-hero { padding: 88px 20px 56px; min-height: 0; }
  .mining-hero h1 { font-size: 38px; }
  .mining-hero p:not(.eyebrow) { font-size: 17px; }
  .mining-visual { min-height: 0; }
  .mining-visual-stage { min-width: 90px; padding: 12px; font-size: 13px; }
  .stage-source { left: 18px; top: 28px; }
  .stage-value { right: 18px; bottom: 28px; }
  .mining-card-grid, .mining-tech-grid, .mining-loop-grid, .mining-application-grid {
    grid-template-columns: 1fr;
  }
  .mining-application { min-height: 0; }
  .srf-value-strip { grid-template-columns: 1fr; margin-top: -24px; padding: 0 20px; }
  .srf-value-strip article,
  .srf-value-strip article:first-child,
  .srf-value-strip article:last-child {
    min-height: 0;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
    padding: 22px;
  }
  .srf-value-strip article:first-child { border-radius: 8px 8px 0 0; }
  .srf-value-strip article:last-child { border-bottom: 1px solid var(--line); border-radius: 0 0 8px 8px; }
  .srf-chain-grid, .srf-process-grid { grid-template-columns: 1fr; }
  .srf-chain-step, .srf-process-card { padding: 22px; }
  .srf-case-copy { padding: 22px; }
  .srf-case-copy h3 { font-size: 24px; }
  .srf-case-copy dl, .srf-case-gallery { grid-template-columns: 1fr; }
  .srf-case-gallery { padding: 12px; }
  .srf-case-gallery img { min-height: 220px; }
  .mixed-tech .cdw-chain, .mixed-case-grid { grid-template-columns: 1fr; }
  .mixed-case-card dl { grid-template-columns: 1fr; }
  .cdw-hero { min-height: 520px; padding: 98px 20px 56px; }
  .cdw-hero.plastic-hero { min-height: 430px; padding: 88px 20px 46px; }
  .cdw-hero.plastic-hero .hero-actions { margin-top: 22px; }
  .cdw-hero.mrf-hero { min-height: 460px; padding: 88px 20px 48px; }
  .cdw-hero.mrf-hero .hero-actions { margin-top: 22px; }
  .cdw-hero h1 { font-size: 38px; }
  .cdw-hero p:not(.eyebrow) { font-size: 17px; }
  .cdw-stats, .cdw-pain-grid, .cdw-chain, .cdw-tech-grid, .cdw-case-grid {
    grid-template-columns: 1fr;
  }
  .cdw-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .plastic-stats {
    margin: -18px 16px 34px;
    padding: 6px;
  }
  .plastic-stats div {
    min-height: 0;
    padding: 20px 18px 18px 60px;
    border-right: 0;
  }
  .plastic-stats div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .plastic-stats div::before {
    left: 16px;
    top: 20px;
  }
  .plastic-stats strong { font-size: 18px; }
  .mrf-stats {
    grid-template-columns: 1fr;
    margin: -18px 16px 34px;
    padding: 6px;
  }
  .mrf-stats article {
    min-height: 0;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .mrf-stats article:last-child { border-bottom: 0; }
  .mrf-stats strong { font-size: 24px; }
  .mrf-copy,
  .mrf-material-card,
  .mrf-case-copy,
  .mrf-tech-panel > div {
    padding: 22px;
  }
  .mrf-material-layout,
  .mrf-image-grid,
  .mrf-input-grid,
  .mrf-case-grid,
  .mrf-case-copy dl {
    grid-template-columns: 1fr;
  }
  .mrf-figure.large img,
  .mrf-figure.wide img,
  .mrf-case-grid .mrf-figure img {
    min-height: 220px;
  }
  .mrf-tech { padding-top: 58px; padding-bottom: 58px; }
  .mrf-tech-panel { padding: 12px; }
  .mrf-tech-panel h3,
  .mrf-case-copy h3 {
    font-size: 24px;
  }
  .cdw-chain-step { min-height: 0; }
  .cdw-material-card, .cdw-pain-card, .cdw-process-card, .cdw-chain-step, .cdw-tech-card { padding: 22px; }
  .cdw-value-marquee { overflow-x: hidden; }
  .cdw-value-marquee::before, .cdw-value-marquee::after { display: none; }
  .cdw-value-track { animation: none; }
  .cdw-value-slide { flex-basis: 260px; }
  .cdw-value-slide img { height: 148px; }
  .cdw-case-card div { padding: 18px; }
  .cdw-figure img { min-height: 210px; }
  .wind-hero { min-height: 520px; padding: 98px 20px 56px; }
  .wind-hero h1 { font-size: 38px; }
  .wind-hero p:not(.eyebrow) { font-size: 17px; }
  .wind-stats, .wind-card-grid, .wind-system-grid, .wind-equipment-list, .wind-equipment-gallery, .wind-value-grid {
    grid-template-columns: 1fr;
  }
  .wind-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .wind-process-step { grid-template-columns: 1fr; }
  .wind-equipment-layout, .wind-case-card { gap: 20px; padding: 22px; }
  .wind-case-card h2 { font-size: 30px; }
  .contact-hero { min-height: 420px; padding: 108px 20px 54px; }
  .contact-hero h1 { font-size: 42px; }
  .contact-hero p:not(.eyebrow) { font-size: 17px; }
  .contact-gateway { grid-template-columns: 1fr; }
  .contact-gateway a { min-height: 86px; padding: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-region-head { padding: 24px; }
  .contact-region-head h2 { font-size: 30px; }
  .stats-band, .product-line-grid, .card-grid, .news-grid, .industry-band, .split-feature, .about-metrics, .download-list, .service-grid, .contact-grid, .footer-links {
    grid-template-columns: 1fr;
  }
  .industry-panel strong,
  .industry-panel p {
    min-height: 0;
  }
  .about-overview-copy h2 { font-size: 34px; }
  .about-lead { font-size: 20px; }
  .about-paragraphs { font-size: 16px; }
  .about-proof-panel, .about-video-grid, .about-tech-grid, .about-brand-grid, .about-industry-grid, .about-cooperation-grid {
    grid-template-columns: 1fr;
  }
  .about-panorama { padding-left: 20px; padding-right: 20px; }
  .about-panorama img { min-height: 260px; }
  .about-panorama div { padding: 30px 24px; }
  .about-panorama h2, .about-story-copy h2 { font-size: 30px; }
  .about-carousel-slide img { height: 260px; }
  .about-carousel-slide figcaption { left: 16px; right: 16px; bottom: 52px; min-width: 0; }
  .about-carousel-btn { width: 40px; height: 40px; }
  .about-story-media img { min-height: 280px; }
  .stats-band div { border-right: 0; }
  .trust-strip-inner { padding: 16px 20px; }
  .anchor-tabs { top: 88px; margin-top: -18px; }
  .mega-grid, .industries-mega { grid-template-columns: 1fr; }
  .mega-panels { padding: 0 12px; }
  .mega-intro { padding: 24px; }
  .product-tabs { grid-template-columns: 1fr; }
  .product-tab { grid-template-columns: 78px 1fr; }
  .industry-tab { grid-template-columns: 1fr; }
  .product-mega-panel { padding: 24px; }
  .mega-link-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .home-v2-hero { min-height: 0; }
  .home-v2-hero-inner { padding: 92px 20px 62px; }
  .home-v2-hero-copy h1 { font-size: 40px; }
  .home-v2-hero-copy p:not(.eyebrow) { font-size: 18px; }
  .home-v2-flow-model { min-height: 390px; }
  .flow-node { width: 150px; padding: 12px; }
  .flow-node strong { font-size: 15px; }
  .flow-node em { display: none; }
  .flow-core { width: 122px; height: 122px; }
  .flow-core span { font-size: 25px; }
  .flow-node-sense { left: 14px; top: 24px; }
  .flow-node-decision { right: 14px; top: 74px; }
  .flow-node-execute { right: 18px; bottom: 36px; }
  .flow-node-operate { left: 18px; bottom: 70px; }
  .flow-rail-a { width: 200px; left: 92px; top: 124px; }
  .flow-rail-b { width: 190px; right: 82px; top: 206px; }
  .flow-rail-c { width: 220px; left: 74px; bottom: 132px; }
  .home-v2-proof, .home-v2-tech-grid, .home-v2-industry-grid, .home-v2-product-grid, .home-v2-case-grid, .home-v2-honor-strip {
    grid-template-columns: 1fr;
  }
  .home-v2-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-v2-section, .home-v2-products, .home-v2-honors { padding: 70px 20px; }
  .home-v2-section-head.split, .home-v2-cta { display: block; }
  .home-v2-section-head h2, .home-v2-honor-copy h2, .home-v2-cta h2 { font-size: 32px; }
  .home-v2-industry-tile { min-height: 0; grid-template-rows: 210px auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-v2-product-line { min-height: 0; grid-template-rows: auto 190px auto auto; }
  .home-v2-case-card { min-height: 0; }
  .home-v2-cta { padding: 58px 20px 72px; }
  .home-v2-cta .btn { margin-top: 20px; }
  .contact-strip { margin-left: 20px; margin-right: 20px; display: block; }
  .contact-strip .btn { margin-top: 18px; }
  .family-head { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-slide { grid-template-columns: 1fr; }
  .about-slide p { grid-column: auto; }
  .service-card { grid-template-columns: 1fr; }
  .service-media img { aspect-ratio: 16 / 9; }
  .news-row { grid-template-columns: 1fr; }
  .news-row img { height: auto; aspect-ratio: 16 / 9; }
}

/* Keep page heroes and footer unchanged; normalize only middle content sections to light surfaces. */
main > .dark-section,
main > .home-v2-products {
  background: #f8fafc;
  color: var(--ink);
}
main > .dark-section .section-head.inverted,
main > .dark-section .section-head.inverted h2,
main > .home-v2-products .home-v2-section-head,
main > .home-v2-products .home-v2-section-head h2 {
  color: var(--ink);
}
main > .dark-section .section-head.inverted p:not(.eyebrow),
main > .home-v2-products .home-v2-section-head p:not(.eyebrow),
.dark-section-lead,
.mining-dark-lead,
.cdw-dark-lead {
  color: #334155;
}
.industry-band,
.cdw-chain {
  border-color: var(--line);
  background: #fff;
}
.home-v2-product-line,
.mining-tech-card,
.about-tech-card,
.wind-system-card,
.cdw-chain-step,
.mining-scenario-rail,
.mining-application > div {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}
.home-v2-product-head img {
  filter: none;
}
.home-v2-product-head span,
.home-v2-product-line p,
.mining-tech-card p,
.about-tech-card p,
.wind-system-card p,
.mining-application > div p,
.cdw-chain-step ul {
  color: var(--muted);
}
.home-v2-product-line div a {
  border-top-color: var(--line);
  color: var(--ink);
}
.home-v2-product-line div a:hover {
  color: var(--orange);
}
.home-v2-product-image {
  opacity: 1;
}
.mining-tech-card h3,
.about-tech-card h3,
.wind-system-card h3,
.cdw-chain-step h3 {
  color: var(--ink);
}
.cdw-chain-step {
  border-color: var(--line);
}
.cdw-chain-step:last-child {
  border-right: 0;
}
.mining-scenario-rail span {
  border-color: var(--line);
  background: #f8fbfd;
  color: var(--ink);
}
.mining-application > div {
  border-bottom: 1px solid var(--line);
}
.rse-spec-strip {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}
.rse-spec-strip div {
  border-color: var(--line);
}
.rse-spec-strip span {
  color: var(--muted);
}
.rse-spec-strip strong {
  color: var(--orange);
}
.cdw-value-marquee {
  background: #fff;
}
.cdw-value-marquee::before {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.cdw-value-marquee::after {
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}
.cdw-value-slide {
  border-color: var(--line);
}
.about-proof-panel {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}
.about-proof-panel div {
  border-color: var(--line);
}
.about-proof-panel span {
  color: var(--muted);
}
.about-panorama div {
  border: 1px solid var(--line);
  border-left: 0;
  background: #f8fafc;
  color: var(--ink);
}
.about-panorama p:not(.eyebrow) {
  color: var(--muted);
}
.about-panorama div::before {
  border-top-color: #fff;
}
.mrf-tech .mrf-tech-panel,
.municipal-tech .mrf-tech-panel {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}
.mrf-tech .mrf-tech-panel h3,
.municipal-tech .mrf-tech-panel h3 {
  color: var(--ink);
}
.mrf-tech .mrf-tech-panel p,
.municipal-tech .mrf-tech-panel p {
  color: #475569;
}
.mrf-tech .mrf-tech-panel span,
.municipal-tech .mrf-tech-panel span {
  color: #0369a1;
}
.mrf-tech .mrf-figure,
.municipal-tech .mrf-figure {
  border-color: var(--line);
}
.customer-cases-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 36px;
  align-items: center;
  min-height: 620px;
  padding: 116px 36px 64px;
  background:
    linear-gradient(135deg, #f8fafc 0%, #eef5f8 100%);
}
.customer-cases-hero > * {
  max-width: 1480px;
}
.customer-cases-hero-copy {
  justify-self: end;
  max-width: 650px;
}
.customer-cases-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
}
.customer-cases-hero-copy > p:not(.eyebrow) {
  color: #334155;
  font-size: 19px;
  line-height: 1.85;
}
.customer-cases-mosaic {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-auto-rows: 180px;
  gap: 14px;
}
.customer-cases-mosaic img,
.customer-case-media img,
.customer-case-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.customer-cases-mosaic img {
  min-height: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.customer-cases-mosaic img:first-child {
  grid-row: span 2;
}
.case-filter-bar {
  position: sticky;
  top: 78px;
  z-index: 5;
  display: flex;
  gap: 10px;
  padding: 16px 36px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
}
.case-filter-bar a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 900;
  background: white;
}
.case-filter-bar a.is-active,
.case-filter-bar a:hover {
  border-color: #0369a1;
  color: #0369a1;
}
.case-filter-bar span {
  color: var(--orange);
  font-size: 12px;
}
.customer-case-feature {
  padding-bottom: 36px;
}
.customer-case-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
}
.customer-case-card.featured {
  min-height: 430px;
}
.customer-case-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #e7eef4;
}
.customer-case-media span {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 8px 10px;
  border-radius: 4px;
  color: white;
  background: rgba(3, 105, 161, .92);
  font-size: 12px;
  font-weight: 900;
}
.customer-case-copy {
  padding: 30px;
}
.customer-case-copy h3 {
  font-size: 30px;
  line-height: 1.2;
}
.customer-case-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.customer-case-copy dl div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fafc;
}
.customer-case-copy dt {
  color: #607184;
  font-size: 12px;
  font-weight: 800;
}
.customer-case-copy dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}
.customer-case-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}
.customer-case-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.customer-case-thumbs img {
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.customer-case-groups {
  display: grid;
  gap: 34px;
}
.customer-case-group-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.customer-case-group-head h3 {
  font-size: 28px;
}
.customer-case-group-head span {
  color: var(--muted);
  font-weight: 800;
}
.customer-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.customer-case-grid .customer-case-card {
  grid-template-columns: 1fr;
}
.customer-case-grid .customer-case-media {
  min-height: 250px;
}
.tomra-case-hero {
  position: relative;
  min-height: 520px;
  padding: 136px 36px 72px;
  display: grid;
  align-items: end;
  color: white;
  background: #06111f;
  overflow: hidden;
}
.tomra-case-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
}
.tomra-case-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,17,31,.96), rgba(6,17,31,.62) 52%, rgba(6,17,31,.24)),
    linear-gradient(180deg, rgba(6,17,31,.1), rgba(6,17,31,.84));
}
.tomra-case-hero-inner,
.tomra-case-shell {
  max-width: 1180px;
  margin: 0 auto;
}
.tomra-case-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.tomra-case-hero .breadcrumbs {
  margin-bottom: 34px;
  color: #cbd7e2;
}
.tomra-case-hero h1 {
  max-width: 1180px;
  margin: 0 0 26px;
  color: white;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}
.tomra-case-hero p:not(.breadcrumbs) {
  max-width: 1120px;
  color: #dbe7ef;
  font-size: 20px;
  line-height: 1.8;
}
.tomra-case-shell {
  padding: 0 36px 92px;
}
.tomra-case-filter {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tomra-case-filter p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}
.tomra-case-filter div {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.tomra-case-filter a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #cbd7e2;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.tomra-case-filter a.is-active,
.tomra-case-filter a:hover {
  border-color: #0369a1;
  color: #0369a1;
}
.tomra-case-list {
  display: grid;
  gap: 56px;
  margin-top: 54px;
}
.tomra-case-group {
  scroll-margin-top: 120px;
}
.tomra-case-group > h2 {
  margin: 0 0 22px;
  font-size: 32px;
}
.tomra-case-row {
  display: grid;
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.tomra-case-row:last-child {
  border-bottom: 1px solid var(--line);
}
.tomra-case-row.no-media {
  grid-template-columns: minmax(0, 1fr);
}
.tomra-case-row.no-media .tomra-case-content > p:not(.tomra-case-meta) {
  max-width: 880px;
}
.tomra-case-image {
  display: block;
  min-height: 245px;
  overflow: hidden;
  background: #e8f0f5;
}
.tomra-case-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform .24s ease;
}
.tomra-case-row:hover .tomra-case-image img {
  transform: scale(1.025);
}
.tomra-case-content {
  align-self: center;
}
.tomra-case-meta {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}
.tomra-case-content h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.22;
}
.tomra-case-content > p:not(.tomra-case-meta) {
  max-width: 680px;
  color: #475569;
  line-height: 1.78;
}
.tomra-case-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #0369a1;
  font-weight: 900;
}
.tomra-case-link svg {
  width: 18px;
  height: 18px;
}
.tomra-pagination {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}
.tomra-pagination a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #0369a1;
  color: white;
  background: #0369a1;
  font-weight: 900;
}
.tomra-pagination span {
  color: #64748b;
  font-weight: 800;
}
.case-publication-page {
  min-height: 100vh;
  padding: 78px 24px 96px;
  background:
    linear-gradient(90deg, rgba(6, 13, 20, .72), rgba(6, 13, 20, .12)),
    var(--case-bg, linear-gradient(135deg, #0f2433, #27465c));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.case-publication-shell {
  display: grid;
  grid-template-columns: 304px minmax(0, 1fr);
  max-width: 1220px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 28px 70px rgba(8, 21, 32, .24);
}
.case-publication-sidebar {
  padding: 20px;
  background: #f4f7fa;
  border-right: 1px solid #dbe5ec;
}
.case-sidebar-panel {
  position: relative;
  background: #fff;
  color: #0f3550;
  padding: 18px 16px;
  border: 1px solid #dbe5ec;
  border-left: 5px solid var(--brand);
}
.case-sidebar-panel h2 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dbe5ec;
  color: #0f3550;
  font-size: 28px;
  line-height: 1.15;
}
.case-sidebar-panel nav {
  display: grid;
}
.case-sidebar-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: #0f3550;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  border-bottom: 1px solid #e5edf3;
}
.case-sidebar-panel a:last-child {
  border-bottom: 0;
}
.case-sidebar-panel a.is-active,
.case-sidebar-panel a:hover {
  color: var(--brand);
}
.case-sidebar-panel a span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #0f3550;
  background: #edf3f7;
  font-size: 18px;
  line-height: 1;
}
.case-sidebar-panel a.is-active span,
.case-sidebar-panel a:hover span {
  color: #fff;
  background: var(--brand);
}
.case-sidebar-summary {
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dbe5ec;
  border-left: 5px solid #0369a1;
  color: #0f3550;
}
.case-sidebar-summary p {
  margin: 0 0 14px;
  color: #0f3550;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}
.case-sidebar-summary div {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid #dce8f0;
}
.case-sidebar-summary span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}
.case-sidebar-summary strong {
  color: #0f3550;
  font-size: 15px;
  line-height: 1.45;
}
.case-sidebar-related {
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dce5ed;
}
.case-sidebar-related h2 {
  margin: 0 0 10px;
  color: #0f3550;
  font-size: 20px;
}
.case-sidebar-related a {
  display: block;
  padding: 12px 0;
  color: #0f3550;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  border-bottom: 1px solid #edf2f6;
}
.case-sidebar-related a:last-child {
  border-bottom: 0;
}
.case-publication-article {
  min-width: 0;
  padding: 28px 38px 72px;
  color: #0f3550;
}
.case-publication-article .breadcrumbs {
  margin-bottom: 18px;
}
.case-publication-meta {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 15px;
  font-weight: 900;
}
.case-publication-article h1 {
  max-width: 880px;
  margin: 0 0 14px;
  color: #2f5067;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.16;
  letter-spacing: 0;
}
.case-publication-lead {
  max-width: 900px;
  margin: 0 0 26px;
  color: #0f3550;
  font-size: 23px;
  line-height: 1.75;
  text-indent: 0;
}
.case-publication-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  padding: 14px 0 24px;
  border-bottom: 1px solid #dce5ed;
}
.case-publication-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: #eef5f9;
  color: #0f3550;
  font-size: 14px;
  font-weight: 900;
}
.case-publication-body {
  display: grid;
}
.case-publication-block {
  padding: 32px 0;
  border-bottom: 1px solid #dce5ed;
}
.case-publication-block:last-child {
  border-bottom: 0;
}
.case-publication-copy {
  max-width: 900px;
}
.case-publication-copy h2 {
  margin: 0 0 16px;
  color: #2f5067;
  font-size: 30px;
  line-height: 1.24;
}
.case-publication-copy p {
  margin: 0;
  color: #0f3550;
  font-size: 18px;
  line-height: 1.95;
  text-indent: 0;
}
.case-publication-copy p + p {
  margin-top: 16px;
}
.case-publication-block .tomra-case-feature-media,
.case-publication-block .tomra-case-video-slot {
  margin-top: 28px;
}
.case-publication-block .tomra-case-feature-media {
  aspect-ratio: 16 / 9;
  border: 1px solid #dce5ed;
}
.case-publication-block .tomra-case-video-slot {
  border: 1px solid #dce5ed;
}
.tomra-case-detail {
  background: #fff;
}
.tomra-case-detail-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 126px 36px 70px;
}
.tomra-case-detail-copy .breadcrumbs {
  margin-bottom: 34px;
}
.tomra-case-detail-copy h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(42px, 4.6vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}
.tomra-case-detail-copy > p:not(.tomra-case-meta):not(.breadcrumbs) {
  max-width: 760px;
  color: #334155;
  font-size: 20px;
  line-height: 1.85;
}
.tomra-case-detail-media {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #e8f0f5;
}
.tomra-case-detail-media img,
.tomra-case-feature-media img,
.tomra-case-image-pair img,
.tomra-case-detail-gallery img,
.tomra-case-next-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tomra-case-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tomra-case-detail-facts dl {
  min-height: 120px;
  margin: 0;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}
.tomra-case-detail-facts dl:last-child {
  border-right: 0;
}
.tomra-case-detail-facts dt {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}
.tomra-case-detail-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}
.tomra-case-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 36px;
}
.tomra-case-article-main h2,
.tomra-case-story-card h2,
.tomra-case-next h2 {
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1.2;
}
.tomra-case-article-main p:not(.eyebrow) {
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}
.tomra-case-article-aside {
  align-self: start;
  padding: 30px;
  background: #f5f8fb;
  border: 1px solid var(--line);
}
.tomra-case-article-aside h2 {
  margin: 0 0 20px;
  font-size: 24px;
}
.tomra-case-article-aside ul,
.tomra-case-story-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tomra-case-article-aside li {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe5ec;
}
.tomra-case-article-aside li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.tomra-case-article-aside span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}
.tomra-case-article-aside strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}
.tomra-case-story-band {
  background: #f5f8fb;
  padding: 82px 36px;
}
.tomra-case-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.tomra-case-story-card {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
}
.tomra-case-story-card li {
  position: relative;
  padding-left: 20px;
  color: #334155;
  line-height: 1.8;
}
.tomra-case-story-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 7px;
  height: 7px;
  background: var(--brand);
}
.tomra-case-story-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.tomra-case-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 36px;
  border-bottom: 1px solid var(--line);
}
.tomra-case-feature-copy h2 {
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1.2;
}
.tomra-case-feature-copy p:not(.eyebrow) {
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}
.tomra-case-feature-copy p + p {
  margin-top: 18px;
}
.tomra-case-feature-media {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #e8f0f5;
}
.tomra-case-video-slot {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #07131d;
  border: 1px solid #0f2433;
}
.tomra-case-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07131d;
}
.tomra-case-image-pair,
.tomra-case-detail-gallery {
  display: grid;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 36px 0;
}
.tomra-case-image-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tomra-case-image-pair figure,
.tomra-case-detail-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #e8f0f5;
}
.tomra-case-image-pair figure {
  aspect-ratio: 16 / 10;
}
.tomra-case-detail-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 88px;
}
.tomra-case-detail-gallery figure {
  aspect-ratio: 4 / 3;
}
.tomra-case-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 36px;
  border-top: 1px solid var(--line);
}
.tomra-case-next-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.tomra-case-next-card {
  display: grid;
  gap: 14px;
  color: var(--ink);
}
.tomra-case-next-card img {
  aspect-ratio: 16 / 10;
  background: #e8f0f5;
}
.tomra-case-next-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}
.tomra-case-next-card strong {
  font-size: 20px;
  line-height: 1.35;
}
.mega-intro p,
.eyebrow,
.flow-node span,
.home-v2-tech-card span,
.home-v2-industry-tile span,
.home-v2-case-card span,
.content-card span,
.syncore-card span,
.syncore-layer-grid span,
.rse-advantage-card span,
.rse-scenario-card span,
.mining-flow-step span,
.mining-application span,
.srf-value-strip span,
.srf-case-copy > span,
.mrf-material-card span,
.cdw-material-card span,
.cdw-pain-card span,
.cdw-chain-step span,
.about-carousel-slide figcaption span,
.about-slide span,
.news-card span,
.news-row span,
.contact-gateway strong,
.case-filter-bar span,
.tomra-case-next-card span {
  font-size: 15px;
}
@media (max-width: 1180px) {
  .customer-cases-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 96px;
  }
  .customer-cases-hero-copy {
    justify-self: start;
  }
  .customer-case-card,
  .customer-case-grid {
    grid-template-columns: 1fr;
  }
  .customer-case-copy dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tomra-case-detail-hero,
  .tomra-case-article,
  .tomra-case-story-grid,
  .tomra-case-feature-row,
  .tomra-case-image-pair,
  .tomra-case-next,
  .tomra-case-next-grid {
    grid-template-columns: 1fr;
  }
  .tomra-case-detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 36px;
  }
  .tomra-case-detail-facts dl:nth-child(2n) {
    border-right: 0;
  }
  .case-publication-page {
    padding: 42px 20px 72px;
    background-attachment: scroll;
  }
  .case-publication-shell {
    grid-template-columns: 1fr;
  }
  .case-publication-sidebar {
    border-right: 0;
    border-bottom: 1px solid #dce5ed;
  }
  .case-sidebar-panel nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 18px;
  }
  .case-sidebar-panel a {
    min-height: 48px;
  }
  .case-sidebar-related {
    display: none;
  }
}
@media (max-width: 720px) {
  .customer-cases-hero {
    padding: 88px 20px 46px;
  }
  .customer-cases-hero h1 {
    font-size: 42px;
  }
  .customer-cases-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }
  .customer-cases-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
  }
  .customer-cases-mosaic img:first-child {
    grid-row: span 1;
  }
  .case-filter-bar {
    top: 68px;
    padding: 12px 20px;
  }
  .customer-case-copy {
    padding: 22px;
  }
  .customer-case-copy h3 {
    font-size: 24px;
  }
  .customer-case-copy dl,
  .customer-case-thumbs {
    grid-template-columns: 1fr;
  }
  .customer-case-media {
    min-height: 220px;
  }
  .tomra-case-hero {
    padding: 110px 20px 54px;
  }
  .tomra-case-shell {
    padding: 0 20px 72px;
  }
  .tomra-case-row {
    grid-template-columns: 1fr;
  }
  .tomra-case-filter {
    gap: 14px;
    grid-template-columns: 1fr;
  }
  .tomra-case-list {
    gap: 38px;
    margin-top: 38px;
  }
  .tomra-case-row {
    gap: 20px;
    padding: 26px 0;
  }
  .tomra-case-content h2 {
    font-size: 25px;
  }
  .tomra-case-hero h1 {
    font-size: 42px;
  }
  .tomra-case-hero p:not(.breadcrumbs) {
    font-size: 17px;
  }
  .tomra-case-detail-hero {
    gap: 30px;
    padding: 110px 20px 48px;
  }
  .tomra-case-detail-copy h1 {
    font-size: 40px;
  }
  .tomra-case-detail-copy > p:not(.tomra-case-meta):not(.breadcrumbs) {
    font-size: 17px;
  }
  .tomra-case-detail-facts {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }
  .tomra-case-detail-facts dl {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .tomra-case-detail-facts dl:last-child {
    border-bottom: 0;
  }
  .tomra-case-article {
    gap: 34px;
    padding: 58px 20px;
  }
  .tomra-case-article-main h2,
  .tomra-case-story-card h2,
  .tomra-case-next h2 {
    font-size: 30px;
  }
  .tomra-case-story-band,
  .tomra-case-next {
    padding: 58px 20px;
  }
  .tomra-case-story-card {
    padding: 28px;
  }
  .tomra-case-feature-row {
    gap: 26px;
    padding: 58px 20px;
  }
  .tomra-case-feature-copy h2 {
    font-size: 30px;
  }
  .tomra-case-feature-copy p:not(.eyebrow) {
    font-size: 17px;
  }
  .tomra-case-video-slot {
    min-height: 0;
    padding: 0;
  }
  .tomra-case-image-pair,
  .tomra-case-detail-gallery {
    grid-template-columns: 1fr;
    padding: 58px 20px 0;
  }
  .tomra-case-detail-gallery {
    padding-bottom: 58px;
  }
  .case-publication-page {
    padding: 20px 0 54px;
  }
  .case-publication-shell {
    box-shadow: none;
  }
  .case-publication-sidebar {
    padding: 16px;
  }
  .case-sidebar-panel h2 {
    font-size: 24px;
  }
  .case-sidebar-panel nav {
    grid-template-columns: 1fr;
  }
  .case-sidebar-summary {
    margin-top: 16px;
  }
  .case-publication-article {
    padding: 24px 20px 50px;
  }
  .case-publication-article h1 {
    font-size: 32px;
  }
  .case-publication-lead {
    font-size: 18px;
  }
  .case-publication-copy h2 {
    font-size: 25px;
  }
  .case-publication-copy p {
    font-size: 16px;
  }
  .case-publication-block {
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}