:root {
  --blue: #1769ff;
  --blue-dark: #0a3fba;
  --ink: #0b1736;
  --muted: #66738d;
  --line: #dce6f5;
  --soft: #f4f8ff;
  --soft-blue: #eaf4ff;
  --white: #ffffff;
  --footer: #07182e;
  --shadow: 0 24px 70px rgba(32, 92, 174, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial,
    sans-serif;
  background:
    radial-gradient(circle at 80% 4%, rgba(46, 125, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 24%, #f7fbff 100%);
}

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

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

.page-shell {
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 230, 245, 0.72);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 800;
  color: #092252;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
  color: #253757;
  font-size: 15px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}

.site-nav a.active {
  font-weight: 800;
}

.site-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  content: "";
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

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

.btn.primary,
.header-btn {
  color: var(--white);
  background: linear-gradient(135deg, #2185ff, #095bea);
  box-shadow: 0 14px 32px rgba(23, 105, 255, 0.26);
}

.btn.secondary {
  color: #1656d9;
  border: 1px solid rgba(22, 86, 217, 0.28);
  background: rgba(255, 255, 255, 0.74);
}

.header-btn {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 7px;
}

.header-demo-btn {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(22, 86, 217, 0.24);
  border-radius: 7px;
  color: #1656d9;
  background: rgba(255, 255, 255, 0.78);
}

.mobile-menu-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(191, 209, 233, 0.85);
  border-radius: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(34, 91, 160, 0.08);
}

.mobile-menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #10264d;
}

.mobile-nav {
  position: absolute;
  display: none;
  top: calc(100% + 10px);
  right: 14px;
  z-index: 30;
  width: min(260px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(210, 225, 246, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(34, 91, 160, 0.18);
}

@media (min-width: 1081px) {
  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

body.mobile-nav-ready .mobile-menu-toggle {
  display: inline-flex !important;
}

body.mobile-nav-ready .mobile-nav.open {
  display: grid !important;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0 14px;
  color: #223958;
  font-weight: 700;
}

body.modal-open {
  overflow: hidden;
}

.scan-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
}

.scan-preview-modal[hidden] {
  display: none;
}

.scan-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 46, 0.58);
  backdrop-filter: blur(8px);
}

.scan-preview-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
  width: min(920px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(212, 226, 246, 0.95);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 32px 90px rgba(6, 26, 62, 0.34);
}

.scan-preview-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 8px 0 8px 2px;
}

.scan-preview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(196, 214, 238, 0.95);
  border-radius: 50%;
  color: #203453;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  background: #fff;
}

.scan-preview-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(23, 105, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.scan-preview-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

.scan-preview-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.scan-preview-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.scan-preview-list div {
  position: relative;
  padding: 13px 14px 13px 44px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.scan-preview-list div::before {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, #fff 0 22%, transparent 24%),
    linear-gradient(135deg, #2c8cff, #0b62ed);
  box-shadow: 0 8px 18px rgba(23, 105, 255, 0.2);
}

.scan-preview-list strong {
  display: block;
  color: #10224a;
  font-size: 15px;
}

.scan-preview-list small {
  display: block;
  margin-top: 4px;
  color: #66738d;
  font-size: 13px;
  line-height: 1.5;
}

.scan-preview-tip {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  color: #17335f;
  background: linear-gradient(135deg, #eef7ff, #ffffff);
}

.scan-preview-tip b,
.scan-preview-tip span {
  display: block;
}

.scan-preview-tip b {
  font-size: 15px;
}

.scan-preview-tip span {
  margin-top: 4px;
  color: #63728a;
  font-size: 13px;
  line-height: 1.55;
}

.scan-preview-dialog img {
  width: min(100%, 390px);
  max-height: min(76vh, 720px);
  justify-self: center;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 20px 56px rgba(27, 93, 170, 0.2);
}

@media (max-width: 720px) {
  .scan-preview-modal {
    padding: 14px;
  }

  .scan-preview-dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    max-height: calc(100vh - 28px);
    padding: 22px;
    border-radius: 16px;
  }

  .scan-preview-copy h2 {
    font-size: 24px;
  }

  .scan-preview-copy p {
    font-size: 14px;
  }

  .scan-preview-copy {
    min-height: auto;
    padding: 0;
  }

  .scan-preview-dialog img {
    width: min(100%, 310px);
    max-height: 58vh;
    border-radius: 18px;
  }
}

.mobile-nav a.active {
  color: #0e63ee;
  background: #eef6ff;
}

.mobile-nav .mobile-nav-cta {
  justify-content: center;
  margin-top: 8px;
  color: #fff;
  background: linear-gradient(135deg, #2185ff, #095bea);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 70px 0 132px;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.99) 0%, rgba(248, 252, 255, 0.94) 42%, rgba(234, 244, 255, 0.68) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(214, 235, 255, 0.72) 100%),
    linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(232, 244, 255, 0.9));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(540px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 0;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #4a7bd7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 4vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-desc {
  max-width: 590px;
  margin: 24px 0 0;
  color: #3d4f6b;
  font-size: 18px;
  line-height: 1.85;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
  color: #596982;
  font-size: 14px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23, 105, 255, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  right: 24px;
  bottom: -34px;
  width: min(660px, 50vw);
  height: 150px;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(160, 200, 236, 0.1), rgba(94, 154, 218, 0.18), rgba(160, 200, 236, 0.08));
  filter: blur(18px);
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(-3.2vw, -42px);
  width: min(760px, 55vw);
  max-width: none;
  height: 540px;
  transform: translateY(-50%);
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: saturate(0.98) contrast(0.99);
}

.value-float {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.31fr 0.69fr;
  gap: 24px;
  align-items: center;
  width: min(1200px, calc(100% - 92px));
  margin-top: -84px;
  padding: 30px 40px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 100%, rgba(35, 133, 255, 0.13), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
    var(--white);
  box-shadow: 0 22px 62px rgba(34, 91, 160, 0.14);
}

.value-intro h2,
.pain h2,
.scan-copy h2,
.records-copy h2,
.section-heading h2,
.cta h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.value-intro h2 {
  max-width: 320px;
  font-size: clamp(28px, 2.7vw, 36px);
  line-height: 1.14;
}

.value-intro p {
  max-width: 320px;
}

.value-intro p,
.pain-copy p,
.scan-copy p,
.records-copy p,
.section-heading p,
.cta p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.value-list article {
  min-width: 0;
  padding: 6px 20px;
  border-left: 1px solid rgba(190, 209, 235, 0.72);
}

.badge {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 15px;
  color: #1167ec;
  font-weight: 800;
  background: linear-gradient(145deg, #e9f3ff, #f7fbff);
  box-shadow: inset 0 0 0 1px rgba(23, 105, 255, 0.1);
}

.badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.badge.green {
  color: #0e9f6e;
  background: #e9fbf4;
}

.badge.orange {
  color: #eb7a1b;
  background: #fff2e8;
}

.badge.purple {
  color: #7a4de8;
  background: #f1edff;
}

.value-list h3,
.self-service-card h3,
.scan-actions h3,
.result-grid h3,
.growth-grid h3 {
  margin: 16px 0 0;
  font-size: 19px;
  line-height: 1.3;
}

.value-list h3 {
  margin-top: 14px;
  font-size: 18px;
}

.value-list p,
.scan-actions p,
.result-grid p,
.growth-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.pain {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) 470px;
  gap: 42px;
  align-items: center;
  padding: 86px 0 52px;
}

.pain-copy {
  max-width: 720px;
}

.self-service-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.question-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 18px;
  max-width: 560px;
}

.question-cloud span {
  display: block;
  padding: 17px 20px;
  border: 1px solid rgba(216, 226, 241, 0.9);
  border-radius: 999px;
  color: #2b3c57;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(35, 82, 140, 0.08);
}

.question-cloud span:nth-child(2),
.question-cloud span:nth-child(4) {
  transform: translateY(22px);
}

.self-service-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(210, 225, 246, 0.9);
  border-radius: 22px;
  background: linear-gradient(145deg, #f6fbff, #ffffff);
  box-shadow: 0 18px 48px rgba(34, 91, 160, 0.1);
}

.self-service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.self-service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(246, 251, 255, 0.97) 0%, rgba(246, 251, 255, 0.83) 44%, rgba(246, 251, 255, 0.12) 100%);
}

