:root {
  --blue: #0b63f6;
  --blue-dark: #063f9e;
  --blue-deep: #061a3a;
  --cyan: #12d5ff;
  --green: #20c997;
  --orange: #ff9f2d;
  --ink: #101828;
  --text: #3f4b5f;
  --muted: #667085;
  --line: #dce6f3;
  --soft: #f3f7fc;
  --panel: #ffffff;
  --shadow: 0 20px 60px rgba(8, 35, 75, .14);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  color: #d8e6ff;
  background: #061225;
  font-size: 13px;
}
.topbar .container {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.topbar-links { display: flex; gap: 20px; white-space: nowrap; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(8,35,75,.05);
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: 214px;
  max-height: 46px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}
.menu-item { position: static; }
.menu-link {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: #253047;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}
.menu-link:hover, .menu-link.active, .menu-item:hover .menu-link { color: var(--blue); }
.nav-submenu {
  position: absolute;
  top: 74px;
  min-width: 150px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .16s ease;
}
.menu-item:hover .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-submenu a {
  display: block;
  padding: 10px 12px;
  color: #253047;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.nav-submenu a:hover { color: var(--blue); background: #f4f8ff; }
.arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .16s ease;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.menu-item:hover .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 34px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}
.mega-aside {
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #08214a, #0b63f6);
}
.mega-aside h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.25; }
.mega-aside p { margin: 0 0 18px; color: rgba(255,255,255,.78); font-size: 14px; }
.mega-aside a { color: #fff; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.55); }
.mega-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}
.mega-col h4 { margin: 0 0 12px; font-size: 17px; }
.mega-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.mega-col a { color: var(--muted); font-size: 14px; }
.mega-col a:hover { color: var(--blue); }
.actions { display: flex; gap: 10px; align-items: center; }
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: .16s ease;
}
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #02a8ff); box-shadow: 0 12px 28px rgba(11,99,246,.24); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(.96); }
.btn-outline { color: var(--blue); border-color: #b9d5ff; background: #fff; }
.btn-dark { color: #fff; background: #092044; }
.text-link { color: var(--blue); font-weight: 900; }

.hero, .page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(18,213,255,.28), transparent 34%),
    linear-gradient(120deg, #061225 0%, #082b61 46%, #0b63f6 100%);
  overflow: hidden;
}
.hero { min-height: calc(100vh - 110px); padding: 64px 0 34px; }
.page-hero { padding: 78px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  color: #e9f7ff;
  background: rgba(255,255,255,.08);
  font-size: 14px;
  font-weight: 800;
}
h1 { margin: 20px 0 16px; font-size: clamp(38px, 6vw, 66px); line-height: 1.08; }
.page-hero h1 { max-width: 860px; }
.hero p, .page-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.78); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 34px; }
.stat {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
}
.stat strong { display: block; color: #fff; font-size: 30px; line-height: 1.1; }
.stat span { display: block; margin-top: 6px; color: rgba(255,255,255,.72); font-size: 13px; }
.dashboard {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 14px;
  color: #fff;
}
.pulse { display: inline-flex; gap: 7px; align-items: center; color: #9ff4d8; font-size: 13px; font-weight: 800; }
.pulse::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.map {
  position: relative;
  height: 260px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255,255,255,.09) 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.08) 35px),
    linear-gradient(135deg, rgba(11,99,246,.45), rgba(18,213,255,.18));
}
.route {
  position: absolute;
  inset: 44px 38px;
  border-top: 4px dashed rgba(255,255,255,.58);
  border-right: 4px dashed rgba(255,255,255,.58);
  transform: skewX(-14deg);
}
.truck {
  position: absolute;
  right: 28%;
  top: 45%;
  width: 52px;
  height: 32px;
  border-radius: 5px;
  background: #fff;
}
.truck::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -7px;
  height: 9px;
  background: radial-gradient(circle at 8px 4px,#061225 0 4px,transparent 5px), radial-gradient(circle at 34px 4px,#061225 0 4px,transparent 5px);
}
.map-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: min(280px, calc(100% - 32px));
  padding: 12px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
}
.map-card b { display: block; margin-bottom: 4px; }
.map-card span { display: block; color: var(--muted); font-size: 13px; }

