:root {
  --bg: #020b1d;
  --bg-2: #061735;
  --panel: rgba(8, 29, 62, 0.78);
  --panel-2: rgba(10, 41, 83, 0.72);
  --line: rgba(49, 139, 255, 0.42);
  --line-soft: rgba(70, 156, 255, 0.18);
  --text: #f5f9ff;
  --muted: #b9c7dd;
  --cyan: #20d8ff;
  --blue: #197cff;
  --green: #43d99b;
  --purple: #8a6bff;
  --orange: #ff9a3d;
  --shadow: 0 28px 80px rgba(0, 110, 255, 0.24);
  font-family: "Inter", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 10%, rgba(22, 113, 230, 0.28), transparent 32rem),
    radial-gradient(circle at 18% 28%, rgba(22, 212, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #020916 0%, #06172e 48%, #031023 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(72, 145, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 145, 255, 0.075) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.45));
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.48), transparent 28%, transparent 72%, rgba(0,0,0,.52));
  z-index: -1;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.2vw;
  background: rgba(2, 10, 25, 0.86);
  border-bottom: 1px solid rgba(77, 148, 255, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: #edf5ff;
  font-size: 16px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.86);
}

.nav a:hover,
.nav .active {
  color: #fff;
}

.nav .active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 18px rgba(31, 135, 255, .8);
}

.top-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 32px;
  border-radius: 7px;
  font-weight: 900;
  white-space: nowrap;
}

.top-cta,
.btn-primary {
  background: linear-gradient(180deg, #238bff, #0e6df2);
  box-shadow: 0 16px 34px rgba(15, 120, 255, .28);
}

.btn-outline {
  border: 1px solid rgba(94, 171, 255, .65);
  color: #fff;
  background: rgba(4, 14, 32, .5);
}

.btn span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.float-contact {
  position: fixed;
  right: 6px;
  top: 34%;
  z-index: 80;
  width: 74px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.32);
}

.float-contact a {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #09204a;
  border-bottom: 1px solid #e4edf8;
  font-size: 12px;
}

.float-contact img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.float-contact strong {
  font-size: 14px;
  line-height: 1;
}

.float-contact span {
  color: #16315c;
  line-height: 1;
}

.hero {
  min-height: 720px;
  padding: 66px 5.2vw 30px;
  display: grid;
  grid-template-columns: minmax(470px, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(64, 151, 255, .15);
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 26px 0 18px;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .36);
}

.hero h1 br + * {
  color: #64d8ff;
}

.hero h1 {
  background: linear-gradient(180deg, #fff 0%, #eaf3ff 42%, #66d7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 760px;
  margin: 0 0 34px;
  color: #d4deec;
  font-size: 22px;
  line-height: 1.75;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stage {
  position: relative;
  min-height: 530px;
  isolation: isolate;
  z-index: 1;
  pointer-events: none;
}

.map-grid {
  position: absolute;
  inset: 0 0 auto 0;
  height: 260px;
  opacity: .36;
  background:
    radial-gradient(circle at 20% 35%, rgba(34, 210, 255, .88) 1px, transparent 2px),
    radial-gradient(circle at 48% 25%, rgba(34, 210, 255, .8) 1px, transparent 2px),
    radial-gradient(circle at 70% 42%, rgba(34, 210, 255, .82) 1px, transparent 2px),
    radial-gradient(circle at 84% 28%, rgba(34, 210, 255, .72) 1px, transparent 2px);
  background-size: 30px 22px;
  filter: drop-shadow(0 0 12px rgba(31, 165, 255, .55));
}

.hero-cutout {
  position: absolute;
  left: 2%;
  right: 0;
  bottom: -2px;
  width: 98%;
  max-width: none;
  filter: drop-shadow(0 34px 54px rgba(15, 110, 255, .42));
  z-index: 1;
  transform: translateZ(0);
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 3%;
  bottom: -6px;
  height: 42px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 19, 43, 0), rgba(4, 19, 43, .82) 62%, rgba(4, 19, 43, 0));
  filter: blur(8px);
}

