:root {
  --no-blue: #2f7af0;
  --no-blue-deep: #063d9e;
  --no-navy: #071c67;
  --no-cyan: #39c9ef;
  --no-gold: #ffb018;
  --no-text: #2c3340;
  --no-muted: #6a7383;
  --no-soft: #eef5ff;
  --no-line: #dfe8f6;
  --no-shadow: 0 18px 45px rgba(31, 82, 155, .16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--no-text);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #fff;
  letter-spacing: 0;
}

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

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

.no-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.no-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(15, 43, 88, .08);
}

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

.no-logo img {
  width: 142px;
  max-height: 58px;
  object-fit: contain;
}

.no-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.no-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
}

.no-nav li {
  position: relative;
}

.no-nav a {
  display: block;
  padding: 30px 0;
  color: #303643;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

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

.no-sub-toggle {
  display: none;
}

.no-subnav {
  position: absolute;
  top: 76px;
  left: 50%;
  min-width: 150px;
  transform: translateX(-50%);
  display: none;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--no-line);
  box-shadow: var(--no-shadow);
}

.no-nav li:hover > .no-subnav {
  display: block;
}

.no-subnav a {
  padding: 10px 16px;
  font-size: 14px;
}

.no-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.no-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #25324a;
}

.no-hero {
  min-height: 760px;
  padding: 78px 0 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 58%, rgba(73, 225, 249, .9), transparent 32%),
    radial-gradient(circle at 95% 48%, rgba(54, 183, 255, .8), transparent 34%),
    radial-gradient(circle at 50% 116%, #fff 0, #fff 19%, transparent 20%),
    linear-gradient(180deg, #071168 0%, #074ac4 52%, #79dff1 100%);
}

.no-hero-content {
  text-align: center;
}

.no-eyebrow {
  margin: 0 0 18px;
  font-size: 23px;
  font-weight: 700;
}

.no-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.16;
  font-weight: 800;
}

.no-hero-note {
  width: min(760px, 100%);
  margin: 72px auto 58px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.9;
}

.no-hero-panel {
  width: min(960px, 100%);
  min-height: 430px;
  margin: 0 auto;
  padding: 42px 60px 0;
  color: var(--no-text);
  background: rgba(255, 255, 255, .94);
  border: 6px solid rgba(255, 255, 255, .72);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 0 35px rgba(255, 255, 255, .7), var(--no-shadow);
}

.no-hero-panel h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.4;
  font-weight: 800;
}

.no-hero-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.no-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(35, 106, 214, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.no-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(35, 106, 214, .24);
}

.no-btn span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #fff;
  color: var(--no-blue);
}

.no-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #428bff, #1f6bec);
}

.no-btn-light {
  color: #2f4056;
  background: #fff;
  border-color: var(--no-line);
}

.no-btn-light span {
  color: #fff;
  background: var(--no-blue);
}

.no-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 58px;
}

.no-channel-grid div {
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: 28px 14px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, #ddebff, #fff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);
}

.no-channel-grid strong {
  color: var(--no-blue);
  font-size: 54px;
  line-height: 1;
}

.no-channel-grid div:nth-child(2) strong {
  color: #4285f4;
}

.no-channel-grid div:nth-child(3) strong {
  color: #f6ae24;
}

.no-channel-grid div:nth-child(4) strong {
  color: #f41d14;
}

.no-channel-grid span {
  font-size: 16px;
  font-weight: 700;
}

.no-section {
  padding: 92px 0;
}

.no-section-head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  text-align: center;
  margin-bottom: 50px;
}

.no-section-head h2 {
  margin: 0;
  color: #2c3038;
  font-size: clamp(31px, 3.7vw, 44px);
  line-height: 1.26;
  font-weight: 800;
}

.no-section-head p {
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: var(--no-muted);
  font-size: 16px;
  line-height: 1.9;
}

.no-section-head-light h2,
.no-section-head-light p {
  color: #fff;
}

.no-pin {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 54px;
  margin-top: 2px;
  border-radius: 50% 50% 50% 0;
  background: var(--no-gold);
  transform: rotate(-45deg);
  box-shadow: 0 7px 0 rgba(47, 122, 240, .18);
}

.no-pin::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 9px;
  border-radius: 50%;
  background: #fff;
}

.no-tabs {
  width: min(850px, 100%);
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 7px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--no-shadow);
}

.no-tabs span {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 700;
  color: #3d4655;
}

.no-tabs span:first-child {
  color: #fff;
  background: var(--no-blue);
}

.no-feature-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 92px;
}

.no-ai-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbeeff, #f8fbff 45%, #c8e5ff);
  box-shadow: var(--no-shadow);
}

.no-browser {
  position: relative;
  width: 360px;
  min-height: 220px;
  padding: 44px 28px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(54, 133, 234, .22);
}