.section { padding: 78px 0; }
.section-soft { background: var(--soft); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
.section-head h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.16; }
.section-head p { margin: 0; max-width: 640px; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 32px rgba(8,35,75,.05);
  transition: .2s ease;
}
.card:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0b63f6, #12a7ff);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.card:hover p, .card:hover .list { color: rgba(255,255,255,.84); }
.card:hover .icon { background: rgba(255,255,255,.18); box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); }
.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.3; }
.card p { margin: 0 0 16px; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { min-height: 26px; display: inline-flex; align-items: center; padding: 0 9px; border-radius: 5px; color: #31506e; background: #edf5ff; font-size: 13px; }
.list { margin: 0; padding-left: 18px; color: var(--muted); }
.list li + li { margin-top: 7px; }

.product-row {
  display: grid;
  grid-template-columns: 230px 1fr 160px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.product-row + .product-row { margin-top: 14px; }
.product-row h3 { margin: 0; font-size: 22px; }
.product-row p { margin: 8px 0 0; color: var(--muted); }
.product-row strong { color: var(--blue); }
.solution-hero-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  background: linear-gradient(180deg, rgba(6,18,37,.05), rgba(6,18,37,.92)), var(--bg);
}
.solution-hero-card p { color: rgba(255,255,255,.78); }
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.step b { display: block; color: var(--blue); font-size: 28px; line-height: 1; margin-bottom: 12px; }
.step strong { display: block; margin-bottom: 8px; font-size: 18px; }
.step span { color: var(--muted); font-size: 14px; }

.cta {
  color: #fff;
  background: linear-gradient(120deg, #061225, #0b3f91 52%, #0b63f6);
}
.cta-wrap {
  display: grid;
  grid-template-columns: minmax(0,1fr) 410px;
  gap: 36px;
  align-items: center;
}
.cta h2 { margin: 0 0 14px; font-size: clamp(30px, 4.4vw, 48px); line-height: 1.15; }
.cta p { margin: 0; color: rgba(255,255,255,.76); font-size: 18px; }
.form-card { padding: 24px; border-radius: var(--radius); background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.form-card h3 { margin: 0 0 14px; font-size: 24px; }
.form { display: grid; gap: 10px; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}
.form textarea { min-height: 96px; resize: vertical; }

.footer { padding: 38px 0; color: #a8b7cf; background: #061225; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; }
.footer h4 { margin: 0 0 12px; color: #fff; }
.footer a, .footer p { display: block; margin: 0 0 8px; color: #a8b7cf; font-size: 14px; }
.footer p {
  max-width: 280px;
  line-height: 1.8;
}
.footer a {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copyright { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; text-align: center; }

.hero-carousel {
  position: relative;
  min-height: 620px;
  color: #101828;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(235,246,255,.98) 0%, rgba(235,246,255,.90) 42%, rgba(235,246,255,.72) 100%),
    radial-gradient(circle at 76% 42%, rgba(11,99,246,.20), transparent 30%),
    linear-gradient(135deg, #f4faff, #dceeff);
}
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(11,99,246,.08) 28% 29%, transparent 29% 100%),
    linear-gradient(150deg, transparent 0 54%, rgba(11,99,246,.08) 54% 55%, transparent 55% 100%);
  pointer-events: none;
}
.slide {
  min-height: 620px;
  display: none;
  align-items: center;
  padding: 76px 0 124px;
}
.slide.active { display: flex; }
.slide-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}
.slide h1 {
  color: #0b1220;
  font-size: clamp(42px, 6vw, 68px);
  max-width: 680px;
}
.slide p {
  max-width: 600px;
  color: #303b4d;
  font-size: 20px;
}
.slide-art {
  position: relative;
  min-height: 410px;
}
.platform {
  position: absolute;
  right: 4%;
  bottom: 26px;
  width: 560px;
  max-width: 100%;
  height: 280px;
  border-radius: 26px;
  transform: perspective(900px) rotateX(58deg) rotateZ(-8deg);
  background: linear-gradient(135deg, #fff, #dbeaff);
  box-shadow: 0 38px 70px rgba(19,72,147,.18), inset 0 0 0 10px rgba(255,255,255,.55);
}
.platform::before {
  content: "";
  position: absolute;
  inset: 40px 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b63f6, #12d5ff);
}
.platform::after {
  content: "";
  position: absolute;
  inset: 88px 98px;
  border-top: 10px solid #fff;
  border-right: 10px solid #fff;
  border-radius: 18px;
}
.hero-truck {
  position: absolute;
  right: 24%;
  top: 196px;
  width: 136px;
  height: 54px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0b63f6, #55bcff);
  box-shadow: 0 20px 38px rgba(11,99,246,.26);
}
.hero-truck::before {
  content: "";
  position: absolute;
  right: -38px;
  top: 10px;
  width: 42px;
  height: 34px;
  border-radius: 8px 12px 8px 4px;
  background: #0a52c8;
}
.hero-truck::after {
  content: "";
  position: absolute;
  left: 16px;
  right: -26px;
  bottom: -11px;
  height: 14px;
  background:
    radial-gradient(circle at 16px 7px, #061225 0 7px, transparent 8px),
    radial-gradient(circle at 84px 7px, #061225 0 7px, transparent 8px),
    radial-gradient(circle at 142px 7px, #061225 0 7px, transparent 8px);
}
.route-board {
  position: absolute;
  right: 4%;
  top: 40px;
  width: 270px;
  min-height: 142px;
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0753ce, #0a72ff);
  box-shadow: 0 20px 52px rgba(11,99,246,.28);
}
.route-board span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.route-line {
  height: 10px;
  margin-top: 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff 0 32%, #ffcd4d 32% 60%, #20c997 60%);
}
.slide-dots {
  position: absolute;
  left: max(20px, calc((100% - 1200px) / 2));
  bottom: 148px;
  display: flex;
  gap: 10px;
}
.slide-dot {
  width: 54px;
  height: 4px;
  border: 0;
  border-radius: 8px;
  background: rgba(11,99,246,.22);
  cursor: pointer;
}
.slide-dot.active { background: var(--blue); }
.hero-product-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(231,242,255,.96);
  border-top: 1px solid rgba(11,99,246,.12);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.strip-product {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  transition: .18s ease;
  border-right: 1px solid rgba(11,99,246,.08);
}
.strip-product > .mini-icon {
  align-self: center;
}
.strip-product > span:last-child {
  min-width: 0;
}
.strip-product:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(8,35,75,.08);
}
.strip-product b { display: block; font-size: 18px; }
.strip-product span { display: block; color: var(--muted); font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.strip-product em {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: calc(100% - 8px);
  z-index: 5;
  display: none;
  padding: 10px 12px;
  border: 1px solid #d6e6fb;
  border-radius: 6px;
  color: #344054;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8,35,75,.12);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}
.strip-product:hover em {
  display: block;
}
.mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.hero-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #0b63f6, #12d5ff);
  box-shadow: 0 12px 30px rgba(11,99,246,.28);
}
.hero-pin > span { transform: rotate(45deg); }
.pin-a { right: 38%; top: 86px; }
.pin-b { right: 12%; top: 236px; background: linear-gradient(135deg, #ff7a45, #ffbf3f); }
.section-title-center { text-align: center; margin-bottom: 34px; }
.section-title-center h2 { margin: 0; font-size: clamp(30px, 4vw, 44px); }
.section-title-center p { margin: 10px auto 0; max-width: 720px; color: var(--text); font-size: 19px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px,1fr));
  gap: 18px;
  overflow: hidden;
}
.feature-card {
  min-height: 360px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #f1f7ff;
  box-shadow: 0 12px 34px rgba(8,35,75,.08);
  transition: .22s ease;
}
.feature-card:hover {
  color: #fff;
  background: linear-gradient(135deg, #0b63f6, #0bb7ff);
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgba(11,99,246,.22);
}
.feature-card:hover p { color: rgba(255,255,255,.86); }
.feature-card:hover .btn-outline { color: var(--blue); background: #fff; border-color: #fff; }
.feature-card.primary { color: #fff; background: linear-gradient(135deg, #176ff2, #0b85ff); }
.feature-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(11,99,246,.08);
}
.feature-card.primary::before { background: rgba(255,255,255,.12); }
.isometric {
  width: 150px;
  height: 120px;
  margin: 32px auto 42px;
  position: relative;
}
.isometric::before {
  content: "";
  position: absolute;
  inset: 34px 16px 10px;
  transform: rotate(30deg) skewX(-30deg);
  border-radius: 12px;
  background: linear-gradient(135deg, #d9ecff, #8fc7ff);
  box-shadow: 14px 18px 0 rgba(49,91,158,.18);
}
.isometric::after {
  content: attr(data-mark);
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 26px rgba(11,99,246,.26);
}
.feature-card h3 { margin: 0 0 12px; font-size: 24px; }
.feature-card p { margin: 0 0 26px; color: var(--text); }
.feature-card.primary p { color: rgba(255,255,255,.86); }
.solution-photo-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, .82fr);
  gap: 18px;
  transition: .25s ease;
}
.solution-photo-grid:has(.photo-card:nth-child(1):hover) { grid-template-columns: 1.75fr .78fr .78fr .78fr; }
.solution-photo-grid:has(.photo-card:nth-child(2):hover) { grid-template-columns: .78fr 1.75fr .78fr .78fr; }
.solution-photo-grid:has(.photo-card:nth-child(3):hover) { grid-template-columns: .78fr .78fr 1.75fr .78fr; }
.solution-photo-grid:has(.photo-card:nth-child(4):hover) { grid-template-columns: .78fr .78fr .78fr 1.75fr; }
.solution-photo-grid[data-active="0"] { grid-template-columns: 1.75fr .78fr .78fr .78fr; }
.solution-photo-grid[data-active="1"] { grid-template-columns: .78fr 1.75fr .78fr .78fr; }
.solution-photo-grid[data-active="2"] { grid-template-columns: .78fr .78fr 1.75fr .78fr; }
.solution-photo-grid[data-active="3"] { grid-template-columns: .78fr .78fr .78fr 1.75fr; }
.photo-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(180deg, rgba(6,18,37,.12), rgba(6,18,37,.92)), var(--bg);
  background-size: cover;
  background-position: center;
  transition: .25s ease;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px rgba(8,35,75,.18); }
.photo-card h3 { margin: 0 0 12px; font-size: 26px; }
.photo-card p { margin: 0; color: rgba(255,255,255,.76); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.partner-logo {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  color: #214166;
  background: #fff;
  border: 1px solid #edf2f8;
  box-shadow: 0 10px 26px rgba(8,35,75,.05);
  font-size: 22px;
  font-weight: 900;
  transition: .18s ease;
}
.partner-logo:hover {
  transform: translateY(-3px);
  border-color: #b9d5ff;
  box-shadow: 0 18px 38px rgba(8,35,75,.1);
}
.logo-mark {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 14px;
}
.product-page {
  padding: 54px 0 78px;
  background: #fff;
}
.api-filter-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 30px;
  align-items: start;
  margin-bottom: 28px;
}
.api-filter-head h1 {
  color: #0b1220;
  margin: 0 0 24px;
  font-size: 46px;
}
.search-box {
  position: relative;
  margin-top: 30px;
}
.search-box input {
  width: 100%;
  height: 54px;
  padding: 0 48px 0 20px;
  border-radius: 28px;
  border: 1px solid var(--line);
  outline: none;
  color: var(--ink);
}
.search-box::after {
  content: "⌕";
  position: absolute;
  right: 18px;
  top: 10px;
  color: #b1bdca;
  font-size: 30px;
}
.hot-search { margin-top: 8px; color: #98a2b3; font-size: 14px; }
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.filter-pill {
  min-width: 108px;
  height: 50px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4b5565;
  font-weight: 900;
  cursor: pointer;
}
.filter-pill.active {
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), #12a7ff);
  box-shadow: 0 10px 24px rgba(11,99,246,.2);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 14px 0;
  color: #222b3a;
  font-weight: 800;
}
.filter-row b { margin-right: 14px; }
.product-tools {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
}
.view-tools { color: #253047; font-weight: 900; }
.api-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 28px;
}
.api-card {
  min-height: 350px;
  position: relative;
  padding: 0 22px 26px;
  border: 1px solid #e5eef9;
  border-radius: 4px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 72%);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(8,35,75,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.api-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,99,246,.24);
  box-shadow: 0 18px 44px rgba(8,35,75,.12);
}
.api-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 150px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 0 0 22px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}
.api-limit {
  position: absolute;
  right: -34px;
  top: 18px;
  width: 130px;
  transform: rotate(45deg);
  text-align: center;
  color: #fff;
  background: #ff684d;
  font-size: 14px;
}
.api-card .isometric { margin-top: 74px; margin-bottom: 32px; }
.api-card h3 { margin: 0 0 14px; font-size: 21px; line-height: 1.28; letter-spacing: 0; }
.api-card p { margin: 0; color: #52627a; font-size: 15px; line-height: 1.72; }
.api-card.hide { display: none; }
.card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 42px;
  margin: 20px auto 0;
  padding: 0 18px;
  border: 0;
  border-radius: 22px;
  cursor: pointer;
  color: #0753ce;
  background: #edf5ff;
  font-weight: 800;
}
.api-card:hover .card-more {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #12a7ff);
}
.product-contact {
  margin-top: 22px;
  padding: 16px 0 0;
}
.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid #d9e8fb;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
  box-shadow: 0 10px 30px rgba(8,35,75,.06);
}
.contact-band h2 {
  margin: 8px 0 10px;
  font-size: 28px;
}
.contact-band p {
  margin: 0;
  color: #51637d;
  line-height: 1.75;
}
.market-search {
  padding: 34px 0 16px;
}
.market-search-box {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 0 20px 0 24px;
  border-radius: 34px;
  border: 1px solid rgba(11,99,246,.12);
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  box-shadow: 0 20px 50px rgba(8,35,75,.08);
}
.market-search-box .search-icon {
  color: #94a3b8;
  font-size: 22px;
}
.market-search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #101828;
}
.market-search-box button {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0b63f6, #0b2c62);
  font-size: 20px;
}
.market-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
  color: #98a2b3;
}
.market-suggest span,
.market-suggest button {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d8e6ff;
  background: #fff;
  cursor: pointer;
}
.api-category-block {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}
.api-category-block h1 {
  margin: 0;
  font-size: 62px;
  color: #0f172a;
}
.listing-page {
  background: linear-gradient(180deg, #f5f7fd 0%, #ffffff 100%);
}
.listing-hero {
  padding: 36px 0 18px;
  background: #f3f5fb;
}
.listing-hero .crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b2c62;
  color: #fff;
}
.listing-hero h1 {
  margin: 28px 0 14px;
  font-size: 40px;
  color: #0f172a;
}
.listing-hero p {
  max-width: 880px;
  margin: 0;
  color: #51637d;
  font-size: 18px;
}
.listing-panel {
  padding: 22px 0 0;
}
.listing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 18px 0 24px;
  border-bottom: 1px solid #e5edf8;
}
.listing-tabs button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #101828;
  font-size: 22px;
  font-weight: 800;
}
.listing-tabs button.active {
  position: relative;
  color: #0b2c62;
}
.listing-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  height: 4px;
  border-radius: 999px;
  background: #0b2c62;
}
.listing-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px;
  gap: 0;
  width: min(880px, 100%);
  margin-top: 36px;
  border: 1px solid #dbe7f6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(8,35,75,.06);
}
.listing-search input {
  height: 62px;
  padding: 0 18px;
  border: 0;
  outline: none;
  background: #fff;
  font-size: 18px;
}
.listing-search button {
  border: 0;
  color: #fff;
  background: #0b2c62;
  font-size: 20px;
}
.listing-grid {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}
.solution-list-grid, .news-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.solution-list-card, .news-list-card {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8,35,75,.08);
}
.solution-list-card img, .news-list-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e9eff9;
}
.solution-body, .news-body {
  padding: 22px;
}
.solution-body h3, .news-body h3 {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.35;
}
.solution-body p, .news-body p {
  margin: 0;
  color: #51637d;
  line-height: 1.8;
}
.chip {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0b2c62;
  background: #eaf1ff;
  font-size: 13px;
  font-weight: 700;
}
.tag-list, .metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.tag-list span, .metric-row b {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f2f6ff;
  color: #3f4b5f;
  font-weight: 700;
}
.solution-list-card:hover, .news-list-card:hover, .api-card:hover {
  transform: translateY(-4px);
}

