:root {
  --bg: #ffffff;
  --panel: #f7faff;
  --panel-soft: #f4f7fc;
  --panel-muted: #f6f8fc;
  --panel-warm: #fff8f2;
  --line: #e7edf7;
  --line-strong: #d7e1f3;
  --text: #101b34;
  --text-soft: #5b667e;
  --text-muted: #8f9ab0;
  --blue: #3763ff;
  --blue-strong: #254bdb;
  --blue-soft: #eef4ff;
  --green: #21c59a;
  --purple: #9858ff;
  --orange: #ff8b25;
  --warm: #ffb276;
  --shadow-lg: 0 22px 44px rgba(76, 105, 183, 0.12);
  --shadow-md: 0 16px 34px rgba(107, 128, 182, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

.section-pricing-compare-legacy {
  display: none;
}

#pricing .compare-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px minmax(320px, 1.14fr) 66px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  width: 100%;
}

#pricing .compare-card {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  height: 100%;
}

#pricing .compare-card-muted {
  min-height: 540px;
  box-shadow: 0 10px 24px rgba(164, 174, 193, 0.12);
}

#pricing .compare-card-highlight {
  left: auto;
  min-height: 590px;
  transform: translateY(-18px);
  z-index: 1;
}

#pricing .compare-card-warm {
  right: auto;
  min-height: 540px;
  box-shadow: 0 10px 24px rgba(255, 208, 170, 0.16);
}

#pricing .compare-list {
  padding: 16px;
  gap: 12px;
  flex: 1;
}

#pricing .compare-list li {
  min-height: 44px;
  padding: 2px 26px 2px 48px;
}

#pricing .compare-list li::before,
#pricing .compare-list li::after {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

#pricing .compare-list-muted li::before {
  content: "\00D7";
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  background: #c8cdd8;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

#pricing .compare-list-muted li::after {
  content: "";
  top: 11px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: #a7afbf;
  opacity: 0.24;
}

#pricing .compare-list-highlight li::before {
  content: "\2713";
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

#pricing .compare-list-highlight li::after {
  content: "";
  top: 11px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  opacity: 0.3;
}

#pricing .compare-list-warm li::before {
  content: "\00D7";
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--warm);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

#pricing .compare-list-warm li::after {
  content: "";
  top: 11px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: #ffa05a;
  opacity: 0.28;
}

#pricing .compare-footer {
  min-height: 72px;
  margin: 18px auto 22px;
  margin-top: auto;
}

#pricing .compare-vs {
  position: relative;
  top: auto;
  justify-self: center;
  align-self: center;
}

#pricing .compare-vs-left,
#pricing .compare-vs-right {
  left: auto;
  right: auto;
}

#pricing .compare-summary {
  min-height: 84px;
  margin: 28px auto 0;
  padding: 18px 24px;
}

@media (max-width: 1280px) {
  #pricing .compare-stage {
    grid-template-columns: minmax(0, 640px);
    gap: 22px;
    justify-content: center;
  }

  #pricing .compare-card,
  #pricing .compare-vs {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0;
    order: initial;
  }

  #pricing .compare-vs {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 820px) {
  #pricing .compare-card-muted,
  #pricing .compare-card-highlight,
  #pricing .compare-card-warm,
  #pricing .compare-summary {
    width: 100%;
  }

  #pricing .compare-summary {
    padding: 18px;
    align-items: flex-start;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans SC", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.section {
  padding: 48px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2,
.section-heading-large h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
}

.section-heading p,
.section-heading-large p,
.section-heading-left p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.section-heading-large h2 span {
  color: var(--blue);
}

.section-heading-left {
  align-items: flex-start;
  text-align: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 24px rgba(55, 99, 255, 0.16);
}

.button-secondary {
  background: #fff;
  color: var(--blue-strong);
  border-color: #bed0ff;
}

.button-sm {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 237, 247, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #5a87ff, #2f58ff);
  color: #fff;
  font-weight: 800;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 22px;
  line-height: 1;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--blue);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  background: var(--blue);
}

