/* 全站共享视觉规则：本地系统字体和本地资源，无外部样式运行时。 */
:root {
  --brand: #1b6fe8;
  --brand-dark: #1455b8;
  --blue: var(--brand);
  --blue-dark: var(--brand-dark);
  --ink: #203a63;
  --muted: #5f718c;
  --line: #e1eaf6;
  --tint: #f3f7ff;
  --cream: #f8fbff;
  --mint: #eef7ff;
  --gold: #5aa9e6;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --motion-fast: 240ms;
  --motion-card: 520ms;
  --motion-enter: 800ms;
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; color: var(--ink); background: #f7faff; font: 16px/1.8 -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; -webkit-font-smoothing: antialiased; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { line-height: 1.35; }
h1 { font-size: clamp(36px, 4.2vw, 58px); letter-spacing: -.04em; font-weight: 650; }
h2 { font-size: 34px; letter-spacing: -.025em; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; height: auto; }
svg { flex-shrink: 0; }
:focus-visible { outline: 3px solid #2b63e8; outline-offset: 5px; }
main:focus { outline: none; }
.container { width: min(1200px, calc(100% - 80px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 10px 20px; color: #fff; background: var(--blue); border-radius: 8px; }
.skip-link:focus { top: 10px; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #e9eef6; background: rgba(255,255,252,.97); }
.header-inner { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { font-size: 23px; font-weight: 650; line-height: 1.3; letter-spacing: .08em; }
.brand small { display: block; margin-top: 5px; font-size: 10px; font-weight: 500; letter-spacing: .04em; color: var(--muted); }
.site-header .brand img { width: 145px; height: 40px; }
.main-nav { display: flex; align-items: center; gap: 29px; }
.main-nav > a { font-size: 18px; font-weight: 500; white-space: nowrap; }
.main-nav > a:not(.button) { padding: 12px 0; border-bottom: 2px solid transparent; }
.main-nav > a:not(.button):hover, .main-nav > a[aria-current="page"] { color: var(--blue); border-bottom-color: var(--blue); }
.menu-toggle { display: none; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 12px 23px; background: var(--blue); color: #fff; border: 1px solid transparent; border-radius: 30px; font-size: 15px; font-weight: 550; line-height: 1.5; transition: background .18s, transform .18s; }
.button .arrow { display: none; }
.button:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 9px 22px -12px #315eaf88; }
.button-small { min-height: 42px; padding: 9px 16px; }
.button-secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.button-secondary:hover { color: var(--blue); background: #f3f7ff; }
.button-white { background: #fff; color: var(--blue-dark); }
.button-white:hover { background: #eaf0ff; }
.button-outline-light { border-color: #91adf0; background: transparent; color: #fff; }
.button-outline-light:hover { background: #1945b6; }
.arrow { width: 20px; height: 20px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--blue); }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.hero { padding: 78px 0 80px; background: linear-gradient(112deg, #fff 40%, #f0f5ff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.13fr 1fr; gap: 65px; align-items: center; }
.hero h1 { font-size: clamp(34px, 3.7vw, 52px); line-height: 1.4; }
.hero h1 span { color: var(--blue); }
.hero-description { font-size: 18px; line-height: 1.9; max-width: 500px; margin: 25px 0 30px; }
.hero-note { font-size: 13px; margin-top: 25px; color: #687991; }
.audience-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; }
.audience-grid article { padding: 42px 58px 45px 0; }
.audience-grid article + article { padding-left: 65px; padding-right: 0; border-left: 1px solid var(--line); }
.section-index { display: block; margin-bottom: 16px; color: var(--blue); font-size: 12px; letter-spacing: .06em; }
.audience-grid h2 { font-size: 26px; }
.audience-grid p { margin: 17px 0; max-width: 430px; font-size: 15px; }
.section { padding: 84px 0; }
.section-tint { background: var(--tint); }
.section-heading { display: flex; gap: 25px; justify-content: space-between; align-items: end; margin-bottom: 40px; }
.section-heading p { margin-top: 14px; }
.section-heading > .text-link { flex-shrink: 0; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); padding: 0; margin: 0; list-style: none; }
.process-grid li { border-top: 1px solid #cddbf1; padding: 25px 20px 0 0; position: relative; }
.process-grid li::before { content: ""; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; position: absolute; top: -4px; left: 0; }
.step-number { display: block; color: #426dcc; font-size: 13px; font-weight: 600; margin-bottom: 15px; letter-spacing: .06em; }
.process-grid h3 { font-size: 18px; margin-bottom: 12px; }
.process-grid p { font-size: 14px; line-height: 1.85; }
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; }
.section-lead { font-size: 17px; margin-top: 22px; margin-bottom: 28px; }
.detail-list article { padding: 23px 0; border-top: 1px solid var(--line); }
.detail-list article:first-child { padding-top: 0; border-top: 0; }
.detail-list article:last-child { padding-bottom: 0; }
.detail-list p { margin-top: 10px; font-size: 15px; }
.detail-list .text-link { margin-top: 15px; }
.hro-promo { display: grid; grid-template-columns: 300px 1fr; gap: 65px; align-items: center; }
.hro-mark { border-right: 1px solid var(--line); padding: 30px 40px 30px 0; }
.hro-mark img { display: block; width: 180px; max-height: 65px; }
.hro-mark span { display: block; font-size: 17px; color: #7282a0; margin-top: 18px; letter-spacing: .12em; }
.hro-promo h2 { font-size: 28px; }
.hro-promo p { margin: 16px 0 22px; }
.cta-band { padding: 58px 0; background: radial-gradient(ellipse at 95% 10%, #28a5b650, transparent 55%), linear-gradient(115deg, #165bd0, #147aad); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.cta-inner h2 { font-size: 29px; }
.cta-inner p { margin-top: 14px; color: #dbe7ff; font-size: 14px; }
.cta-inner .actions { flex-shrink: 0; }
.site-footer { background: radial-gradient(ellipse at 0 0, #2a72c880, transparent 65%), linear-gradient(115deg, #123a72, #102e59); color: #d7e1f0; padding: 52px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.1fr .75fr .75fr 1.25fr; gap: 40px; padding-bottom: 36px; }
.footer-top > div { min-width: 0; }
.footer-top h2 { font-size: 14px; color: #f4f7fc; margin-bottom: 20px; letter-spacing: .04em; }
.footer-top > div > a:not(.brand) { display: block; width: fit-content; max-width: 100%; font-size: 13px; margin-bottom: 12px; overflow-wrap: anywhere; transition: color .2s; }
.footer-top a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-top p { font-size: 12px; color: #a9b7cc; margin-bottom: 10px; }
.footer-brand > p { margin-top: 20px; line-height: 1.9; }
.site-footer .brand small { color: #a9b7cc; }
.footer-contact a.phone { font-size: 23px !important; line-height: 1.3; letter-spacing: .02em; color: #fff; }
.footer-bottom { padding: 23px 0 25px; border-top: 1px solid #ffffff1c; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; color: #afbdd0; text-align: center; }
.footer-bottom > div { display: flex; justify-content: center; gap: 8px 24px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }
.page-intro { background: radial-gradient(ellipse at 80% 15%, #ddecff 0, transparent 52%), linear-gradient(115deg, #f5f9ff, #fff 52%, #edf5ff); padding: 74px 0 68px; border-bottom: 1px solid #e6edf8; }
.page-intro h1 { font-size: clamp(30px, 3.7vw, 46px); }
.page-intro p { max-width: 920px; margin-top: 24px; font-size: 17px; text-wrap: pretty; }
.timeline { max-width: 900px; padding: 0; list-style: none; margin: 0 auto; }
.timeline li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; border-bottom: 1px solid var(--line); padding: 25px 0; }
.timeline li:first-child { padding-top: 0; }
.timeline li:last-child { border: none; padding-bottom: 0; }
.timeline .step-number { font-size: 26px; font-weight: 400; }
.timeline p { margin-top: 10px; font-size: 15px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }
.feature-grid article { border-top: 2px solid #ccdafa; padding-top: 20px; }
.feature-grid p { margin-top: 12px; font-size: 15px; }
.faq { max-width: 880px; }
.faq h2 { margin-bottom: 30px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 22px 4px; font-weight: 600; }
.faq details p { padding: 0 24px 24px; font-size: 15px; }
.product-logo { max-height: 58px; width: 180px; margin-bottom: 26px; }
.product-structure { background: #f3f7ff; padding: 30px; border: 1px solid #d9e4f7; border-radius: var(--radius); }
.product-structure-title { font-size: 23px; font-weight: 600; border-bottom: 1px solid #d4e1f8; padding-bottom: 22px; }
.product-structure-title span { font-size: 12px; color: #677d9e; float: right; margin-top: 10px; }
.module-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 25px 0; }
.module-grid > div { background: #fff; padding: 18px; border: 1px solid #e2e9f5; font-size: 15px; }
.module-grid span { display: block; color: #6788c4; font-size: 11px; margin-bottom: 8px; }
.product-structure > p { font-size: 12px; text-align: center; }
.hro-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 36px; }
.hro-modules article { border-top: 1px solid #cbd8ed; padding-top: 24px; }
.hro-modules p { margin-top: 15px; font-size: 15px; }
/* 规则与隐私页保持可复制、可检索的正文，锚点同时适配本地文件。 */
.document-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 85px; padding-block: 60px 90px; align-items: start; }
.document-nav { position: sticky; top: 125px; display: grid; border-left: 2px solid #dce5f5; gap: 0; }
.document-nav a { padding: 10px 20px; font-size: 14px; color: var(--muted); }
.document-nav a:hover { color: var(--blue); background: var(--tint); }
.document-content section { margin-bottom: 38px; }
.document-content section:last-child { margin-bottom: 0; }
.document-content h2 { font-size: 25px; margin-bottom: 19px; }
.document-content h3 { font-size: 18px; margin: 24px 0 12px; }
.document-content p { margin-bottom: 13px; font-size: 15px; line-height: 1.95; }
.document-content ul { margin: 14px 0 20px; padding-left: 22px; color: var(--muted); font-size: 15px; line-height: 1.95; }
.document-content li { padding-left: 4px; margin-bottom: 12px; }
.document-content li::marker { color: #86a3ca; }
.document-content strong { font-weight: 600; color: var(--ink); }
.document-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.about-copy p { margin-bottom: 22px; }
.about-copy .actions { margin-top: 30px; gap: 28px; }
.member-guide ol { padding-left: 22px; margin: 0 0 25px; }
.member-guide li { padding-left: 10px; margin-bottom: 22px; }
.member-guide li::marker { color: var(--blue); font-weight: 600; }
.member-guide p { margin-top: 7px; font-size: 15px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: stretch; }
.contact-information { display: flex; flex-direction: column; min-width: 0; }
.contact-layout h3 { font-size: 24px; margin: 0 0 28px; }
.contact-methods { display: grid; grid-template-columns: .9fr 1.3fr; gap: 25px 22px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.contact-method > div { min-width: 0; }
.contact-method h4 { font-size: 17px; font-weight: 600; line-height: 1.5; margin: 0 0 4px; }
.contact-method a, .contact-method p { color: var(--muted); font-size: 14px; overflow-wrap: anywhere; line-height: 1.65; }
.contact-method a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.contact-method .contact-hours { font-size: 12px; }
.contact-icon { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; color: var(--blue); background: #e8f2ff; border-radius: 13px; }
.contact-icon svg { width: 23px; height: 23px; }
.contact-address { grid-column: 1 / -1; }
.contact-map { display: flex; flex-direction: column; flex: 1; min-height: 280px; margin: 30px 0 0; overflow: hidden; border-radius: 18px; background: #f5f8fb; border: 1px solid var(--line); box-shadow: 0 10px 28px -23px #667d9c88; }
.contact-map #amap-container { width: 100%; height: 400px; min-height: 320px; flex: 1 0 320px; }
.contact-map-status { padding: 24px; color: var(--muted); font-size: 14px; }
.contact-map figcaption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 12px; padding: 12px 16px; font-size: 12px; color: var(--muted); }
.contact-map figcaption > a { color: var(--blue); }
.contact-booking { padding: 30px; border-radius: 22px; background: linear-gradient(140deg,#f1f7ff,#fff 62%,#eef8ff); border: 1px solid #dce8f7; }
.contact-booking h3 { margin-bottom: 18px; }
.booking-intro { font-size: 14px; margin-bottom: 28px; }
.booking-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.booking-field { min-width: 0; }
.booking-field-wide { grid-column: 1 / -1; }
.booking-field label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 550; }
.booking-field label > span { color: #c04e5a; }
.booking-field input, .booking-field textarea { display: block; width: 100%; min-width: 0; border: 1px solid #d9e1ec; border-radius: 10px; padding: 11px 13px; background: #fff; color: var(--ink); font: inherit; font-size: 16px; line-height: 1.5; transition: border-color .2s, box-shadow .2s; }
.booking-field input { height: 46px; }
.booking-field textarea { min-height: 110px; resize: vertical; }
.booking-field input:focus, .booking-field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px #4676d51a; }
.booking-field input:focus-visible, .booking-field textarea:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.booking-privacy { font-size: 12px; margin: 17px 0 16px; color: var(--muted); white-space: nowrap; }
.booking-privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.booking-submit { width: 100%; cursor: pointer; }
.booking-submit:disabled { opacity: .7; cursor: wait; transform: none; }
.booking-note { font-size: 12px; margin-top: 12px; }
.booking-status { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15, 28, 46, .46); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  width: min(420px, 90%); padding: 40px; border-radius: 20px; background: #fff;
  box-shadow: 0 25px 80px rgba(20, 40, 75, .25); text-align: center;
  transform: scale(.8); transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-icon {
  width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%;
  display: grid; place-items: center; font-size: 36px; line-height: 1;
  animation: modal-icon-bounce .6s ease-out .2s both;
}
.modal-success .modal-icon { color: #059669; background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.modal-error .modal-icon { color: #dc2626; background: linear-gradient(135deg, #fee2e2, #fecaca); }
.modal-title { margin-bottom: 12px; font-size: 24px; font-weight: 700; color: #1f2937; }
.modal-message { margin-bottom: 28px; font-size: 16px; line-height: 1.6; color: #6b7280; }
.modal-button {
  border: 0; border-radius: 12px; padding: 14px 48px; cursor: pointer;
  color: #fff; font: inherit; font-size: 16px; font-weight: 600;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 15px rgba(59, 130, 246, .4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.modal-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59, 130, 246, .5); }
.modal-button:active { transform: none; }
@keyframes modal-icon-bounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal-content, .modal-icon, .modal-button { transition: none; animation: none; }
}
@media (max-width: 1100px) {
  .container { width: calc(100% - 56px); }
  .main-nav { gap: 36px; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: 40px; }
  .split { gap: 55px; }
  .cta-inner { align-items: start; flex-direction: column; }
  .footer-top { gap: 25px; }
}
@media (max-width: 1000px) {
  .header-inner { flex-wrap: wrap; padding-block: 18px; min-height: 80px; }
  .main-nav { width: 100%; flex-wrap: wrap; gap: 10px 24px; }
  .js .main-nav { display: none; }
  .js .main-nav.is-open { display: flex; padding-top: 12px; border-top: 1px solid var(--line); }
  .js .menu-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 8px 12px; font-size: 16px; color: var(--ink); cursor: pointer; min-height: 44px; }
  .menu-toggle svg { width: 20px; height: 20px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: 34px; }
  .hero-description { font-size: 16px; }
  .hero .actions { flex-direction: column; align-items: start; }
  .service-map { padding: 22px; }
  .map-party { padding: 15px; }
  .map-party p { font-size: 11px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 35px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hro-promo { grid-template-columns: 220px 1fr; gap: 35px; }
  .document-layout { gap: 35px; grid-template-columns: 180px minmax(0, 1fr); }
  .document-nav a { padding-inline: 13px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-methods { grid-template-columns: 1fr 1fr; }
  .contact-map { flex: initial; min-height: 0; }

}
@media (max-width: 700px) {
  .container { width: calc(100% - 40px); }
  h2 { font-size: 28px; }
  .brand span { font-size: 21px; }
  .site-header .brand img { width: 131px; height: 36px; }
  .brand small { font-size: 9px; }
  .brand img { width: 36px; height: 36px; }
  .header-inner { gap: 15px; padding-block: 14px; min-height: 76px; }
  .main-nav { flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 6px; }
  .main-nav > a:not(.button) { padding: 12px 5px; }
  .main-nav > .button { margin-top: 8px; }
  .hero { padding: 45px 0 48px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(28px, 7.4vw, 43px); }
  .hero-description { margin-block: 22px 26px; }
  .hero .actions { flex-direction: row; gap: 10px; }
  .hero .button { padding: 12px 15px; font-size: 14px; gap: 7px; }
  .hero-note { margin-top: 20px; font-size: 11px; }
  .service-map { padding: 24px; }
  .map-party p { font-size: 12px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article, .audience-grid article + article { padding: 35px 0; border-left: none; }
  .audience-grid article + article { border-top: 1px solid var(--line); }
  .audience-grid h2 { font-size: 25px; }
  .section { padding: 52px 0; }
  .section-heading { flex-direction: column; align-items: start; gap: 20px; margin-bottom: 32px; }
  .section-heading p, .section-lead { font-size: 15px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-grid li { border-top: 0; border-left: 1px solid #cddbf1; padding: 0 0 27px 25px; }
  .process-grid li:last-child { padding-bottom: 0; }
  .process-grid li::before { top: 10px; left: -4px; }
  .process-grid .step-number { margin-bottom: 6px; }
  .process-grid h3 { margin-bottom: 8px; }
  .hro-promo { grid-template-columns: 1fr; gap: 28px; }
  .hro-mark { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 27px; }
  .hro-mark span { margin-top: 8px; font-size: 13px; }
  .hro-promo h2 { font-size: 26px; }
  .cta-band { padding: 42px 0; }
  .cta-inner { gap: 28px; }
  .cta-inner h2 { font-size: 26px; }
  .cta-inner .actions { gap: 10px; }
  .cta-inner .button { padding-inline: 15px; font-size: 14px; }
  .site-footer { padding-top: 38px; }
  .footer-top { gap: 28px 20px; padding-bottom: 28px; text-align: center; }
  .footer-top > div > a:not(.brand) { margin-inline: auto; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-brand > p { margin-top: 15px; }
  .footer-contact { padding-top: 26px; border-top: 1px solid #ffffff14; }
  .footer-top h2 { margin-bottom: 14px; }
  .footer-bottom > div { gap: 8px; flex-direction: column; }
  .page-intro { padding: 44px 0; }
  .page-intro h1 { font-size: 31px; }
  .page-intro p { margin-top: 18px; font-size: 15px; }
  .feature-grid { gap: 28px 23px; }
  .feature-grid h3 { font-size: 18px; }
  .feature-grid p { font-size: 14px; }
  .timeline li { grid-template-columns: 35px 1fr; gap: 15px; }
  .timeline h3 { font-size: 20px; }
  .timeline .step-number { font-size: 23px; }
  .hro-modules { grid-template-columns: 1fr; gap: 30px; }
  .product-structure { padding: 24px; }
  .product-structure-title { font-size: 21px; }
  .document-layout { grid-template-columns: 1fr; padding-block: 30px 50px; gap: 35px; }
  .document-nav { position: static; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); padding: 10px; }
  .document-nav a { padding: 8px; font-size: 12px; }
  .document-content h2 { font-size: 23px; }
  .contact-methods { grid-template-columns: 1fr; gap: 22px; }
  .contact-booking { padding: 24px 20px; border-radius: 18px; }
  .contact-layout h3 { font-size: 22px; }
  .booking-privacy { white-space: normal; }
  .booking-fields { grid-template-columns: 1fr; gap: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* 面向访客的柔和展示层：以场景、服务价值和咨询路径组织营销页面。 */
.login-link { display: inline-flex; align-items: center; gap: 9px; color: #5975a1; margin-left: 6px; border-left: 1px solid var(--line); padding: 5px 0 5px 25px !important; border-bottom: 0 !important; }
.login-link .arrow { width: 16px; height: 16px; }
.main-nav { gap: 52px; }
.main-nav > a:not(.button):not(.login-link) { border-bottom: 0; }
.main-nav > a[aria-current="page"] { position: relative; }
.main-nav > a[aria-current="page"]::after { content: ""; position: absolute; bottom: 2px; height: 3px; width: 17px; left: calc(50% - 8px); border-radius: 4px; background: #6a93dc; }
.hero-soft { position: relative; overflow: hidden; background: radial-gradient(ellipse at 15% 5%, #dceeff 0, transparent 48%), radial-gradient(ellipse at 85% 30%, #def5ff 0, transparent 50%), linear-gradient(118deg, #f8fbff 18%, #f4f9ff 46%, #edf5ff 100%); padding: 62px 0 65px; }
.hero-soft .hero-grid { grid-template-columns: 1.08fr 1fr; gap: 38px; }
.hero-soft .hero-copy { position: relative; z-index: 2; }
.hero-soft h1 { font-size: clamp(40px, 4.15vw, 60px); line-height: 1.42; font-weight: 650; letter-spacing: -.025em; }
.hero-soft .hero-description { font-size: 17px; max-width: 550px; margin-block: 25px 33px; line-height: 2; }
.hero-soft .actions { gap: 28px; }
.hero-soft .button { padding-inline: 29px; }
.hero-soft .text-link { font-weight: 500; color: #5f7597; }
.hero-soft .hero-copy > * { animation: hero-enter .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-soft .hero-description { animation-delay: .12s; }
.hero-soft .actions { animation-delay: .24s; }
.service-orbit { position: relative; height: 505px; isolation: isolate; }
.orbit-ring { position: absolute; border: 1px solid #9fc3f466; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-outer { width: 93%; aspect-ratio: 1; box-shadow: inset 0 0 65px #ffffff55; }
.ring-inner { width: 68%; aspect-ratio: 1; border-color: #ffffff; background: #ffffff22; }
.orbit-glow { position: absolute; inset: 24%; border-radius: 50%; background: #d9edff; filter: blur(35px); }
.orbit-core { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 205px; height: 205px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; background: linear-gradient(145deg,#fff, #f2f7ff); border: 8px solid #ffffff99; box-shadow: 0 16px 45px -18px #7898d577, inset 0 1px 0 #fff; }
.orbit-core img { width: 58px; height: 58px; margin-bottom: 14px; }
.orbit-core strong { font-size: 20px; font-weight: 600; }
.orbit-core > span { font-size: 12px; color: #7d91b1; letter-spacing: .1em; margin-top: 7px; }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 19px; background: #e7f1ff; color: #2370d6; flex-shrink: 0; }
.service-icon svg { width: 30px; height: 30px; }
.orbit-item { position: absolute; min-width: 152px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; border: 1px solid #fff; background: rgba(255,255,255,.92); box-shadow: 0 15px 38px -22px #8596c280; border-radius: 20px; font-size: 15px; font-weight: 500; animation: gentle-float 4.8s ease-in-out 1; }
.orbit-item .service-icon { width: 40px; height: 40px; border-radius: 13px; }
.orbit-item .service-icon svg { width: 23px; height: 23px; }
.orbit-one { top: 6%; left: 14%; }
.orbit-two { top: 30%; right: -1%; animation-delay: .15s; }
.orbit-two .service-icon { color: #3a78c7; background: #e7f1ff; }
.orbit-three { bottom: 9%; right: 5%; animation-delay: .1s; }
.orbit-three .service-icon { color: #28865e; background: #e6f6eb; }
.orbit-four { bottom: 27%; left: -4%; }
.orbit-four .service-icon { color: #3484c6; background: #e8f7ff; }
.orbit-dot { position: absolute; border-radius: 50%; width: 11px; height: 11px; background: #4c98e8; box-shadow: 0 0 0 8px #d8ebff88; }
.dot-one { top: 9%; right: 21%; }
.dot-two { bottom: 12%; left: 26%; width: 7px; height: 7px; background: #65b790; box-shadow: 0 0 0 6px #dcf1de70; }
.section-heading.centered { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; margin-bottom: 46px; }
.section-heading.centered h2 { font-size: 32px; }
.section-heading.centered p { margin-top: 17px; }
.needs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 65px; }
.needs-grid article { padding: 8px 0; }
.needs-grid h3 { margin-top: 20px; font-size: 21px; }
.needs-grid p { margin-top: 12px; font-size: 15px; }
.needs-grid article:nth-child(2) .service-icon { color: #3577c8; background: #e8f2ff; }
.needs-grid article:nth-child(3) .service-icon { color: #28865e; background: #e5f5e9; }
.service-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { padding: 31px 25px; border-radius: 24px; background: #fff; border: 1px solid #edf1f7; box-shadow: 0 12px 35px -24px #8291ad55; transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -23px #7b94bd77; }
.service-card h3 { margin-top: 26px; font-size: 22px; }
.service-card .card-subtitle { color: #456080; font-size: 14px; margin-top: 10px; margin-bottom: 17px; }
.service-card p { font-size: 13px; line-height: 1.95; }
.service-card:nth-child(2) .service-icon { color: #3577c8; background: #e8f2ff; }
.service-card:nth-child(3) .service-icon { color: #28865e; background: #e5f5e9; }
.service-card:nth-child(4) .service-icon { color: #3484c6; background: #e8f7ff; }
.section.audience-section { border: none; padding-block: 75px; }
.audience-grid { gap: 60px; }
.audience-grid article { padding: 10px 45px 15px 0; }
.audience-grid article + article { padding: 10px 0 15px 55px; border-color: #e8edf5; }
.section-index { color: #6f825b; letter-spacing: .08em; font-size: 13px; }
.process-grid { gap: 15px; }
.process-grid li { border-top: 0; padding: 20px 12px 0 0; }
.process-grid li::before { display: none; }
.process-grid .step-number { display: grid; place-items: center; width: 40px; height: 40px; background: #e6f1ff; color: #2165b5; font-size: 13px; border-radius: 14px; margin-bottom: 20px; }
.process-grid li:not(:last-child)::after { content: ""; position: absolute; top: 40px; left: 58px; right: 16px; height: 1px; background: #dce5f5; }
.hro-promo { border: 1px solid #dfe9f6; background: linear-gradient(115deg,#eef5ff,#fff 55%,#eff8ff); border-radius: 26px; padding: 45px; }
.hro-mark { border-color: #e1e7f2; }
.cta-band { position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 400px; height: 400px; border: 55px solid #ffffff08; border-radius: 50%; top: -195px; right: 14%; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.page-intro h1 span { color: #1468cf; }
.service-intro h1 span { display: inline-block; max-width: 100%; text-wrap: balance; }
.service-intro .button { margin-top: 29px; }
.member-benefits article { display: flex; align-items: start; gap: 20px; margin-bottom: 30px; }
.member-benefits article:last-child { margin-bottom: 0; }
.member-benefits p { margin-top: 10px; font-size: 15px; }
.detail-list article { border-color: #e4eaf3; }
.faq details { border: 1px solid #e8edf5; border-radius: 17px; padding-inline: 24px; margin-top: 15px; background: #fff; }
.faq summary { font-weight: 500; padding-block: 20px; }
.faq details p { padding: 0 0 24px; }
.document-nav { border-color: #dce5f5; }
/* 进入动画和交互过渡统一由 assets/motion.css 定义。 */
@media (max-width: 1100px) {
  .main-nav { gap: 36px; }
  .login-link { padding-left: 17px !important; }
  .hero-soft h1 { font-size: 46px; }
  .service-orbit { height: 460px; }
  .orbit-item { min-width: 130px; padding: 13px; gap: 9px; }
  .orbit-core { width: 180px; height: 180px; }
  .orbit-core strong { font-size: 18px; }
  .service-card-grid { gap: 15px; }
  .service-card { padding: 27px 20px; }
  .audience-grid { gap: 30px; }
}
@media (max-width: 1000px) {
  .login-link { border-left: 0; padding-left: 0 !important; }
  .service-card-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-soft h1 { font-size: 40px; }
  .hero-soft .hero-description { font-size: 15px; }
  .desktop-break { display: none; }
  .service-orbit { height: 400px; }
  .orbit-core { width: 157px; height: 157px; }
  .orbit-core img { width: 44px; height: 44px; margin-bottom: 9px; }
  .orbit-core strong { font-size: 16px; }
  .orbit-item { min-width: 117px; padding: 12px; font-size: 13px; gap: 8px; }
  .orbit-item .service-icon { width: 32px; height: 32px; border-radius: 10px; }
  .orbit-item .service-icon svg { width: 20px; height: 20px; }
  .orbit-one { left: 5%; }
  .orbit-two { right: -3%; top: 26%; }
  .orbit-four { left: -3%; bottom: 22%; }
  .orbit-three { right: 0; bottom: 5%; }
  .needs-grid { gap: 35px; }
}
@media (max-width: 700px) {
  .main-nav > a[aria-current="page"]::after { display: none; }
  .main-nav .login-link { margin-left: 0; padding: 14px 5px !important; border-top: 1px solid var(--line); margin-top: 5px; }
  .hero-soft { padding: 43px 0 30px; }
  .hero-soft .hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-soft h1 { font-size: 38px; }
  .hero-soft .hero-description { margin: 22px 0 27px; font-size: 15px; }
  .hero-soft .actions { gap: 25px; }
  .hero-soft .button { padding-inline: 22px; }
  .service-orbit { height: 360px; max-width: 410px; width: 100%; margin-inline: auto; }
  .orbit-ring.ring-outer { width: 88%; }
  .orbit-one { top: 6%; left: 10%; }
  .orbit-two { right: 0; top: 30%; }
  .orbit-three { bottom: 5%; right: 5%; }
  .orbit-four { bottom: 24%; left: 0; }
  .orbit-core { width: 154px; height: 154px; }
  .orbit-item { padding: 10px 12px; border-radius: 17px; }
  .dot-one { right: 16%; top: 17%; }
  .dot-two { left: 23%; bottom: 9%; }
  .section-heading.centered { margin-bottom: 30px; }
  .section-heading.centered h2 { font-size: 26px; }
  .section-heading.centered p { font-size: 14px; margin-top: 14px; }
  .needs-grid { grid-template-columns: 1fr; gap: 27px; }
  .needs-grid article { display: grid; grid-template-columns: 52px 1fr; gap: 0 18px; }
  .needs-grid .service-icon { grid-row: 1/3; width: 52px; height: 52px; border-radius: 18px; }
  .needs-grid h3 { margin-top: 0; font-size: 20px; }
  .needs-grid p { font-size: 14px; margin-top: 8px; }
  .service-card-grid { gap: 14px; }
  .service-card { padding: 23px 18px; border-radius: 19px; }
  .service-card .service-icon { width: 45px; height: 45px; border-radius: 15px; }
  .service-card .service-icon svg { width: 26px; height: 26px; }
  .service-card h3 { font-size: 19px; margin-top: 19px; }
  .service-card .card-subtitle { font-size: 12px; margin-bottom: 12px; }
  .service-card p { font-size: 12px; }
  .section.audience-section { padding-block: 45px; }
  .audience-grid { gap: 0; }
  .audience-grid article, .audience-grid article + article { padding: 20px 0 25px; border-left: 0; }
  .audience-grid article + article { padding-top: 30px; }
  .process-grid { gap: 20px; }
  .process-grid li { border-left: none; display: grid; grid-template-columns: 40px 1fr; gap: 0 20px; padding: 0; }
  .process-grid .step-number { grid-row: 1/3; margin: 0; }
  .process-grid li:not(:last-child)::after { display: none; }
  .process-grid h3 { margin-top: 4px; }
  .hro-promo { padding: 28px; gap: 24px; border-radius: 22px; }
  .hro-mark { padding-bottom: 20px; }
  .hro-promo h2 { font-size: 24px; }
  .hro-promo p { font-size: 14px; }
  .faq details { padding-inline: 17px; }
  .faq summary { font-size: 15px; }
  .faq details p { font-size: 14px; }
  .cta-inner { gap: 24px; }
  .page-intro h1 { font-size: 30px; line-height: 1.5; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-pending { opacity: 1; translate: none; }
  .hero-soft .hero-copy > *, .orbit-item { animation: none; }
}
@media print {
  .reveal-pending { opacity: 1; translate: none; }
  .site-header { position: static; }
}

/* 明亮品牌主题：浅暖色、草木绿与品牌蓝在各区块之间形成层次。 */
.main-nav > a:not(.button) { position: relative; font-size: 18px; font-weight: 500; border-bottom: 0; transition: color 260ms var(--ease-out), transform 260ms var(--ease-out); }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 5px; height: 2px; border-radius: 999px; background: var(--blue); transform: scaleX(0); transform-origin: center; transition: transform 320ms var(--ease-out), opacity 220ms ease; opacity: 0; }
.main-nav > a:not(.button):hover { color: var(--blue); transform: translateY(-2px); }
.main-nav > a:not(.button):hover::after, .main-nav > a[aria-current="page"]::after { transform: scaleX(1); opacity: 1; }
.main-nav > a[aria-current="page"] { color: var(--blue); }
.needs-section { background: #fff; }
 .section.audience-section { background: #f3f7ff; }
main > .section-tint:nth-of-type(even) { background: #eef5ff; }
.service-card { border-color: #e2eaf5; box-shadow: 0 8px 28px -22px #5e83b844; }
.service-card:nth-child(2) { background: linear-gradient(150deg,#f7fbff,#fff); }
.service-card:nth-child(3) { background: linear-gradient(150deg,#f5fbff,#fff); }
.service-card:nth-child(4) { background: linear-gradient(150deg,#f6faff,#fff); }
.contact-section { background: radial-gradient(ellipse at 0 100%,#e3efff,transparent 52%),#f8fbff; }
.contact-booking { scroll-margin-top: 18px; }
.document-content { background: #f8fbff; }
@media (min-width:1001px) and (max-width:1200px) {
  .main-nav { gap: 36px; }
}
@media (max-width:1000px) {
  .main-nav { gap: 10px 36px; }
}
@media (max-width:700px) {
  .main-nav { gap: 0; max-height: calc(100dvh - 90px); overflow-y: auto; }
}

/* 导航与页面分区最终统一：小字号、文字宽度选中线、蓝白交替。 */
.main-nav > a:not(.button)::after { width: auto; }
main:not(.hro-content) > .section { background: #fff; }
main:not(.hro-content) > .section.section-tint,
main:not(.hro-content) > .section:nth-of-type(even) { background: #f1f6ff; }
main:not(.hro-content) > .section.audience-section { background: #fff; }
main:not(.hro-content) > .section.cta-band,
.cta-band { background: #5a8fda; }

.platform-showcase { background: #f1f6ff; }
.platform-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.platform-shot { margin: 0; overflow: hidden; border: 1px solid #dbe7f7; border-radius: 20px; background: #fff; box-shadow: 0 16px 34px -28px #315c9b66; transition: transform var(--motion-card) var(--ease-out), box-shadow var(--motion-card) var(--ease-out); }
.platform-shot:hover { transform: translateY(-4px); box-shadow: 0 20px 38px -25px #315c9b66; }
.platform-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: top center;
  background: #f7faff;
}
.platform-shot figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 16px 20px 18px; }
.platform-shot figcaption strong { color: var(--ink); font-size: 18px; }
.platform-shot figcaption span { color: var(--muted); font-size: 13px; text-align: right; }
@media (max-width:700px) {
  .platform-gallery { grid-template-columns: 1fr; gap: 16px; }
  .platform-shot figcaption { display: block; padding: 14px 16px 16px; }
  .platform-shot figcaption span { display: block; margin-top: 3px; text-align: left; }
}

/* 灵工详情按明确的分区类交替背景。 */
main.product-services > .section:not(.section-tint) { background: #fff; }
main.product-services > .section.section-tint { background: #f1f6ff; }

/* 首页与灵活用工 CTA 采用 HRO SaaS 同款浅蓝咨询区。 */
main:not(.hro-content) > .cta-band { background: radial-gradient(ellipse at 78% 18%, #dceeff 0, transparent 52%), linear-gradient(115deg, #f4f9ff 0%, #eef7ff 100%); color: var(--ink); padding: 72px 0 76px; }
main:not(.hro-content) > .cta-band::after { border-color: #7fb4e61f; }
main:not(.hro-content) > .cta-band .cta-inner { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 26px; }
main:not(.hro-content) > .cta-band .cta-inner h2 { color: var(--ink); font-size: clamp(28px, 3vw, 38px); }
main:not(.hro-content) > .cta-band .cta-inner p { color: var(--muted); margin-top: 12px; }
main:not(.hro-content) > .cta-band .cta-actions { justify-content: center; gap: 16px; }
main:not(.hro-content) > .cta-band .cta-actions .button { min-width: 138px; }
main:not(.hro-content) > .cta-band .cta-actions .button-secondary { background: rgba(255,255,255,.7); border-color: #cbdced; color: var(--ink); }
main:not(.hro-content) > .cta-band .cta-actions .button-secondary:hover { background: #fff; color: var(--blue); border-color: #a9c7e7; }
@media (max-width:700px) {
  main:not(.hro-content) > .cta-band { padding: 54px 0 58px; }
  main:not(.hro-content) > .cta-band .cta-actions { width: 100%; flex-direction: column; }
  main:not(.hro-content) > .cta-band .cta-actions .button { width: min(100%, 220px); }
}

/* 关于我们：照片与文案一体呈现，渐变集中在文字区域。 */
.about-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: start;
  min-width: 0;
  width: 100%;
  min-height: 340px;
  padding: clamp(26px, 3vw, 40px);
  overflow: hidden;
  border-radius: 16px;
  background: #253b50;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 25, 42, .04) 0%, rgba(10, 25, 42, .4) 38%, rgba(10, 25, 42, .88) 100%);
}
.about-visual h2 { color: #fff; }
.about-visual .section-lead { color: #eef4fc; max-width: 28em; margin-top: 16px; margin-bottom: 0; }
.about-visual-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 700px) {
  .about-visual { min-height: 320px; padding: 26px; }
}

/* 全站悬浮联系：默认展开图标栏，桌面悬停 / 触屏点击查看详情。 */
.contact-float { position: fixed; right: 18px; bottom: max(32px, env(safe-area-inset-bottom)); z-index: 30; }
.contact-float summary { list-style: none; cursor: pointer; }
.contact-float summary::-webkit-details-marker { display: none; }
.contact-float svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-float-actions { padding: 5px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 32px #203a6314; }
.contact-float-item { position: relative; }
.contact-float-item[open]::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 14px;
}
.contact-float-item > summary, .contact-float-booking { width: 60px; min-height: 68px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 10px; font-size: 11px; color: var(--ink); }
.contact-float-item > summary:hover, .contact-float-item[open] > summary, .contact-float-booking:hover { color: var(--blue); background: var(--tint); }
.contact-float-panel { position: absolute; right: calc(100% + 12px); top: 50%; translate: 0 -50%; width: max-content; max-width: 260px; max-height: calc(100dvh - 24px); overflow-y: auto; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 16px 52px #203a6326; }
.contact-float-panel a { display: block; color: var(--blue); font-size: 14px; overflow-wrap: anywhere; }
.contact-float-panel .contact-float-phone { font-size: 20px; font-weight: 600; white-space: nowrap; }
.contact-float-panel p { margin-top: 6px; font-size: 12px; color: var(--muted); }
@media (max-width: 1400px) and (min-width: 701px) {
  .contact-float { right: 10px; }
  body { padding-right: 82px; }
}
@media (max-width: 700px) {
  .contact-float { right: 12px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .contact-float-panel { max-width: min(240px, calc(100vw - 132px)); padding: 14px 16px; }
  .contact-float-panel .contact-float-phone { font-size: 18px; }
  /* 顶部两个 item 的面板改为从底部对齐，避免向上超出视口。 */
  .contact-float-item:nth-child(1) .contact-float-panel,
  .contact-float-item:nth-child(2) .contact-float-panel { top: auto; bottom: 0; translate: none; }
  .site-footer { padding-bottom: 95px; }
}
@media print { .contact-float { display: none; } body { padding-right: 0; } }
.contact-qr { display: block; width: 160px; max-width: 100%; height: auto; aspect-ratio: 1; margin: 0 auto; border-radius: 8px; }
