: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: 190px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(11, 99, 246, .25);
}
.brand strong { display: block; font-size: 22px; line-height: 1.05; color: var(--blue-dark); }
.brand span span { display: block; color: var(--muted); font-size: 12px; line-height: 1.2; margin-top: 2px; }
.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); }
.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; }

.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 {
  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; }
.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-radius: 22px;
  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 {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d8e6ff;
  background: #fff;
}
.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 {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 14px;
  color: #6f7b8f;
  background: #fff;
  border-color: #dce6f3;
}
.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-radius: 22px;
  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: 8px;
  min-height: 86px;
  padding: 10px;
  border-radius: 8px;
  background: #f4f8ff;
}
.mega-category-row:hover {
  background: #e7f0ff;
}
.mega-category-link {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0;
  color: #0b2c62 !important;
  font-weight: 800;
  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: 5px;
}
.mega-items a {
  display: inline-flex;
  max-width: 100%;
  min-height: 20px;
  align-items: center;
  padding: 0 6px;
  border-radius: 4px;
  color: #526275 !important;
  background: #fff;
  font-size: 12px !important;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-items a:hover {
  color: #0b63f6 !important;
}
.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 {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  border-color: #e5edf7;
  color: #6b7586;
  background: #fff;
}
.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;
}
.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 {
  height: 116px;
  font-size: 18px;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #f8fafc;
  box-shadow: none;
}
.partner-logo img {
  display: block;
  width: 128px;
  max-width: 100%;
  height: 38px;
  object-fit: contain;
}
.partner-logo b {
  color: #344054;
  font-size: 16px;
  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(260px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  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: 30px;
}
.contact-copy p {
  color: rgba(255,255,255,.78);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr)) 112px;
  gap: 10px;
}
.contact-form input {
  height: 42px;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  outline: none;
  color: #101828;
  background: #fff;
}
.contact-submit {
  height: 42px;
  min-height: 42px;
  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;
}
.listing-page {
  background: #f6f8fc;
}
.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;
}
.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;
}
.about-quick-form input {
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 5px;
  outline: none;
  color: #101828;
  background: #fff;
}
.about-quick-form button {
  grid-column: 1 / -1;
  height: 42px;
  border: 0;
  border-radius: 5px;
  color: #0b63f6;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}
.about-quick-form .form-status {
  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; }
  .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)); }
  .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 { min-width: 0; }
  .brand strong { font-size: 19px; }
  .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 { flex-direction: column; align-items: flex-start; }
  .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; }
  .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; }
  .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;
  }
  .about-intro h2 {
    font-size: 28px;
  }
  .about-intro p {
    font-size: 15px;
  }
}