/* Vue 版产品、方案和新闻页面视觉优化。 */
.product-page {
  background: #f7f9fc;
}
.product-page > .container {
  padding-top: 26px;
}
.market-search {
  max-width: 900px;
  padding: 0 0 14px;
}
.market-search-box {
  min-height: 52px;
  gap: 10px;
  padding: 0 8px 0 18px;
  border-radius: 26px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,35,75,.08);
}
.market-search-box .search-icon {
  font-size: 18px;
  color: #8a95a6;
}
.market-search-box input {
  font-size: 15px;
  font-weight: 600;
}
.market-search-box button {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #1976f3, #063f9e);
  box-shadow: 0 8px 18px rgba(11,99,246,.22);
}
.market-suggest {
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  align-items: center;
}
.market-suggest b {
  color: #7a8494;
}
.market-suggest span,
.market-suggest button {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 14px;
  color: #6f7b8f;
  background: #fff;
  border-color: #dce6f3;
  cursor: pointer;
}
.product-tabs {
  display: flex;
  gap: 46px;
  margin: 22px 0 0;
  border-bottom: 1px solid #dfe7f2;
}
.product-tabs button {
  position: relative;
  height: 48px;
  border: 0;
  background: transparent;
  color: #1f2937;
  font-size: 16px;
  font-weight: 800;
}
.product-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #101828;
}
.product-filter-panel {
  display: grid;
  gap: 18px;
  margin: 24px 0 20px;
  padding: 24px 34px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(8,35,75,.06);
}
.filter-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  min-height: 30px;
  color: #222b3a;
  font-size: 14px;
  font-weight: 700;
}
.filter-line b {
  width: 86px;
  color: #8a95a6;
  font-weight: 700;
}
.filter-text {
  border: 0;
  background: transparent;
  color: #222b3a;
  font-weight: 800;
  cursor: pointer;
}
.filter-text.active, .filter-line span:first-of-type {
  padding: 4px 12px;
  border-radius: 7px;
  background: #f2f4f7;
  color: #101828;
}
.api-category-block {
  display: block;
  margin: 12px 0 18px;
}
.section-kicker {
  display: inline-flex;
  margin-bottom: 4px;
  color: #0b63f6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.api-category-block h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}
.product-tools {
  margin: 6px 0 18px;
}
.view-tools {
  font-size: 15px;
}
.api-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.api-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px 24px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 74%);
  text-align: center;
}
.api-ribbon {
  max-width: 142px;
  height: 38px;
  font-size: 14px;
  border-radius: 0 0 24px 0;
}
.product-card-icon {
  position: relative;
  width: 160px;
  height: 118px;
  margin: 70px auto 22px;
}
.product-card-icon::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 62px;
  transform: skewY(30deg) rotate(-30deg);
  border-radius: 18px;
  background: linear-gradient(135deg, #d5eaff, #76b8ff);
  box-shadow: 16px 18px 0 rgba(44,84,135,.14);
}
.product-card-icon span {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0b63f6, #12d5ff);
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(11,99,246,.22);
}
.api-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.28;
}
.api-card p {
  min-height: 72px;
  color: #52627a;
  font-size: 14px;
  line-height: 1.8;
}
.card-more {
  width: min(220px, 100%);
  height: 42px;
  margin-top: 20px;
  border: 0;
  border-radius: 22px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #2f80ed, #0b63f6);
  font-size: 14px;
}
.listing-page {
  background: #f5f7fd;
}
.listing-hero {
  padding: 42px 0 34px;
  background:
    radial-gradient(circle at 78% 20%, rgba(18,213,255,.16), transparent 28%),
    linear-gradient(135deg, #eef4ff, #f8fbff);
}
.listing-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.listing-hero h1 {
  margin: 8px 0 10px;
  font-size: 34px;
  line-height: 1.25;
}
.listing-hero p {
  font-size: 16px;
}
.listing-stats {
  min-width: 220px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 16px 34px rgba(8,35,75,.08);
}
.listing-stats strong {
  font-size: 24px;
  color: #0b2c62;
}
.listing-stats span {
  color: #667085;
  font-size: 13px;
}
.listing-hero .crumb {
  padding: 8px 16px;
  font-size: 14px;
}
.listing-panel {
  padding-top: 22px;
}
.listing-tabs {
  gap: 28px;
  padding: 0 0 16px;
}
.listing-tabs button {
  font-size: 17px;
}
.listing-tabs button.active::after {
  bottom: -17px;
  height: 3px;
}
.listing-search {
  width: min(620px, 100%);
  margin-top: 28px;
  grid-template-columns: minmax(0, 1fr) 58px;
}
.listing-search input {
  height: 52px;
  font-size: 15px;
}
.listing-grid {
  margin-top: 28px;
}
.solution-list-card, .news-list-card {
  border-radius: 8px;
}
.solution-body h3, .news-body h3 {
  font-size: 21px;
}
.mega.product-mega .mega-inner {
  grid-template-columns: repeat(7, minmax(0,1fr));
  gap: 10px;
  padding: 16px 0;
}
.mega.product-mega .mega-col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  border-bottom: 1px solid rgba(11,99,246,.16);
  padding-bottom: 8px;
}
.mega.product-mega .mega-col ul { gap: 12px; }
.mega.product-mega .mega-col a { font-size: 14px; }
.mega-hidden {
  display: none !important;
}
.mega-category-row {
  display: grid;
  gap: 10px;
  min-height: 96px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2ebf8;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
}
.mega-category-row:hover {
  border-color: #b9d5ff;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,35,75,.08);
}
.mega-category-link {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0;
  color: #0b2c62 !important;
  font-weight: 900;
  white-space: nowrap;
}
.mega-category-link b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.mega-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mega-items a {
  display: inline-flex;
  max-width: 100%;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #e6edf7;
  color: #526275 !important;
  background: rgba(255,255,255,.84);
  font-size: 12px !important;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-items a:hover {
  color: #0b63f6 !important;
  border-color: #b9d5ff;
  background: #eef5ff;
}
.hot-mark { color: #ff4d1f; font-size: 14px; }
.new-mark {
  display: inline-flex;
  margin-left: 5px;
  padding: 0 5px;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), #16d8d8);
  font-size: 12px;
}

/* 新版统一视觉：产品、方案、新闻、关于我们与联系表单。 */
.product-page {
  padding: 38px 0 72px;
  background: #f6f8fc;
}
.product-page > .container {
  padding-top: 18px;
}
.market-search {
  max-width: 760px;
  padding: 0 0 10px;
}
.market-search-box {
  min-height: 48px;
  gap: 10px;
  padding: 0 6px 0 16px;
  border-radius: 6px;
  border: 1px solid #dfe8f5;
  background: #fff;
  box-shadow: 0 8px 20px rgba(8,35,75,.06);
}
.market-search-box .search-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.market-search-box .search-icon::before,
.search-submit-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.market-search-box .search-icon::after,
.search-submit-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}
.market-search-box .search-icon {
  color: #8a95a6;
}
.market-search-box .search-icon::before {
  left: 1px;
  top: 1px;
}
.market-search-box .search-icon::after {
  left: 11px;
  top: 13px;
}
.market-search-box input {
  font-size: 14px;
  font-weight: 500;
}
.market-search-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 36px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  background: #0b63f6;
  box-shadow: none;
  cursor: pointer;
}
.search-submit-icon {
  position: relative;
  width: 18px;
  height: 18px;
  color: #fff;
}
.search-submit-icon::before {
  left: 1px;
  top: 1px;
}
.search-submit-icon::after {
  left: 11px;
  top: 13px;
}
.market-suggest {
  gap: 8px;
  margin-top: 9px;
  font-size: 12px;
}
.market-suggest b {
  color: #8a95a6;
  font-weight: 600;
}
.market-suggest span,
.market-suggest button {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  border-color: #e5edf7;
  color: #6b7586;
  background: #fff;
  cursor: pointer;
}
.market-suggest button:hover {
  color: #0b63f6;
  border-color: #9bc5ff;
  background: #eef5ff;
}
.product-filter-panel {
  display: block;
  margin: 18px 0 14px;
  padding: 18px 22px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,35,75,.05);
}
.filter-line {
  gap: 10px 24px;
  font-size: 14px;
}
.filter-line b {
  width: 72px;
  color: #344054;
  font-weight: 800;
}
.filter-text {
  padding: 4px 0;
  color: #475467;
  font-size: 14px;
  font-weight: 700;
}
.filter-text.active {
  padding: 4px 11px;
  border-radius: 4px;
  color: #fff;
  background: #0b63f6;
}
.product-tools {
  margin: 6px 0 16px;
}
.view-tools {
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}
.api-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
}
.api-card {
  min-height: 314px;
  padding: 0 20px 20px;
  border-radius: 6px;
  border: 1px solid #e6edf7;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,35,75,.05);
}
.api-ribbon {
  height: 32px;
  max-width: 128px;
  padding: 0 14px;
  border-radius: 0 0 18px 0;
  font-size: 12px;
}
.product-card-icon {
  width: 122px;
  height: 88px;
  margin: 58px auto 16px;
}
.product-card-icon::before {
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 45px;
  border-radius: 12px;
}
.product-card-icon span {
  top: 9px;
  width: 46px;
  height: 46px;
  border-radius: 9px;
  font-size: 16px;
}
.api-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}
.api-card p {
  min-height: 76px;
  color: #5d6b82;
  font-size: 13px;
  line-height: 1.7;
}
.card-more {
  width: 116px;
  height: 34px;
  margin-top: auto;
  border-radius: 4px;
  font-size: 13px;
  background: #0b63f6;
}
.strip-icon {
  position: relative;
  color: transparent;
}
.strip-icon::before,
.strip-icon::after {
  content: "";
  position: absolute;
  display: block;
}
.strip-icon.icon-location::before {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 3px;
  transform: rotate(-45deg);
}
.strip-icon.icon-location::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
.strip-icon.icon-notify::before {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}
.strip-icon.icon-notify::after {
  right: 10px;
  width: 10px;
  height: 3px;
  background: #fff;
}
.strip-icon.icon-alarm::before {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.strip-icon.icon-alarm::after {
  width: 3px;
  height: 12px;
  background: #fff;
  box-shadow: 0 16px 0 #fff;
}
.strip-icon.icon-route::before {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.strip-icon.icon-route::after {
  right: 8px;
  bottom: 10px;
  width: 10px;
  height: 3px;
  background: #fff;
  transform: rotate(45deg);
}
.strip-icon.icon-fence::before {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 4px;
}
.strip-icon.icon-fence::after {
  width: 3px;
  height: 22px;
  background: #fff;
  box-shadow: 8px 0 0 #fff, 16px 0 0 #fff;
}
.strip-icon.icon-warning::before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #fff;
}
.strip-icon.icon-warning::after {
  width: 3px;
  height: 7px;
  bottom: 6px;
  background: #fff;
  box-shadow: 0 10px 0 #fff;
}
.strip-icon-img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(11, 99, 246, .22);
}
.home-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.home-solution-card {
  display: grid;
  grid-template-columns: 46% 1fr;
  overflow: hidden;
  min-height: 250px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e6edf7;
  box-shadow: 0 14px 34px rgba(8,35,75,.07);
  transition: .2s ease;
}
.home-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(8,35,75,.12);
}
.home-solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eaf1fb;
}
.home-solution-body {
  padding: 24px;
}
.home-solution-body h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.32;
}
.home-solution-body p {
  margin: 0;
  color: #5d6b82;
}
.home-product-list {
  display: grid;
  gap: 78px;
}
.home-product-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px, .9fr);
  gap: 54px;
  align-items: center;
}
.home-product-row.reverse .home-product-copy {
  order: 2;
}
.home-product-row.reverse .home-product-media {
  order: 1;
}
.home-product-copy h3 {
  margin: 0 0 18px;
  color: #101828;
  font-size: 32px;
  line-height: 1.25;
}
.home-product-copy p {
  margin: 0 0 22px;
  color: #5d6b82;
  font-size: 16px;
  line-height: 1.9;
}
.home-product-values {
  padding: 22px;
  border-radius: 10px;
  background: #f3f7fc;
  border: 1px solid #e1ebf7;
}
.home-product-values h4 {
  margin: 0 0 12px;
  font-size: 18px;
}
.home-product-values ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.home-product-values li {
  position: relative;
  padding-left: 20px;
  color: #475467;
  line-height: 1.65;
}
.home-product-values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0b63f6;
}
.home-product-media {
  position: relative;
}
.home-product-media::before,
.home-product-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.home-product-media::before {
  left: -24px;
  bottom: -24px;
  width: 128px;
  height: 128px;
  background: rgba(11,99,246,.10);
}
.home-product-media::after {
  right: -18px;
  top: -18px;
  width: 94px;
  height: 94px;
  background: rgba(255,159,45,.12);
}
.home-product-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 22px 56px rgba(8,35,75,.16);
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.advantage-card,
.data-capability-card,
.customer-profile-card {
  border: 1px solid #e6edf7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8,35,75,.06);
  transition: .2s ease;
}
.advantage-card {
  padding: 24px;
}
.advantage-card:hover,
.data-capability-card:hover,
.customer-profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,99,246,.22);
  box-shadow: 0 20px 46px rgba(8,35,75,.1);
}
.advantage-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}
.advantage-card p {
  margin: 0;
  color: #5d6b82;
  font-size: 14px;
  line-height: 1.75;
}
.advantage-summary {
  max-width: 980px;
  margin: -8px auto 0;
  padding: 28px 34px;
  border: 1px solid #e6edf7;
  border-radius: 8px;
  color: #4d5f78;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8,35,75,.06);
  font-size: 17px;
  line-height: 2;
  text-align: left;
}
.data-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.data-capability-card {
  padding: 26px;
}
.data-capability-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.data-capability-card p {
  margin: 0 0 18px;
  color: #5d6b82;
}
.data-capability-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.data-capability-card li {
  position: relative;
  padding-left: 18px;
  color: #475467;
  font-size: 14px;
  line-height: 1.6;
}
.data-capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b63f6;
}
.customer-profile-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 14px;
}
.customer-profile-card {
  min-height: 188px;
  padding: 22px 16px;
  text-align: center;
}
.customer-profile-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0b63f6, #12d5ff);
  font-weight: 900;
}
.customer-profile-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.customer-profile-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}
.customer-section .section-title-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.partner-logo {
  min-height: 126px;
  font-size: 18px;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  background: #f8fafc;
  box-shadow: none;
}
.partner-logo img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: 56px;
  object-fit: contain;
}
.partner-logo b {
  color: #344054;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
.logo-mark {
  border-radius: 10px;
  font-size: 15px;
}
.contact-band-wrap {
  padding: 34px 0 58px;
  background: #fff;
}
.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(18,213,255,.22), transparent 28%),
    linear-gradient(135deg, #063f9e, #0b63f6 54%, #0aa4ff);
  box-shadow: 0 24px 58px rgba(11,99,246,.22);
}
.contact-band .eyebrow {
  color: #eaf7ff;
  border-color: rgba(255,255,255,.28);
}
.contact-copy h2 {
  margin: 10px 0 10px;
  font-size: 36px;
  line-height: 1.28;
}
.contact-copy p {
  max-width: 440px;
  color: rgba(255,255,255,.78);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
}
.contact-form-title {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 2px;
}
.contact-form-title b {
  color: #fff;
  font-size: 18px;
}
.contact-form-title span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.contact-form input {
  height: 46px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 4px;
  outline: none;
  color: #101828;
  background: #fff;
}
.contact-form .contact-wide {
  grid-column: 1 / -1;
}
.contact-submit {
  grid-column: 1 / -1;
  height: 46px;
  min-height: 46px;
  padding: 0 16px;
  color: #0b63f6;
  background: #fff;
  box-shadow: none;
}
.contact-submit:disabled,
.about-quick-form button:disabled {
  opacity: .72;
  cursor: not-allowed;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.modal-open {
  overflow: hidden;
}
.contact-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 18, 42, .58);
}
.contact-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  width: min(900px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(3, 18, 42, .24);
}
.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #344054;
  background: rgba(255,255,255,.9);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.contact-modal-info {
  position: relative;
  overflow: hidden;
  padding: 44px 38px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(255,255,255,.38), transparent 20%),
    radial-gradient(circle at 18% 86%, rgba(18,213,255,.18), transparent 26%),
    linear-gradient(150deg, #0a55d1, #1d7ef2 54%, #1ec9f0);
}
.contact-modal-kicker {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #eef8ff;
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.contact-modal-info h2 {
  margin: 22px 0 12px;
  font-size: 28px;
  line-height: 1.28;
}
.contact-modal-info p {
  margin: 0;
  max-width: 290px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.8;
}
.modal-api-visual {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 250px;
  height: 210px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 26%, rgba(255,255,255,.54), transparent 32%),
    radial-gradient(circle at 50% 66%, rgba(255,255,255,.24), transparent 40%);
}
.modal-api-visual::before {
  content: '';
  position: absolute;
  inset: auto 34px 26px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(141,191,255,.52), rgba(24,95,210,.12));
  filter: blur(2px);
}
.modal-api-visual span {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.7);
  box-shadow: 0 16px 30px rgba(11,99,246,.16);
  background: linear-gradient(180deg, rgba(161,225,255,.88), rgba(59,142,255,.9));
  font-size: 48px;
  font-weight: 900;
}
.modal-api-visual b {
  position: absolute;
  bottom: 40px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.24);
  font-size: 15px;
}
.modal-api-visual b:nth-of-type(2) { left: 26px; }
.modal-api-visual b:nth-of-type(3) { right: 26px; }
.modal-api-visual b:nth-of-type(4) { left: 50%; transform: translateX(-50%); bottom: 12px; }
.contact-modal-form {
  display: grid;
  gap: 12px;
  padding: 40px 36px 32px;
  background: #fff;
}
.contact-modal-form h2 {
  margin: 0;
  color: #475467;
  font-size: 24px;
  font-weight: 800;
}
.contact-modal-form p {
  margin: -2px 0 6px;
  color: #98a2b3;
  font-size: 13px;
}
.contact-modal-form label {
  display: grid;
  gap: 5px;
  color: #344054;
  font-weight: 700;
}
.contact-modal-form label span {
  font-size: 13px;
}
.contact-modal-form input,
.contact-modal-form textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  outline: none;
  color: #101828;
  background: #fff;
}
.contact-modal-form input {
  height: 38px;
  padding: 0 12px;
  font-size: 13px;
}
.contact-modal-form textarea {
  resize: vertical;
  min-height: 82px;
  padding: 10px 12px;
  font-size: 13px;
}
.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
  color: #98a2b3;
  font-size: 13px;
  font-weight: 400;
}
.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,99,246,.12);
}
.contact-modal-submit {
  width: 100%;
  height: 42px;
  margin-top: 6px;
  border-radius: 6px;
  font-size: 15px;
}
.contact-modal-status {
  min-height: 20px;
  color: #667085;
  font-size: 13px;
}
.listing-page {
  background: #f6f8fc;
}
.product-detail-page {
  background: #f1f4fa;
}
.detail-hero {
  padding: 46px 0 42px;
  background:
    radial-gradient(circle at 86% 10%, rgba(11,99,246,.12), transparent 30%),
    linear-gradient(135deg, #edf5ff, #fff);
}
.detail-hero-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}
.detail-icon-card {
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(11,99,246,.08);
}
.detail-icon-paper {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 28px rgba(11,99,246,.16);
}
.detail-icon-paper span {
  font-size: 38px;
  font-weight: 800;
}
.detail-hero-copy h1 {
  display: inline;
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}
.detail-exclusive {
  display: inline-flex;
  margin-left: 12px;
  padding: 4px 10px;
  color: #2f80ed;
  background: #e7f0ff;
  font-size: 14px;
  border-radius: 4px;
}
.detail-hero-copy p {
  margin: 16px 0 14px;
  max-width: 920px;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
}
.detail-notices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #0b3f8f;
  font-size: 14px;
  font-weight: 700;
}
.detail-notices span {
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(11,99,246,.08);
}
.detail-notices span:last-child {
  color: #ff6b2c;
  background: rgba(255,107,44,.1);
}
.detail-test {
  width: max-content;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--blue);
  background: #fff;
  border: 1px solid #cfe0ff;
}
.detail-test b {
  margin-left: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}