.data-card {
  position: absolute;
  z-index: 2;
  width: 285px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 21, 48, .76);
  box-shadow: 0 22px 56px rgba(0, 44, 102, .36);
  backdrop-filter: blur(12px);
}

.data-card span,
.data-card small {
  display: block;
  color: #dbe8fa;
  font-weight: 700;
}

.data-card strong {
  display: block;
  margin-top: 14px;
  font-size: 30px;
  line-height: 1;
}

.data-card em {
  color: #45e19e;
  font-style: normal;
}

.performance {
  top: 56px;
  left: 45%;
}

.market {
  right: 3%;
  top: 108px;
}

.market ul {
  padding: 10px 0 0;
  margin: 0;
  list-style: none;
}

.market li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  font-size: 13px;
  color: #d9e7f7;
}

.mini-line {
  height: 60px;
  margin-top: 12px;
  background:
    linear-gradient(135deg, transparent 44%, rgba(35, 139, 255, .95) 45% 48%, transparent 49%),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(75, 163, 255, .12) 36px 37px);
  border-bottom: 1px solid rgba(72, 165, 255, .3);
}

.growth-arrow {
  position: absolute;
  right: 18%;
  bottom: 58px;
  width: 180px;
  height: 180px;
  border-right: 22px solid #47dfff;
  border-top: 22px solid #47dfff;
  transform: rotate(42deg);
  filter: drop-shadow(0 0 20px rgba(62, 207, 255, .8));
  opacity: .76;
  z-index: 2;
}

.feature-strip,
.stat-strip,
.support-strip,
.cta-band,
.footer-grid {
  width: min(1440px, calc(100% - 10.4vw));
  margin-left: auto;
  margin-right: auto;
}

.feature-strip,
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(11, 47, 92, .78), rgba(6, 25, 56, .78));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-strip {
  margin-top: -22px;
}

.feature-strip article,
.stat-strip article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 22px 32px;
  border-right: 1px solid rgba(115, 177, 255, .24);
  overflow: hidden;
}

.feature-strip article:last-child,
.stat-strip article:last-child {
  border-right: 0;
}

.feature-strip img,
.stat-strip img,
.service-card img,
.process-grid img,
.why-grid img,
.price-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(86%) sepia(75%) saturate(1450%) hue-rotate(162deg) brightness(112%) contrast(108%) drop-shadow(0 0 18px rgba(88, 220, 255, .68));
  opacity: .98;
}

.feature-strip img,
.stat-strip img {
  grid-row: 1 / 3;
}

.feature-strip h3,
.stat-strip strong {
  align-self: end;
}

.feature-strip p,
.stat-strip span {
  grid-column: 2;
  align-self: start;
}

.feature-strip h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-strip p,
.stat-strip span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stat-strip {
  margin-top: 22px;
}

.stat-strip strong {
  display: block;
  font-size: 34px;
  color: #6fb7ff;
}

.section {
  width: min(1440px, calc(100% - 10.4vw));
  margin: 66px auto 0;
}

.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.section-head span {
  display: inline-block;
  width: 360px;
  height: 12px;
  margin-bottom: 8px;
  background:
    radial-gradient(circle, var(--blue) 0 3px, transparent 4px) center / 32px 12px no-repeat,
    linear-gradient(90deg, transparent, var(--blue), transparent);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.2;
  font-weight: 950;
}

.section-head p {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.why-grid article,
.process-grid article,
.solution-grid a,
.case-grid article,
.price-card,
.faq-grid details,
.dashboard-grid article,
.support-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(10, 43, 86, .76), rgba(4, 17, 40, .86));
  box-shadow: inset 0 0 32px rgba(36, 126, 255, .08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.service-card::before,
.why-grid article::before,
.process-grid article::before,
.solution-grid a::before,
.case-grid article::before,
.price-card::before,
.faq-grid details::before,
.support-strip article::before {
  content: "";
  position: absolute;
  inset: -50% auto -50% -70%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .55s ease;
}

.service-card:hover,
.why-grid article:hover,
.process-grid article:hover,
.solution-grid a:hover,
.case-grid article:hover,
.price-card:hover,
.faq-grid details:hover,
.support-strip article:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 221, 255, .78);
  background: linear-gradient(145deg, rgba(13, 65, 122, .82), rgba(5, 26, 61, .9));
  box-shadow: 0 24px 60px rgba(0, 124, 255, .18), inset 0 0 38px rgba(40, 177, 255, .12);
}

