:root {
  --navy: #0b1f3f;
  --ink: #172033;
  --muted: #607087;
  --line: #dce8f2;
  --blue: #237aeb;
  --cyan: #00aecd;
  --green: #25b878;
  --orange: #ff8a1f;
  --ice: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 35, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 55, 92, 0.08);
  backdrop-filter: blur(16px);
}

.topbar {
  background: #324e7b;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
  align-items: center;
}

.navbar {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #237aeb 0%, #00aecd 58%, #25b878 100%);
  box-shadow: 0 12px 22px rgba(35, 122, 235, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
  line-height: 1.1;
  color: #322a28;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 28px 13px 24px;
  border-bottom: 3px solid transparent;
  color: #2d3950;
  font-size: 15px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .active,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 13px 24px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #2d3950;
  background: transparent;
  font: inherit;
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  color: currentColor;
  font-size: 16px;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% - 3px);
  left: 50%;
  display: none;
  width: 320px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(24, 54, 89, 0.14);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a,
.nav-dropdown-menu a:hover {
  display: block;
  padding: 11px 12px;
  border: 0;
  color: #2d3950;
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  border-radius: 3px;
  color: var(--blue);
  background: var(--ice);
}

.nav-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-action {
  color: #fff;
  background: var(--orange);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #263650;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #dff5fb;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../assets/wuxi-water-cloud-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(244, 250, 253, 0.98) 0%, rgba(244, 250, 253, 0.9) 32%, rgba(244, 250, 253, 0.36) 62%, rgba(11, 31, 63, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, #fff 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 610px) 340px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 680px;
  padding: 58px 0 82px;
}

.eyebrow,
.section-title span,
.case-inner span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  margin: 18px 0 22px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 590px;
  margin: 0;
  color: #33435c;
  font-size: 18px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 28px rgba(35, 122, 235, 0.22);
}

.btn-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(35, 122, 235, 0.28);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 14px;
  max-width: 480px;
  margin-top: 44px;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(35, 122, 235, 0.12);
  border-radius: 6px;
}