.detail-price {
  margin-top: 14px;
  color: #ff6b2c;
  font-size: 14px;
}
.detail-price strong { font-size: 26px; font-weight: 800; }
.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.detail-actions .btn {
  min-width: 120px;
}
.detail-panel {
  padding: 34px 0 58px;
}
.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 20px;
}
.detail-main-card,
.detail-recommend {
  border-radius: 8px;
  background: #fff;
}
.detail-main-card {
  padding: 22px 20px 36px;
}
.detail-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border: 1px solid #e6e9ef;
  border-radius: 6px;
  overflow: hidden;
}
.detail-tabs button {
  height: 46px;
  border: 0;
  border-right: 1px solid #e6e9ef;
  background: #fff;
  color: #101828;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.detail-tabs button:last-child {
  border-right: 0;
}
.detail-tabs button.active {
  color: #fff;
  background: var(--blue);
}
.detail-tab-body {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #d9dde5;
}
.detail-section-row {
  display: grid;
  grid-template-columns: 140px minmax(0,1fr);
  gap: 28px;
}
.detail-section-row h2 {
  margin: 0;
  color: #0b3f8f;
  font-size: 18px;
}
.detail-section-row h3 {
  margin: 0 0 12px;
  color: #101828;
  font-size: 20px;
}
.detail-section-row p {
  margin: 0 0 18px;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
}
.detail-list {
  margin: 0;
  padding-left: 20px;
  color: #667085;
  font-size: 15px;
  line-height: 1.9;
}
.detail-gallery {
  margin-top: 24px;
}
.detail-gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 14px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbff;
  cursor: zoom-in;
}
.detail-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.detail-image-mask {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 15, 31, .78);
}
.detail-image-preview {
  max-width: min(92vw, 1280px);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}