.self-service-content {
  position: relative;
  z-index: 1;
  max-width: 250px;
  padding: 30px;
}

.self-service-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  color: #4c5f7a;
  list-style: none;
}

.self-service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.self-service-card li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--blue);
}

.scan-section {
  padding: 30px 0 84px;
}

.scan-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.02fr 0.9fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  min-height: 430px;
  padding: 56px 54px 50px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 58% 42%, rgba(23, 105, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #f5fbff, #e7f4ff);
}

.scan-pills {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.scan-pills span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 11px 16px;
  border-radius: 999px;
  color: #315475;
  background: rgba(255, 255, 255, 0.72);
}

.scan-actions {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.scan-actions article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.scan-actions h3 {
  margin-top: 0;
}

.phone-mock {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.phone-frame {
  width: 250px;
  min-height: 480px;
  padding: 14px 16px 20px;
  border: 10px solid #101828;
  border-radius: 38px;
  background: #f8fbff;
  box-shadow: 0 28px 70px rgba(17, 56, 118, 0.24);
  transform: rotate(-4deg) translateY(16px);
}

.phone-top {
  width: 70px;
  height: 6px;
  margin: 0 auto 16px;
  border-radius: 99px;
  background: #101828;
}

.phone-product {
  display: grid;
  gap: 6px;
  padding: 20px 16px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, #eaf4ff, #fff);
}

.phone-product span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.phone-product strong {
  font-size: 17px;
}

.phone-product small {
  color: #70809a;
}

.phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  color: #22334f;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(31, 88, 150, 0.08);
}

.dot {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--blue);
}