.section-hero {
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 80% 18%, rgba(55, 99, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.hero-copy h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.18;
  font-weight: 800;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-description {
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.hero-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.feature-icon.blue {
  background: rgba(55, 99, 255, 0.12);
  color: var(--blue);
}

.hero-feature h3,
.scene-card h3,
.adv-item h3,
.timeline-item h3,
.case-card h3,
.news-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.hero-feature p,
.scene-card p,
.adv-item p,
.timeline-item p,
.case-card p,
.news-card p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-stack {
  position: absolute;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(220, 230, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.hero-stack-back {
  right: 30px;
  top: 34px;
  width: 320px;
  height: 190px;
  background: linear-gradient(180deg, #e9fff7, #ffffff);
  opacity: 0.9;
}

.hero-stack-middle {
  left: 54px;
  top: 92px;
  width: 262px;
  height: 178px;
  transform: rotate(-3deg);
  background: linear-gradient(180deg, #fcffff, #eef4ff);
}

.hero-stack-front {
  right: 68px;
  top: 126px;
  width: 340px;
  height: 228px;
  overflow: hidden;
}

.browser-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  background: linear-gradient(90deg, #2f58ff, #4a79ff);
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.screen-grid {
  padding: 24px 22px 20px;
}

.screen-block,
.screen-line {
  background: linear-gradient(180deg, #dfe8ff, #eef3ff);
  border-radius: 12px;
}

.screen-block.large {
  width: 100%;
  height: 76px;
  margin-bottom: 14px;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.screen-block.small {
  height: 42px;
}

.screen-line {
  width: 76%;
  height: 14px;
}

.screen-line.short {
  width: 46%;
  margin-top: 10px;
}

.floating-tag,
.floating-mini {
  position: absolute;
  z-index: 3;
}

.floating-tag {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 14px 24px rgba(79, 105, 181, 0.18);
}

.tag-blue {
  top: 24px;
  right: 146px;
  background: var(--blue);
}

.tag-green {
  top: 94px;
  right: 28px;
  background: var(--green);
}

.tag-orange {
  right: 48px;
  bottom: 84px;
  background: var(--orange);
}

.floating-mini {
  width: 44px;
  height: 92px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dce6ff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.floating-mini span {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #dfe8ff, #eef4ff);
}

.mini-left {
  left: 34px;
  top: 138px;
}

.mini-right-top {
  right: -4px;
  top: 130px;
}

.mini-right-bottom {
  right: 26px;
  bottom: 98px;
}

.scene-grid,
.adv-grid,
.service-grid,
.case-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

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

.scene-card {
  display: flex;
  gap: 16px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(197, 210, 238, 0.16);
}

.scene-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.scene-icon-blue {
  color: #3d86ff;
  background: rgba(61, 134, 255, 0.14);
}

.scene-icon-green {
  color: #1fc48e;
  background: rgba(31, 196, 142, 0.14);
}

.scene-icon-purple {
  color: #9858ff;
  background: rgba(152, 88, 255, 0.14);
}

.scene-icon-orange {
  color: #ff922e;
  background: rgba(255, 146, 46, 0.14);
}

.compare-shell {
  position: relative;
}

.compare-stage {
  position: relative;
  width: 100%;
  min-height: 740px;
}

.compare-card {
  position: absolute;
  top: 108px;
  border-radius: 24px;
  overflow: hidden;
}

.compare-card-muted {
  left: 0;
  width: 300px;
  min-height: 540px;
  background: var(--panel-muted);
  border: 1px solid #e4e9f2;
}

.compare-card-highlight {
  left: 50%;
  transform: translateX(-50%);
  width: 370px;
  min-height: 590px;
  background: #f9fbff;
  border: 2px solid #4e74ff;
  box-shadow: var(--shadow-lg);
}

.compare-card-warm {
  right: 0;
  width: 300px;
  min-height: 540px;
  background: #fffdfc;
  border: 1px solid #ffd7b7;
}

.compare-card-head {
  padding: 30px 24px 16px;
  text-align: center;
}

.compare-card-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #4a556c;
}

.compare-card-head p {
  margin: 10px 0 0;
  color: #7e879b;
  font-size: 13px;
}

.compare-card-head-highlight {
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, #5278ff, #3f6aff);
}

.compare-card-head-highlight h3,
.compare-card-head-highlight p {
  color: #fff;
}

.compare-card-head-highlight p {
  color: #dce6ff;
}

.compare-card-head-warm h3 {
  color: var(--orange);
}

.compare-card-head-warm p {
  color: #f49a54;
}

.compare-browser {
  width: calc(100% - 48px);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
}

.compare-browser-muted {
  background: #fff;
  border-color: #e3e8f3;
}

.compare-browser-highlight {
  background: #fff;
  border-color: #d8e4ff;
}

.compare-browser-warm {
  background: #fff7f1;
  border-color: #ffe0c9;
}

.browser-strip {
  height: 18px;
  background: #f1f4fa;
}

.browser-layout {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.browser-layout-muted {
  grid-template-columns: 84px 1fr;
}

.browser-layout-warm {
  grid-template-columns: 96px 1fr;
}

.browser-panel,
.browser-nav {
  border-radius: 8px;
}

.browser-layout-muted .big {
  width: 84px;
  height: 68px;
  background: #e7ebf3;
}

.browser-layout-muted .line {
  width: 100%;
  height: 42px;
  background: #eef2f7;
}

.browser-layout-muted .tile {
  height: 24px;
  background: #eef2f7;
}

.browser-layout-warm .browser-nav {
  width: 96px;
  height: 90px;
  background: #ffe5d2;
}

.browser-layout-warm .warm-line {
  width: 100%;
  height: 24px;
  background: #fff0e5;
}

.browser-layout-warm .warm-box {
  width: 100%;
  height: 26px;
  background: #fff0e5;
}

.hero-browser-content {
  height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #10386f, #2d67d9);
}

.hero-browser-content h4 {
  margin: 0;
  font-size: 20px;
}

.hero-browser-content p {
  margin: 10px 0 8px;
  color: #dce6ff;
  font-size: 11px;
}

.hero-browser-content span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 700;
}

.compare-list {
  list-style: none;
  margin: 14px 22px 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 16px;
  background: #fff;
}

.compare-list li {
  position: relative;
  padding-left: 50px;
  padding-right: 34px;
}

.compare-list li::before,
.compare-list li::after {
  position: absolute;
  top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.compare-list-muted li::before {
  content: "•";
  left: 0;
  width: 28px;
  height: 28px;
  background: #c8cdd8;
  color: #fff;
}

.compare-list-muted li::after {
  content: "×";
  right: 0;
  width: 18px;
  height: 18px;
  color: #a7afbf;
}

.compare-list-highlight li::before {
  content: "✓";
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
}

.compare-list-highlight li::after {
  content: "◌";
  right: 0;
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.compare-list-warm li::before {
  content: "•";
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--warm);
  color: #fff;
}

.compare-list-warm li::after {
  content: "×";
  right: 0;
  width: 20px;
  height: 20px;
  color: #ffa05a;
}

.compare-list li span {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.compare-list li small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
}

.compare-list-muted li span,
.compare-list-muted li small {
  color: #616a7d;
}

.compare-list-highlight li span,
.compare-list-highlight li small {
  color: var(--blue);
}

.compare-list-warm li span,
.compare-list-warm li small {
  color: #6b7486;
}

.compare-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(100% - 44px);
  min-height: 64px;
  margin: 14px auto 0;
  padding: 0 18px;
  border-radius: 14px;
}

.compare-footer strong,
.compare-footer small {
  display: block;
}

.compare-footer strong {
  font-size: 18px;
  font-weight: 800;
}

.compare-footer small {
  margin-top: 2px;
  font-size: 12px;
}

.compare-footer-muted {
  background: #f1f4fa;
}

.compare-footer-muted strong,
.compare-footer-muted small {
  color: #4a556c;
}

.compare-footer-highlight {
  background: #f3f7ff;
  border: 1px solid #d6e2ff;
}

.compare-footer-highlight strong,
.compare-footer-highlight small {
  color: var(--blue);
}

.compare-footer-warm {
  background: #fff6ef;
  border: 1px solid #ffe0c9;
}

.compare-footer-warm strong {
  color: var(--orange);
}

.compare-footer-warm small {
  color: #8b6e57;
}

.footer-badge {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-badge.muted {
  background: #d2d8e3;
  color: #fff;
}

.footer-badge.highlight {
  background: var(--blue);
  color: #fff;
}

.footer-badge.warm {
  background: var(--warm);
  color: #fff;
}

.compare-vs {
  position: absolute;
  top: 258px;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #43557a;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(169, 185, 214, 0.54);
}

.compare-vs-left {
  left: 292px;
}

.compare-vs-right {
  right: 292px;
}

.crown-badge {
  position: absolute;
  top: -14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd889, #ffb84e);
  box-shadow: 0 10px 22px rgba(255, 225, 166, 0.6);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.compare-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(1080px, 100%);
  min-height: 74px;
  margin: 18px auto 0;
  padding: 0 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf8;
  box-shadow: 0 14px 28px rgba(215, 226, 255, 0.35);
}

.summary-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.compare-summary p {
  margin: 0;
  color: #33415c;
  font-size: 14px;
  font-weight: 700;
}

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

.adv-item,
.service-grid article {
  text-align: center;
}

.adv-item span,
.service-grid article span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(55, 99, 255, 0.1);
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 2px;
  background: #e3eaf9;
}

.timeline-item {
  position: relative;
  text-align: center;
  padding-top: 6px;
}

.timeline-item span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f3f7ff;
  border: 1px solid #cfdcff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

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

.case-card {
  background: #fff;
}

.case-card img {
  height: 172px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e6ebf4;
}

.case-card h3 {
  margin-top: 12px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-stats {
  background: var(--blue-soft);
  padding: 28px 0;
}

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

.stats-row article {
  text-align: center;
}

.stats-row strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  font-weight: 800;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-grid span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eef2fb;
  color: #80889b;
  font-size: 18px;
  font-weight: 700;
}

.review-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid #eef2fb;
}

.review-card {
  padding: 18px;
  border-radius: 14px;
  background: #fff;
}

.review-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.review-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

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

.news-card {
  padding: 22px 0 0;
  border-top: 1px solid #e7edf7;
}

.news-date {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.news-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.wechat-inline-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
  padding: 22px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #edf3ff, #ffffff 68%);
  border: 1px solid #dfe8ff;
  box-shadow: 0 18px 36px rgba(190, 203, 232, 0.18);
}

.wechat-inline-callout-process {
  background: linear-gradient(135deg, #f8fbff, #eef4ff 66%);
  border-color: #dbe6ff;
}

.wechat-inline-copy h3,
.wechat-inline-copy p {
  margin: 0;
}

.wechat-inline-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(55, 99, 255, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wechat-inline-copy h3 {
  margin-top: 14px;
  color: #1c2949;
  font-size: 26px;
  font-weight: 800;
}

.wechat-inline-copy p {
  max-width: 620px;
  margin-top: 10px;
  color: #5f6d87;
  font-size: 14px;
  line-height: 1.8;
}

.wechat-inline-copy .button {
  margin-top: 18px;
}

.wechat-inline-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(169, 186, 223, 0.2);
}

.wechat-inline-note {
  color: #5e6f92;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.wechat-inline-qr-art {
  width: 126px;
  height: 126px;
}

.wechat-inline-qr-art .contact-qr-corner {
  width: 30px;
  height: 30px;
  border-width: 6px;
  border-radius: 8px;
}

.wechat-inline-qr-art .corner-top-left {
  top: 10px;
  left: 10px;
}

.wechat-inline-qr-art .corner-top-right {
  top: 10px;
  right: 10px;
}

.wechat-inline-qr-art .corner-bottom-left {
  bottom: 10px;
  left: 10px;
}

.wechat-inline-qr-art .contact-qr-corner::after {
  inset: 6px;
  border-radius: 3px;
}

.wechat-inline-qr-art .contact-qr-center {
  width: 26px;
  height: 26px;
}

.wechat-inline-qr-art .contact-qr-center::before {
  width: 10px;
  height: 8px;
  left: 5px;
  top: 8px;
}

.wechat-inline-qr-art .contact-qr-center::after {
  width: 7px;
  height: 6px;
  right: 4px;
  top: 9px;
}

.wechat-float {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 124px;
  padding: 14px 12px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d9e4ff;
  box-shadow: 0 20px 38px rgba(108, 130, 184, 0.2);
  text-decoration: none;
  transform: translateY(-50%);
}

.wechat-float-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4d78ff, #2f5fff);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.wechat-float-qr {
  width: 92px;
  height: 92px;
}

.wechat-float-qr .contact-qr-corner {
  width: 22px;
  height: 22px;
  border-width: 5px;
  border-radius: 6px;
}

.wechat-float-qr .corner-top-left {
  top: 8px;
  left: 8px;
}

.wechat-float-qr .corner-top-right {
  top: 8px;
  right: 8px;
}

.wechat-float-qr .corner-bottom-left {
  bottom: 8px;
  left: 8px;
}

.wechat-float-qr .contact-qr-corner::after {
  inset: 4px;
  border-radius: 2px;
}

.wechat-float-qr .contact-qr-center {
  width: 20px;
  height: 20px;
}

.wechat-float-qr .contact-qr-center::before {
  width: 8px;
  height: 6px;
  left: 4px;
  top: 6px;
}

.wechat-float-qr .contact-qr-center::after {
  width: 5px;
  height: 4px;
  right: 3px;
  top: 7px;
}

.wechat-float small {
  color: #61708a;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.section-contact-panel {
  padding-top: 54px;
  background:
    radial-gradient(circle at top center, rgba(64, 108, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 78%);
}

.section-contact-heading {
  margin-bottom: 26px;
}

.contact-panel-shell {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr;
  gap: 26px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #edf1fb;
  box-shadow: 0 18px 42px rgba(193, 205, 232, 0.2);
}

.contact-card {
  border-radius: 22px;
}

.contact-panel-main {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 38px 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(64, 108, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 255, 0.96));
}

.contact-main-icon {
  position: relative;
  width: 112px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 30px;
  background: radial-gradient(circle at 50% 30%, rgba(64, 108, 255, 0.14), rgba(64, 108, 255, 0.04) 68%, transparent 69%);
}

.contact-bubble {
  position: absolute;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(78, 116, 255, 0.18);
}

.contact-bubble::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 12px;
  width: 16px;
  height: 16px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.contact-bubble-primary {
  left: 28px;
  top: 18px;
  width: 56px;
  height: 42px;
  background: linear-gradient(180deg, #5f87ff, #3262ff);
}

.contact-bubble-secondary {
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 26px;
  background: linear-gradient(180deg, #ffffff, #eff4ff);
  box-shadow: 0 10px 20px rgba(129, 150, 206, 0.18);
}

.contact-bubble-primary::after,
.contact-bubble-secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
  box-shadow: -14px 0 0 rgba(255, 255, 255, 0.95), 14px 0 0 rgba(255, 255, 255, 0.95);
}

.contact-bubble-secondary::after {
  width: 5px;
  height: 5px;
  box-shadow: -10px 0 0 rgba(86, 113, 197, 0.35), 10px 0 0 rgba(86, 113, 197, 0.35);
  background: rgba(86, 113, 197, 0.35);
}

.contact-panel-main h3 {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #1b294a;
}

.contact-panel-main h3 span {
  color: var(--blue);
}

.contact-main-copy {
  max-width: 520px;
  margin: 18px auto 0;
  text-align: center;
  color: #5f6d87;
  font-size: 15px;
  line-height: 1.9;
}

.contact-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 34px;
}

.contact-feature {
  text-align: center;
}

.contact-feature-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #f4f7ff, #e7eeff);
  color: var(--blue);
  font-size: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.contact-feature strong,
.contact-feature small {
  display: block;
}

.contact-feature strong {
  font-size: 16px;
  font-weight: 700;
  color: #20304f;
}

.contact-feature small {
  margin-top: 8px;
  color: #7c879c;
  font-size: 12px;
}

.contact-panel-qr {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 24px;
  text-align: center;
  background: linear-gradient(180deg, #4975ff, #2450eb);
  color: #fff;
  box-shadow: 0 20px 38px rgba(54, 91, 227, 0.26);
}

.contact-panel-qr h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.contact-panel-qr p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.contact-qr-wrap {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-qr-art {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 8px, rgba(0, 0, 0, 0.96) 8px, rgba(0, 0, 0, 0.96) 15px, transparent 15px) 0 0 / 34px 34px,
    linear-gradient(transparent 8px, rgba(0, 0, 0, 0.96) 8px, rgba(0, 0, 0, 0.96) 15px, transparent 15px) 0 0 / 34px 34px,
    linear-gradient(90deg, transparent 4px, rgba(0, 0, 0, 0.96) 4px, rgba(0, 0, 0, 0.96) 9px, transparent 9px) 17px 17px / 34px 34px,
    linear-gradient(transparent 4px, rgba(0, 0, 0, 0.96) 4px, rgba(0, 0, 0, 0.96) 9px, transparent 9px) 17px 17px / 34px 34px,
    #fff;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 38, 116, 0.18);
}

.contact-qr-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 8px solid #000;
  border-radius: 10px;
  background: #fff;
}

.corner-top-left {
  top: 14px;
  left: 14px;
}

.corner-top-right {
  top: 14px;
  right: 14px;
}

.corner-bottom-left {
  bottom: 14px;
  left: 14px;
}

.contact-qr-corner::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  background: #000;
}

.contact-qr-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #55d97b, #27b957);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 18px rgba(39, 185, 87, 0.28);
}

.contact-qr-center::before,
.contact-qr-center::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.contact-qr-center::before {
  width: 14px;
  height: 11px;
  left: 6px;
  top: 10px;
}

.contact-qr-center::after {
  width: 9px;
  height: 8px;
  right: 5px;
  top: 12px;
}

.contact-panel-qr small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  background: #18213a;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 38px;
  padding: 44px 0 30px;
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy small {
  color: #fff;
}

.brand-footer .brand-copy small {
  color: #98a3ba;
}

.footer-brand p,
.footer-columns a,
.footer-qr p {
  color: #98a3ba;
  font-size: 13px;
  line-height: 1.8;
}

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

.footer-columns h3,
.footer-qr h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

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

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #24304d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer-qr {
  display: flex;
  gap: 16px;
  align-items: center;
}

.qr-box {
  width: 94px;
  height: 94px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #1f2946 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(#1f2946 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(90deg, #fff 12px, transparent 12px) 12px 12px / 24px 24px,
    linear-gradient(#fff 12px, transparent 12px) 12px 12px / 24px 24px,
    #fff;
  border: 1px solid #2f3b5d;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  padding: 16px 0;
  text-align: center;
  color: #7e89a3;
  font-size: 12px;
}

@media (max-width: 1280px) {
  .hero-grid,
  .trust-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-feature-row,
  .scene-grid,
  .adv-grid,
  .service-grid,
  .case-grid,
  .stats-row,
  .news-grid,
  .contact-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    display: none;
  }

  .wechat-float {
    right: 10px;
    width: 112px;
    padding: 12px 10px 10px;
  }

  .wechat-float-qr {
    width: 82px;
    height: 82px;
  }

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

  .contact-panel-main,
  .contact-panel-qr {
    min-height: auto;
  }

  .compare-stage {
    min-height: auto;
    display: grid;
    gap: 22px;
  }

  .compare-card,
  .compare-vs {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0 auto;
  }

  .compare-vs {
    width: 58px;
    height: 58px;
  }

  .compare-card-highlight {
    order: 2;
  }

  .compare-card-muted {
    order: 1;
  }

  .compare-card-warm {
    order: 3;
  }

  .compare-vs-left,
  .compare-vs-right {
    order: initial;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 38px 0;
  }

  .hero-copy h1,
  .section-heading h2,
  .section-heading-large h2 {
    font-size: 32px;
  }

  .hero-feature-row,
  .scene-grid,
  .adv-grid,
  .service-grid,
  .case-grid,
  .stats-row,
  .news-grid,
  .contact-feature-row,
  .review-panel,
  .logo-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-stack-back {
    width: 250px;
    height: 150px;
  }

  .hero-stack-middle {
    left: 16px;
    width: 220px;
    height: 148px;
  }

  .hero-stack-front {
    right: 16px;
    width: 270px;
    height: 188px;
  }

  .floating-tag {
    font-size: 12px;
    padding: 10px 12px;
  }

  .compare-card-muted,
  .compare-card-highlight,
  .compare-card-warm,
  .compare-summary {
    width: 100%;
  }

  .compare-summary {
    padding: 18px;
    align-items: flex-start;
  }

  .wechat-inline-callout {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    text-align: center;
  }

  .wechat-inline-copy p {
    max-width: none;
  }

  .wechat-inline-copy .button {
    margin-top: 16px;
  }

  .wechat-inline-qr {
    margin: 0 auto;
  }

  .wechat-float {
    display: none;
  }

  .contact-panel-shell {
    padding: 16px;
  }

  .contact-panel-main {
    padding: 34px 20px 24px;
  }

  .contact-panel-main h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-panel-qr {
    padding: 28px 18px 22px;
  }

  .contact-qr-art {
    width: 156px;
    height: 156px;
  }

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

  .timeline::before {
    display: none;
  }

  .footer-qr {
    flex-direction: column;
    align-items: flex-start;
  }
}