.service-card:hover::before,
.why-grid article:hover::before,
.process-grid article:hover::before,
.solution-grid a:hover::before,
.case-grid article:hover::before,
.price-card:hover::before,
.faq-grid details:hover::before,
.support-strip article:hover::before {
  left: 130%;
}

.service-card {
  display: grid;
  grid-template-columns: 74px 1fr 44px;
  align-items: center;
  gap: 20px;
  min-height: 132px;
  padding: 24px;
  border-radius: 10px;
}

.service-card.green { border-color: rgba(67, 217, 155, .38); }
.service-card.purple { border-color: rgba(138, 107, 255, .42); }
.service-card.orange { border-color: rgba(255, 154, 61, .38); }
.service-card.teal { border-color: rgba(32, 216, 255, .38); }

.service-card h3,
.why-grid h3,
.process-grid h3,
.solution-grid h3,
.case-grid h3,
.price-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.service-card p,
.why-grid p,
.process-grid p,
.solution-grid p,
.case-grid p,
.price-card p,
.faq-grid p {
  margin: 0;
  color: #c8d8ec;
  line-height: 1.65;
}

.service-card b {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--cyan);
  font-size: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-grid article {
  min-height: 206px;
  padding: 28px 24px 24px;
  border-radius: 10px;
  text-align: center;
}

.process-grid i {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #2b97ff, #115df2);
  font-style: normal;
  font-weight: 900;
}

.process-grid img,
.why-grid img {
  margin: 0 auto 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.why-grid article {
  min-height: 190px;
  padding: 28px 20px;
  border-radius: 10px;
  text-align: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.solution-grid a {
  min-height: 230px;
  padding: 22px;
  border-radius: 10px;
  border-color: color-mix(in srgb, var(--accent), transparent 55%);
}

.solution-grid img {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  filter: brightness(0) saturate(100%) invert(86%) sepia(75%) saturate(1450%) hue-rotate(162deg) brightness(112%) contrast(108%) drop-shadow(0 0 18px rgba(88, 220, 255, .68));
}

.solution-grid ul {
  margin: 16px 0;
  padding: 0 0 0 18px;
  color: #c7d9ef;
  line-height: 1.9;
}

.solution-grid span {
  color: #7bc5ff;
  font-weight: 800;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.case-grid article {
  display: grid;
  grid-template-columns: 47% 1fr;
  gap: 0;
  min-height: 170px;
  border-radius: 10px;
}

.case-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-grid div {
  padding: 18px;
}

.case-grid span,
.solution-grid span {
  color: var(--cyan);
}

.case-grid strong {
  display: block;
  margin-top: 8px;
  color: #48ffa9;
  font-size: 28px;
}

.case-grid small {
  color: #c5d6ea;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr .78fr .86fr 1.58fr;
  gap: 14px;
}

.dashboard-grid article {
  min-height: 204px;
  border-radius: 10px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at 50% 25%, rgba(43, 157, 255, .15), transparent 58%),
    linear-gradient(145deg, rgba(9, 41, 82, .88), rgba(4, 17, 40, .92));
}

.map-panel {
  padding-right: 24px;
}

.dashboard-grid h3 {
  margin: 0 0 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-grid h3 small {
  color: #9db5d2;
  font-size: 12px;
}

.dashboard-grid strong {
  display: block;
  font-size: 29px;
  line-height: 1;
}

.dashboard-grid em {
  color: #48ffa9;
  font-style: normal;
}

.chart {
  position: relative;
  height: 126px;
  overflow: hidden;
  border-left: 1px solid rgba(100, 171, 255, .18);
  border-bottom: 1px solid rgba(100, 171, 255, .32);
  background:
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(99, 165, 255, .1) 53px 54px),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(99, 165, 255, .08) 36px 37px);
}

.chart svg {
  position: absolute;
  inset: 7px 10px 7px 12px;
  width: calc(100% - 22px);
  height: calc(100% - 14px);
  overflow: visible;
}

.grid-lines path {
  fill: none;
  stroke: rgba(112, 174, 255, .15);
  stroke-width: 1;
}

.blue-line,
.gold-line,
.purple-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px currentColor);
}

