.solutions-page {
  --solutions-ink: #0b2238;
  --solutions-muted: #5f7285;
  --solutions-line: #d5e0ea;
  --solutions-blue: #075fd8;
  --solutions-teal: #118c8c;
  --solutions-fog: #f2f6fa;
  color: var(--solutions-ink);
  background: #ffffff;
  font-family: "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
}

.solutions-page .section-block {
  padding-block: 96px;
}

.solutions-page :is(#infrastructure, #manufacturing, #public-services, #steel, #coal-chemical, #industry-overview),
.solutions-page .solution-anchor-alias {
  scroll-margin-top: 0;
}

.solutions-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--solutions-blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.solutions-page .eyebrow::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.solutions-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #ffffff;
  background: #0b243d;
  isolation: isolate;
}

.solutions-hero-media,
.solutions-hero-media img,
.solutions-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solutions-hero-media {
  z-index: -2;
}

.solutions-hero-media img {
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.78) contrast(0.98);
}

.solutions-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 25, 47, 0.97) 0%, rgba(6, 34, 62, 0.9) 40%, rgba(7, 38, 70, 0.55) 72%, rgba(7, 38, 70, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 42, 72, 0.08), rgba(5, 24, 46, 0.44));
}

.solutions-hero-inner {
  display: flex;
  align-items: center;
  min-height: 560px;
  padding-block: 72px;
}

.solutions-hero-copy {
  max-width: 780px;
}

.solutions-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #79d4cb;
  font-size: 13px;
  font-weight: 700;
}

.solutions-kicker::after {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.solutions-hero h1 {
  margin-top: 24px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.22;
  text-wrap: balance;
}

.solutions-hero h1 span {
  display: block;
}

.solutions-hero-copy > p:not(.solutions-kicker) {
  max-width: 700px;
  margin-top: 22px;
  color: #d7e4ef;
  font-size: 17px;
  line-height: 1.8;
}

.solutions-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.solutions-hero-actions :is(.button, .hero-text-link) svg,
.solution-overview-copy a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.solutions-hero .hero-text-link {
  color: #ffffff;
}

.solution-section-heading,
.industry-feature-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
  align-items: end;
  gap: 56px;
}

.solution-section-heading h2,
.industry-feature-heading h2 {
  max-width: 760px;
  margin-top: 15px;
  color: var(--solutions-ink);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.28;
  text-wrap: balance;
}

.solution-section-heading > p,
.industry-feature-heading > p {
  max-width: 550px;
  color: var(--solutions-muted);
  font-size: 15px;
  line-height: 1.8;
}

.solution-overview {
  background: #ffffff;
}

.solution-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid var(--solutions-line);
  border-bottom: 1px solid var(--solutions-line);
}

.solution-overview-item {
  position: relative;
  min-width: 0;
  padding: 28px 28px 32px;
}

.solution-overview-item::before {
  position: absolute;
  top: -1px;
  right: 28px;
  left: 28px;
  height: 2px;
  background: var(--solutions-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.solution-overview-item:target::before,
.solution-overview-item:focus-within::before {
  transform: scaleX(1);
}

.solution-overview-item + .solution-overview-item {
  border-left: 1px solid var(--solutions-line);
}

.solution-anchor-alias {
  position: absolute;
  top: 0;
  left: 0;
}

.solution-overview-item figure {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dce6ee;
  border-radius: 6px;
}

.solution-overview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: filter 360ms ease, transform 360ms ease;
}

.solution-overview-item:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.solution-overview-copy {
  padding-top: 25px;
}

.solution-overview-copy > p:first-child {
  color: var(--solutions-teal);
  font-size: 11px;
  font-weight: 700;
}

.solution-overview-copy h3 {
  margin-top: 8px;
  color: var(--solutions-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.solution-overview-description {
  display: block;
  min-height: 76px;
  margin-top: 12px;
  color: var(--solutions-muted);
  font-size: 15px;
  line-height: 1.72;
}

.solution-overview-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--solutions-line);
  list-style: none;
}

.solution-overview-copy li {
  display: inline-flex;
  color: #40576c;
  font-size: 13px;
  line-height: 1.45;
}

.solution-overview-copy li > span::before,
.solution-overview-copy li > a::before {
  margin-right: 7px;
  color: #8aa0b4;
  content: "·";
}

.solution-overview-copy a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--solutions-blue);
  font-weight: 650;
  text-decoration: none;
}