.no-browser i {
  position: absolute;
  top: 20px;
  left: 28px;
  width: 130px;
  height: 10px;
  border-radius: 999px;
  background: #d8e7fb;
}

.no-site-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.no-site-map span {
  grid-column: 1 / -1;
  justify-self: center;
  width: 58px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: var(--no-blue);
  font-size: 14px;
  font-weight: 700;
}

.no-site-map b {
  height: 86px;
  border-radius: 12px;
  background: linear-gradient(180deg, #78bbff, #f2f8ff);
}

.no-ai-badge {
  position: absolute;
  left: 58px;
  bottom: 58px;
  color: var(--no-blue);
  font-size: 48px;
  font-weight: 900;
}

.no-feature-copy h3,
.no-service-copy h3,
.no-method-card h3,
.no-helper-card h3 {
  margin: 0;
  color: #2d333d;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 800;
}

.no-feature-copy p {
  margin: 28px 0 46px;
  color: var(--no-muted);
  font-size: 16px;
  line-height: 2;
}

.no-blue {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 8%, rgba(35, 181, 255, .52), transparent 25%),
    radial-gradient(circle at 86% 90%, rgba(53, 140, 255, .4), transparent 30%),
    linear-gradient(160deg, #073889, #0049b7 48%, #07126c);
}

.no-timeline {
  min-height: 360px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 0;
}

.no-timeline span {
  position: relative;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  border-radius: 16px;
  background: rgba(58, 133, 255, .88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.no-timeline span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -70px;
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, .26);
}

.no-timeline span:nth-child(1),
.no-timeline span:nth-child(5),
.no-timeline span:nth-child(6) {
  transform: translateY(-46px);
}

.no-timeline span:nth-child(5) {
  background: rgba(120, 123, 128, .95);
}

.no-timeline span:nth-child(6) {
  background: var(--no-gold);
}

.no-link-core h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 31px;
  line-height: 1.3;
}

.no-link-core p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.8;
}

.no-services {
  background: #edf3fb;
}

.no-service-layout {
  display: grid;
  grid-template-columns: .85fr 1fr .85fr;
  align-items: center;
  gap: 60px;
}

.no-service-copy .no-btn {
  margin-top: 34px;
}

.no-service-card {
  min-height: 470px;
  display: grid;
  align-content: end;
  padding: 0 44px 50px;
  border-radius: 34px 34px 0 0;
  background: #fff;
  box-shadow: var(--no-shadow);
  text-align: center;
}

.no-card-media {
  height: 210px;
  margin: 0 -18px 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  font-size: 92px;
  font-weight: 900;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(180deg, #8ea5ae, #6d7a80);
}

.no-service-card h4 {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 800;
}

.no-service-card p,
.no-service-text {
  margin: 0;
  color: var(--no-muted);
  font-size: 17px;
  line-height: 2;
}

.no-method-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 80px;
  align-items: center;
}

.no-method-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.no-method-grid li {
  margin: 0 0 34px;
  color: #adb4bf;
  font-size: 22px;
  font-weight: 800;
}

.no-method-grid li.active {
  color: #333a45;
}

.no-method-card {
  min-height: 290px;
  padding: 46px 58px;
  border-radius: 14px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(76, 200, 255, .65), transparent 42%),
    linear-gradient(145deg, #080f63, #126bd6);
  box-shadow: var(--no-shadow);
}

.no-method-card h3 {
  color: #fff;
}

.no-method-card p {
  margin: 24px 0 48px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.9;
}

.no-method-card strong {
  display: block;
  text-align: right;
  font-size: 28px;
}

.no-center-cta {
  margin-top: 44px;
  text-align: center;
}

.no-center-cta h3 {
  margin: 0 0 28px;
  font-size: 30px;
  line-height: 1.5;
}

.no-growth-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
}

.no-growth-stats div {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
}

.no-growth-stats strong {
  font-size: 46px;
}

.no-growth-copy {
  text-align: center;
}

.no-growth-copy h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
}

.no-growth-copy p {
  width: min(740px, 100%);
  margin: 0 auto 45px;
  color: rgba(255, 255, 255, .88);
  line-height: 2;
}

.no-growth-points {
  width: min(880px, 100%);
  margin: 0 auto 45px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 34px;
}

.no-growth-points span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 12px 28px;
  border-radius: 12px;
  color: #23334d;
  font-weight: 800;
  background: linear-gradient(180deg, #fff, #cbe7ff);
}

.no-growth .no-btn {
  margin: 0 auto;
}

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

.no-case-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--no-shadow);
  text-align: center;
}

.no-case-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.no-case-card strong {
  display: block;
  margin: 24px 18px 10px;
  font-size: 21px;
  font-weight: 800;
}