.dot.green { background: #12b981; }
.dot.orange { background: #f28422; }
.dot.purple { background: #7467f0; }

.phone-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 10px;
  background: #eaf3ff;
}

.phone-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.phone-icon.green {
  background: #e9fbf4;
}

.phone-icon.orange {
  background: #fff2e7;
}

.phone-icon.purple {
  background: #f1edff;
}

.records {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 68px 0 84px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.result-grid article {
  padding: 22px;
  border: 1px solid rgba(216, 226, 241, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.records-visual {
  border: 1px solid rgba(210, 225, 246, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.desk-card {
  padding: 28px;
}

.desk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2f8ff, #ffffff);
}

.desk-head span {
  color: var(--blue);
  font-weight: 800;
}

.desk-head strong {
  font-size: 22px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.timeline div {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 18px 14px;
  border-radius: 16px;
  background: #f8fbff;
  text-align: center;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 1px solid rgba(23, 105, 255, 0.12);
  border-radius: 14px;
  background: #eaf4ff;
}

.timeline span img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.timeline strong {
  font-size: 14px;
}

.timeline small {
  color: var(--muted);
}

.desk-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.desk-bottom article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 16px;
  background: #fff;
}

.desk-bottom small {
  color: var(--muted);
}

.growth {
  padding: 58px;
  border-radius: 34px;
  background: linear-gradient(145deg, #f6fbff, #eef6ff);
}

.section-heading {
  max-width: 690px;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.growth-grid article {
  overflow: hidden;
  border: 1px solid rgba(211, 225, 246, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.growth-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.growth-grid div {
  padding: 22px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 72px;
  padding: 42px 52px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(244, 250, 255, 0.98) 0%, rgba(232, 244, 255, 0.9) 46%, rgba(232, 244, 255, 0.42) 100%),
    url("./images/cta-mountain.png") right center / cover no-repeat;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 80% 10%, rgba(37, 106, 220, 0.2), transparent 30%),
    var(--footer);
}

.sub-page {
  padding: 72px 0 84px;
}

.sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
  min-height: 330px;
  padding: 54px 0 70px;
}

.sub-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.12;
}

.sub-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.sub-hero-card {
  display: grid;
  gap: 12px;
  padding: 34px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 100%, rgba(23, 105, 255, 0.13), transparent 40%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.sub-hero-card strong {
  font-size: 24px;
}

.sub-hero-card span {
  color: var(--muted);
  line-height: 1.8;
}

.feature-matrix,
.scenario-grid,
.price-grid,
.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-matrix article,
.scenario-grid article,
.price-grid article,
.apply-steps article {
  padding: 30px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(34, 91, 160, 0.08);
}

.feature-matrix h2,
.scenario-grid h2,
.price-grid h2,
.apply-steps h2,
.capacity h2,
.demo-list h2,
.contact-panel h2 {
  margin: 18px 0 0;
  font-size: 24px;
}

.feature-matrix p,
.scenario-grid p,
.price-grid p,
.apply-steps p,
.capacity p,
.demo-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.split-showcase,
.demo-layout,
.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  margin-top: 42px;
  padding: 46px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f4faff, #eaf5ff);
}

.split-showcase h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.18;
}

.split-showcase p {
  color: var(--muted);
  line-height: 1.85;
}

.split-showcase img,
.demo-phone img {
  overflow: hidden;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 0;
  color: #334966;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23, 105, 255, 0.1);
}

.price-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
}

.price-grid article > span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
  background: #eaf4ff;
}

.price-grid strong {
  font-size: 30px;
}

.price-grid .featured {
  border-color: rgba(23, 105, 255, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 105, 255, 0.15), transparent 38%),
    #fff;
  transform: translateY(-12px);
}

.capacity {
  margin-top: 42px;
  padding: 38px;
  border-radius: 26px;
  background: #f5faff;
}

.capacity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.capacity-list span {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #285074;
  box-shadow: 0 10px 26px rgba(34, 91, 160, 0.08);
}

.demo-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.demo-list {
  display: grid;
  gap: 18px;
}

.demo-list article {
  padding: 24px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-panel {
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #233a5b;
  font-weight: 700;
}

.contact-form .wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 209, 233, 0.95);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-panel aside {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.apply-steps b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
}

.features-page {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 24%, #f8fbff 100%);
}

.feature-hero {
  overflow: hidden;
  padding: 72px 0 76px;
  background:
    radial-gradient(circle at 82% 22%, rgba(23, 105, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f5faff, #eaf5ff);
}

.feature-hero-grid {
  display: grid;
  grid-template-columns: minmax(470px, 0.9fr) minmax(560px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.feature-hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.1vw, 62px);
  line-height: 1.12;
}

.feature-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #43566f;
  font-size: 18px;
  line-height: 1.85;
}

.feature-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: #536987;
}

.feature-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-benefits span::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23, 105, 255, 0.1);
}

.feature-hero-visual {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-hero-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 54% 50%;
}

.center {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-service {
  padding: 58px 0 48px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.service-cards article {
  display: grid;
  align-content: start;
  min-height: 350px;
  padding: 24px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.service-cards h3 {
  margin: 16px 0 0;
  font-size: 22px;
}

.service-cards p {
  margin: 8px 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-phone {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 18px;
  border-radius: 18px;
  background: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(211, 225, 246, 0.9);
}

.mini-phone b {
  color: var(--ink);
}

.mini-phone .success {
  color: #11a66a;
  text-align: center;
}

.mini-phone span {
  padding: 10px 12px;
  border-radius: 10px;
  color: #40546f;
  background: #fff;
}

.mini-phone button {
  border: 0;
  border-radius: 10px;
  padding: 11px;
  color: #fff;
  font-weight: 800;
  background: var(--blue);
}

.feature-backstage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 62px;
  align-items: center;
  padding: 54px 0 62px;
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 10px solid #1c2433;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 18px;
  background: #f4f8ff;
}

.mock-sidebar span {
  height: 32px;
  border-radius: 9px;
  background: #dcecff;
}

.mock-sidebar span:first-child {
  background: var(--blue);
}

.mock-main {
  padding: 28px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-row b {
  padding: 18px 12px;
  border-radius: 14px;
  text-align: center;
  background: #f6faff;
}

.chart-row {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 110px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: #f6faff;
}

.chart-row span {
  flex: 1;
  min-height: 28px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #50a1ff, #1769ff);
}

.chart-row span:nth-child(2) { height: 58px; }
.chart-row span:nth-child(3) { height: 82px; }
.chart-row span:nth-child(4) { height: 66px; }
.chart-row span:nth-child(5) { height: 96px; }

.table-row {
  height: 22px;
  margin-top: 22px;
  border-radius: 99px;
  background: #edf4ff;
}

.table-row.short {
  width: 72%;
}

.backstage-copy h2,
.ability-stack h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
}

.backstage-copy p,
.ability-stack p {
  color: var(--muted);
  line-height: 1.8;
}

.vertical-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.vertical-list article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.vertical-list h3 {
  margin: 0;
  font-size: 20px;
}

.vertical-list p {
  margin: 6px 0 0;
}

.extend-service {
  padding: 48px 0 36px;
}

.extend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.extend-grid article {
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.extend-grid h3 {
  margin: 16px 0 0;
  font-size: 22px;
}

.extend-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.extend-grid article > img {
  width: 100%;
  height: 118px;
  margin-top: 12px;
  object-fit: cover;
  border-radius: 14px;
}

.extend-grid .badge img {
  width: 26px;
  height: 26px;
  margin: 0;
  object-fit: contain;
  border-radius: 0;
}

.label-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 14px;
  color: #1d3555;
  background: linear-gradient(135deg, #eef7ff, #fff);
}

.ability-stack {
  padding: 44px 0 54px;
  text-align: center;
}

.stack-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(900px, 100%);
  margin: 14px auto 0;
  padding: 18px 24px;
  border-radius: 16px;
}

.stack-row b {
  color: #0b5be7;
}

.stack-row span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.stack-row.base {
  background: #e5f3ff;
}

.stack-row.growth-row {
  width: min(980px, 100%);
  background: #d9efff;
}

.stack-row.manage {
  width: min(1060px, 100%);
  background: #d7f4ef;
}

.scenario-page {
  background: linear-gradient(180deg, #f5faff 0%, #ffffff 34%, #f7fbff 100%);
}

.scenario-hero {
  overflow: hidden;
  padding: 70px 0 66px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(239, 247, 255, 0.92) 42%, rgba(239, 247, 255, 0.34) 100%),
    #eef7ff;
}

.scenario-hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.78fr) minmax(620px, 1.22fr);
  gap: 46px;
  align-items: center;
}

.scenario-hero-copy h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.16;
}