.solution-overview-copy a svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.solution-overview-copy a:hover svg,
.solution-overview-copy a:focus-visible svg {
  transform: translateX(3px);
}

.featured-industry {
  position: relative;
}

.featured-industry-steel {
  background: var(--solutions-fog);
}

.steel-feature-layout,
.coal-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 52px;
}

.steel-feature-copy,
.coal-feature-copy {
  display: flex;
  flex-direction: column;
}

.steel-feature-copy > p:first-child,
.coal-feature-copy > p:first-child {
  color: var(--solutions-blue);
  font-size: 11px;
  font-weight: 700;
}

.steel-feature-copy h3,
.coal-feature-copy h3 {
  margin-top: 10px;
  color: var(--solutions-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  text-wrap: balance;
}

.steel-feature-copy > p:not(:first-child),
.coal-feature-copy > p:not(:first-child) {
  margin-top: 15px;
  color: var(--solutions-muted);
  font-size: 15px;
  line-height: 1.75;
}

.steel-feature-copy > ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid #cbd8e3;
  list-style: none;
}

.steel-feature-copy > ul li {
  position: relative;
  padding-left: 17px;
  color: #334c63;
  font-size: 14px;
  line-height: 1.65;
}

.steel-feature-copy > ul li + li {
  padding-left: 45px;
  border-left: 1px solid #cbd8e3;
}

.steel-feature-copy > ul li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--solutions-teal);
  content: "";
}

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

.industry-detail-columns article {
  min-width: 0;
  padding: 28px 30px 30px 0;
}

.industry-detail-columns article + article {
  padding-left: 30px;
  border-left: 1px solid #c8d5e0;
}

.industry-detail-columns h3 {
  color: var(--solutions-ink);
  font-size: 18px;
  font-weight: 650;
}

.industry-detail-columns p {
  margin-top: 11px;
  color: var(--solutions-muted);
  font-size: 14px;
  line-height: 1.78;
  text-wrap: pretty;
}

.industry-runtime-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  padding: 0;
  background: #e4edf5;
  border-top: 1px solid #bfd0df;
  border-bottom: 1px solid #bfd0df;
  list-style: none;
}

.industry-runtime-path li {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 20px 26px;
}

.industry-runtime-path li + li {
  border-left: 1px solid #bfd0df;
}

.industry-runtime-path span {
  color: var(--solutions-blue);
  font-size: 11px;
  font-weight: 700;
}

.industry-runtime-path strong {
  color: #2c465e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.featured-industry-coal {
  background: #ffffff;
}

.coal-feature-copy > ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 25px;
  border-top: 1px solid var(--solutions-line);
  list-style: none;
}

.coal-feature-copy li {
  display: grid;
  gap: 3px;
  padding: 13px 0 14px;
  border-bottom: 1px solid var(--solutions-line);
}

.coal-feature-copy li + li {
  padding-left: 28px;
  border-left: 1px solid var(--solutions-line);
}

.coal-feature-copy li strong {
  color: #2b455d;
  font-size: 14px;
  font-weight: 650;
}

.coal-feature-copy li span {
  color: #6b7e91;
  font-size: 13px;
  line-height: 1.6;
}

.solutions-page .kp-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 50px 0 0;
  background: #eaf2f9;
  border-top: 1px solid #c3d3e1;
  border-bottom: 1px solid #c3d3e1;
}

.coal-metrics div {
  min-width: 0;
  padding: 23px 26px;
}

