:root {
  --purple: #563a86;
  --purple-deep: #3f2c67;
  --purple-soft: #f3eff8;
  --gold: #f0aa32;
  --gold-deep: #dc9218;
  --ink: #282333;
  --muted: #716a79;
  --line: #e4dfe8;
  --paper: #fbfafc;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 24px 64px rgba(48, 35, 67, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, select { font: inherit; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  padding: 0 max(32px, calc((100vw - 1448px) / 2));
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(86,58,134,.1);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}
.brand { width: 220px; flex: none; display: block; }
.brand img { display: block; width: 100%; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 34px; }
.nav-item { position: relative; }
.nav-item > a { text-decoration: none; font-size: 15px; font-weight: 700; color: #3d3746; white-space: nowrap; }
.nav-item > a:hover, .nav-item > a:focus-visible { color: var(--purple); }
.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: 200px;
  transform: translate(-50%, 10px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
}
.nav-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav-dropdown a { display: block; padding: 11px 12px; border-radius: 8px; text-decoration: none; font-size: 14px; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: var(--purple-soft); color: var(--purple); }
.has-menu:hover .nav-dropdown, .has-menu:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.header-phone { margin-left: 32px; padding-left: 32px; border-left: 1px solid var(--line); text-decoration: none; font-weight: 800; white-space: nowrap; }
.header-phone:hover { color: var(--purple); }
.header-cta { margin-left: 18px; padding: 13px 20px; border-radius: 9px; background: var(--purple); color: white; text-decoration: none; font-size: 14px; font-weight: 800; white-space: nowrap; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  background: linear-gradient(118deg,#fff 0%,#fff 58%,#f4f0f9 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(86,58,134,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, black, transparent 72%);
  opacity: .55;
}
.hero-track { position: relative; width: min(1448px, calc(100% - 64px)); min-height: 720px; margin: auto; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0,52fr) minmax(0,48fr);
  align-items: center;
  gap: 34px;
  padding: 56px 8px 78px;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity .65s ease, transform .65s ease;
}
.hero-slide.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--purple); font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.hero h1, .hero h2 { margin: 0; font-size: clamp(48px,4.2vw,68px); line-height: 1.12; letter-spacing: -.045em; }
.hero h1 em, .hero h2 em { color: var(--gold-deep); font-style: normal; }
.hero-subtitle { margin: 26px 0 0; max-width: 680px; color: #5e5766; font-size: 21px; font-weight: 600; line-height: 1.6; }
.hero-actions, .section-actions { display: flex; gap: 14px; align-items: center; margin-top: 34px; }
.button { display: inline-flex; min-height: 50px; padding: 0 23px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 9px; text-decoration: none; font-size: 15px; font-weight: 800; cursor: pointer; }
.button.primary { color: white; background: var(--purple); box-shadow: 0 10px 28px rgba(86,58,134,.17); }
.button.secondary { color: #413a49; background: rgba(255,255,255,.7); border-color: #d9d3e0; }
.button:active { transform: translateY(1px); }
.hero-description { margin: 18px 0 0; color: #89828f; font-size: 13px; }
.proof { display: flex; gap: 9px; align-items: center; margin: 19px 0 0; color: var(--purple); font-size: 13px; font-weight: 800; }
.proof::before { content: ""; width: 22px; height: 5px; border-radius: 9px; background: var(--gold); }
.carousel-controls { position: absolute; z-index: 5; left: max(32px, calc((100vw - 1432px) / 2)); bottom: 35px; display: flex; align-items: center; gap: 12px; }
.carousel-pause { width: 29px; height: 29px; border: 1px solid #ddd7e4; border-radius: 50%; color: #716a79; background: white; cursor: pointer; }
.carousel-dot { width: 31px; height: 5px; border: 0; border-radius: 8px; background: #d9d3e1; cursor: pointer; padding: 0; transition: .25s ease; }
.carousel-dot.is-active { width: 70px; background: var(--gold); }
.carousel-count { position: absolute; z-index: 5; right: max(32px, calc((100vw - 1432px) / 2)); bottom: 40px; color: #918a99; font-size: 13px; letter-spacing: .14em; }

.visual-frame { border: 1px solid rgba(86,58,134,.13); background: white; border-radius: 26px; box-shadow: var(--shadow); }
.asset-visual { position: relative; width: 100%; height: 560px; }
.asset-ring { position: absolute; border: 1px solid rgba(86,58,134,.16); border-radius: 50%; }
.ring-one { inset: 32px 20px 14px; transform: rotate(-11deg); }
.ring-two { inset: 112px 102px; border-color: rgba(240,170,50,.27); transform: rotate(14deg); }
.asset-core { position: absolute; left: 50%; top: 50%; width: 290px; height: 235px; transform: translate(-50%,-50%); border: 1px solid rgba(86,58,134,.11); border-radius: 32px; background: white; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.asset-core img { width: 106px; }
.asset-core b { margin-top: 12px; font-size: 19px; }
.asset-core small { margin-top: 5px; color: #7d7585; }
.asset-label { position: absolute; min-width: 120px; padding: 14px 16px; border: 1px solid rgba(86,58,134,.12); border-radius: 13px; background: white; box-shadow: 0 12px 28px rgba(47,32,70,.08); font-size: 14px; font-weight: 800; }
.asset-label::before { content: ""; display: block; width: 30px; height: 5px; margin-bottom: 9px; border-radius: 8px; background: var(--gold); }
.asset-1 { left: 10px; top: 120px; }.asset-2 { right: 10px; top: 105px; }.asset-3 { left: 41%; top: 8px; }.asset-4 { left: 18px; bottom: 74px; }.asset-5 { right: 4px; bottom: 92px; }

.hero-ai { position: relative; width: 94%; min-height: 410px; margin-left: auto; padding: 26px; }
.ai-brand { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.ai-brand img { width: 185px; }.ai-brand span { padding: 6px 10px; border-radius: 20px; background: #eaf7ee; color: #4c8f62; font-size: 12px; font-weight: 800; }
.ai-query { margin-top: 20px; padding: 14px 16px; border-radius: 11px; background: #f6f3f8; color: #615a69; font-size: 14px; }
.hero-ai > p { color: #625b6b; font-size: 15px; line-height: 1.7; }
.hero-ai > strong { display: block; margin-top: 18px; padding: 16px; border-left: 5px solid var(--gold); border-radius: 0 10px 10px 0; background: #fff8e9; }
.ai-platforms { position: absolute; left: -54px; right: -54px; bottom: -78px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.ai-platforms span, .platform-row span { padding: 8px 10px; border: 1px solid #e0dae6; border-radius: 8px; background: white; color: #665e6e; font-size: 12px; font-weight: 700; }

.caller-visual { position: relative; height: 590px; }
.phone-shell { position: absolute; left: 50%; top: 14px; width: 290px; height: 526px; padding: 12px; transform: translateX(-50%) rotate(4deg); border-radius: 43px; background: var(--ink); box-shadow: 0 32px 70px rgba(40,35,51,.2); }
.phone-screen { position: relative; height: 100%; padding: 65px 20px 25px; border-radius: 34px; background: linear-gradient(#f7f4fa,#fff); text-align: center; }
.phone-speaker { position: absolute; left: 50%; top: 20px; width: 76px; height: 7px; transform: translateX(-50%); border-radius: 10px; background: #4c4557; }
.caller-avatar { width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 25px; display: grid; place-items: center; color: white; background: var(--purple); font-size: 32px; }
.phone-screen b { display: block; font-size: 25px; }.phone-screen > small { display: block; margin-top: 17px; color: #918a98; font-size: 15px; }
.verified { display: inline-block; margin-top: 10px; padding: 7px 11px; border-radius: 20px; background: #fff0cc; color: #9a6410; font-size: 12px; font-weight: 800; }
.call-actions { margin-top: 65px; display: flex; justify-content: space-around; }
.call-actions i { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: white; font-style: normal; font-weight: 900; }
.decline { background: #d95c5c; }.accept { background: #4da86c; }
.floating-note { position: absolute; width: 165px; padding: 16px; border: 1px solid rgba(86,58,134,.12); border-radius: 14px; background: white; box-shadow: 0 12px 30px rgba(47,32,70,.08); }
.floating-note b, .floating-note small { display: block; }.floating-note b { font-size: 14px; }.floating-note small { margin-top: 6px; color: #89828f; font-size: 12px; }
.note-a { left: 5px; top: 120px; }.note-b { right: 2px; bottom: 95px; }

.section { width: min(1448px, calc(100% - 64px)); margin: 0 auto; padding: 112px 8px; }
.section h2 { margin: 0; font-size: clamp(40px,3.4vw,54px); line-height: 1.18; letter-spacing: -.04em; }
.section-lead { color: var(--muted); font-size: 17px; line-height: 1.8; }
.section-heading { display: grid; grid-template-columns: minmax(0,58fr) minmax(0,42fr); gap: 60px; align-items: end; }
.section-heading .section-lead { margin: 0 0 5px; }

.geo-section { display: grid; grid-template-columns: minmax(0,43fr) minmax(0,57fr); gap: 70px; align-items: center; min-height: 800px; }
.product-logo { width: 280px; margin-bottom: 34px; }
.geo-copy h2 { max-width: 600px; }.geo-copy .section-lead { max-width: 590px; }
.geo-points { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; }
.geo-points div { padding: 14px 0; border-top: 1px solid var(--line); }
.geo-points b, .geo-points span { display: block; }.geo-points b { margin-bottom: 5px; font-size: 16px; }.geo-points span { color: var(--muted); font-size: 13px; }
.geo-answer { position: relative; min-height: 630px; padding: 105px 58px 44px; border: 1px solid rgba(86,58,134,.14); border-radius: 32px; background: linear-gradient(145deg,#f4f0f8,#fff); overflow: hidden; }
.gold-rule { position: absolute; top: 72px; left: 70px; right: 70px; height: 6px; border-radius: 8px; background: var(--gold); }
.gold-rule::after { content: ""; position: absolute; right: -25px; width: 16px; height: 6px; border-radius: 8px; background: var(--purple); }
.question, .answer { background: white; border: 1px solid rgba(86,58,134,.12); box-shadow: var(--shadow); }
.question { width: 82%; padding: 20px; border-radius: 16px; }
.question small, .question b { display: block; }.question small { margin-bottom: 7px; color: var(--purple); font-weight: 800; }.question b { font-size: 18px; }
.answer { width: 88%; margin: 30px 0 0 auto; padding: 28px; border-radius: 22px; }
.answer img { width: 170px; }.answer p { margin: 22px 0 0; color: #655e6d; line-height: 1.7; }.answer strong { display: block; margin-top: 20px; padding: 15px 17px; border-left: 5px solid var(--gold); border-radius: 0 10px 10px 0; background: #fff8e9; }
.platform-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }

.journey-section { min-height: 840px; overflow: hidden; }
.journey-section h2 .tone-gold { color: var(--gold-deep); }.journey-section h2 .tone-purple { color: var(--purple); }.journey-section h2 .tone-ink { color: var(--ink); }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 30px; margin-top: 128px; min-height: 450px; }
.journey-line { position: absolute; left: 16px; right: 16px; top: 128px; height: 6px; border-radius: 8px; background: var(--gold); }
.journey-line::after { content: ""; position: absolute; right: -25px; width: 17px; height: 6px; border-radius: 8px; background: var(--purple); }
.journey-step { position: relative; min-width: 0; }
.journey-media { position: absolute; left: 0; top: -8px; width: min(165px,85%); height: 100px; padding: 16px; border: 1px solid rgba(86,58,134,.14); border-radius: 14px; background: white; box-shadow: 0 12px 30px rgba(48,35,67,.08); }
.journey-media b { display: block; font-size: 13px; }.journey-media i { display: block; width: 84%; height: 6px; margin-top: 9px; border-radius: 8px; background: #e4dfe7; }.journey-media i:first-of-type { width: 62%; background: var(--gold); }
.journey-dot { position: absolute; left: 0; top: 112px; width: 31px; height: 31px; border: 8px solid var(--purple); border-radius: 50%; background: white; box-shadow: 0 0 0 8px rgba(86,58,134,.1); }
.journey-text { position: absolute; left: 0; top: 178px; max-width: 235px; }
.journey-text small { color: var(--gold-deep); font-weight: 900; }.journey-text h3 { margin: 11px 0 8px; font-size: 24px; }.journey-text p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.journey-step.reverse .journey-media { top: 176px; }.journey-step.reverse .journey-text { top: -32px; }.journey-step.reverse .journey-dot { border-color: var(--gold); box-shadow: 0 0 0 8px rgba(240,170,50,.14); }

.services-section { padding-top: 120px; padding-bottom: 120px; }
.services-layout { margin-top: 55px; min-height: 585px; display: grid; grid-template-columns: 46% 54%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.featured-service { position: relative; padding: 48px; color: white; background: var(--purple); overflow: hidden; }
.featured-service::after { content: ""; position: absolute; right: -150px; top: -160px; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 72px rgba(255,255,255,.035),0 0 0 144px rgba(255,255,255,.022); }
.featured-service > small { color: #f7c66f; font-weight: 800; }.featured-service img { display: block; width: 310px; margin-top: 52px; }.featured-service h3 { margin: 37px 0 10px; font-size: 34px; }.featured-service p { max-width: 520px; color: rgba(255,255,255,.72); line-height: 1.7; }.featured-service a { position: absolute; left: 48px; bottom: 44px; color: white; text-decoration: none; font-weight: 800; }
.service-list { display: flex; flex-direction: column; background: white; }
.service-list > a { flex: 1; display: grid; grid-template-columns: 60px 180px 1fr 30px; gap: 15px; align-items: center; padding: 0 34px; border-bottom: 1px solid var(--line); text-decoration: none; }
.service-list > a:hover { background: #fcfafd; }.service-list > a small { color: var(--gold-deep); font-weight: 900; }.service-list > a b { font-size: 21px; }.service-list > a span { color: var(--muted); font-size: 13px; line-height: 1.55; }.service-list > a i { color: var(--purple); font-style: normal; font-size: 20px; }
.more-services { min-height: 66px; padding: 0 34px; display: flex; align-items: center; justify-content: flex-end; gap: 22px; color: var(--muted); font-size: 12px; }.more-services b { color: var(--ink); }

.scenarios-section { padding-top: 120px; padding-bottom: 120px; }
.scenarios-layout { margin-top: 55px; display: grid; grid-template-columns: minmax(0,54fr) minmax(0,46fr); gap: 70px; }
.scenario-list { border-top: 1px solid var(--line); }
.scenario-list article { min-height: 84px; display: grid; grid-template-columns: 48px 210px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); }.scenario-list small { color: var(--gold-deep); font-weight: 900; }.scenario-list h3 { margin: 0; font-size: 18px; }.scenario-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.question-list { position: relative; min-height: 470px; }.question-list::before { content: ""; position: absolute; left: 70px; top: 15px; bottom: 15px; width: 2px; background: linear-gradient(var(--gold),rgba(240,170,50,.1)); }
.question-item { position: absolute; left: 90px; right: 0; padding: 17px 20px; border: 1px solid rgba(86,58,134,.13); border-radius: 14px; background: white; box-shadow: 0 12px 30px rgba(48,35,67,.07); }.question-item::before { content: ""; position: absolute; left: -27px; top: 25px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(240,170,50,.14); }.question-item b, .question-item small { display: block; }.question-item b { font-size: 15px; }.question-item small { margin-top: 6px; color: #87808e; font-size: 11px; }
.question-1 { top: 0; }.question-2 { top: 110px; left: 130px; }.question-3 { top: 220px; }.question-4 { top: 330px; left: 130px; }

.why-section { min-height: 820px; display: grid; grid-template-columns: minmax(0,44fr) minmax(0,56fr); gap: 70px; align-items: center; }
.experience-panel { position: relative; min-height: 650px; padding: 48px; border-radius: 32px; color: white; background: var(--purple); overflow: hidden; }.experience-panel::after { content: ""; position: absolute; right: -180px; bottom: -240px; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 78px rgba(255,255,255,.035),0 0 0 156px rgba(255,255,255,.022); }.experience-panel > p:first-child { color: #f7c66f; font-weight: 800; letter-spacing: .08em; }.experience-panel > div { margin-top: 70px; }.experience-panel strong { color: var(--gold); font-size: 150px; line-height: .9; letter-spacing: -.08em; }.experience-panel span { margin-left: 16px; font-size: 25px; font-weight: 800; }.experience-panel h3 { max-width: 470px; margin: 32px 0 0; font-size: 31px; line-height: 1.4; }.experience-panel > p:last-child { max-width: 480px; color: rgba(255,255,255,.7); line-height: 1.8; }
.why-copy { padding: 10px 20px; }.why-copy .section-lead { max-width: 670px; }.reason-list { margin-top: 45px; border-top: 1px solid var(--line); }.reason-list article { display: grid; grid-template-columns: 55px 185px 1fr; gap: 14px; padding: 26px 0; border-bottom: 1px solid var(--line); }.reason-list small { color: var(--gold-deep); font-weight: 900; }.reason-list h3, .reason-list p { margin: 0; }.reason-list h3 { font-size: 19px; }.reason-list p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.contact-section { width: min(1448px, calc(100% - 64px)); min-height: 760px; margin: 60px auto 110px; display: grid; grid-template-columns: 57% 43%; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; }
.contact-message { position: relative; padding: 62px; color: white; background: var(--purple); overflow: hidden; }.contact-message::after { content: ""; position: absolute; right: -250px; top: -270px; width: 570px; height: 570px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 78px rgba(255,255,255,.035),0 0 0 156px rgba(255,255,255,.022); }.contact-message > p { color: #f7c66f; font-weight: 800; }.contact-message h2 { max-width: 600px; margin: 86px 0 0; color: white; font-size: clamp(48px,4vw,64px); line-height: 1.2; }.contact-message > span { display: block; max-width: 610px; margin-top: 24px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }.contact-phone { position: absolute; left: 62px; bottom: 62px; }.contact-phone small { display: block; color: rgba(255,255,255,.55); }.contact-phone a { display: block; margin-top: 9px; color: var(--gold); text-decoration: none; font-size: 38px; font-weight: 900; }
.lead-form, .download-form { padding: 55px; background: white; }.lead-form h2, .download-form h2 { margin: 0; font-size: 28px; }.lead-form > p, .download-form > p { color: var(--muted); font-size: 13px; }.lead-form label, .download-form label { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; color: #514a59; font-size: 13px; font-weight: 800; }.lead-form input, .download-form input, .download-form select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid #dcd6e2; border-radius: 8px; color: var(--ink); background: #fdfcfe; outline: none; }.lead-form input:focus, .download-form input:focus, .download-form select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(86,58,134,.12); }.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.lead-form > .button, .download-form > .button { width: 100%; margin-top: 28px; }.lead-form .privacy { flex-direction: row; align-items: flex-start; gap: 9px; color: #89828f; font-size: 11px; font-weight: 500; line-height: 1.6; }.lead-form .privacy input { width: 16px; height: 16px; margin: 1px 0 0; flex: none; }.form-status { min-height: 22px; margin-top: 12px; color: var(--purple); font-size: 13px; font-weight: 700; }

.site-footer { padding: 52px max(32px, calc((100vw - 1448px) / 2)) 26px; color: white; background: var(--ink); }.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1.35fr; gap: 88px; min-height: 230px; }.footer-grid h3 { margin: 0 0 23px; font-size: 14px; }.footer-grid a { display: block; margin-bottom: 14px; color: rgba(255,255,255,.58); text-decoration: none; font-size: 13px; }.footer-grid a:hover { color: white; }.footer-contact small { color: rgba(255,255,255,.48); font-size: 11px; }.footer-contact > a { margin-top: 10px; color: var(--gold); font-size: 28px; font-weight: 900; }.footer-contact p { color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.7; }.footer-legal { min-height: 68px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); display: flex; gap: 20px; color: rgba(255,255,255,.38); font-size: 11px; }.footer-legal span:first-child { margin-right: auto; }
.mobile-actions { display: none; }

.downloads-page { width: min(1448px, calc(100% - 64px)); min-height: 780px; margin: auto; padding: 110px 8px; display: grid; grid-template-columns: minmax(0,44fr) minmax(0,56fr); gap: 72px; align-items: center; background: linear-gradient(130deg,#fff,#fff 60%,#f5f1f9); }.downloads-copy h1 { margin: 0; font-size: 58px; }.downloads-copy > p { max-width: 560px; color: var(--muted); font-size: 16px; line-height: 1.8; }.download-items { margin-top: 48px; border-top: 1px solid var(--line); }.download-items article { min-height: 80px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }.download-items small { color: var(--gold-deep); font-weight: 900; }.download-items b { font-size: 16px; }.download-items span { color: var(--muted); font-size: 12px; }.download-form { border: 1px solid rgba(86,58,134,.14); border-radius: 26px; box-shadow: var(--shadow); }
.placeholder-page { width: min(1100px, calc(100% - 48px)); min-height: 650px; margin: auto; padding: 150px 0; }.placeholder-page h1 { margin: 0; font-size: 58px; }.placeholder-page > p:not(.section-kicker) { max-width: 620px; margin: 22px 0 35px; color: var(--muted); font-size: 17px; line-height: 1.8; }

/* Inner pages */
.products-journey-hero { width: min(1448px, calc(100% - 64px)); min-height: 780px; margin: auto; padding: 78px 8px 45px; overflow: hidden; }
.products-journey-hero > h1 { margin: 0; font-size: clamp(44px,4.2vw,64px); line-height: 1.18; letter-spacing: -.045em; }.products-journey-hero .tone-gold { color: var(--gold-deep); }.products-journey-hero .tone-purple { color: var(--purple); }.products-journey-hero .tone-ink { color: var(--ink); }.products-journey-hero > p:not(.section-kicker) { margin: 18px 0 0; color: var(--muted); font-size: 16px; }
.product-journey-track { position: relative; min-height: 455px; margin-top: 75px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 28px; }
.product-journey-line { position: absolute; left: 15px; right: 16px; top: 147px; height: 6px; border-radius: 8px; background: var(--gold); }.product-journey-line::after { content: ""; position: absolute; right: -25px; width: 17px; height: 6px; border-radius: 8px; background: var(--purple); }
.product-journey-step { position: relative; min-width: 0; }
.product-journey-card { position: absolute; left: 0; top: 0; width: min(175px,88%); min-height: 118px; padding: 17px; border: 1px solid rgba(86,58,134,.14); border-radius: 15px; background: white; box-shadow: 0 13px 32px rgba(48,35,67,.08); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }.product-journey-card:hover, .product-journey-card:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(48,35,67,.14); outline: none; }.product-journey-card b { display: block; font-size: 14px; }.product-journey-card i { display: block; width: 82%; height: 6px; margin-top: 9px; border-radius: 7px; background: #e3dee7; }.product-journey-card i:first-of-type { width: 62%; background: var(--gold); }.product-journey-card span { display: block; margin-top: 12px; color: var(--purple); font-size: 11px; font-weight: 800; }
.product-journey-dot { position: absolute; left: 0; top: 132px; width: 34px; height: 34px; border: 8px solid var(--purple); border-radius: 50%; background: white; box-shadow: 0 0 0 8px rgba(86,58,134,.1); }.product-journey-step:nth-child(5) .product-journey-dot { border-color: var(--gold); box-shadow: 0 0 0 8px rgba(240,170,50,.14); }
.product-journey-copy { position: absolute; left: 0; top: 205px; max-width: 235px; }.product-journey-copy small { color: var(--gold-deep); font-weight: 900; }.product-journey-copy h2 { margin: 10px 0 8px; font-size: 23px; }.product-journey-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.product-journey-step.reverse .product-journey-card { top: 205px; }.product-journey-step.reverse .product-journey-copy { top: 0; }
.reserved-product { width: min(1100px, calc(100% - 64px)); min-height: 650px; margin: auto; padding: 140px 0; }.reserved-product h1 { margin: 0; font-size: clamp(52px,5vw,72px); }.reserved-product > p:not(.section-kicker) { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.inner-hero { width: min(1200px, calc(100% - 64px)); margin: auto; padding: 120px 0 82px; text-align: center; }
.inner-hero h1 { max-width: 980px; margin: 0 auto; font-size: clamp(48px,5vw,72px); line-height: 1.14; letter-spacing: -.05em; }
.inner-hero > p:last-child { max-width: 760px; margin: 24px auto 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.product-directory { width: min(1320px, calc(100% - 64px)); margin: 0 auto 120px; border-top: 1px solid var(--line); }
.product-entry { min-height: 170px; padding: 32px 24px; display: grid; grid-template-columns: 70px 1fr 130px; gap: 28px; align-items: center; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s ease; }
.product-entry:hover { background: #faf8fc; }
.product-entry > small { color: var(--gold-deep); font-weight: 900; }
.product-entry h2 { margin: 0; font-size: 30px; }.product-entry p { max-width: 820px; margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-entry > span { color: var(--purple); font-size: 14px; font-weight: 800; text-align: right; }
.product-entry.featured { margin: 24px 0; padding: 42px; border: 0; border-radius: 22px; color: white; background: var(--purple); }.product-entry.featured small, .product-entry.featured > span { color: var(--gold); }.product-entry.featured p { color: rgba(255,255,255,.7); }
.more-products { width: min(1320px, calc(100% - 64px)); margin: 0 auto 120px; padding: 52px; display: grid; grid-template-columns: minmax(0,42fr) minmax(0,58fr); gap: 60px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }.more-products h2 { margin: 0; font-size: 28px; line-height: 1.5; }.more-product-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }.more-product-list article { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: white; }.more-product-list h3 { margin: 0; font-size: 17px; }.more-product-list p { color: var(--muted); font-size: 12px; }.more-product-list a { color: var(--purple); font-size: 13px; font-weight: 800; text-decoration: none; }

.detail-hero { width: min(1320px, calc(100% - 64px)); min-height: 690px; margin: auto; padding: 84px 0; display: grid; grid-template-columns: minmax(0,48fr) minmax(0,52fr); gap: 70px; align-items: center; }
.detail-hero h1 { margin: 0; font-size: clamp(48px,4.6vw,68px); line-height: 1.15; letter-spacing: -.05em; }.detail-hero h2 { max-width: 610px; margin: 22px 0 0; color: var(--gold-deep); font-size: 24px; line-height: 1.55; }.detail-hero > div:first-child > p:last-of-type { max-width: 600px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.detail-visual { position: relative; min-height: 500px; border: 1px solid rgba(86,58,134,.14); border-radius: 30px; background: linear-gradient(145deg,#f4f0f8,#fff); overflow: hidden; box-shadow: var(--shadow); }
.geo-detail-visual { padding: 60px; }.geo-detail-visual > img { width: 230px; }.detail-query { margin-top: 55px; padding: 18px; border-radius: 13px; background: white; color: #5f5767; box-shadow: 0 12px 30px rgba(48,35,67,.07); }.geo-detail-visual > strong { display: block; margin-top: 25px; padding: 18px; border-left: 5px solid var(--gold); border-radius: 0 11px 11px 0; background: #fff7e7; }.detail-platforms { position: absolute; left: 55px; right: 55px; bottom: 42px; display: flex; flex-wrap: wrap; gap: 8px; }.detail-platforms span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 7px; background: white; color: #696171; font-size: 11px; }
.caller-detail-visual { display: grid; place-items: center; }.detail-phone { width: 265px; height: 465px; padding: 12px; border-radius: 42px; background: var(--ink); transform: rotate(3deg); }.detail-phone > div { height: 100%; padding: 70px 20px; border-radius: 33px; background: white; text-align: center; }.detail-phone span, .detail-phone b, .detail-phone small, .detail-phone em { display: block; }.detail-phone span { width: 78px; height: 78px; margin: auto; display: grid; place-items: center; border-radius: 24px; color: white; background: var(--purple); font-size: 28px; }.detail-phone b { margin-top: 24px; font-size: 23px; }.detail-phone small { display: inline-block; margin-top: 12px; padding: 7px 10px; border-radius: 20px; color: #95620f; background: #fff0ca; }.detail-phone em { margin-top: 18px; color: #8f8796; font-style: normal; }.caller-detail-visual > p { position: absolute; right: 25px; bottom: 24px; margin: 0; color: var(--muted); font-size: 11px; }
.mini-detail-visual { display: flex; align-items: center; justify-content: center; gap: 28px; }.mini-phone { width: 255px; height: 455px; padding: 30px 22px; border: 10px solid var(--ink); border-radius: 38px; background: white; }.mini-brand { display: flex; align-items: center; gap: 10px; }.mini-brand img { width: 38px; }.mini-brand b { font-size: 14px; }.mini-phone h3 { margin: 35px 0 17px; font-size: 21px; }.mini-tile { height: 76px; margin-top: 12px; border-radius: 13px; background: var(--purple-soft); }.mini-tile.gold { background: #fff2d7; }.mini-lines i { display: block; height: 7px; margin-top: 12px; border-radius: 7px; background: #e2dde6; }.wechat-bubble { padding: 20px; border-radius: 14px; background: white; box-shadow: var(--shadow); color: var(--muted); font-size: 13px; }.wechat-bubble b { display: block; margin-top: 8px; color: var(--purple); }
.map-detail-visual { min-height: 480px; }.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(86,58,134,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(86,58,134,.08) 1px,transparent 1px); background-size: 55px 55px; transform: rotate(-8deg) scale(1.2); }.map-route { position: absolute; left: 80px; right: 90px; top: 230px; height: 9px; border-radius: 10px; background: var(--gold); transform: rotate(-12deg); }.map-marker { position: absolute; width: 44px; height: 44px; border-radius: 50% 50% 50% 8px; background: var(--purple); transform: rotate(-45deg); box-shadow: 0 12px 25px rgba(86,58,134,.2); }.marker-a { left: 90px; top: 270px; }.marker-b { right: 110px; top: 135px; background: var(--gold); }.map-card { position: absolute; left: 50%; top: 50%; width: 300px; padding: 22px; transform: translate(-50%,-50%); border-radius: 16px; background: white; box-shadow: var(--shadow); }.map-card b, .map-card span { display: block; }.map-card b { font-size: 20px; }.map-card span { margin-top: 8px; color: var(--muted); font-size: 12px; }

.problem-section, .process-section, .platform-section, .faq-section, .inner-cta { width: min(1320px, calc(100% - 64px)); margin: 0 auto 120px; }
.problem-section > h2, .process-section h2, .platform-section h2, .faq-section h2 { max-width: 900px; margin: 0; font-size: clamp(38px,3.5vw,52px); line-height: 1.2; letter-spacing: -.04em; }
.problem-grid { margin-top: 45px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.problem-grid article { min-height: 260px; padding: 35px; border-right: 1px solid var(--line); }.problem-grid article:last-child { border-right: 0; }.problem-grid small, .process-list small { color: var(--gold-deep); font-weight: 900; }.problem-grid h3 { margin: 55px 0 12px; font-size: 22px; }.problem-grid p, .process-list p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.process-section { padding: 64px; display: grid; grid-template-columns: minmax(0,38fr) minmax(0,62fr); gap: 70px; border-radius: 26px; color: white; background: var(--purple); }.process-section .section-kicker { color: #f6c36b; }.process-section h2 { color: white; }.process-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }.process-list article { padding: 20px 26px; border-left: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }.process-list article:nth-child(3), .process-list article:nth-child(4) { border-bottom: 0; }.process-list h3 { margin: 12px 0 8px; font-size: 18px; }.process-list p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }
.platform-section { text-align: center; }.platform-section h2 { margin: auto; }.platform-section > div { margin-top: 35px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }.platform-section span { min-width: 120px; padding: 17px; border: 1px solid var(--line); border-radius: 11px; background: white; font-weight: 800; }
.faq-section { max-width: 1040px; }.faq-list { margin-top: 38px; border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--purple); }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { max-width: 850px; margin: 0; padding: 0 0 25px; color: var(--muted); line-height: 1.8; }
.inner-cta { padding: 55px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }.inner-cta h2 { margin: 0; font-size: 32px; }.inner-cta p:not(.section-kicker) { color: var(--muted); }.inner-cta .button { flex: none; }

.about-hero { width: min(1320px, calc(100% - 64px)); min-height: 690px; margin: auto; padding: 90px 0; display: grid; grid-template-columns: minmax(0,58fr) minmax(0,42fr); gap: 70px; align-items: center; }.about-hero h1 { margin: 0; max-width: 850px; font-size: clamp(52px,5vw,72px); line-height: 1.16; letter-spacing: -.05em; }.about-hero > div:first-child > p:last-child { max-width: 760px; color: var(--muted); font-size: 17px; line-height: 1.9; }.about-symbol { min-height: 450px; border-radius: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(145deg,#f2edf7,#fff); border: 1px solid var(--line); }.about-symbol img { width: 190px; }.about-symbol span { margin-top: 22px; font-size: 20px; font-weight: 800; }
.about-values { width: min(1320px, calc(100% - 64px)); margin: 0 auto 110px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.about-values article { min-height: 260px; padding: 38px; border-right: 1px solid var(--line); }.about-values article:last-child { border-right: 0; }.about-values small { color: var(--gold-deep); font-weight: 900; }.about-values h2 { margin: 55px 0 12px; font-size: 25px; }.about-values p { color: var(--muted); line-height: 1.75; }
.about-experience { width: min(1320px, calc(100% - 64px)); margin: 0 auto 120px; padding: 65px; display: grid; grid-template-columns: 170px 220px 1fr; align-items: center; gap: 28px; border-radius: 25px; color: white; background: var(--purple); }.about-experience strong { color: var(--gold); font-size: 110px; line-height: .8; }.about-experience span { font-size: 24px; font-weight: 800; }.about-experience p { color: rgba(255,255,255,.7); line-height: 1.8; }
.contact-page { width: min(1200px, calc(100% - 64px)); min-height: 760px; margin: auto; padding: 80px 0; display: grid; grid-template-columns: minmax(0,48fr) minmax(0,52fr); gap: 70px; align-items: center; }.contact-page-copy h1 { margin: 0; font-size: clamp(50px,5vw,72px); line-height: 1.15; }.contact-page-copy > p:not(.section-kicker) { max-width: 580px; color: var(--muted); font-size: 17px; line-height: 1.8; }.contact-page-copy > small { display: block; margin-top: 70px; color: var(--muted); }.contact-page-copy > a { display: block; margin-top: 10px; color: var(--gold-deep); text-decoration: none; font-size: 38px; font-weight: 900; }.contact-page .lead-form { border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow); }
.legal-page, .sitemap-page { width: min(920px, calc(100% - 64px)); min-height: 700px; margin: auto; padding: 105px 0 120px; }.legal-page h1, .sitemap-page h1 { margin: 0; font-size: 58px; }.legal-date { color: var(--muted); }.legal-page section { margin-top: 55px; }.legal-page section h2 { font-size: 22px; }.legal-page section p { color: var(--muted); line-height: 1.9; }.sitemap-page > div { margin-top: 50px; border-top: 1px solid var(--line); }.sitemap-page a { min-height: 76px; display: grid; grid-template-columns: 55px 1fr 25px; align-items: center; border-bottom: 1px solid var(--line); text-decoration: none; }.sitemap-page small { color: var(--gold-deep); }.sitemap-page span { font-weight: 800; }.sitemap-page b { color: var(--purple); }

/* Editable media, revised product pages and company culture */
.hero-slide[data-slide="1"] .hero-description { color: var(--purple); font-size: 15px; font-weight: 800; }
.hero-slide[data-slide="2"] .hero-description { max-width: 660px; color: #726a79; font-size: 14px; font-weight: 700; }
.floating-note { width: 220px; }
.note-a { left: -26px; top: 120px; }.note-b { right: -20px; bottom: 80px; }
.media-slot { min-width: 0; width: 100%; }.hero-media-slot { height: 100%; display: flex; align-items: center; }.hero-media-slot > * { width: 100%; }.product-media-slot { min-height: 500px; }.uploaded-media { display: block; width: 100%; height: 100%; min-height: inherit; max-height: 600px; object-fit: contain; border: 1px solid rgba(86,58,134,.14); border-radius: 30px; background: linear-gradient(145deg,#f4f0f8,#fff); box-shadow: var(--shadow); }
.more-products { grid-template-columns: minmax(0,30fr) minmax(0,70fr); gap: 50px; align-items: center; }.more-products h2 { font-size: 35px; }.custom-service-title { color: var(--gold-deep); }.more-product-list { grid-template-columns: repeat(3,1fr); }
.map-platforms { position: absolute; left: 24px; right: 24px; bottom: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }.map-platforms span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,.94); color: #625a6a; font-size: 10px; font-weight: 700; }
.core-section { padding: 110px max(32px,calc((100vw - 1320px)/2)); margin-bottom: 120px; background: #f5f7fa; text-align: center; }.core-section > h2 { margin: 0; font-size: clamp(40px,3.5vw,54px); }.core-grid { max-width: 1320px; margin: 45px auto 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; text-align: left; }.core-grid.core-count-4 { max-width: 930px; grid-template-columns: repeat(2,minmax(0,1fr)); }.core-grid article { position: relative; min-height: 255px; padding: 34px; border: 1px solid #e6e9ee; border-radius: 17px; background: white; box-shadow: 0 12px 32px rgba(40,35,51,.045); }.core-grid article > span { position: absolute; right: 25px; top: 22px; color: #c7bfce; font-size: 12px; font-weight: 900; }.core-grid article > i { position: relative; display: block; width: 46px; height: 46px; border: 2px solid var(--purple); border-radius: 13px; }.core-grid article > i::before { content: ""; position: absolute; left: 11px; top: 20px; width: 23px; height: 6px; border-radius: 8px; background: var(--gold); transform: rotate(-28deg); }.core-grid h3 { margin: 33px 0 10px; font-size: 21px; }.core-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.about-hero h1 .tone-purple { color: var(--purple); }.about-hero h1 .tone-gold { color: var(--gold-deep); }
.culture-section { width: min(1320px,calc(100% - 64px)); margin: 0 auto 110px; display: grid; grid-template-columns: minmax(0,34fr) minmax(0,66fr); gap: 70px; align-items: start; }.culture-section > div:first-child h2 { margin: 0; font-size: 38px; line-height: 1.4; }.culture-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.culture-grid article { min-height: 300px; padding: 34px 26px; border-right: 1px solid var(--line); }.culture-grid article:last-child { border-right: 0; }.culture-grid small { color: var(--gold-deep); font-size: 12px; font-weight: 900; }.culture-grid h3 { margin: 65px 0 12px; font-size: 23px; line-height: 1.45; }.culture-grid p { color: var(--muted); font-size: 13px; line-height: 1.75; }
.metrics-section { width: min(1320px,calc(100% - 64px)); margin: 0 auto 120px; padding: 46px 36px; display: grid; grid-template-columns: repeat(4,1fr); border-radius: 24px; background: var(--purple); }.metrics-section article { min-height: 120px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px solid rgba(255,255,255,.17); }.metrics-section article:last-child { border-right: 0; }.metrics-section strong { color: var(--gold); font-size: 44px; line-height: 1; }.metrics-section span { margin-top: 14px; color: rgba(255,255,255,.78); font-size: 15px; }
.detail-hero { grid-template-columns: minmax(0,52fr) minmax(0,48fr); }
.detail-hero h1.long-title { max-width: 700px; font-size: clamp(42px,3.5vw,54px); line-height: 1.16; text-wrap: balance; }
.core-section > h2.section-kicker { margin: 0; color: var(--purple); font-size: 14px; line-height: 1.3; letter-spacing: .08em; }
.core-section .core-grid { margin-top: 30px; }
.faq-section > h2 { margin-bottom: 0; }
.contact-page-v2 { width: min(1200px,calc(100% - 64px)); min-height: 850px; margin: auto; padding: 92px 0 110px; }.contact-page-v2 > header { margin-bottom: 46px; }.contact-page-v2 > header .section-kicker { margin-bottom: 8px; }.contact-page-v2 > header h1 { margin: 0; font-size: clamp(52px,5vw,72px); line-height: 1.1; letter-spacing: -.05em; }
.contact-layout { display: grid; grid-template-columns: minmax(0,58fr) minmax(0,42fr); overflow: hidden; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }.contact-lead-form { padding: 48px 52px; }.contact-lead-form > h2 { font-size: 30px; }.contact-lead-form > p { margin-bottom: 30px; }.contact-lead-form .field-head, .download-form .field-head { display: flex; flex-direction: row; align-items: center; justify-content: space-between; }.contact-lead-form .field-head b, .download-form .field-head b { color: #514a59; font-size: 13px; }.contact-lead-form .field-head em, .download-form .field-head em { color: #9a92a1; font-size: 11px; font-style: normal; font-weight: 500; }.contact-lead-form .privacy a, .download-form .privacy a { color: var(--purple); text-decoration: none; }
.contact-details { padding: 48px; background: linear-gradient(145deg,#f3eff8,#faf8fc); }.contact-detail { padding: 5px 0 30px; border-bottom: 1px solid #ddd6e5; }.contact-detail + .contact-detail { padding-top: 30px; }.contact-detail small, .contact-detail strong { display: block; }.contact-detail small { color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .08em; }.contact-detail strong { margin-top: 12px; font-size: 22px; }.contact-detail a { display: block; margin-top: 11px; color: var(--gold-deep); font-size: 32px; font-weight: 900; text-decoration: none; }.promise-list { padding-top: 35px; }.promise-list h2 { margin: 0 0 15px; font-size: 24px; }.promise-list ol { margin: 0; padding: 0; list-style: none; }.promise-list li { min-height: 66px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border-bottom: 1px solid #ddd6e5; }.promise-list li:last-child { border-bottom: 0; }.promise-list li small { color: var(--gold-deep); font-weight: 900; }.promise-list li span { font-size: 14px; font-weight: 700; }
.not-found { width: min(920px,calc(100% - 48px)); min-height: 650px; margin: auto; padding: 130px 0; }.not-found h1 { margin: 0; font-size: clamp(52px,6vw,80px); }.not-found > p:not(.section-kicker) { margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.download-item > div b, .download-item > div span { display: block; }.download-item > div span { margin-top: 6px; }.download-button { min-width: 128px; padding: 10px 13px; border-radius: 8px; color: var(--purple); background: var(--purple-soft); text-align: center; text-decoration: none; font-size: 12px; font-weight: 800; }.download-button.is-locked { color: #8d8594; background: #f1eef3; }.download-unlocked { min-height: 420px; padding: 48px; border: 1px solid rgba(86,58,134,.14); border-radius: 26px; background: linear-gradient(145deg,#f4f0f8,#fff); box-shadow: var(--shadow); }.download-unlocked small { color: var(--purple); font-weight: 800; }.download-unlocked h2 { margin: 28px 0 12px; font-size: 34px; }.download-unlocked p { color: var(--muted); line-height: 1.8; }
.inner-page-label { width: min(1320px,calc(100% - 64px)); margin: 0 auto; padding-top: 92px; }.inner-page-label span { display: block; color: var(--purple); font-size: 14px; font-weight: 800; letter-spacing: .08em; line-height: 1.4; }.inner-page-label + .about-hero { min-height: 610px; padding-top: 28px; }.inner-page-label + .downloads-page { padding-top: 28px; }.inner-page-label + .contact-page-v2 { padding-top: 28px; }.contact-lead-form > h1 { margin: 0; font-size: 30px; line-height: 1.3; }.contact-lead-form > h1 + p { margin-bottom: 30px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .desktop-nav, .header-phone { display: none; }
  .site-header { padding: 0 24px; }.brand { width: 196px; }.header-cta { margin-left: auto; }
  .menu-toggle { margin-left: 12px; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 9px; display: grid; align-content: center; gap: 6px; padding: 0 11px; background: white; }.menu-toggle span { display: block; height: 2px; background: var(--ink); }.mobile-nav { position: absolute; left: 16px; right: 16px; top: 78px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }.mobile-nav.is-open { display: block; }.mobile-nav a { display: block; padding: 13px 12px; border-radius: 8px; text-decoration: none; font-weight: 700; }
  .hero-slide { grid-template-columns: 1fr 1fr; }.asset-label { display: none; }
  .section, .contact-section { width: calc(100% - 48px); }.section-heading { grid-template-columns: 1fr; }.geo-section { gap: 36px; }.services-layout { grid-template-columns: 1fr; }.featured-service { min-height: 530px; }.service-list { min-height: 470px; }.scenarios-layout, .why-section { gap: 35px; }.footer-grid { gap: 40px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 62px; }.site-header { height: 72px; }.brand { width: 170px; }.header-cta { display: none; }
  .hero { min-height: 760px; }.hero-track { width: calc(100% - 36px); min-height: 760px; }.hero-slide { grid-template-columns: 1fr; align-content: start; padding: 54px 0 72px; gap: 22px; }.hero h1, .hero h2 { font-size: clamp(39px,11vw,51px); }.hero-subtitle { font-size: 18px; }.hero-description { max-width: 92%; }.hero-actions { margin-top: 26px; }.button { min-height: 47px; padding: 0 17px; font-size: 14px; }.carousel-controls { left: 18px; bottom: 22px; }.carousel-count { right: 18px; bottom: 28px; }
  .asset-visual, .caller-visual { height: 310px; }.asset-ring { display: none; }.asset-core { width: 235px; height: 185px; }.asset-core img { width: 80px; }.hero-ai { width: 100%; min-height: 300px; margin: 0; padding: 18px; }.ai-platforms { display: none; }.ai-brand img { width: 140px; }.ai-query { font-size: 12px; }.hero-ai > p { font-size: 12px; }.hero-ai > strong { font-size: 13px; }.phone-shell { width: 180px; height: 320px; top: -10px; }.phone-screen { padding-top: 44px; }.caller-avatar { width: 58px; height: 58px; font-size: 22px; }.phone-screen b { font-size: 18px; }.call-actions { margin-top: 24px; }.call-actions i { width: 42px; height: 42px; }.floating-note { display: none; }
  .section { width: calc(100% - 36px); padding: 82px 0; }.section h2 { font-size: 38px; }.section-lead { font-size: 15px; }.section-heading { gap: 15px; }
  .geo-section { grid-template-columns: 1fr; }.product-logo { width: 220px; }.geo-points { grid-template-columns: 1fr; }.geo-answer { min-height: 550px; padding: 84px 18px 28px; }.gold-rule { left: 22px; right: 44px; top: 52px; }.question, .answer { width: 100%; }.answer { margin-top: 22px; }.platform-row { justify-content: flex-start; }
  .journey-section { overflow: visible; }.journey-track { display: block; margin-top: 55px; min-height: 970px; padding-left: 58px; }.journey-line { left: 14px; top: 12px; bottom: 16px; width: 6px; height: auto; }.journey-line::after { left: 0; top: auto; right: auto; bottom: -24px; width: 6px; height: 17px; }.journey-step { min-height: 190px; display: grid; grid-template-columns: 108px 1fr; gap: 18px; align-items: start; }.journey-step.reverse { direction: ltr; }.journey-media, .journey-step.reverse .journey-media { position: relative; left: auto; top: auto; width: 108px; height: 82px; padding: 12px; }.journey-dot, .journey-step.reverse .journey-dot { left: -58px; top: 0; }.journey-text, .journey-step.reverse .journey-text { position: relative; left: auto; top: auto; max-width: none; }.journey-text h3 { margin-top: 7px; font-size: 21px; }.journey-text p { font-size: 13px; }
  .services-layout { margin-top: 35px; }.featured-service { min-height: 520px; padding: 30px; }.featured-service img { width: 230px; }.featured-service h3 { font-size: 29px; }.featured-service a { left: 30px; bottom: 32px; }.service-list > a { min-height: 130px; grid-template-columns: 38px 1fr 25px; padding: 20px; }.service-list > a span { grid-column: 2 / 3; }.service-list > a i { grid-column: 3; grid-row: 1 / span 2; }.more-services { justify-content: flex-start; flex-wrap: wrap; padding: 18px 20px; }
  .scenarios-layout { grid-template-columns: 1fr; }.scenario-list article { grid-template-columns: 38px 1fr; padding: 18px 0; }.scenario-list p { grid-column: 2; }.question-list { min-height: 430px; }.question-list::before { left: 20px; }.question-item, .question-2, .question-4 { left: 46px; }.question-item::before { left: -31px; }
  .why-section { grid-template-columns: 1fr; }.experience-panel { min-height: 560px; padding: 32px; }.experience-panel strong { font-size: 120px; }.experience-panel h3 { font-size: 28px; }.reason-list article { grid-template-columns: 38px 1fr; }.reason-list p { grid-column: 2; }
  .contact-section { width: calc(100% - 36px); min-height: 0; margin: 45px auto 80px; grid-template-columns: 1fr; }.contact-message { min-height: 560px; padding: 34px; }.contact-message h2 { margin-top: 70px; font-size: 44px; }.contact-phone { left: 34px; bottom: 42px; }.contact-phone a { font-size: 29px; }.lead-form, .download-form { padding: 32px 24px; }.two-fields { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding: 46px 22px 28px; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 25px; }.footer-contact > a { font-size: 24px; }.footer-legal { flex-direction: column; gap: 9px; }.footer-legal span:first-child { margin-right: 0; }
  .mobile-actions { position: fixed; z-index: 110; left: 0; right: 0; bottom: 0; height: 62px; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -8px 28px rgba(40,35,51,.12); }.mobile-actions a { display: grid; place-items: center; text-decoration: none; font-weight: 800; background: white; }.mobile-actions a:last-child { color: white; background: var(--purple); }
  .downloads-page { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 50px; padding: 80px 0; }.downloads-copy h1 { font-size: 48px; }.download-items article { grid-template-columns: 38px 1fr; padding: 15px 0; }.download-items span { grid-column: 2; margin-top: 5px; }
  .inner-hero { width: calc(100% - 36px); padding: 80px 0 56px; text-align: left; }.inner-hero h1 { font-size: 44px; }.inner-hero > p:last-child { font-size: 15px; }
  .products-journey-hero { width: calc(100% - 36px); padding: 70px 0 35px; }.products-journey-hero > h1 { font-size: 38px; }.product-journey-track { display: block; min-height: 1030px; margin-top: 50px; padding-left: 58px; }.product-journey-line { left: 14px; top: 14px; bottom: 24px; width: 6px; height: auto; }.product-journey-line::after { left: 0; right: auto; top: auto; bottom: -23px; width: 6px; height: 17px; }.product-journey-step { min-height: 200px; display: grid; grid-template-columns: 116px 1fr; gap: 17px; align-items: start; }.product-journey-card, .product-journey-step.reverse .product-journey-card { position: relative; left: auto; top: auto; width: 116px; min-height: 102px; padding: 13px; }.product-journey-card span { display: none; }.product-journey-dot { left: -58px; top: 0; }.product-journey-copy, .product-journey-step.reverse .product-journey-copy { position: relative; left: auto; top: auto; max-width: none; }.product-journey-copy h2 { font-size: 21px; }.product-journey-copy p { font-size: 12px; }.reserved-product { width: calc(100% - 36px); min-height: 560px; padding: 100px 0; }.reserved-product h1 { font-size: 48px; }
  .product-directory { width: calc(100% - 36px); margin-bottom: 80px; }.product-entry, .product-entry.featured { min-height: 0; margin: 0; padding: 26px 6px; grid-template-columns: 36px 1fr; gap: 12px; border-radius: 0; }.product-entry > span { grid-column: 2; text-align: left; }.product-entry.featured { margin: 12px 0; padding: 28px 22px; border-radius: 16px; }.product-entry h2 { font-size: 25px; }
  .more-products { width: calc(100% - 36px); margin-bottom: 80px; padding: 28px 20px; grid-template-columns: 1fr; gap: 28px; }.more-products h2 { font-size: 22px; }.more-product-list { grid-template-columns: 1fr; }
  .detail-hero { width: calc(100% - 36px); padding: 75px 0; grid-template-columns: 1fr; gap: 45px; }.detail-hero h1 { font-size: 44px; }.detail-hero h2 { font-size: 20px; }.detail-visual { min-height: 430px; }.geo-detail-visual { padding: 35px 24px; }.detail-platforms { left: 24px; right: 24px; bottom: 25px; }.detail-query { margin-top: 38px; }.caller-detail-visual > p { right: 14px; }.mini-detail-visual { gap: 12px; }.mini-phone { width: 210px; height: 390px; }.wechat-bubble { position: absolute; right: 12px; bottom: 24px; }.map-card { width: 250px; }
  .problem-section, .process-section, .platform-section, .faq-section, .inner-cta { width: calc(100% - 36px); margin-bottom: 80px; }.problem-section > h2, .process-section h2, .platform-section h2, .faq-section h2 { font-size: 36px; }.problem-grid { grid-template-columns: 1fr; }.problem-grid article { min-height: 0; padding: 28px 6px; border-right: 0; border-bottom: 1px solid var(--line); }.problem-grid article:last-child { border-bottom: 0; }.problem-grid h3 { margin-top: 24px; }.process-section { padding: 32px 24px; grid-template-columns: 1fr; gap: 32px; }.process-list { grid-template-columns: 1fr; }.process-list article { border-left: 0; border-bottom: 1px solid rgba(255,255,255,.15) !important; padding: 20px 0; }.process-list article:last-child { border-bottom: 0 !important; }.platform-section span { min-width: 100px; }.faq-list summary { font-size: 16px; }.inner-cta { padding: 30px 24px; display: block; }.inner-cta h2 { font-size: 28px; }.inner-cta .button { margin-top: 18px; }
  .about-hero { width: calc(100% - 36px); min-height: 0; padding: 75px 0; grid-template-columns: 1fr; gap: 45px; }.about-hero h1 { font-size: 45px; }.about-symbol { min-height: 360px; }.about-values { width: calc(100% - 36px); margin-bottom: 80px; grid-template-columns: 1fr; }.about-values article { min-height: 0; padding: 30px 6px; border-right: 0; border-bottom: 1px solid var(--line); }.about-values article:last-child { border-bottom: 0; }.about-values h2 { margin-top: 25px; }.about-experience { width: calc(100% - 36px); margin-bottom: 80px; padding: 35px 28px; grid-template-columns: 1fr; }.about-experience strong { font-size: 100px; }.about-experience span { margin-top: -40px; margin-left: 125px; }
  .contact-page { width: calc(100% - 36px); min-height: 0; padding: 70px 0; grid-template-columns: 1fr; gap: 50px; }.contact-page-copy h1 { font-size: 45px; }.contact-page-copy > small { margin-top: 45px; }.contact-page-copy > a { font-size: 30px; }
  .legal-page, .sitemap-page { width: calc(100% - 36px); padding: 80px 0; }.legal-page h1, .sitemap-page h1 { font-size: 48px; }
}

@media (max-width: 760px) {
  .hero-media-slot { min-height: 300px; }.product-media-slot { min-height: 430px; }
  .more-products { grid-template-columns: 1fr; }.more-product-list { grid-template-columns: 1fr; }
  .core-section { padding: 75px 18px; margin-bottom: 80px; }.core-grid, .core-grid.core-count-4 { grid-template-columns: 1fr; gap: 14px; }.core-grid article { min-height: 220px; padding: 28px; }
  .map-platforms { left: 12px; right: 12px; bottom: 14px; gap: 5px; }.map-platforms span { padding: 6px; font-size: 9px; }
  .culture-section { width: calc(100% - 36px); margin-bottom: 80px; grid-template-columns: 1fr; gap: 35px; }.culture-section > div:first-child h2 { font-size: 31px; }.culture-grid { grid-template-columns: 1fr; }.culture-grid article { min-height: 0; padding: 28px 4px; border-right: 0; border-bottom: 1px solid var(--line); }.culture-grid article:last-child { border-bottom: 0; }.culture-grid h3 { margin-top: 28px; }
  .metrics-section { width: calc(100% - 36px); margin-bottom: 80px; padding: 20px; grid-template-columns: 1fr 1fr; }.metrics-section article { min-height: 125px; }.metrics-section article:nth-child(2) { border-right: 0; }.metrics-section article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }.metrics-section strong { font-size: 34px; }
}

@media (max-width: 760px) {
  .contact-page-v2 { width: calc(100% - 36px); min-height: 0; padding: 70px 0 80px; }
  .contact-page-v2 > header { margin-bottom: 30px; }
  .contact-page-v2 > header h1 { font-size: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-lead-form { padding: 32px 24px; }
  .contact-details { padding: 32px 24px; }
  .contact-detail a { font-size: 27px; }
  .mobile-actions.single { grid-template-columns: 1fr; }
  .download-items .download-item { grid-template-columns: 38px 1fr; }
  .download-item > div { grid-column: 2; }
  .download-button { grid-column: 2; justify-self: start; margin-top: 12px; }
  .download-unlocked { min-height: 320px; padding: 32px 24px; }
  .inner-page-label { width: calc(100% - 36px); padding-top: 62px; }
  .inner-page-label + .about-hero,
  .inner-page-label + .downloads-page,
  .inner-page-label + .contact-page-v2 { padding-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.custom-detail-hero .product-media-slot{min-height:510px}.custom-service-visual{width:100%;height:100%;min-height:510px;padding:56px;display:flex;flex-direction:column;justify-content:center;border:1px solid #e4deeb;border-radius:28px;background:linear-gradient(145deg,#f3eff8,#fff);overflow:hidden;position:relative}.custom-service-visual span{position:relative;z-index:2;color:#2a2431;font-size:34px;font-weight:800}.custom-service-visual small{position:relative;z-index:2;margin-top:14px;color:#5b3d8c;font-size:16px}.custom-service-visual i{position:absolute;width:220px;height:14px;border-radius:20px;background:#e6a021;transform:rotate(-22deg)}.custom-service-visual i:nth-of-type(1){right:-30px;top:110px}.custom-service-visual i:nth-of-type(2){right:85px;top:210px;width:330px;background:#5b3d8c}.custom-service-visual i:nth-of-type(3){right:-60px;bottom:100px;width:280px}@media(max-width:700px){.custom-detail-hero .product-media-slot,.custom-service-visual{min-height:340px}.custom-service-visual{padding:34px}.custom-service-visual span{font-size:28px}}