.scenario-hero-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: #445a78;
  font-size: 18px;
  line-height: 1.86;
}

.scenario-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.pricing-hero-visual,
.demo-hero-visual,
.advisor-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: visible;
}

.scenario-hero-visual::before,
.pricing-hero-visual::before,
.demo-hero-visual::before,
.advisor-hero-visual::before {
  position: absolute;
  z-index: 0;
  right: 2%;
  bottom: 28px;
  width: min(560px, 48vw);
  height: 140px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(90deg, rgba(160, 200, 236, 0.1), rgba(94, 154, 218, 0.18), rgba(160, 200, 236, 0.08));
  filter: blur(18px);
}

.scenario-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.scenario-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 640px;
  margin-top: 42px;
}

.scenario-stats span {
  display: grid;
  gap: 6px;
  color: #70809a;
  font-size: 13px;
}

.scenario-stats b {
  color: #173255;
  font-size: 15px;
}

.scenario-problems {
  padding: 52px 0 38px;
}

.problem-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.problem-grid article,
.fit-grid article {
  min-height: 230px;
  padding: 32px 28px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(34, 91, 160, 0.08);
}

.problem-grid h3,
.fit-grid h3,
.self-help-actions h3,
.data-points h3 {
  margin: 18px 0 0;
  font-size: 22px;
}

.problem-grid p,
.fit-grid p,
.self-help-actions p,
.data-points p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.self-help-section {
  overflow: hidden;
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #f1f8ff, #ffffff);
}

.self-help-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: center;
}

.scenario-phone-card {
  position: relative;
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 22px;
  align-items: center;
  justify-items: center;
  min-height: 520px;
}

.scenario-phone {
  grid-column: 2;
  transform: none;
}

.side-note {
  position: static;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: #294a70;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  white-space: nowrap;
}

.side-note::after {
  display: block;
  width: 68px;
  height: 2px;
  margin-top: 14px;
  margin-left: 0;
  content: "";
  transform: rotate(-12deg);
  background: var(--blue);
}

.self-help-copy h2,
.scenario-data-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.2;
}

.self-help-copy > p,
.scenario-data-copy > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.self-help-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.self-help-actions article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.self-help-actions h3 {
  margin-top: 0;
  font-size: 20px;
}

.service-flow {
  padding: 54px 0 58px;
}

.flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 46px;
}

.flow-line::before {
  position: absolute;
  top: 30px;
  right: 24px;
  left: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #b8d6ff, #2b82ff);
}

.flow-line article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #344d70;
}

.flow-line span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(45, 130, 255, 0.2);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 800;
  background: #edf6ff;
  box-shadow: 0 10px 30px rgba(23, 105, 255, 0.12);
}

.business-fit {
  padding: 58px 0;
  background: linear-gradient(180deg, #eef7ff, #f8fbff);
}

.scenario-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  padding: 76px 0 54px;
}

.scenario-dashboard .dashboard-mock {
  min-height: 420px;
}

.scenario-dashboard-img {
  display: block;
  width: min(100%, 760px);
  border: 1px solid rgba(211, 225, 246, 0.92);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(34, 91, 160, 0.16);
}

.data-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.data-points article {
  padding: 24px 20px;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.data-points h3 {
  font-size: 19px;
}

.pricing-page {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 32%, #f8fbff 100%);
}

.pricing-hero {
  overflow: hidden;
  padding: 70px 0 66px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.99) 0%, rgba(240, 248, 255, 0.94) 42%, rgba(240, 248, 255, 0.34) 100%),
    #eef7ff;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.78fr) minmax(620px, 1.22fr);
  gap: 46px;
  align-items: center;
}

.pricing-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.16;
}

.pricing-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #445a78;
  font-size: 18px;
  line-height: 1.86;
}

.pricing-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
}

.pricing-points {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  color: #4f6380;
  font-weight: 700;
}

.pricing-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-points span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23, 105, 255, 0.1);
}

.plans {
  padding: 52px 0 42px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.plan-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 392px;
  padding: 26px 18px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(34, 91, 160, 0.08);
}

.plan-grid article.recommended {
  border-color: rgba(23, 105, 255, 0.75);
  box-shadow: 0 22px 58px rgba(23, 105, 255, 0.17);
}

.plan-grid article.recommended:not(:nth-child(3)) {
  border-color: rgba(211, 225, 246, 0.95);
  box-shadow: 0 16px 42px rgba(34, 91, 160, 0.08);
}

.plan-grid article:not(:nth-child(3)) .recommend-tag {
  display: none;
}

.plan-grid article:not(:nth-child(3)) .btn.primary {
  color: #1656d9;
  border: 1px solid rgba(22, 86, 217, 0.28);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.recommend-tag {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 8px 14px;
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: var(--blue);
}

.plan-grid h3 {
  margin: 0;
  font-size: 22px;
}

.plan-grid p {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.plan-grid strong {
  color: #111c38;
  font-size: 28px;
}

.plan-grid small {
  color: #52657f;
  font-size: 14px;
}

.plan-note,
.plan-capacity {
  max-width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  color: #52657f;
  font-size: 12px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  background: #f5f8fe;
}

.plan-capacity {
  display: none;
}

.plan-note {
  color: #1656d9;
  font-weight: 800;
}

.plan-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-grid li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #344966;
  font-size: 14px;
  line-height: 1.5;
}

.plan-grid li::before {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  content: "✓";
  background: var(--blue);
}

.plan-grid .btn {
  margin-top: auto;
}

.capacity-clear {
  padding: 26px 0 42px;
}

.capacity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.capacity-cards article {
  padding: 30px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 105, 255, 0.08), transparent 36%),
    #fff;
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.capacity-cards h3 {
  margin: 16px 0 22px;
  font-size: 23px;
}