.no-case-card span {
  display: block;
  margin: 0 18px 24px;
  color: var(--no-muted);
}

.no-faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 80px;
  align-items: center;
}

.no-helper-card {
  min-height: 315px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 42px;
  text-align: center;
  border: 1px solid #e8f0fb;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, #edf6ff);
  box-shadow: var(--no-shadow);
}

.no-cloud {
  width: 88px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  border-radius: 36px;
  background: #1680ff;
  font-weight: 900;
}

.no-helper-card p {
  color: var(--no-muted);
  line-height: 1.8;
}

.no-question-clouds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
}

.no-question-clouds span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 24px;
  text-align: center;
  border-radius: 999px;
  color: #23334d;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff, #bde2ff);
  box-shadow: 0 10px 24px rgba(41, 118, 218, .12);
}

.no-question-clouds span:last-child {
  grid-column: 1 / -1;
}

.no-final {
  padding-bottom: 78px;
}

.no-final-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 90px;
  align-items: center;
}

.no-final .no-section-head {
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 38px;
}

.no-final .no-section-head p {
  margin-left: 0;
}

.no-final h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.7;
}

.no-consult-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--no-shadow);
}

.no-consult-form label {
  display: grid;
  gap: 8px;
  color: #485366;
  font-weight: 700;
}

.no-consult-form input,
.no-consult-form textarea {
  width: 100%;
  border: 1px solid var(--no-line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--no-text);
  font: inherit;
  outline: none;
}

.no-consult-form textarea {
  resize: vertical;
}

.no-footer {
  color: #fff;
  background: #2f73df;
  padding: 52px 0 28px;
}

.no-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 110px 1.3fr;
  gap: 44px;
  align-items: center;
}

.no-footer-brand img {
  width: 220px;
  max-width: 100%;
}

.no-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: rgba(255, 255, 255, .88);
}

.no-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.no-socials span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  font-size: 13px;
  font-weight: 800;
}

.no-qr img {
  width: 106px;
  height: 106px;
  object-fit: cover;
  background: rgba(255, 255, 255, .9);
}

.no-contact p {
  margin: 8px 0;
  color: rgba(255, 255, 255, .92);
  line-height: 1.7;
}

.no-copyright {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .no-nav > ul {
    gap: 24px;
  }

  .no-feature-row,
  .no-service-layout,
  .no-method-grid,
  .no-faq-grid,
  .no-final-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .no-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .no-shell {
    width: min(100% - 24px, 1180px);
  }

  .no-header-inner {
    height: 68px;
  }

  .no-menu-toggle {
    display: block;
  }

  .no-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border-top: 1px solid var(--no-line);
    box-shadow: var(--no-shadow);
  }

  .no-site-header.is-open .no-nav {
    display: block;
  }

  .no-nav > ul {
    display: block;
    padding: 8px 18px 20px;
  }

  .no-nav a {
    padding: 15px 0;
  }

  .no-sub-toggle {
    display: block;
    position: absolute;
    top: 8px;
    right: 0;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--no-blue);
  }

  .no-subnav {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 16px;
  }

  .no-nav li:hover > .no-subnav {
    display: none;
  }

  .no-nav li.is-open > .no-subnav {
    display: block;
  }

  .no-hero {
    min-height: 0;
    padding-top: 48px;
  }

  .no-eyebrow {
    font-size: 17px;
  }

  .no-hero-note {
    margin: 34px auto;
  }

  .no-hero-panel {
    padding: 28px 16px 0;
    border-radius: 22px 22px 0 0;
  }

  .no-channel-grid,
  .no-tabs,
  .no-timeline,
  .no-growth-points,
  .no-question-clouds,
  .no-case-grid,
  .no-footer-grid {
    grid-template-columns: 1fr;
  }

  .no-channel-grid {
    gap: 14px;
  }

  .no-channel-grid div {
    min-height: 118px;
    border-radius: 14px;
  }

  .no-section,
  .no-blue {
    padding: 62px 0;
  }

  .no-section-head {
    text-align: left;
    justify-content: flex-start;
  }

  .no-tabs {
    border-radius: 18px;
  }

  .no-tabs span {
    border-radius: 12px;
  }

  .no-ai-visual {
    min-height: 290px;
  }

  .no-browser {
    width: 86%;
  }

  .no-timeline {
    min-height: auto;
    gap: 16px;
  }

  .no-timeline span,
  .no-timeline span:nth-child(1),
  .no-timeline span:nth-child(5),
  .no-timeline span:nth-child(6) {
    transform: none;
  }

  .no-timeline span::before {
    display: none;
  }

  .no-growth-stats {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .no-footer-brand img {
    width: 180px;
  }

  .no-copyright {
    justify-content: flex-start;
  }
}
