:root {
  color-scheme: light;
  --bg: #eef6ff;
  --band: #e8f3ff;
  --paper: #ffffff;
  --ink: #071832;
  --muted: #61708a;
  --line: #dbe8f7;
  --blue: #0875ff;
  --blue-dark: #0758d9;
  --cyan: #1fd2e8;
  --pink: #ff6c98;
  --orange: #ff9651;
  --shadow: 0 18px 44px rgba(30, 86, 160, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }

.container {
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 158px;
  align-items: center;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid rgba(219, 232, 247, 0.92);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(36, 90, 154, 0.06);
}

.brand, .nav, .tg-top, .hero-actions, .float-contact a, .consult-actions, .footer-btn {
  display: flex;
  align-items: center;
}

.brand { gap: 12px; font-weight: 900; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 117, 255, 0.24);
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav {
  justify-content: center;
  gap: 24px;
  color: #1d3152;
  font-size: 15px;
  font-weight: 800;
}
.nav a {
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
  transform: translateY(-1px);
}

.tg-top {
  min-height: 44px;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(8, 117, 255, 0.24);
}
.tg-top img { width: 21px; height: 21px; }

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 70px 0 58px;
  background:
    linear-gradient(90deg, #eaf5ff 0%, #eaf5ff 44%, #dceeff 72%, #d6eaff 100%);
  border-bottom: 0;
  overflow: hidden;
}
.hero .container {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(78vw, 1180px);
  background: url("./images/hero-bg-v6-extended.webp") center right / cover no-repeat;
  opacity: .98;
  filter: saturate(1.08) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.08) 24%, #000 54%, #000 96%, rgba(0,0,0,.82) 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.08) 24%, #000 54%, #000 96%, rgba(0,0,0,.82) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(234,245,255,0), #f3f9ff 92%);
  pointer-events: none;
}
.hero .container::after {
  content: "";
  display: none;
  position: absolute;
  top: -70px;
  right: calc((1280px - 100vw) / 2 - 360px);
  bottom: -58px;
  width: 320px;
  background: linear-gradient(
    90deg,
    rgba(198,224,255,0) 0%,
    rgba(204,229,255,.03) 30%,
    rgba(208,232,255,.08) 62%,
    rgba(214,234,255,.16) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 40px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 10px 18px;
  border: 1px solid rgba(8,117,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #31506f;
  font-weight: 800;
}
.pill::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: url("./assets/icon-cloud.svg") center / contain no-repeat;
}
.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero h1 span { color: var(--blue); }
.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
.hero-actions {
  flex-wrap: wrap;
  gap: 20px;
  margin: 34px 0 34px;
}
.btn, .price-card a, .pricing-cta a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 30px;
  border-radius: 10px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover, .price-card a:hover, .pricing-cta a:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(8,117,255,.24);
}
.btn.light {
  background: #fff;
  color: #10233e;
  box-shadow: 0 14px 30px rgba(44,93,146,.12);
}
.btn.light::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: url("./assets/icon-chat.svg") center / contain no-repeat;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px,1fr));
  gap: 14px;
}
.hero-badges span {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px 15px;
  border: 1px solid rgba(219,232,247,.92);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.hero-badges span::before {
  content: "";
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-color: #eef7ff;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
}
.hero-badges span:nth-child(1)::before {
  background-color: #e9fbff;
  background-image: url("./assets/icon-shield.svg");
}
.hero-badges span:nth-child(2)::before {
  background-color: #eaf4ff;
  background-image: url("./assets/icon-rocket.svg");
}
.hero-badges span:nth-child(3)::before {
  background-color: #fff3e9;
  background-image: url("./assets/icon-globe.svg");
}
.hero-badges b { display: block; margin-bottom: 4px; color: #10233e; }
.hero-badges small {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.hero-art {
  min-height: 520px;
  background: none;
}
.hero-art img {
  display: none;
}

.app-ecosystem {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 52px 0 64px;
  background: #f3f9ff;
}
.app-panel {
  padding: 54px 36px 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  text-align: center;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}
.app-panel h2, .section-head h2, .copy-block h2, .faq h2, .seo-copy h2 {
  margin-bottom: 14px;
  font-size: 44px;
  line-height: 1.22;
  letter-spacing: 0;
}
.app-panel p, .section-head p, .copy-block p, .faq-desc, .seo-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.app-row {
  display: grid;
  grid-template-columns: repeat(8, 82px);
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.app-row span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(34,82,150,.12);
}
.app-row img { max-width: 50px; max-height: 50px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
  margin-top: 66px;
}
.trust-row article {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.trust-row span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 10px;
  background: #eef7ff;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
}
.trust-row span img { width: 38px; height: 38px; object-fit: contain; }
.trust-row h3 { font-size: 24px; }
.trust-row p { color: var(--muted); font-size: 14px; line-height: 1.8; }

.section-pad { padding: 72px 0; }
.intro { background: #eef6ff; }
.features { background: #f7fbff; }
.pricing { background: #eef6ff; }
.faq { background: #f3f9ff; }
.split-grid {
  display: grid;
  grid-template-columns: .94fr 1fr;
  gap: 54px;
  align-items: center;
}
.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
  box-shadow: var(--shadow);
}
.visual-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 28px;
}
.metric-grid div {
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(34,82,150,.08);
}
.metric-grid b { display: block; color: var(--blue); font-size: 26px; }
.metric-grid span { color: var(--muted); font-size: 14px; }

.section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.feature-grid article {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.feature-grid article:hover, .scene-list article:hover, .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(30,86,160,.16);
}
.feature-grid img {
  width: 104px;
  height: 104px;
  padding: 16px;
  object-fit: cover;
  border-radius: 18px;
  background: #eef7ff;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.08);
  filter: saturate(.92) brightness(1.05);
}
.feature-grid h3 { font-size: 25px; }
.feature-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }

.scenes {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #e7f2ff;
}
.scenes-grid {
  display: grid;
  grid-template-columns: .96fr 1fr;
  gap: 44px;
  align-items: center;
}
.scene-visual img {
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 24px 42px rgba(30,86,160,.12));
  mix-blend-mode: multiply;
}
.scene-list {
  display: grid;
  gap: 22px;
}
.scene-list article {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.scene-list img {
  width: 86px;
  height: 86px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(34,82,150,.1);
}
.scene-list span {
  float: right;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.scene-list h3 { font-size: 26px; }
.scene-list p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.scene-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.scene-card-grid article {
  position: relative;
  overflow: hidden;
  min-height: 384px;
  padding: 20px 20px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.scene-card-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(8,117,255,.3);
  box-shadow: 0 28px 60px rgba(30,86,160,.17);
}

.scene-card-grid article::after {
  content: "";
  position: absolute;
  top: -55%;
  bottom: -55%;
  left: -85%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.74), transparent);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

.scene-card-grid article:hover::after {
  animation: lightSweep .78s ease both;
}

.scene-card-grid img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #eef6ff;
}

.scene-card-grid h3 {
  margin: 22px 0 10px;
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
}

.scene-card-grid p {
  margin-bottom: 0;
  color: #30425f;
  font-size: 15px;
  line-height: 1.78;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.price-card.featured {
  overflow: hidden;
  border-color: rgba(8,117,255,.38);
  background: #fff;
}
.price-card.featured::before {
  content: none;
}
.card-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.price-card > * { position: relative; z-index: 1; }
.price-card img {
  display: none;
}
.price-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}
.price-title h3 { margin-bottom: 0; font-size: 30px; }
.price-title span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f6ff;
  color: #60708f;
  font-weight: 800;
}
.featured .price-title h3 { color: var(--ink); }
.featured .price-title span {
  background: #fff4e5;
  color: #d57900;
}
.featured > p { color: var(--muted); }
.price-card p { color: var(--muted); font-size: 14px; }
.price-card strong {
  display: block;
  margin: 26px 0 20px;
  color: var(--blue);
  font-size: 34px;
}
.price-card small { color: var(--muted); font-size: 15px; }
.price-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #edf2f8;
  color: #4b5c74;
}
.price-card a {
  width: 100%;
  border: 1px solid var(--blue);
  color: var(--blue);
}
.featured a {
  border: 0;
  background: #0875ff;
  color: #fff;
}
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.pricing-cta h3 { margin-bottom: 8px; font-size: 26px; }
.pricing-cta p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.pricing-cta a {
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 16px 34px rgba(8,117,255,.24);
}
.pricing-cta img { width: 22px; height: 22px; }

.consult-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 42px 0;
  background: #0875ff;
  color: #fff;
}
.consult-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.consult-band .eyebrow, .consult-band span { color: rgba(235,248,255,.86); }
.consult-band h2 { margin-bottom: 10px; font-size: 34px; }
.consult-actions { gap: 14px; flex: 0 0 auto; }
.btn.white {
  background: #fff;
  color: var(--blue);
}
.btn.white img {
  width: 20px;
  filter: invert(43%) sepia(89%) saturate(2549%) hue-rotate(200deg) brightness(101%) contrast(103%);
}
.btn.ghost {
  border: 1px solid rgba(255,255,255,.56);
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .8fr);
  gap: 40px;
  align-items: start;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px 24px;
  margin-top: 30px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34,82,150,.08);
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #10233e;
  font-weight: 900;
  list-style: none;
}
.faq-list summary::before {
  content: "Q";
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-size: 20px;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list p {
  margin: 0;
  padding: 0 20px 18px 64px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.contact-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}
.contact-head::before {
  content: "...";
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: #e8f4ff;
  color: #0875ff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
}
.contact-head img {
  display: none;
}
.contact-head h3 { margin-bottom: 6px; font-size: 24px; }
.contact-head p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.contact-buttons a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34,82,150,.08);
}
.contact-buttons img { width: 44px; height: 44px; object-fit: contain; }
.contact-buttons b { display: block; margin-bottom: 5px; }
.contact-buttons small { color: var(--muted); font-size: 12px; }
.service-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 22px 0;
}
.service-tags span {
  padding: 14px;
  border-radius: 10px;
  background: #f3f8ff;
  color: #31506f;
  text-align: center;
  font-weight: 800;
}
.flow {
  padding: 20px;
  border-radius: 12px;
  background: #f7fbff;
}
.flow ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow li { text-align: center; color: #31506f; font-weight: 800; }
.flow b {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}

.seo-copy {
  padding: 0 0 68px;
  background: #f7fbff;
}
.seo-copy .container {
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.float-contact {
  position: fixed;
  right: 18px;
  top: 42%;
  z-index: 60;
  display: grid;
  gap: 12px;
}
.float-contact a {
  width: 98px;
  min-height: 68px;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(219,232,247,.95);
  border-radius: 10px;
  background: rgba(255,255,255,.97);
  color: #0a67de;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(17,105,246,.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.float-contact a:hover { transform: translateX(-4px) scale(1.04); }
.float-contact img { width: 38px; height: 38px; object-fit: contain; }
.float-contact .qq img { width: 44px; height: 44px; }

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #071b3a;
  color: #dbeaff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 36px;
  padding: 40px 0;
}
.footer-brand small, .site-footer p { color: #aebfda; }
.site-footer p { line-height: 1.8; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 20px;
  align-content: start;
}
.footer-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.footer-nav a:hover {
  background: rgba(102,217,255,.13);
  color: #66d9ff;
  transform: translateY(-1px);
}
.footer-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.footer-btn {
  min-height: 42px;
  gap: 8px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: #0b63d8;
  font-weight: 900;
}
.footer-btn img { width: 26px; height: 26px; object-fit: contain; }
.copyright {
  padding: 15px 24px;
  border-top: 1px solid rgba(219,234,255,.12);
  color: #99abc7;
  text-align: center;
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero-grid, .split-grid, .scenes-grid, .faq-grid, .footer-inner { grid-template-columns: 1fr; }
  .feature-grid, .price-grid, .scene-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1280px); }
  .site-header { grid-template-columns: 1fr; gap: 12px; padding-block: 14px; }
  .tg-top { width: 100%; }
  .hero {
    padding-top: 42px;
    background: linear-gradient(180deg, #eaf5ff 0%, #f4faff 100%);
  }
  .hero::before {
    display: none;
  }
  .hero h1 { font-size: 42px; }
  .hero-badges, .app-row, .trust-row, .metric-grid, .feature-grid, .scene-list article, .price-grid, .scene-card-grid, .faq-list, .contact-buttons, .service-tags, .flow ol { grid-template-columns: 1fr; }
  .app-row { display: none; }
  .feature-grid article { grid-template-columns: 1fr; }
  .consult-inner, .pricing-cta { align-items: flex-start; flex-direction: column; }
  .consult-actions { flex-direction: column; width: 100%; }
  .consult-actions a { width: 100%; }
  .float-contact {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .float-contact a { width: 100%; }
}

/* Interaction polish */
.lead { font-size: 15px; }

.app-panel,
.trust-row article,
.visual-card,
.metric-grid div,
.feature-grid article,
.scene-list article,
.price-card,
.pricing-cta,
.faq-list details,
.contact-card,
.contact-buttons a,
.service-tags span,
.flow li {
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.app-panel:hover,
.trust-row article:hover,
.visual-card:hover,
.metric-grid div:hover,
.feature-grid article:hover,
.scene-list article:hover,
.price-card:hover,
.pricing-cta:hover,
.faq-list details:hover,
.contact-card:hover,
.contact-buttons a:hover,
.service-tags span:hover,
.flow li:hover {
  transform: translateY(-5px);
  border-color: rgba(8,117,255,.28);
  box-shadow: 0 26px 58px rgba(30,86,160,.16);
}

.btn:hover,
.price-card a:hover,
.pricing-cta a:hover,
.footer-btn:hover,
.tg-top:hover {
  box-shadow: 0 18px 38px rgba(8,117,255,.25);
}

.app-row span {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.app-row span::after,
.scene-list article::after,
.price-card::after,
.contact-buttons a::after,
.metric-grid div::after {
  content: "";
  position: absolute;
  top: -55%;
  bottom: -55%;
  left: -85%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

.app-row span:hover {
  transform: translateY(-7px) scale(1.04);
  border-color: rgba(8,117,255,.28);
  box-shadow: 0 24px 46px rgba(34,82,150,.18);
}

.app-row span:hover::after,
.scene-list article:hover::after,
.price-card:hover::after,
.contact-buttons a:hover::after,
.metric-grid div:hover::after {
  animation: lightSweep .78s ease both;
}

@keyframes lightSweep {
  0% { left: -85%; opacity: 0; }
  18% { opacity: .95; }
  100% { left: 130%; opacity: 0; }
}

.hero-badges {
  grid-template-columns: repeat(3, minmax(180px,1fr));
}

.hero-badges span {
  min-height: 72px;
  padding-inline: 17px;
}

.hero-badges small {
  font-size: 11px;
}

.metric-grid div {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 18px 12px;
}

.metric-grid div::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 14px;
  background-color: #eef7ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 27px;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
}

.metric-grid div:nth-child(1)::before { background-image: url("./assets/icon-device-stack.svg"); }
.metric-grid div:nth-child(2)::before { background-image: url("./assets/icon-fingerprint.svg"); }
.metric-grid div:nth-child(3)::before { background-image: url("./assets/icon-clock-cloud.svg"); }
.metric-grid div:nth-child(4)::before { background-image: url("./assets/icon-zero-device.svg"); }

.seo-copy {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 72px 0;
  background: #eef6ff;
}

.seo-copy .container {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 34px;
  border-radius: 14px;
}

.seo-visual {
  min-height: 330px;
  border-radius: 14px;
  background: #e9f5ff url("./images/scenes-visual.webp") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.08);
}

.price-grid {
  gap: 24px;
}

.price-card {
  min-height: 468px;
  padding: 30px;
}

.price-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.price-title h3 {
  font-size: 25px;
  line-height: 1.2;
}

.price-title > span {
  flex: 0 0 100%;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

.price-card p {
  min-height: 48px;
  line-height: 1.75;
  text-align: center;
}

.price-card strong {
  margin: 18px 0 18px;
  text-align: center;
  font-size: 36px;
}

.price-card ul {
  display: grid;
  gap: 0;
}

.price-card li b {
  color: #10233e;
}

.price-card a {
  margin-top: auto;
}

.contact-head::before {
  content: "";
  background: #e8f4ff url("./assets/icon-chat.svg") center / 36px 36px no-repeat;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    url("./images/support-visual.webp") right bottom / 220px auto no-repeat;
}

.consult-band {
  background: #0875ff;
}

@media (max-width: 1120px) {
  .seo-copy .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lead,
  .app-panel p,
  .section-head p,
  .copy-block p,
  .faq-desc,
  .seo-copy p {
    font-size: 13px;
  }

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

  .seo-copy {
    padding: 52px 0;
  }

  .seo-visual {
    min-height: 230px;
  }

  .price-card {
    min-height: auto;
  }
}

/* Current refinement pass */
.feature-grid article {
  grid-template-columns: 88px 1fr;
  min-height: 188px;
}

.feature-grid img {
  width: 64px;
  height: 64px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.feature-grid h3 {
  font-size: 23px;
}

.scenes-grid {
  grid-template-columns: .92fr 1fr;
}

.scene-visual img {
  border-radius: 14px;
  mix-blend-mode: normal;
}

.scene-copy {
  padding: 0 4px 8px;
}

.scene-copy h2 {
  margin-bottom: 12px;
  font-size: 38px;
  line-height: 1.22;
}

.scene-copy p:last-child {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.card-ribbon {
  position: static;
  margin-bottom: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff4e5;
  color: #d57900;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.price-card.featured {
  overflow: hidden;
}

.contact-buttons {
  grid-template-columns: 1fr;
}

.contact-buttons a {
  min-height: 74px;
}

.contact-buttons b {
  margin-bottom: 0;
  font-size: 17px;
}

.contact-buttons small {
  display: none;
}

.contact-card {
  background: rgba(255,255,255,.94);
}

.contact-head::before {
  background-color: #f2f8ff;
}

.service-tags span {
  background: #f8fbff;
}

/* Subpage system */
.subpage-main {
  background: #eef6ff;
}

.sub-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 74px 0 70px;
  background: linear-gradient(90deg, #eaf5ff 0%, #f6fbff 50%, #dceeff 100%);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 54px;
  align-items: center;
}

.sub-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.12;
}

.sub-hero .lead {
  max-width: 680px;
}

.sub-hero-visual img,
.sub-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.sub-kpis,
.sub-icon-grid,
.sub-card-grid,
.doc-grid,
.compare-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.sub-kpis {
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 28px;
}

.sub-kpis span,
.sub-icon-grid article,
.sub-card-grid article,
.doc-grid article,
.compare-grid article,
.contact-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sub-kpis span {
  position: relative;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sub-kpis span::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: #eef7ff center / 28px 28px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
  transition: transform 180ms ease, background-color 180ms ease;
}

.sub-kpis span:nth-child(1)::before { background-image: url("./assets/mini-cloud-server.svg"); }
.sub-kpis span:nth-child(2)::before { background-image: url("./assets/mini-batch.svg"); }
.sub-kpis span:nth-child(3)::before { background-image: url("./assets/mini-test.svg"); }
.sub-kpis span:nth-child(4)::before { background-image: url("./assets/mini-support.svg"); }

.sub-kpis span:hover {
  background: #0875ff;
  border-color: #0875ff;
  color: #fff;
}

.sub-kpis span:hover b {
  color: #fff;
}

.sub-kpis span:hover::before {
  transform: translateY(-4px) scale(1.05);
  background-color: #fff;
}

.sub-kpis b {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 26px;
}

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

.sub-icon-grid article,
.sub-card-grid article,
.doc-grid article,
.compare-grid article,
.contact-grid article {
  padding: 26px;
}

.sub-icon-grid article:hover,
.sub-card-grid article:hover,
.doc-grid article:hover,
.compare-grid article:hover,
.contact-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(8,117,255,.28);
  box-shadow: 0 26px 58px rgba(30,86,160,.16);
}

.mini-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: #eef7ff;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
}

.sub-icon-grid h3,
.sub-card-grid h3,
.doc-grid h3,
.compare-grid h3,
.contact-grid h3 {
  font-size: 24px;
}

.sub-icon-grid p,
.sub-card-grid p,
.doc-grid p,
.compare-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.sub-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.sub-split.reverse .sub-copy {
  order: 2;
}

.sub-split.reverse .sub-visual {
  order: 1;
}

.sub-copy h2 {
  margin-bottom: 14px;
  font-size: 40px;
  line-height: 1.22;
}

.sub-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  color: #31506f;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(34,82,150,.08);
}

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

.doc-grid {
  grid-template-columns: .8fr 1.2fr;
}

.doc-sidebar {
  display: grid;
  gap: 12px;
}

.doc-sidebar a {
  padding: 15px 16px;
  border-radius: 10px;
  background: #fff;
  color: #31506f;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(34,82,150,.08);
}

.doc-content {
  display: grid;
  gap: 18px;
}

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

.sub-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 48px 0;
  background: #0875ff;
  color: #fff;
}

.sub-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sub-cta h2 {
  margin-bottom: 8px;
  font-size: 34px;
}

.sub-cta p {
  margin-bottom: 0;
  color: rgba(235,248,255,.86);
}

.sub-cta a {
  flex: 0 0 auto;
}

.sub-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px 24px;
}

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

@media (max-width: 1120px) {
  .sub-hero-grid,
  .sub-split,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .sub-split.reverse .sub-copy,
  .sub-split.reverse .sub-visual {
    order: initial;
  }

  .sub-icon-grid,
  .sub-card-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  .sub-hero {
    padding: 52px 0;
  }

  .sub-kpis,
  .sub-icon-grid,
  .sub-card-grid,
  .compare-grid,
  .contact-grid,
  .sub-faq {
    grid-template-columns: 1fr;
  }

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

  .sub-cta a {
    width: 100%;
  }
}

/* Subpage refinement: icon-led modules, denser docs, non-jumping hover */
.sub-icon-grid article,
.sub-card-grid article,
.doc-grid article,
.compare-grid article,
.contact-grid article {
  text-align: center;
}

.sub-icon-grid article:hover,
.sub-card-grid article:hover,
.doc-grid article:hover,
.compare-grid article:hover,
.contact-grid article:hover,
.scene-card-grid article:hover {
  transform: none;
}

.subpage-main .price-card:hover {
  transform: none;
}

.subpage-main .price-card:hover .price-title {
  transform: translateY(-4px);
}

.sub-icon-grid article:hover .mini-icon,
.sub-card-grid article:hover::before,
.compare-grid article:hover::before,
.doc-grid article:hover::before,
.contact-grid article:hover .mini-icon {
  transform: translateY(-6px) scale(1.04);
}

.sub-card-grid article:nth-child(2n):hover,
.compare-grid article:nth-child(2n):hover,
.doc-grid article:nth-child(2n):hover {
  background: #0875ff;
  border-color: #0875ff;
}

.sub-card-grid article:nth-child(2n):hover h3,
.sub-card-grid article:nth-child(2n):hover p,
.compare-grid article:nth-child(2n):hover h3,
.compare-grid article:nth-child(2n):hover p,
.doc-grid article:nth-child(2n):hover h3,
.doc-grid article:nth-child(2n):hover p {
  color: #fff;
}

.mini-icon {
  margin-inline: auto;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: #eef7ff center / 38px 38px no-repeat;
  transition: transform 180ms ease, background-color 180ms ease;
}

.mini-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.sub-icon-grid article:nth-child(1) .mini-icon { background-image: url("./assets/mini-batch.svg"); }
.sub-icon-grid article:nth-child(2) .mini-icon { background-image: url("./assets/mini-isolate.svg"); }
.sub-icon-grid article:nth-child(3) .mini-icon { background-image: url("./assets/mini-remote.svg"); }
.sub-icon-grid article:nth-child(4) .mini-icon { background-image: url("./assets/mini-auto.svg"); }
.sub-icon-grid article:nth-child(5) .mini-icon { background-image: url("./assets/mini-test.svg"); }
.sub-icon-grid article:nth-child(6) .mini-icon { background-image: url("./assets/mini-cloud-server.svg"); }

.sub-card-grid article::before,
.compare-grid article::before,
.doc-grid article::before {
  content: "";
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #eef7ff center / 38px 38px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
  transition: transform 180ms ease;
}

.sub-card-grid article:nth-child(1)::before { background-image: url("./assets/mini-content.svg"); }
.sub-card-grid article:nth-child(2)::before { background-image: url("./assets/mini-shop.svg"); }
.sub-card-grid article:nth-child(3)::before { background-image: url("./assets/mini-test.svg"); }
.sub-card-grid article:nth-child(4)::before { background-image: url("./assets/mini-game.svg"); }
.sub-card-grid article:nth-child(5)::before { background-image: url("./assets/mini-support.svg"); }
.sub-card-grid article:nth-child(6)::before { background-image: url("./assets/mini-global.svg"); }
.compare-grid article:nth-child(1)::before { background-image: url("./assets/mini-price.svg"); }
.compare-grid article:nth-child(2)::before { background-image: url("./assets/mini-batch.svg"); }
.compare-grid article:nth-child(3)::before { background-image: url("./assets/mini-upgrade.svg"); }
.compare-grid article:nth-child(4)::before { background-image: url("./assets/mini-calendar.svg"); }
.doc-grid article:nth-child(1)::before { background-image: url("./assets/mini-doc.svg"); }
.doc-grid article:nth-child(2)::before { background-image: url("./assets/mini-price.svg"); }
.doc-grid article:nth-child(3)::before { background-image: url("./assets/mini-batch.svg"); }
.doc-grid article:nth-child(4)::before { background-image: url("./assets/mini-isolate.svg"); }
.doc-grid article:nth-child(5)::before { background-image: url("./assets/mini-remote.svg"); }
.doc-grid article:nth-child(6)::before { background-image: url("./assets/mini-support.svg"); }

.scene-card-grid article:hover img,
.sub-hero-visual:hover img,
.sub-visual:hover img {
  transform: scale(1.025);
}

.scene-card-grid img,
.sub-hero-visual img,
.sub-visual img {
  transition: transform 220ms ease;
}

.doc-grid {
  grid-template-columns: 300px minmax(0,1fr);
  align-items: start;
}

.doc-sidebar {
  position: sticky;
  top: 96px;
}

.doc-content {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.doc-content article {
  min-height: 210px;
}

.contact-grid a.contact-action {
  display: block;
  color: inherit;
}

.contact-grid a.contact-action:hover .mini-icon {
  background-color: #dff1ff;
}

.help-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.help-hub-grid a {
  display: block;
  min-height: 214px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  text-align: center;
  box-shadow: var(--shadow);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.help-hub-grid a::before {
  content: "";
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #eef7ff center / 38px 38px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(8,117,255,.1);
  transition: transform 180ms ease;
}

.help-hub-grid a:nth-child(1)::before { background-image: url("./assets/mini-cloud-server.svg"); }
.help-hub-grid a:nth-child(2)::before { background-image: url("./assets/mini-flow.svg"); }
.help-hub-grid a:nth-child(3)::before { background-image: url("./assets/mini-content.svg"); }
.help-hub-grid a:nth-child(4)::before { background-image: url("./assets/mini-price.svg"); }
.help-hub-grid a:nth-child(5)::before { background-image: url("./assets/mini-batch.svg"); }
.help-hub-grid a:nth-child(6)::before { background-image: url("./assets/mini-isolate.svg"); }

.help-hub-grid a:hover {
  background: #0875ff;
  border-color: #0875ff;
}

.help-hub-grid a:hover::before {
  transform: translateY(-6px) scale(1.04);
  background-color: #fff;
}

.help-hub-grid a:hover h3,
.help-hub-grid a:hover p {
  color: #fff;
}

.help-hub-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.help-hub-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.article-toc,
.article-related {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.article-toc strong,
.article-related strong {
  display: block;
  margin-bottom: 4px;
}

.article-toc a,
.article-related a {
  padding: 11px 12px;
  border-radius: 9px;
  background: #f3f8ff;
  color: #31506f;
  font-weight: 800;
}

.article-toc a:hover,
.article-related a:hover {
  background: #0875ff;
  color: #fff;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.article-block h2 {
  margin-bottom: 14px;
  font-size: 32px;
}

.article-block p,
.article-block li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.article-block ul,
.article-block ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-note {
  padding: 18px 20px;
  border-radius: 12px;
  background: #eaf5ff;
  color: #31506f;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .help-hub-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

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

  .article-toc,
  .article-related {
    position: static;
  }
}

@media (max-width: 720px) {
  .help-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .doc-grid,
  .doc-content {
    grid-template-columns: 1fr;
  }

  .doc-sidebar {
    position: static;
  }
}