.capacity-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(211, 225, 246, 0.9);
}

.capacity-items b {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 10px;
  color: #285074;
  background: #f5faff;
  text-align: center;
}

.choose-helper {
  padding: 34px 0 42px;
}

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

.helper-grid article {
  display: grid;
  gap: 10px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(34, 91, 160, 0.07);
}

.helper-grid b {
  font-size: 19px;
}

.helper-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.advisor {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 42px 0 48px;
}

.advisor-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
}

.advisor-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.advisor-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.advisor-icons span {
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 14px;
  color: #1d4f9a;
  font-weight: 800;
  background: #eef7ff;
}

.advisor-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fbff, #ffffff);
  box-shadow: 0 16px 42px rgba(34, 91, 160, 0.08);
}

.advisor-form h3,
.advisor-form button,
.advisor-form-remark {
  grid-column: 1 / -1;
}

.advisor-form h3 {
  margin: 0 0 4px;
  font-size: 24px;
}

.advisor-form input,
.advisor-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 209, 233, 0.95);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.advisor-form textarea {
  min-height: 104px;
  resize: vertical;
}

.advisor-demo-btn {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #2185ff, #095bea);
  box-shadow: 0 14px 28px rgba(23, 105, 255, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.advisor-demo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(23, 105, 255, 0.28);
}

.demo-page {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 32%, #f8fbff 100%);
}

.demo-hero {
  overflow: hidden;
  padding: 70px 0 66px;
  background:
    linear-gradient(120deg, rgba(247, 251, 255, 0.98), rgba(232, 244, 255, 0.9)),
    #eef7ff;
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.8fr) minmax(620px, 1.2fr);
  gap: 46px;
  align-items: center;
}

.demo-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.16;
}

.demo-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #445a78;
  font-size: 18px;
  line-height: 1.86;
}

.demo-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
}

.demo-experience {
  padding: 52px 0 42px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.experience-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
  align-items: start;
  min-height: 600px;
  overflow: hidden;
  padding: 28px;
  border-radius: 14px;
}

.experience-grid article.blue { background: #eaf5ff; }
.experience-grid article.green { background: #eafbF6; }
.experience-grid article.orange { background: #fff3e7; }
.experience-grid article.purple { background: #f1ecff; }

.experience-grid h3 {
  margin: 0;
  font-size: 23px;
}

.experience-grid p {
  min-height: 82px;
  margin: 10px 0 18px;
  color: #536987;
  line-height: 1.7;
}

.demo-qr-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  height: 342px;
  align-self: start;
  box-sizing: border-box;
  padding: 18px;
  border: 1px solid rgba(23, 105, 255, 0.14);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(31, 94, 176, 0.12);
}

.demo-qr-card img {
  width: min(100%, 170px);
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  background: #fff;
}

.demo-qr-card strong {
  color: #10224a;
  font-size: 16px;
}

.demo-qr-card span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.demo-qr-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 8px;
  color: #1656d9;
  font-size: 13px;
  font-weight: 800;
  background: #eef6ff;
}

.mini-dashboard {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.mini-dashboard span {
  height: 36px;
  border-radius: 10px;
  background: #dbeeff;
}

.mini-dashboard span:nth-child(2) {
  width: 76%;
}

.mini-dashboard span:nth-child(3) {
  width: 88%;
}

.mini-dashboard b {
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d8ecff, #fff);
}

.demo-admin-card {
  display: grid;
  gap: 14px;
  width: 100%;
  height: 342px;
  align-self: start;
  box-sizing: border-box;
  padding: 18px;
  border: 1px solid rgba(134, 239, 172, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(236, 253, 245, 0.82)),
    #fff;
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.12);
}

.demo-admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #0f2f28;
  font-size: 14px;
  font-weight: 900;
}

.demo-admin-top b {
  padding: 5px 9px;
  border-radius: 999px;
  color: #047857;
  font-size: 12px;
  background: #dffced;
}

.demo-admin-metrics {
  display: grid;
  gap: 10px;
}

.demo-admin-metrics span {
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  border: 1px solid rgba(209, 250, 229, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.demo-admin-metrics strong {
  color: #0f172a;
  font-size: 14px;
}

.demo-admin-metrics small {
  color: #64748b;
  font-size: 12px;
}

.demo-admin-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #10b981, #16a34a);
  box-shadow: 0 12px 22px rgba(22, 163, 74, 0.2);
}

.label-demo-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  height: 342px;
  align-self: start;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(174, 99, 26, 0.12);
}

.label-demo-card > img {
  width: min(100%, 136px);
  aspect-ratio: 3 / 4.12;
  object-fit: cover;
  border: 1px solid rgba(253, 186, 116, 0.6);
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(154, 86, 14, 0.14);
}

.label-demo-card strong {
  color: #10224a;
  font-size: 15px;
}

.label-demo-card > span {
  max-width: 220px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.label-demo-actions {
  display: grid;
  align-self: end;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.label-demo-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 9px;
  color: #b45309;
  font-size: 12px;
  font-weight: 900;
  background: #fff7ed;
}

.label-demo-actions a:last-child {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.small-qr {
  width: 104px;
  height: 104px;
}

.record-demo {
  display: grid;
  gap: 11px;
  width: 100%;
  height: 342px;
  align-self: start;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 245, 255, 0.82)),
    #fff;
  border: 1px solid rgba(216, 180, 254, 0.68);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.12);
}

.record-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.record-demo-head span {
  color: #26184d;
  font-size: 13px;
  font-weight: 900;
}

.record-demo-head b {
  flex: none;
  padding: 4px 8px;
  border-radius: 999px;
  color: #7c3aed;
  font-size: 12px;
  background: #ede9fe;
}

.record-demo ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.record-demo li {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 8px 10px 8px 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.record-demo li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 8px;
  height: 8px;
  border: 2px solid #ddd6fe;
  border-radius: 50%;
  background: #7c3aed;
}