.hero-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-panel {
  align-self: end;
  min-width: 0;
  margin-bottom: 26px;
  padding: 22px;
  color: #fff;
  background: rgba(11, 31, 63, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.panel-head,
.water-score,
.status-list span,
.footer-inner,
.case-inner,
.case-inner dl {
  display: flex;
  align-items: center;
}

.panel-head {
  justify-content: space-between;
}

.panel-head b {
  padding: 3px 9px;
  color: #08301f;
  background: #80f0bc;
  border-radius: 999px;
  font-size: 12px;
}

.water-score {
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0;
}

.water-score span,
.water-score small {
  color: rgba(255, 255, 255, 0.68);
}

.water-score strong {
  color: #86e9ff;
  font-size: 48px;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 88px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.mini-chart i {
  flex: 1;
  min-width: 10px;
  background: linear-gradient(180deg, #86e9ff, #237aeb);
  border-radius: 3px 3px 0 0;
}

.status-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.status-list b {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: 86px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title.align-left {
  margin-left: 0;
  text-align: left;
}

.section-title h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.product-band {
  background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
}

.product-grid,
.solution-grid {
  display: grid;
  gap: 18px;
}

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

.product-grid article,
.solution-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(14, 54, 94, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-grid article {
  height: 100%;
  min-height: 220px;
  padding: 24px 18px;
}

.product-link {
  color: inherit;
  text-decoration: none;
}

.product-link:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(35, 122, 235, 0.28);
  outline-offset: 4px;
}

.product-link article {
  display: flex;
  flex-direction: column;
}

.product-link b {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: #237aeb;
  font-size: 13px;
}

.product-link b::after {
  content: "↗";
  margin-left: 6px;
  font-size: 12px;
}

.product-grid article:hover,
.solution-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 122, 235, 0.32);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: #237aeb;
  border-radius: 6px;
  font-weight: 800;
}

.product-grid article:nth-child(2n) .icon {
  background: var(--cyan);
}

.product-grid article:nth-child(3n) .icon {
  background: var(--green);
}

.product-grid h3,
.solution-grid h3 {
  margin: 20px 0 10px;
  color: #172846;
  font-size: 18px;
}

.product-grid p,
.solution-grid p,
.lead,
.feature-list span {
  color: var(--muted);
  line-height: 1.75;
}

.product-grid p,
.solution-grid p {
  margin: 0;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.platform {
  background: #fff;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.lead {
  margin: 0 0 28px;
  font-size: 16px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  padding: 18px 20px;
  background: var(--ice);
  border-left: 4px solid var(--blue);
}

.feature-list b,
.feature-list span {
  display: block;
}

.feature-list b {
  color: #152545;
  margin-bottom: 4px;
}

.dashboard-preview {
  min-width: 0;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(35, 122, 235, 0.14), rgba(37, 184, 120, 0.08)),
    #0b1f3f;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff;
}

.dash-window {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(134, 233, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.dash-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.dash-dots {
  display: flex;
  gap: 8px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.dash-titlebar strong,
.dash-titlebar small {
  display: block;
}

.dash-titlebar strong {
  font-size: 16px;
}

.dash-titlebar small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.dash-titlebar em {
  padding: 4px 9px;
  color: #08301f;
  background: #80f0bc;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.dash-toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.dash-toolbar button {
  min-height: 34px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
}

.dash-toolbar button.active {
  color: #fff;
  background: linear-gradient(90deg, #237aeb, #00aecd);
  border-color: transparent;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.dash-kpis article,
.dash-card {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-kpis article {
  min-height: 108px;
  padding: 14px;
}

.dash-kpis small,
.dash-kpis span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.dash-kpis strong {
  display: block;
  margin: 10px 0 3px;
  color: #86e9ff;
  font-size: 34px;
  line-height: 1;
}

.dash-kpis .up {
  color: #80f0bc;
}

.dash-kpis .warn {
  color: #ffb261;
}

.dash-main {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 12px;
}

.dash-card {
  min-width: 0;
  min-height: 168px;
  padding: 14px;
  overflow: hidden;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.card-head b {
  font-size: 15px;
}

.card-head span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.station-map {
  position: relative;
  grid-row: span 2;
}

.map-canvas {
  position: relative;
  height: 318px;
  border-radius: 5px;
  background:
    linear-gradient(rgba(134, 233, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 233, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 45% 46%, rgba(0, 174, 205, 0.18), transparent 42%),
    rgba(6, 22, 48, 0.56);
  background-size: 32px 32px, 32px 32px, auto, auto;
  overflow: hidden;
}

.map-canvas::before,
.map-canvas::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(134, 233, 255, 0.36);
}

.map-canvas::before {
  inset: 42px 54px 40px 72px;
  border-radius: 48% 52% 46% 54%;
  transform: rotate(-8deg);
}

.map-canvas::after {
  inset: 76px 32px 72px 114px;
  border-radius: 54% 46% 56% 44%;
  transform: rotate(16deg);
}

.route {
  position: absolute;
  display: block;
  height: 1px;
  background: rgba(134, 233, 255, 0.44);
  transform-origin: left;
}

.r1 {
  width: 190px;
  left: 24%;
  top: 36%;
  transform: rotate(-22deg);
}

.r2 {
  width: 180px;
  left: 32%;
  top: 52%;
  transform: rotate(28deg);
}

.r3 {
  width: 220px;
  left: 22%;
  top: 70%;
  transform: rotate(10deg);
}

.site {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(134, 233, 255, 0.1);
}

.s1 {
  left: 26%;
  top: 34%;
}

.s2 {
  left: 57%;
  top: 28%;
}

.s3 {
  left: 70%;
  top: 44%;
}

.s4 {
  left: 39%;
  top: 57%;
}

.s5 {
  left: 64%;
  top: 72%;
}

.s6 {
  left: 22%;
  top: 70%;
}

.good {
  background: var(--green);
}

.warn {
  background: var(--orange);
}

.alert {
  background: #ff4d5e;
}

.map-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-legend i,
.alert-card i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.trend-chart {
  height: 104px;
  padding: 8px 0 0;
}

.trend-chart svg {
  width: 100%;
  height: 100%;
}

.trend-chart .grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.trend-chart .line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
}

.trend-chart .line-blue {
  stroke: #86e9ff;
}

.trend-chart .line-green {
  stroke: #80f0bc;
}

.trend-chart .fill {
  fill: rgba(35, 122, 235, 0.12);
}

.rank-list {
  display: grid;
  gap: 8px;
}

.rank-list div {
  position: relative;
  display: grid;
  grid-template-columns: 76px 44px 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.rank-list b {
  color: #fff;
}

.rank-list i {
  position: relative;
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.rank-list i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, #237aeb, #00aecd);
}

.alert-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alert-card li {
  display: grid;
  grid-template-columns: 8px minmax(48px, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  font-size: 12px;
}

.alert-card b {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
}

.dash-footer {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  font-size: 12px;
}

.dash-footer i {
  height: 1px;
  background: linear-gradient(90deg, #237aeb, rgba(134, 233, 255, 0.18));
}

.solutions {
  background: var(--ice);
}

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

.solution-grid article {
  min-height: 220px;
  padding: 28px;
}

.solution-grid a {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 700;
}

.case-strip {
  padding: 44px 0;
  color: #fff;
  background: linear-gradient(90deg, #152545, #324e7b 62%, #237aeb);
}

.case-inner {
  justify-content: space-between;
  gap: 32px;
}

.case-inner span,
.case-inner strong {
  display: block;
}

.case-inner span {
  color: #86e9ff;
}

.case-inner strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.35;
}

.case-inner dl {
  gap: 18px;
  margin: 0;
}

.case-inner dl div {
  min-width: 108px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.case-inner dt {
  font-size: 24px;
  font-weight: 800;
}

.case-inner dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  color: rgba(255, 255, 255, 0.74);
  background: #08182f;
}

.footer-inner {
  justify-content: space-between;
  gap: 24px;
  min-height: 120px;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: #fff;
  font-size: 18px;
}

.footer span {
  margin-top: 8px;
}

.footer a {
  margin-left: 22px;
  color: #fff;
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links,
  .nav-action {
    display: none;
  }

  .navbar.open {
    flex-wrap: wrap;
  }

  .navbar.open .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    order: 4;
    margin-left: 0;
    padding-bottom: 16px;
  }

  .navbar.open .nav-links a {
    padding: 12px;
    background: var(--ice);
    border-bottom: 0;
  }

  .navbar.open .nav-dropdown {
    grid-column: 1 / -1;
  }

  .navbar.open .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 0;
    background: var(--ice);
    text-align: left;
  }

  .navbar.open .nav-dropdown-menu {
    position: static;
    width: auto;
    padding: 4px 0 0;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .navbar.open .nav-dropdown-menu a,
  .navbar.open .nav-dropdown-menu a:hover {
    padding: 10px 16px;
    background: #f5fbfd;
  }

  .hero-inner,
  .platform-layout {
    grid-template-columns: 1fr;
  }

  .status-panel {
    align-self: auto;
    width: 100%;
    max-width: 520px;
    margin: 0;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .navbar {
    min-height: 66px;
    gap: 12px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 12px;
  }

  .nav-toggle {
    flex: 0 0 42px;
  }

  .navbar.open .nav-links,
  .product-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(244, 250, 253, 0.96) 0%, rgba(244, 250, 253, 0.82) 54%, rgba(244, 250, 253, 0.98) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, #fff 100%);
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0 58px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.16;
  }

  .water-score {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .water-score strong {
    font-size: 44px;
  }

  .section-title h2 {
    font-size: 30px;
    word-break: break-all;
  }

  .product-grid p,
  .solution-grid p,
  .lead,
  .feature-list span {
    word-break: break-all;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .platform-layout {
    gap: 34px;
  }

  .dashboard-preview {
    overflow: hidden;
  }

  .dash-toolbar,
  .dash-kpis,
  .dash-main,
  .map-legend {
    grid-template-columns: 1fr;
  }

  .dash-titlebar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .station-map {
    grid-row: auto;
  }

  .map-canvas {
    height: 230px;
  }

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

  .dash-footer i {
    display: none;
  }

  .rank-list div {
    grid-template-columns: 72px 42px 1fr;
  }

  .case-inner,
  .case-inner dl,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-inner dl {
    width: 100%;
  }

  .case-inner dl div {
    width: 100%;
  }

  .footer-inner {
    justify-content: center;
  }

  .footer a {
    display: inline-block;
    margin: 8px 18px 0 0;
  }
}