.coal-metrics div + div {
  border-left: 1px solid #c3d3e1;
}

.coal-metrics dt {
  color: var(--solutions-blue);
  font-family: "Bahnschrift", "DIN Alternate", "Segoe UI", sans-serif;
  font-size: 27px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  white-space: nowrap;
}

.coal-metrics dd {
  margin: 8px 0 0;
  color: #526b80;
  font-size: 13px;
  line-height: 1.5;
}

.industry-evidence-note {
  margin: 11px 0 0;
  color: #718396;
  font-size: 11px;
  line-height: 1.6;
}

.coal-detail-columns {
  margin-top: 38px;
}

@media (max-width: 1100px) {
  .steel-feature-copy > ul {
    grid-template-columns: 1fr;
  }

  .steel-feature-copy > ul li + li {
    padding-left: 17px;
    border-left: 0;
  }

  .coal-feature-copy > ul {
    grid-template-columns: 1fr;
  }

  .coal-feature-copy li + li {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .solution-section-heading,
  .industry-feature-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .solution-overview-grid {
    grid-template-columns: 1fr;
  }

  .solution-overview-item {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
  }

  .solution-overview-item + .solution-overview-item {
    border-top: 1px solid var(--solutions-line);
    border-left: 0;
  }

  .solution-overview-copy {
    align-self: center;
    padding-top: 0;
  }

  .solution-overview-description {
    min-height: 0;
  }

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

  .industry-runtime-path li:nth-child(odd) {
    border-left: 0;
  }

  .industry-runtime-path li:nth-child(n + 3) {
    border-top: 1px solid #bfd0df;
  }

  .industry-detail-columns {
    grid-template-columns: 1fr;
  }

  .industry-detail-columns article,
  .industry-detail-columns article + article {
    padding: 22px 0 23px;
    border-left: 0;
  }

  .industry-detail-columns article + article {
    border-top: 1px solid #c8d5e0;
  }
}

@media (max-width: 680px) {
  .solutions-page .section-block {
    padding-block: 66px;
  }

  .solutions-hero,
  .solutions-hero-inner {
    min-height: 500px;
  }

  .solutions-hero-inner {
    padding-block: 58px;
  }

  .solutions-hero-overlay {
    background: linear-gradient(90deg, rgba(5, 26, 48, 0.96), rgba(6, 34, 62, 0.76));
  }

  .solutions-hero h1 {
    margin-top: 20px;
    font-size: 36px;
  }

  .solutions-hero-copy > p:not(.solutions-kicker) {
    margin-top: 18px;
    font-size: 15px;
  }

  .solutions-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }

  .solution-section-heading h2,
  .industry-feature-heading h2 {
    font-size: 29px;
  }

  .solution-overview-grid,
  .steel-feature-layout,
  .coal-feature-layout {
    margin-top: 40px;
  }

  .solution-overview-item {
    display: block;
    padding: 22px 0 26px;
  }

  .solution-overview-item::before {
    right: 0;
    left: 0;
  }

  .solution-overview-copy {
    padding-top: 22px;
  }

  .solution-overview-copy h3 {
    font-size: 22px;
  }

  .steel-feature-copy h3,
  .coal-feature-copy h3 {
    font-size: 22px;
  }

  .industry-runtime-path {
    grid-template-columns: 1fr;
  }

  .industry-runtime-path li {
    padding: 18px 20px;
  }

  .industry-runtime-path li + li {
    border-top: 1px solid #bfd0df;
    border-left: 0;
  }

  .coal-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .coal-metrics div:nth-child(odd) {
    border-left: 0;
  }

  .coal-metrics div:nth-child(n + 3) {
    border-top: 1px solid #c3d3e1;
  }
}

@media (max-width: 400px) {
  .solutions-hero h1 {
    font-size: 33px;
  }

  .coal-metrics div {
    padding: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-overview-item::before,
  .solution-overview-item img,
  .solution-overview-copy a svg {
    transition: none;
  }
}