.record-demo li strong {
  color: #0f172a;
  font-size: 12px;
}

.record-demo li span {
  color: #64748b;
  font-size: 11px;
  line-height: 1.35;
}

.record-demo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-height: 31px;
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, #8b5cf6, #6d5dfc);
  box-shadow: 0 12px 22px rgba(109, 93, 252, 0.2);
}

.demo-steps {
  padding: 38px 0 42px;
}

.demo-steps .flow-line {
  grid-template-columns: repeat(4, 132px);
  justify-content: center;
  gap: 28px;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.demo-steps .flow-line::before {
  right: -92px;
  left: -92px;
}

.demo-dual {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 62px;
  align-items: center;
  padding: 54px 0 60px;
}

.demo-dual h2,
.demo-apply h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
}

.demo-dual p,
.demo-apply p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.demo-dual .phone-frame {
  margin: 0 auto;
}

.real-scan-preview {
  width: min(100%, 330px);
  height: 620px;
  margin: 28px auto 0;
  overflow: hidden;
  border: 10px solid #101828;
  border-radius: 38px;
  background: #eaf6ff;
  box-shadow: 0 28px 70px rgba(17, 56, 118, 0.24);
}

.real-scan-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.real-admin-preview {
  width: min(100%, 720px);
  height: 455px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(211, 225, 246, 0.9);
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: 0 24px 64px rgba(17, 56, 118, 0.16);
}

.real-admin-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.demo-apply {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 42px 0 48px;
}

.demo-includes {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 14px;
  background: #edf7ff;
}

.demo-includes span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #344966;
  font-weight: 700;
}

.demo-includes span::before {
  color: var(--blue);
  content: "✓";
}

.apply-page,
.contact-page {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 32%, #f8fbff 100%);
}

.advisor-hero {
  overflow: hidden;
  padding: 70px 0 66px;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.99) 0%, rgba(239, 247, 255, 0.94) 44%, rgba(239, 247, 255, 0.34) 100%),
    #eef7ff;
}

.advisor-hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.78fr) minmax(620px, 1.22fr);
  gap: 46px;
  align-items: center;
}

.advisor-hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.16;
}

.advisor-hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #445a78;
  font-size: 18px;
  line-height: 1.86;
}

.advisor-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1081px) {
  .feature-hero h1,
  .scenario-hero-copy h1,
  .pricing-hero h1,
  .demo-hero h1,
  .advisor-hero h1 {
    white-space: nowrap;
  }
}

.apply-main,
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  padding: 58px 0;
}

.gain-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.gain-list article,
.remote-list article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(90deg, #eef7ff, #f8fbff);
}

.gain-list h3,
.remote-list h3 {
  margin: 0;
  font-size: 20px;
}

.gain-list p,
.remote-list p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.open-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  background: #fff;
  font-weight: 400;
  box-shadow: 0 18px 50px rgba(34, 91, 160, 0.1);
  scroll-margin-top: 96px;
}

.open-form h2,
.open-form p,
.open-form .wide,
.open-form button,
.open-form small {
  grid-column: 1 / -1;
}

.open-form h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
}

.open-form p {
  margin: 0 0 4px;
  color: var(--muted);
}

.open-form label {
  display: grid;
  gap: 8px;
  color: #233a5b;
  font-weight: 400;
}

.open-form input,
.open-form select,
.open-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 209, 233, 0.95);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  background: #fff;
}

.open-form textarea {
  min-height: 94px;
  resize: vertical;
}

.open-form .btn.primary {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(23, 105, 255, 0.2);
}

.open-form .btn.primary:hover {
  box-shadow: 0 18px 34px rgba(23, 105, 255, 0.28);
}

.open-form small {
  color: #7b8aa3;
  text-align: center;
}

.lead-form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.lead-form-status.success {
  color: #0f9f64;
}

.lead-form-status.error {
  color: #dc2626;
}

.open-form button:disabled,
.advisor-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.apply-flow {
  padding: 56px 0;
  background: linear-gradient(180deg, #eef7ff, #f8fbff);
}

.precheck,
.faq-section,
.contact-ways,
.remote-support {
  padding: 52px 0;
}

.precheck-grid,
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.ways-grid {
  grid-template-columns: minmax(320px, 0.86fr) 1.14fr;
  align-items: stretch;
}

.precheck-grid article,
.ways-grid article {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(34, 91, 160, 0.08);
}

.contact-way-card.primary-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
  padding: 34px;
  border-color: rgba(35, 110, 255, 0.28);
  background:
    radial-gradient(circle at 88% 10%, rgba(45, 132, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #f8fbff, #edf5ff);
}

.contact-label {
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34, 109, 255, 0.1);
  color: #1769ff;
  font-size: 13px;
  font-weight: 800;
}

.contact-way-card.primary-contact h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.contact-way-card.primary-contact strong {
  font-size: 34px;
  letter-spacing: 0.5px;
}

.contact-way-card.primary-contact p {
  max-width: 320px;
  margin: 14px 0 24px;
}

.contact-way-card.primary-contact .btn {
  width: fit-content;
  min-width: 150px;
}

.contact-way-list {
  display: grid;
  gap: 14px;
}

.contact-way-card.compact-contact {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  min-height: 94px;
  padding: 20px 22px;
  box-shadow: 0 12px 28px rgba(34, 91, 160, 0.06);
}

.contact-way-card.compact-contact .badge {
  margin-top: 2px;
}

.contact-way-card.compact-contact h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.contact-way-card.compact-contact strong {
  font-size: 18px;
}

.contact-way-card.compact-contact p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-way-card.wechat {
  grid-template-columns: 52px minmax(0, 1fr);
}

.contact-way-card.wechat > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: start;
}

.contact-way-card.wechat h3,
.contact-way-card.wechat strong,
.contact-way-card.wechat p {
  grid-column: 1;
}

.contact-way-card.phone .badge,
.contact-way-card.wechat .badge,
.contact-way-card.email .badge,
.contact-way-card.time .badge {
  background: #eef5ff;
  color: #1769ff;
}