.blue-line {
  color: #43c7ff;
  stroke: currentColor;
}

.gold-line {
  color: #ffb347;
  stroke: currentColor;
}

.purple-line {
  color: #9572ff;
  stroke: currentColor;
}

.dots circle {
  fill: #081a38;
  stroke: #49cfff;
  stroke-width: 2;
}

.legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #b9c9df;
  font-size: 11px;
}

.legend span {
  width: 12px;
  height: 7px;
  border-radius: 2px;
}

.legend .top3 { background: #5acfff; }
.legend .top10 { background: #f1ae4d; }
.legend .top100 { background: #9271ff; }

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin: 4px 0 8px;
}

.metric em {
  font-size: 13px;
}

.metric span {
  color: #b8c7dc;
  font-size: 12px;
}

.metric.split {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.metric.split strong {
  font-size: 22px;
}

.line-chart {
  background:
    radial-gradient(circle at 78% 26%, rgba(67, 199, 255, .14), transparent 9rem),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(99, 165, 255, .1) 53px 54px),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(99, 165, 255, .08) 36px 37px);
}

.line-chart strong {
  position: absolute;
  right: 12px;
  top: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(75, 161, 255, .42);
  border-radius: 6px;
  background: rgba(6, 20, 46, .86);
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28);
}

.area-chart {
  height: 112px;
  background:
    radial-gradient(circle at 80% 16%, rgba(67, 199, 255, .18), transparent 8rem),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(99, 165, 255, .1) 44px 45px),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(99, 165, 255, .08) 33px 34px);
}

.area-fill {
  fill: url(#trafficArea);
}

.combo-chart {
  height: 112px;
  background:
    radial-gradient(circle at 76% 18%, rgba(67, 199, 255, .18), transparent 8rem),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(99, 165, 255, .1) 44px 45px),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(99, 165, 255, .08) 33px 34px);
  background-position: bottom;
}

.bar-group rect {
  fill: url(#barGradient);
}

.bar-group rect {
  fill: #25a8ff;
  filter: drop-shadow(0 0 8px rgba(40, 190, 255, .48));
}

.bar-group rect:nth-child(2n) {
  fill: #34d2ff;
}

.country-board {
  display: grid;
  grid-template-columns: minmax(190px, 1.15fr) minmax(210px, .85fr);
  align-items: center;
  gap: 18px;
  min-height: 150px;
}

.world-map {
  position: relative;
  height: 154px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 46% 48%, rgba(18, 119, 228, .25), transparent 62%),
    linear-gradient(180deg, rgba(22, 78, 139, .08), transparent);
  overflow: hidden;
}

.world-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.25) brightness(1.08) drop-shadow(0 0 16px rgba(35, 166, 255, .4));
}

.hotspot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28d7ff;
  box-shadow: 0 0 0 3px rgba(40, 215, 255, .12), 0 0 14px rgba(40, 215, 255, .9);
}

.hotspot.h1 { left: 19%; top: 47%; }
.hotspot.h2 { left: 42%; top: 34%; }
.hotspot.h3 { left: 54%; top: 49%; }
.hotspot.h4 { left: 73%; top: 52%; }
.hotspot.h5 { left: 84%; top: 69%; }
}

.country-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-right: 6px;
}

.country-head,
.country-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  align-items: center;
  gap: 10px;
}

.country-head {
  margin-bottom: 8px;
  color: #9db5d2;
  font-size: 12px;
}

.country-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d5e4f7;
  display: grid;
  gap: 7px;
  font-size: 11px;
}

.country-list li span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-list li i {
  width: 18px;
  font-style: normal;
  text-align: center;
}