.detail-image-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #0f172a;
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.detail-api-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.detail-api-block {
  margin-bottom: 34px;
}
.detail-api-block:last-child {
  margin-bottom: 0;
}
.detail-api-meta p {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  background: #f6f9ff;
  border: 1px solid #e3edff;
}
.detail-api-meta b {
  display: block;
  margin-bottom: 6px;
  color: #344054;
  font-size: 13px;
}
.detail-api-meta span {
  color: var(--blue);
  font-size: 14px;
  word-break: break-all;
}
.detail-table {
  display: grid;
  max-width: 720px;
  margin-bottom: 24px;
  border: 1px solid #e1e8f5;
  border-radius: 8px;
  overflow: hidden;
}
.detail-table-head,
.detail-table-row {
  display: grid;
  grid-template-columns: 190px 90px minmax(0,1fr);
  align-items: center;
}
.detail-table-head {
  color: #344054;
  background: #f6f9ff;
  font-weight: 700;
}
.detail-table-head span,
.detail-table-row > * {
  margin: 0;
  padding: 12px 14px;
  border-right: 1px solid #e1e8f5;
  border-bottom: 1px solid #e1e8f5;
  color: #667085;
  font-size: 14px;
}
.detail-table-head span:last-child,
.detail-table-row > *:last-child { border-right: 0; }
.detail-table-row:last-child > * {
  border-bottom: 0;
}
.detail-table-row code {
  color: #0b63f6;
  font-weight: 700;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #0b2c62;
  background: #eef5ff;
  font-size: 14px;
  font-weight: 700;
}
.detail-tab-body pre {
  max-height: 240px;
  overflow: auto;
  margin: 0;
  padding: 14px;
  border-radius: 6px;
  color: #dff5ff;
  background: #061a3a;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.7;
}
.detail-recommend {
  padding: 24px 20px;
}
.detail-recommend h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}
.detail-recommend a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border-top: 1px solid #eceff5;
  color: #667085;
  font-size: 14px;
}
.detail-recommend a span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.detail-recommend a b { font-weight: 700; }
.detail-recommend a:last-of-type {
  border-bottom: 1px solid #eceff5;
}
.detail-contact-box {
  max-width: 720px;
  border: 1px solid #e6e9ef;
}
.detail-contact-box p {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr);
  margin: 0;
  border-bottom: 1px solid #e6e9ef;
}
.detail-contact-box p > * {
  padding: 14px 18px;
}
.detail-contact-box button {
  margin: 18px;
}
.listing-hero {
  padding: 48px 0 38px;
  background:
    radial-gradient(circle at 82% 18%, rgba(11,99,246,.18), transparent 30%),
    linear-gradient(135deg, #edf5ff, #ffffff);
}
.listing-hero-inner {
  display: block;
}
.listing-hero h1 {
  margin: 8px 0 10px;
  font-size: 34px;
}
.listing-hero p {
  max-width: 760px;
  font-size: 16px;
}
.listing-panel {
  padding-top: 22px;
  padding-bottom: 68px;
}
.listing-tabs {
  gap: 22px;
  padding: 0 0 14px;
}
.listing-tabs button {
  font-size: 15px;
  font-weight: 800;
}
.listing-tabs button.active::after {
  bottom: -15px;
  height: 3px;
}
.listing-search {
  width: min(560px, 100%);
  margin-top: 24px;
  grid-template-columns: minmax(0,1fr) 58px;
  border-radius: 6px;
}
.listing-search input {
  height: 48px;
  font-size: 14px;
}
.solution-list-grid,
.news-list-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.solution-list-card,
.news-list-card {
  border-radius: 8px;
  border: 1px solid #e6edf7;
  box-shadow: 0 12px 28px rgba(8,35,75,.06);
  transition: .2s ease;
}
.solution-body,
.news-body {
  padding: 20px;
}
.solution-body h3,
.news-body h3 {
  margin: 12px 0 10px;
  font-size: 19px;
}
.solution-body p,
.news-body p {
  font-size: 14px;
}
.news-body small {
  display: block;
  margin-top: 16px;
  color: #8a95a6;
}
.tag-list span,
.metric-row b {
  min-height: 28px;
  padding: 0 10px;
  font-size: 12px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.pagination button {
  height: 34px;
  padding: 0 14px;
  border: 1px solid #d8e6f6;
  border-radius: 4px;
  color: #0b63f6;
  background: #fff;
  cursor: pointer;
}
.pagination button:disabled {
  color: #a6b0bf;
  cursor: not-allowed;
  background: #f4f6fa;
}
.pagination span {
  color: #667085;
  font-size: 14px;
}
.article-detail-page {
  background: #f6f8fc;
}
.article-hero {
  padding: 42px 0 46px;
  background:
    linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
}
.article-hero-inner {
  max-width: 980px;
}
.article-meta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.article-meta-line span {
  padding: 6px 12px;
  border-radius: 999px;
  color: #174a86;
  background: #eaf3ff;
  font-size: 14px;
  font-weight: 700;
}
.article-back {
  color: #0b63f6;
  font-size: 14px;
  font-weight: 800;
}
.article-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  color: var(--text);
  font-size: 42px;
  line-height: 1.25;
}
.article-hero p {
  max-width: 900px;
  margin: 0 0 16px;
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
}
.article-hero small {
  color: #8a95a6;
}
.article-panel {
  display: grid;
  grid-template-columns: minmax(0,1fr) 280px;
  gap: 22px;
  padding-top: 30px;
  padding-bottom: 68px;
}
.article-card,
.article-side {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e6edf7;
  box-shadow: 0 12px 28px rgba(8,35,75,.05);
}
.article-card {
  padding: 34px 36px;
}
.article-cover {
  width: 100%;
  margin-bottom: 32px;
  border-radius: 8px;
  border: 1px solid #e6edf7;
  background: #fff;
}
.article-card h2 {
  margin: 28px 0 14px;
  color: #101828;
  font-size: 24px;
}
.article-card h2:first-child {
  margin-top: 0;
}
.article-card p,
.article-card li {
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
}
.article-card p {
  margin: 0 0 18px;
}
.article-card ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.article-side {
  height: max-content;
  padding: 22px 20px;
}
.article-side h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 20px;
}
.article-side a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid #eceff5;
  color: #667085;
  font-size: 14px;
  font-weight: 700;
}
.article-side .btn {
  width: 100%;
  margin-top: 18px;
}
.about-hero {
  padding: 70px 0 76px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,18,37,.9), rgba(8,59,134,.78)),
    url("../images/about-bg.svg"),
    radial-gradient(circle at 82% 18%, rgba(18,213,255,.22), transparent 30%),
    linear-gradient(135deg, #061225, #083b86 55%, #0b63f6);
  background-size: cover;
  background-position: center;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 380px;
  gap: 46px;
  align-items: center;
}
.about-hero h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  font-size: clamp(38px, 5vw, 58px);
  overflow-wrap: normal;
  word-break: keep-all;
}
.about-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.about-hero-card {
  padding: 28px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.about-hero-card b {
  display: block;
  font-size: 26px;
}
.about-hero-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.74);
}
.about-contact-card {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
}
.about-contact-card p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.65;
}
.about-contact-card p:last-child {
  margin-bottom: 0;
}
.about-contact-card strong {
  color: #fff;
}
.about-hero-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.about-hero-card li {
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  font-size: 15px;
}
.about-quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.about-quick-form-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 2px;
}
.about-quick-form-head b {
  color: #fff;
  font-size: 18px;
}
.about-quick-form-head span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.about-quick-form input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 5px;
  outline: none;
  color: #101828;
  background: #fff;
}
.about-quick-form button {
  grid-column: 1 / -1;
  height: 44px;
  border: 0;
  border-radius: 5px;
  color: #0b63f6;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}
.about-quick-form .form-status {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.86);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.about-intro {
  display: grid;
  grid-template-columns: minmax(0,1fr) 420px;
  gap: 46px;
  align-items: center;
}
.about-intro h2 {
  margin: 8px 0 18px;
  font-size: 36px;
  line-height: 1.2;
}
.about-intro p {
  margin: 0 0 16px;
  color: #51637d;
  font-size: 17px;
  line-height: 1.9;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.about-stat-grid div {
  min-height: 132px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0b63f6, #0aa4ff);
  box-shadow: 0 18px 40px rgba(11,99,246,.18);
}
.about-stat-grid b {
  display: block;
  font-size: 36px;
  line-height: 1;
}
.about-stat-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.82);
}
.about-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.about-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e6edf7;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8,35,75,.06);
}
.about-card span {
  color: #0b63f6;
  font-weight: 900;
}
.about-card h3 {
  margin: 12px 0 10px;
  font-size: 22px;
}
.about-card p {
  margin: 0;
  color: #5d6b82;
}
.about-coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}
.about-coverage-grid div {
  min-height: 168px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid #e6edf7;
  background: linear-gradient(180deg, #f7fbff, #fff);
  box-shadow: 0 12px 28px rgba(8,35,75,.05);
}
.about-coverage-grid b {
  display: block;
  margin-bottom: 10px;
  color: #0b63f6;
  font-size: 18px;
}
.about-coverage-grid span {
  color: #5d6b82;
  font-size: 14px;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.about-values div {
  padding: 24px;
  border-left: 4px solid #0b63f6;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8,35,75,.05);
}
.about-values b {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.about-values span {
  color: #5d6b82;
}

@media (max-width: 1080px) {
  .topbar { display: none; }
  .nav { height: 66px; }
  .nav-toggle { display: block; margin-left: auto; }
  .actions { display: none; }
  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    padding: 10px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .menu.open { display: grid; }
  .menu-link { height: 48px; padding: 0; }
  .nav-submenu { position: static; display: grid; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border-radius: 8px; }
  .mega { position: static; display: none; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 1px solid var(--line); border-radius: var(--radius); }
  .menu-item.open .mega, .menu-item:hover .mega { display: block; }
  .mega-inner { width: 100%; padding: 14px; grid-template-columns: 1fr; }
  .mega-cols, .hero-grid, .grid-4, .cta-wrap, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-row { grid-template-columns: 1fr; }
  .slide-grid, .api-filter-head, .solution-photo-grid { grid-template-columns: 1fr; }
  .api-grid, .partner-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .advantage-grid, .data-capability-grid, .customer-profile-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-product-row, .home-product-row.reverse { grid-template-columns: 1fr; }
  .home-product-row.reverse .home-product-copy, .home-product-row.reverse .home-product-media { order: initial; }
  .about-intro { grid-template-columns: 1fr; }
  .about-advantage-grid, .about-coverage-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .solution-list-grid, .news-list-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mega.product-mega .mega-inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .detail-hero-grid,
  .detail-content-grid,
  .article-hero-grid,
  .article-panel { grid-template-columns: 1fr; }
  .contact-modal { grid-template-columns: 1fr; }
  .contact-modal-info { min-height: 340px; padding: 34px 28px 26px; }
  .contact-modal-form { padding: 30px 24px 26px; }
  .listing-hero-inner { flex-direction: column; align-items: flex-start; }
  .product-filter-panel { padding: 20px; }
  .filter-line b { width: 72px; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1200px); }
  .brand-logo { width: 190px; max-height: 42px; }
  .hero { min-height: auto; padding: 46px 0 30px; }
  h1 { font-size: 36px; }
  .hero p, .page-hero p { font-size: 17px; }
  .hero-grid, .stats, .grid-2, .grid-3, .grid-4, .process, .cta-wrap, .footer-grid, .mega-cols { grid-template-columns: 1fr; }
  .strip-grid, .featured-grid, .api-grid, .partner-grid, .mega.product-mega .mega-inner { grid-template-columns: 1fr; }
  .solution-list-grid, .news-list-grid { grid-template-columns: 1fr; }
  .api-category-block h1 { font-size: 42px; }
  .market-search-box { min-height: 72px; border-radius: 24px; }
  .market-search-box button { width: 52px; height: 52px; }
  .hero-carousel, .slide { min-height: 700px; }
  .hero-product-strip { position: static; }
  .contact-band { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .contact-copy h2 { font-size: 30px; }
  .contact-form { padding: 18px; }
  .contact-form-title { flex-direction: column; align-items: flex-start; }
  .contact-modal-mask { padding: 14px; align-items: start; }
  .contact-modal { max-height: calc(100vh - 28px); }
  .contact-modal-info { min-height: 280px; padding: 28px 20px 20px; }
  .contact-modal-info h2 { font-size: 22px; }
  .contact-modal-info p { max-width: none; font-size: 14px; }
  .modal-api-visual { position: relative; left: auto; bottom: auto; width: 190px; height: 160px; margin: 14px auto 0; transform: none; }
  .modal-api-visual span { width: 92px; height: 92px; font-size: 36px; }
  .modal-api-visual b { width: 28px; height: 28px; font-size: 13px; }
  .contact-modal-form { padding: 24px 20px 22px; }
  .contact-modal-form h2 { font-size: 24px; }
  .contact-modal-form p { font-size: 14px; }
  .market-search-box { min-height: 52px; }
  .market-search-box button { width: 38px; height: 38px; }
  .product-tabs { gap: 18px; overflow-x: auto; }
  .product-tabs button { white-space: nowrap; }
  .product-filter-panel { padding: 18px 16px; }
  .api-grid, .partner-grid, .solution-list-grid, .news-list-grid { grid-template-columns: 1fr; }
  .detail-hero-copy h1 { font-size: 28px; }
  .detail-icon-card { height: 150px; }
  .detail-actions { flex-direction: column; align-items: flex-start; }
  .detail-tabs { grid-template-columns: 1fr; }
  .detail-tabs button { border-right: 0; border-bottom: 1px solid #e6e9ef; }
  .detail-section-row { grid-template-columns: 1fr; }
  .detail-api-meta { grid-template-columns: 1fr; }
  .detail-table-head, .detail-table-row { grid-template-columns: 1fr; }
  .detail-table-head span,
  .detail-table-row > * { border-right: 0; }
  .detail-contact-box p { grid-template-columns: 1fr; }
  .advantage-grid, .data-capability-grid, .customer-profile-grid, .home-solution-grid { grid-template-columns: 1fr; }
  .home-product-list { gap: 54px; }
  .about-stat-grid, .about-advantage-grid, .about-coverage-grid { grid-template-columns: 1fr; }
  .home-solution-card { grid-template-columns: 1fr; }
  .api-card { min-height: auto; }
  .product-card-icon { width: 160px; height: 128px; margin-top: 70px; }
  .product-card-icon span { width: 60px; height: 60px; font-size: 20px; }
  .listing-hero h1 { font-size: 28px; }
  .article-hero h1 { font-size: 28px; }
  .article-card { padding: 26px 20px; }
  .listing-stats { width: 100%; }
  .slide { padding-bottom: 36px; }
  .slide-dots { bottom: 20px; }
  .section { padding: 58px 0; }
  .section-head { display: grid; }
  .about-hero {
    padding: 34px 0 44px;
    overflow: hidden;
  }
  .about-hero-grid {
    width: min(100% - 28px, 1200px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: 0;
  }
  .about-hero .eyebrow {
    min-height: 26px;
    padding: 0 9px;
    font-size: 12px;
  }
  .about-hero h1 {
    max-width: 100%;
    margin: 14px 0 12px;
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: 0;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .about-hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
  }
  .about-hero .hero-actions {
    margin-top: 20px;
  }
  .about-hero .hero-actions .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }
  .about-hero-card {
    width: 100%;
    padding: 18px;
    border-radius: 8px;
  }
  .about-hero-card b {
    font-size: 20px;
    line-height: 1.35;
  }
  .about-hero-card span {
    font-size: 14px;
    line-height: 1.7;
  }
  .about-hero-card ul {
    margin-top: 14px;
    gap: 8px;
  }
  .about-hero-card li {
    padding: 10px 12px;
    font-size: 14px;
  }
  .about-quick-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .about-quick-form-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-intro h2 {
    font-size: 28px;
  }
  .about-intro p {
    font-size: 15px;
  }
}