.precheck-grid h3,
.ways-grid h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.precheck-grid p,
.ways-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.ways-grid strong {
  display: block;
  color: #10224a;
  font-size: 22px;
  line-height: 1.35;
}

.ways-grid .primary-contact h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.ways-grid .primary-contact strong {
  font-size: 34px;
}

.ways-grid .compact-contact h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.ways-grid .compact-contact strong {
  font-size: 18px;
}

.ways-grid .compact-contact p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.wechat-qr-placeholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 84px;
  height: 84px;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(34, 109, 255, 0.18);
  border-radius: 12px;
  background: #fff;
  grid-column: 2;
  grid-row: 1 / span 4;
}

.wechat-qr-placeholder img {
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wechat-qr-placeholder span {
  border-radius: 2px;
  background: #06281e;
}

.wechat-qr-placeholder span:nth-child(2n) {
  background: #226dff;
}

.wechat-qr-placeholder b {
  grid-column: 1 / -1;
  color: #1769ff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

@media (max-width: 900px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }

  .contact-way-card.primary-contact {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .contact-way-card.primary-contact {
    padding: 26px;
  }

  .ways-grid .primary-contact h3 {
    font-size: 24px;
  }

  .ways-grid .primary-contact strong {
    font-size: 28px;
  }

  .contact-way-card.compact-contact,
  .contact-way-card.wechat {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .contact-way-card.wechat > div {
    grid-template-columns: 1fr;
  }

  .wechat-qr-placeholder {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
  margin-top: 28px;
}

.faq-grid article {
  min-height: 132px;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  padding: 24px 26px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 91, 160, 0.06);
}

.faq-grid h3 {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: #10224a;
  font-size: 18px;
  line-height: 1.45;
}

.faq-grid h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1769ff;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-ways > h2,
.remote-support > h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 44px);
}

.contact-ways > p,
.remote-support > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-question-card {
  margin-top: 28px;
  padding: 30px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(238, 247, 255, 0.98), rgba(238, 247, 255, 0.72)),
    url("./images/pain-self-service.png") right center / cover no-repeat;
}

.contact-question-card h3 {
  margin: 0;
  font-size: 22px;
}

.remote-grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(211, 225, 246, 0.95);
  border-radius: 14px;
  background: #edf7ff;
}

.map-card {
  display: contents;
}

.map-card article {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(23, 105, 255, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.86));
}

.map-card h3 {
  margin: 0;
  color: #10224a;
  font-size: 26px;
  line-height: 1.25;
}

.map-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.map-kicker {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #1769ff;
  font-size: 13px;
  font-weight: 900;
  background: #eaf3ff;
}

.visit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visit-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #355273;
  font-size: 13px;
  font-weight: 800;
  background: #eef6ff;
}

.visit-card .btn {
  width: fit-content;
  margin-top: 4px;
  background: #fff;
}

.tencent-map-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #edf7ff;
}

.tencent-map-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.remote-list {
  display: grid;
  gap: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.85fr repeat(3, 1fr) 1fr;
  gap: 42px;
  padding: 58px 0 42px;
}

.footer-logo {
  color: #fff;
}