.country-list li b {
  text-align: right;
  color: #f4f8ff;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.price-card {
  padding: 28px;
  border-radius: 12px;
}

.price-card img {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
}

.price-card .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 22px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(120, 181, 255, .22);
}

.price-card ul {
  margin: 0;
  padding: 0 0 0 16px;
  line-height: 1.9;
  color: #d8e7fb;
}

.price-card strong {
  display: block;
  padding: 14px;
  text-align: center;
  border-radius: 6px;
  font-size: 22px;
  background: linear-gradient(180deg, #1c7cf9, #0d63d8);
}

.price-card.green strong {
  background: linear-gradient(180deg, #18a88b, #0d7d73);
}

.price-card.orange strong {
  background: linear-gradient(180deg, #d68136, #b35e22);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.faq-grid details {
  border-radius: 7px;
}

.faq-grid summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "›";
  font-size: 28px;
}

.faq-grid details[open] summary::after {
  transform: rotate(90deg);
}

.faq-grid p {
  padding: 0 22px 18px;
}

.support-strip {
  margin-top: 54px;
}

.support-strip h2 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 34px;
}

.support-strip > div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 33, 70, .74);
}

.support-strip article {
  min-height: 88px;
  padding: 18px;
  text-align: center;
  border: 0;
  border-right: 1px solid rgba(118, 182, 255, .22);
}

.support-strip article:last-child {
  border-right: 0;
}

.support-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.support-strip span {
  color: #c8d8ec;
  font-size: 13px;
}

.cta-band {
  margin-top: 56px;
  padding: 26px 34px;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(71, 150, 255, .52);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(10, 37, 82, .92), rgba(6, 25, 54, .72)),
    radial-gradient(circle at 82% 40%, rgba(32, 216, 255, .2), transparent 20rem);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
}

.cta-band p {
  margin: 0;
  color: #c8d8ec;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
}

.site-footer {
  margin-top: 72px;
  background: rgba(2, 9, 22, .64);
  border-top: 1px solid rgba(90, 158, 255, .2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 42px;
  padding: 46px 0 38px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 16px;
}

.footer-grid p,
.footer-grid a {
  color: #b9c8dd;
  line-height: 1.8;
  font-size: 14px;
}

.footer-grid nav a {
  display: block;
}

.footer-grid p img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.copyright {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 18px 5.2vw;
  color: #aabbd4;
  border-top: 1px solid rgba(90, 158, 255, .16);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .nav {
    gap: 20px;
    font-size: 14px;
  }

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

  .hero-stage {
    min-height: 460px;
  }

  .service-grid,
  .pricing-grid,
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .solution-grid,
  .support-strip > div {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .feature-strip,
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    height: auto;
    padding: 18px 20px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    font-size: 22px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .top-cta {
    min-height: 42px;
    padding: 0 18px;
  }

  .float-contact {
    right: 8px;
    width: 72px;
    top: auto;
    bottom: 16px;
  }

  .float-contact a {
    min-height: 78px;
    font-size: 12px;
  }

  .float-contact strong {
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 44px 20px 20px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.16;
  }

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

  .hero-stage {
    min-height: 340px;
  }

  .data-card {
    display: none;
  }

  .growth-arrow {
    width: 96px;
    height: 96px;
    right: 8%;
  }

  .feature-strip,
  .stat-strip,
  .section,
  .support-strip,
  .cta-band,
  .footer-grid {
    width: calc(100% - 40px);
  }

  .feature-strip,
  .stat-strip,
  .service-grid,
  .process-grid,
  .why-grid,
  .solution-grid,
  .case-grid,
  .pricing-grid,
  .faq-grid,
  .dashboard-grid,
  .support-strip > div,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-grid article {
    grid-template-columns: 1fr;
  }

  .case-grid img {
    height: 180px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    flex-wrap: wrap;
  }

  .copyright {
    flex-wrap: wrap;
  }
}

.inner-hero {
  min-height: 560px;
}

.inner-hero .hero h1,
.inner-hero h1 {
  font-size: clamp(32px, 3.8vw, 52px);
}

.inner-stage {
  min-height: 430px;
}

.inner-stage .hero-cutout,
.inner-hero .hero-cutout {
  left: 8%;
  bottom: 14px;
  width: 84%;
  max-height: 390px;
  object-fit: contain;
  opacity: .92;
  filter: saturate(1.08) contrast(1.04) brightness(.9) drop-shadow(0 28px 54px rgba(15, 110, 255, .36));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, rgba(0, 0, 0, .84) 58%, transparent 83%);
  mask-image: radial-gradient(ellipse at center, #000 42%, rgba(0, 0, 0, .84) 58%, transparent 83%);
}

.inner-strip {
  margin-top: -6px;
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
}

.inner-strip article:nth-child(3) {
  border-right: 0;
}

.inner-strip article:nth-child(n + 4) {
  border-top: 1px solid rgba(115, 177, 255, .24);
}

.image-copy {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
  gap: 34px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(55, 143, 255, .36);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 20%, rgba(45, 177, 255, .16), transparent 22rem),
    linear-gradient(145deg, rgba(8, 35, 76, .68), rgba(4, 17, 40, .84));
  box-shadow: inset 0 0 38px rgba(39, 145, 255, .08);
}

.image-copy.reverse .image-copy-media {
  order: 2;
}

.image-copy-media {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    radial-gradient(circle at center, rgba(36, 150, 255, .22), transparent 62%),
    linear-gradient(90deg, rgba(4, 17, 40, .45), transparent 22%, transparent 78%, rgba(4, 17, 40, .45));
  overflow: hidden;
}

.image-copy-media img {
  max-height: 280px;
  width: 100%;
  object-fit: contain;
  opacity: .9;
  filter: saturate(1.08) contrast(1.04) brightness(.88) drop-shadow(0 22px 46px rgba(19, 112, 255, .3));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 43%, rgba(0, 0, 0, .82) 62%, transparent 86%);
  mask-image: radial-gradient(ellipse at center, #000 43%, rgba(0, 0, 0, .82) 62%, transparent 86%);
}

.image-copy-text h2 {
  margin: 10px 0 16px;
  font-size: clamp(28px, 3.4vw, 46px);
}

.image-copy-text p {
  margin: 0 0 24px;
  color: #c8d8ec;
  font-size: 18px;
  line-height: 1.8;
}

.inner-block {
  padding-top: 4px;
}

.inner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.inner-card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 26px 22px;
  text-align: center;
  border: 1px solid rgba(55, 143, 255, .36);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(10, 43, 86, .72), rgba(4, 17, 40, .88));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.inner-card-grid article::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -70%;
  width: 40%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transition: left .55s ease;
}

.inner-card-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(50, 221, 255, .75);
  background: linear-gradient(145deg, rgba(13, 65, 122, .8), rgba(5, 26, 61, .92));
}

.inner-card-grid article:hover::before {
  left: 130%;
}

.inner-card-grid img {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(86%) sepia(75%) saturate(1450%) hue-rotate(162deg) brightness(112%) contrast(108%) drop-shadow(0 0 18px rgba(88, 220, 255, .68));
}

.inner-card-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.inner-card-grid p {
  margin: 0;
  color: #c6d7ec;
  line-height: 1.65;
}

.seo-list {
  width: min(980px, 100%);
  margin: 22px auto 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
  border: 1px solid rgba(83, 158, 255, .28);
  border-radius: 10px;
  background: rgba(5, 23, 52, .62);
  list-style: none;
}

.seo-list li {
  position: relative;
  padding-left: 18px;
  color: #d6e6f8;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(32, 216, 255, .8);
}

@media (max-width: 1180px) {
  .image-copy,
  .inner-card-grid,
  .seo-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-copy.reverse .image-copy-media {
    order: initial;
  }
}

@media (max-width: 760px) {
  .inner-hero {
    min-height: auto;
  }

  .inner-stage {
    min-height: 300px;
  }

  .image-copy,
  .inner-card-grid,
  .seo-list {
    grid-template-columns: 1fr;
  }
}