.footer-brand p {
  max-width: none;
  margin: 18px 0 0;
  line-height: 1.8;
  white-space: nowrap;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-qr {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.qr-box {
  width: 96px;
  height: 96px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
}

.qr-box img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .header-inner {
    position: relative;
  }

  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 11px;
    right: 14px;
    z-index: 50;
    border-color: rgba(14, 99, 238, 0.2);
    background: #fff;
  }

  .mobile-nav.open {
    display: grid;
    gap: 2px;
    position: fixed;
    top: 62px;
    right: 14px;
    z-index: 49;
  }

  .hero-grid,
  .records,
  .sub-hero,
  .split-showcase,
  .demo-layout,
  .contact-panel,
  .feature-hero-grid,
  .feature-backstage,
  .scenario-hero-grid,
  .self-help-grid,
  .scenario-data,
  .pricing-hero-grid,
  .advisor,
  .demo-hero-grid,
  .demo-dual,
  .demo-apply,
  .advisor-hero-grid,
  .apply-main,
  .contact-main,
  .remote-grid {
    grid-template-columns: 1fr;
  }

  .value-float,
  .scan-panel,
  .pain {
    grid-template-columns: 1fr;
  }

  .value-list,
  .result-grid,
  .growth-grid,
  .footer-grid,
    .feature-matrix,
    .scenario-grid,
    .price-grid,
    .apply-steps,
    .service-cards,
    .extend-grid,
    .problem-grid,
    .fit-grid,
    .data-points,
    .plan-grid,
    .capacity-cards,
    .helper-grid,
    .experience-grid,
    .precheck-grid,
    .ways-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-grid .featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page-shell {
    width: min(100% - 28px, 1180px);
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  section {
    max-width: 100%;
    overflow-x: clip;
  }

  p,
  h1,
  h2,
  h3 {
    overflow-wrap: anywhere;
  }

  .header-inner {
    position: relative;
    min-height: 64px;
    gap: 12px;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.open {
    display: grid;
    gap: 2px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark,
  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 70px;
  }

  .hero h1,
  .feature-hero h1,
  .scenario-hero-copy h1,
  .pricing-hero h1,
  .demo-hero h1,
  .advisor-hero h1,
  .sub-hero h1 {
    max-width: 100%;
    width: 100%;
    font-size: clamp(30px, 8.7vw, 36px);
    line-height: 1.14;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-copy,
  .hero-visual,
  .feature-hero-grid > *,
  .scenario-hero-grid > *,
  .pricing-hero-grid > *,
  .demo-hero-grid > *,
  .advisor-hero-grid > *,
  .sub-hero > *,
  .scan-panel > *,
  .records > *,
  .self-help-grid > * {
    min-width: 0;
    max-width: calc(100vw - 28px);
  }

  .hero-copy,
  .scenario-hero-copy,
  .pricing-hero-grid > div:first-child,
  .demo-hero-grid > div:first-child,
  .advisor-hero-grid > div:first-child,
  .feature-hero-grid > div:first-child {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .hero-desc,
  .feature-hero p,
  .scenario-hero-copy p,
  .pricing-hero p,
  .demo-hero p,
  .advisor-hero p,
  .sub-hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.78;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-points {
    gap: 12px 14px;
    margin-top: 22px;
  }

  .hero-visual {
    width: min(100%, 340px);
    min-height: 260px;
    margin-top: 26px;
    overflow: visible;
  }

  .hero-visual::before {
    right: 4%;
    bottom: 0;
    width: 86%;
    height: 90px;
  }

  .hero-visual img {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 340px);
    height: auto;
    max-width: none;
    transform: none;
  }

  .value-float,
  .scan-panel,
  .growth,
  .cta {
    padding: 26px;
  }

  .value-float {
    width: min(100% - 28px, 1180px);
    margin-top: -36px;
  }

  .value-list,
  .result-grid,
  .growth-grid,
  .footer-grid,
  .question-cloud,
  .feature-matrix,
  .scenario-grid,
  .price-grid,
  .apply-steps,
  .service-cards,
  .extend-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .pain {
    gap: 22px;
    padding: 58px 0 38px;
  }

  .pain h2,
  .scan-copy h2,
  .records-copy h2,
  .section-heading h2,
  .cta h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.18;
  }

  .pain-copy {
    max-width: 340px;
  }

  .pain-copy p {
    font-size: 15px;
  }

  .question-cloud {
    max-width: 340px;
    gap: 12px;
  }

  .question-cloud span {
    padding: 14px 16px;
    text-align: left;
    border-radius: 12px;
  }

  .self-service-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
    width: min(100%, 340px);
  }

  .self-service-card > img {
    position: absolute;
    right: 0;
    left: auto;
    width: 62%;
    object-position: 58% 50%;
  }

  .self-service-card::after {
    background: linear-gradient(90deg, rgba(246, 251, 255, 0.98) 0%, rgba(246, 251, 255, 0.94) 58%, rgba(246, 251, 255, 0.22) 100%);
  }

  .self-service-content {
    max-width: 220px;
    padding: 24px;
  }

  .feature-hero {
    padding: 42px 0 48px;
  }

  .feature-hero-visual img {
    height: 300px;
  }

  .scenario-hero {
    padding: 42px 0 48px;
  }

  .scenario-hero-grid,
  .pricing-hero-grid,
  .demo-hero-grid,
  .advisor-hero-grid,
  .feature-hero-grid {
    gap: 26px;
  }

  .scenario-hero-visual,
  .pricing-hero-visual,
  .demo-hero-visual,
  .advisor-hero-visual {
    width: min(100%, 340px);
    min-height: 260px;
    overflow: hidden;
  }

  .scenario-hero-visual img {
    width: min(100%, 340px);
    max-width: 100%;
    height: 300px;
    mask-image: none;
  }

  .pricing-hero {
    padding: 42px 0 48px;
  }

  .pricing-hero-visual img {
    width: min(100%, 340px);
    max-width: 100%;
    height: 300px;
    mask-image: none;
  }

  .demo-hero {
    padding: 42px 0 48px;
  }

  .demo-hero-visual img {
    width: min(100%, 340px);
    max-width: 100%;
    height: 300px;
    mask-image: none;
  }

  .advisor-hero {
    padding: 42px 0 48px;
  }

  .advisor-hero-visual img {
    width: min(100%, 340px);
    max-width: 100%;
    height: 300px;
    mask-image: none;
  }

  .scenario-stats,
  .pricing-points,
  .self-help-actions,
  .problem-grid,
  .fit-grid,
  .data-points,
  .flow-line,
  .plan-grid,
  .capacity-cards,
  .helper-grid,
  .experience-grid,
  .precheck-grid,
  .ways-grid,
  .faq-grid,
  .open-form,
  .map-card,
  .advisor-icons,
  .advisor-form {
    grid-template-columns: 1fr;
  }

  .scenario-phone-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .scenario-phone {
    grid-column: 1;
  }

  .side-note {
    position: static;
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin-bottom: 18px;
    text-align: center;
    white-space: normal;
  }

  .side-note::after {
    margin-right: auto;
    margin-left: auto;
  }

  .flow-line {
    gap: 18px;
  }

  .flow-line::before {
    display: none;
  }

  .dashboard-mock {
    grid-template-columns: 1fr;
    border-width: 6px;
  }

  .mock-sidebar {
    display: none;
  }

  .metric-row,
  .stack-row {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .sub-page {
    padding-top: 34px;
  }

  .sub-hero,
  .split-showcase,
  .demo-layout,
  .contact-panel {
    padding: 28px 0;
  }

  .split-showcase,
  .demo-layout,
  .contact-panel {
    padding: 26px;
  }

  .value-list article {
    padding: 18px 0;
    border-top: 1px solid rgba(190, 209, 235, 0.72);
    border-left: 0;
  }

  .question-cloud span:nth-child(2),
  .question-cloud span:nth-child(4) {
    transform: none;
  }

  .phone-frame {
    width: min(250px, 100%);
    min-height: 430px;
    transform: none;
  }

  .footer-brand p {
    white-space: normal;
  }

  .site-footer {
    background:
      radial-gradient(circle at 50% 0%, rgba(37, 106, 220, 0.26), transparent 34%),
      linear-gradient(180deg, #071a34 0%, #061426 100%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 34px 0 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
  }

  .footer-logo {
    font-size: 18px;
  }

  .footer-brand p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-links {
    gap: 9px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
  }

  .footer-links h3 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .footer-links a,
  .footer-links span {
    font-size: 13px;
    line-height: 1.55;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
  }

  .footer-qr {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-align: left;
    background: rgba(255, 255, 255, 0.045);
  }

  .qr-box {
    width: 72px;
    height: 72px;
    padding: 9px;
    border-radius: 10px;
  }

  .footer-qr p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-bottom {
    align-items: center;
    gap: 12px;
    padding: 18px 0 26px;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
    width: 100%;
  }

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

  .cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
