/* =========================================================
   首页 index.html 专用样式（薰衣草紫「静奢」v2，在 premium.css / testimonials.css 之后引入）
   作用范围：body.home；新组件统一 h- 前缀，沿用的接口卡片类（tr-member / tr-person / tr-post）加 .home 限定
   断点：≥1200 电脑稿；992–1199 缩放；768–991 平板；≤767 手机稿
   ========================================================= */

/* 保证 hidden 属性生效（组件类设置了 display） */
[hidden] { display: none !important; }

.home {
  --h-pearl: #F9F7FC;
  --h-surface: #FFFFFF;
  --h-mist: #F0ECF8;
  --h-line: #E4DEF0;
  --h-line-soft: #EFEAF6;
  --h-line-strong: #CEC6E0;
  --h-aubergine: #2E2449;
  --h-aubergine-hover: #41356A;
  --h-violet: #5B4CA8;
  --h-lavender: #8E84D0;
  --h-label: #6A5FA8;
  --h-ink: #2A2140;
  --h-muted: #5E5773;
  --h-pink: #E48FA7;
  --h-dark-1: #CFC6F2;
  --h-dark-2: #E4DEF5;
  --h-dark-3: #B7AEE6;
  --h-serif: "Trirong", "Noto Serif Thai", serif;
  --h-sans: "Noto Sans Thai", system-ui, sans-serif;
  --h-accent-font: "Cormorant Garamond", Georgia, serif;
  --h-gutter: max(40px, calc((100vw - 1280px) / 2)); /* 与 .h-wrap 左右边距一致 */
  background: var(--h-pearl);
  color: var(--h-ink);
}
.home .background-image.tr-home-bg { background: var(--h-pearl); }

.home .h-wrap { max-width: 1360px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }

/* app.css 对 h1–h6 设了 !important 字体，这里同级覆盖为 Trirong */
.home .h-h1, .home .h-h2, .home .h-h3,
.home h3.tr-member__name, .home h3.tr-person__name, .home h3.tr-post__title {
  font-family: var(--h-serif) !important;
  letter-spacing: 0;
}
.home .h-accent { color: var(--h-violet); }
.home .h-block-m { display: inline; }
.home .h-show-m { display: none !important; }

/* 焦点样式 */
.home a:focus-visible, .home button:focus-visible { outline: 2px solid var(--h-violet); outline-offset: 3px; }

/* ---------- 小标签（英文大写 + 细线） ---------- */
.home .h-eyebrow {
  display: flex; align-items: center; gap: 14px; margin: 0;
  font-family: var(--h-sans); font-size: 12px; font-weight: 400; line-height: 1.6;
  letter-spacing: .3em; text-transform: uppercase; color: var(--h-label);
}
.home .h-eyebrow::before { content: ""; flex: none; width: 36px; height: 1px; background: var(--h-lavender); }
.home .h-eyebrow--center { justify-content: center; }
.home .h-eyebrow--center::after { content: ""; flex: none; width: 36px; height: 1px; background: var(--h-lavender); }
.home .h-eyebrow--dark { color: var(--h-dark-1); }
.home .h-eyebrow--dark::before { background: rgba(207, 198, 242, .6); }

/* ---------- 标题组 ---------- */
.home .h-head { display: flex; flex-direction: column; gap: 16px; }
.home .h-head--center { align-items: center; text-align: center; max-width: 720px; gap: 18px; }
.home .h-head--narrow { max-width: 640px; }
.home .h-headrow { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.home .h-h2 { margin: 0; font-weight: 300; font-size: 44px; line-height: 1.4; color: var(--h-ink); }
.home .h-h3 { margin: 0; font-weight: 400; font-size: 22px; line-height: 1.5; color: var(--h-ink); }
.home .h-lead { margin: 0; font-family: var(--h-sans); font-size: 17px; line-height: 1.9; color: var(--h-muted); }

/* ---------- 按钮（直角） ---------- */
.home .h-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 30px; box-sizing: border-box;
  font-family: var(--h-sans); font-size: 15px; font-weight: 400; line-height: 1.2; text-align: center;
  text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; border-radius: 0;
  transition: background-color .2s, border-color .2s, color .2s;
}
.home .h-btn--primary { background: var(--h-aubergine); border-color: var(--h-aubergine); color: var(--h-pearl); font-weight: 500; }
.home .h-btn--primary:hover { background: var(--h-aubergine-hover); border-color: var(--h-aubergine-hover); color: var(--h-pearl); }
.home .h-btn--ghost { background: var(--h-surface); border-color: var(--h-line-strong); color: var(--h-aubergine); }
.home .h-btn--ghost:hover { border-color: var(--h-aubergine); color: var(--h-aubergine); }
.home .h-btn--lg { height: 58px; padding: 0 28px; }
.home .h-btn--primary.h-btn--lg { padding: 0 36px; font-size: 16px; letter-spacing: .02em; }

/* 文字链接（下划细线） */
.home .h-link {
  display: inline-flex; align-items: center; padding-bottom: 4px;
  font-family: var(--h-sans); font-size: 15px; line-height: 1.5; white-space: nowrap;
  color: var(--h-violet); border-bottom: 1px solid var(--h-lavender);
}
.home .h-link:hover { color: var(--h-aubergine); border-color: var(--h-aubergine); }
.home .h-link--dark { color: var(--h-dark-1); border-color: rgba(207, 198, 242, .6); }
.home .h-link--dark:hover { color: #FFFFFF; border-color: #FFFFFF; }

/* =========================================================
   1. 首屏
   ========================================================= */
.home .h-hero {
  display: grid;
  grid-template-columns: calc(var(--h-gutter) + 580px) minmax(0, 1fr);
  background: var(--h-pearl);
}
.home .h-hero__copy {
  min-height: 780px; box-sizing: border-box;
  padding: 104px 64px 72px var(--h-gutter);
  display: flex; flex-direction: column; justify-content: space-between; gap: 48px;
}
.home .h-hero__main { display: flex; flex-direction: column; gap: 28px; }
/* text-wrap: balance 让首屏大标题各行长度均衡，避免最后一行只剩一两个字 */
.home .h-h1 { margin: 0; font-weight: 300; font-size: 60px; line-height: 1.3; color: var(--h-ink); text-wrap: balance; }
.home .h-hero__lead { margin: 0; max-width: 460px; font-family: var(--h-sans); font-size: 17px; line-height: 1.95; color: var(--h-muted); }
.home .h-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 8px; }

.home .h-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0; padding: 26px 0 0; list-style: none; border-top: 1px solid var(--h-line);
}
.home .h-facts li { display: flex; flex-direction: column; gap: 6px; padding: 0 20px; border-left: 1px solid var(--h-line); }
.home .h-facts li:first-child { padding-left: 0; border-left: 0; }
.home .h-facts li:last-child { padding-right: 0; }
.home .h-facts__big { font-family: var(--h-accent-font); font-weight: 500; font-size: 32px; line-height: 1; color: var(--h-ink); }
.home .h-facts__text { font-family: var(--h-sans); font-size: 14px; line-height: 1.6; color: var(--h-muted); }

/* 右侧品牌光盒：光晕 + 两道拱形细线 */
.home .h-hero__visual {
  position: relative; overflow: hidden; min-height: 780px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(46% 40% at 50% 58%, rgba(253, 238, 243, .9) 0%, rgba(253, 238, 243, 0) 72%),
    radial-gradient(60% 56% at 50% 46%, #FFFFFF 0%, #F6F2FC 40%, #EBE4F7 76%, #DFD6F1 100%);
}
.home .h-hero__arch {
  position: absolute; left: 50%; bottom: 0;
  width: 600px; height: 700px; margin-left: -300px; box-sizing: border-box;
  border: 1px solid rgba(142, 132, 208, .5); border-bottom: 0; border-radius: 300px 300px 0 0;
}
.home .h-hero__arch--inner {
  width: 552px; height: 652px; margin-left: -276px;
  border-color: rgba(142, 132, 208, .2); border-radius: 276px 276px 0 0;
}
.home .h-hero__glow {
  position: absolute; left: 50%; top: 50%;
  width: 600px; height: 600px; margin: -290px 0 0 -300px; border-radius: 50%;
  background: radial-gradient(circle, #FFFFFF 0%, rgba(255, 255, 255, .7) 42%, rgba(255, 255, 255, 0) 70%);
}
.home .h-hero__logo {
  position: relative; display: block;
  width: 520px; max-width: 86%; height: auto; margin-top: 44px;
  filter: drop-shadow(0 22px 40px rgba(91, 76, 168, .16));
}
/* 首屏情侣插画：贴着拱形底边居中（替代原来的品牌 logo 大图） */
.home .h-hero__art {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 470px; max-width: 78%; height: auto; display: block;
}



/* 首屏右侧：情侣照片铺满（替代插画版）。左侧做一道柔和过渡，与文案区的珍珠白衔接 */
.home .h-hero__visual--photo { padding: 0; }
.home .h-hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 24%;
  filter: saturate(.9) brightness(1.02);
}
.home .h-hero__photo-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(249,247,252,.92) 0%, rgba(249,247,252,.35) 12%, rgba(249,247,252,0) 30%),
    linear-gradient(200deg, rgba(142,132,208,.16) 0%, rgba(228,143,167,.08) 55%, rgba(46,36,73,.04) 100%);
}
@media (max-width: 991px) {
  .home .h-hero__photo { object-position: 58% 20%; }
  .home .h-hero__photo-veil { background: linear-gradient(180deg, rgba(249,247,252,0) 62%, rgba(249,247,252,.55) 88%, rgba(249,247,252,.9) 100%); }
}
@media (max-width: 767px) {
  .home .h-hero__photo { object-position: 56% 18%; }
}

/* =========================================================
   2. 品牌主张
   ========================================================= */
.home .h-philo { background: var(--h-surface); border-top: 1px solid var(--h-line); border-bottom: 1px solid var(--h-line); }
.home .h-philo .h-wrap { padding-top: 72px; padding-bottom: 72px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.home .h-philo__label { margin: 0; font-family: var(--h-accent-font); font-style: italic; font-size: 22px; line-height: 1.3; color: var(--h-label); }
.home .h-philo__text { margin: 0; max-width: 1120px; font-family: var(--h-serif); font-weight: 300; font-size: 38px; line-height: 1.6; color: var(--h-ink); }

/* =========================================================
   区块通用留白
   ========================================================= */
.home .h-sec { padding: 110px 0 120px; }

/* =========================================================
   3. 会员区
   ========================================================= */
.home .h-members .h-wrap { display: flex; flex-direction: column; align-items: center; gap: 44px; }

/* 男 / 女切换（直角分段控件） */
.home .tr-seg {
  display: flex; width: max-content; max-width: 100%; margin: 0; padding: 4px; gap: 0;
  border: 1px solid var(--h-line); border-radius: 0; background: var(--h-surface); box-shadow: none;
}
.home .tr-seg__btn {
  width: 150px; min-width: 0; height: 44px; min-height: 44px; padding: 0 12px;
  border: 0; border-radius: 0; background: transparent;
  font-family: var(--h-sans); font-size: 15px; font-weight: 400; color: var(--h-muted); cursor: pointer;
  transition: background-color .2s, color .2s;
}
.home .tr-seg__btn:hover { color: var(--h-aubergine); }
.home .tr-seg__btn[aria-pressed="true"] { background: var(--h-aubergine); color: var(--h-pearl); font-weight: 500; }
.home .tr-seg__btn:focus-visible { outline: 2px solid var(--h-violet); outline-offset: 2px; }

.home .h-members__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; width: 100%; min-height: 120px; }

/* 会员卡片：白底细边框，无圆角无阴影 */
.home .tr-member {
  display: flex; flex-direction: column; height: 100%;
  background: var(--h-surface); border: 1px solid var(--h-line); border-radius: 0; box-shadow: none;
  color: var(--h-ink); text-decoration: none; overflow: hidden;
  transition: border-color .2s;
}
.home .tr-member:hover { transform: none; box-shadow: none; border-color: var(--h-line-strong); color: var(--h-ink); }
.home .tr-member__photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #ECE6F6; }
.home .tr-member__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home .tr-member__badge {
  position: absolute; left: 14px; top: 14px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px; height: 28px; margin: 0; padding: 0 11px;
  border-radius: 0; background: rgba(255, 255, 255, .94);
  font-family: var(--h-sans); font-size: 12px; line-height: 1; color: var(--h-violet);
}
.home .tr-member__badge svg { flex: none; width: 12px; height: 12px; }
.home .tr-member__body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 20px 20px 24px; }
.home .tr-member__name { margin: 0; font-size: 20px; font-weight: 400; line-height: 1.4; color: var(--h-ink); overflow-wrap: anywhere; }
.home .tr-member__alias { font-size: 14px; color: var(--h-muted); white-space: nowrap; }
.home .tr-member__age { margin: 0; font-family: var(--h-sans); font-size: 13px; line-height: 1.5; letter-spacing: .04em; color: var(--h-label); }
.home .tr-member__meta {
  display: flex; flex-direction: column; gap: 4px; margin: 0; padding-top: 10px;
  border-top: 1px solid var(--h-line-soft);
  font-family: var(--h-sans); font-size: 14px; line-height: 1.6; color: var(--h-muted);
  overflow: visible; -webkit-line-clamp: unset;
}
.home .tr-member__row { display: block; overflow-wrap: anywhere; }

/* =========================================================
   隐私肖像 / 杂志式封面（全局类的首页兜底版本，结构与全局一致）
   ========================================================= */
.home .tr-portrait-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  background:
    radial-gradient(38% 30% at 28% 28%, rgba(228, 143, 167, .32) 0%, rgba(228, 143, 167, 0) 100%),
    radial-gradient(48% 42% at 74% 64%, rgba(142, 132, 208, .42) 0%, rgba(142, 132, 208, 0) 100%),
    linear-gradient(170deg, #F4F0FB 0%, #E2DAF2 100%);
}
.home .tr-portrait-fallback__arch {
  display: flex; align-items: center; justify-content: center;
  width: 46%; aspect-ratio: 3 / 4; box-sizing: border-box;
  border: 1px solid rgba(91, 76, 168, .32); border-bottom: 0; border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, .4);
}
.home .tr-portrait-fallback__arch > span {
  font-family: var(--h-serif); font-weight: 300; font-size: 64px; line-height: 1; color: var(--h-violet);
}
.home .tr-person__photo .tr-portrait-fallback__arch { width: 56%; }
.home .tr-person__photo .tr-portrait-fallback__arch > span { font-size: 48px; }

.home .tr-cover-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; overflow: hidden;
  background: linear-gradient(150deg, #F1ECF9, #DCD3EF);
}
.home .tr-cover-fallback::after { content: ""; width: 28px; height: 1px; background: var(--h-lavender); }
.home .tr-cover-fallback__kicker {
  position: absolute; left: 14px; top: 12px;
  font-family: var(--h-sans); font-size: 10px; line-height: 1.4; letter-spacing: .24em; text-transform: uppercase; color: var(--h-label);
}
.home .tr-cover-fallback__word {
  padding: 0 12px; text-align: center;
  font-family: var(--h-accent-font); font-style: italic; font-weight: 500; font-size: 40px; line-height: 1; color: var(--h-aubergine);
}
.home .tr-post:nth-child(4n+2) .tr-cover-fallback { background: linear-gradient(150deg, #F3EFF8, #D9D2E8); }
.home .tr-post:nth-child(4n+3) .tr-cover-fallback { background: linear-gradient(150deg, #F7EEF4, #E4D2E8); }
.home .tr-post:nth-child(4n) .tr-cover-fallback { background: linear-gradient(150deg, #EFEAF8, #D8CFEC); }

/* =========================================================
   4. 客户评价（结构与脚本不变，只在首页换视觉）
   ========================================================= */
.home .tr-testimonials {
  /* 覆盖 testimonials.css 在区块上定义的令牌，整块换成薰衣草紫 */
  --tr-blush-50: #F9F7FC;
  --tr-blush-100: #F4F1FB;
  --tr-rose-200: #E4DEF0;
  --tr-rose-300: #E48FA7;
  --tr-rose-600: #5B4CA8;
  --tr-rose-700: #2E2449;
  --tr-gold: #8E84D0;
  --tr-gold-text: #6A5FA8;
  --tr-ink: #2A2140;
  --tr-muted: #5E5773;
  padding: 110px 20px 120px;
  background: var(--h-mist);
  font-family: var(--h-sans);
}
.home .tr-testimonials .tr-t-inner { max-width: 1280px; }
.home .tr-testimonials .tr-t-head { max-width: 720px; margin-bottom: 44px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.home .tr-testimonials .tr-t-eyebrow {
  display: flex; align-items: center; gap: 14px; margin: 0;
  font-family: var(--h-sans); font-style: normal; font-size: 12px; line-height: 1.6;
  letter-spacing: .3em; text-transform: uppercase; color: var(--h-label);
}
.home .tr-testimonials .tr-t-eyebrow::before,
.home .tr-testimonials .tr-t-eyebrow::after { width: 36px; background: var(--h-lavender); }
.home .tr-testimonials .tr-t-title {
  margin: 0; font-family: var(--h-serif) !important; /* 覆盖 app.css 的 h2 !important 字体 */
  font-weight: 300; font-size: 44px; line-height: 1.4; color: var(--h-ink);
}
.home .tr-testimonials .tr-t-title em { font-style: normal; color: var(--h-violet); }
.home .tr-testimonials .tr-t-sub { font-size: 16px; line-height: 1.9; color: var(--h-muted); }

.home .tr-testimonials .tr-t-grid { gap: 28px; }
.home .tr-testimonials .tr-t-grid > .tr-t-card--featured,
.home .tr-testimonials.tr-t--single .tr-t-grid > .tr-t-card--featured { max-width: 920px; }
.home .tr-testimonials .tr-t-card {
  background: var(--h-surface); border: 1px solid var(--h-line); border-radius: 0; box-shadow: none;
  padding: 40px 36px 32px;
}
.home .tr-testimonials .tr-t-card:hover { transform: none; box-shadow: none; }
.home .tr-testimonials .tr-t-card--featured { padding: 52px 64px 40px; }
.home .tr-testimonials .tr-t-card::before {
  content: ""; position: absolute; top: 0; left: 36px; right: 36px; height: 2px;
  background: linear-gradient(90deg, rgba(142, 132, 208, 0), var(--h-lavender), rgba(142, 132, 208, 0));
}
.home .tr-testimonials .tr-t-card--featured::before { left: 64px; right: 64px; }
.home .tr-testimonials .tr-t-quote { width: 36px; height: 27px; margin-bottom: 22px; fill: var(--h-pink); }
.home .tr-testimonials .tr-t-card--featured .tr-t-quote { width: 40px; height: 30px; }
.home .tr-testimonials .tr-t-tags li { border-radius: 0; background: #F4F1FB; color: var(--h-violet); }
.home .tr-testimonials .tr-t-headline {
  margin: 0 0 22px; font-family: var(--h-serif) !important; /* 覆盖 app.css 的 h3 !important 字体 */
  font-weight: 400; font-size: 22px; line-height: 1.55; color: var(--h-ink);
}
.home .tr-testimonials .tr-t-card--featured .tr-t-headline { font-size: 28px; }
.home .tr-testimonials .tr-t-excerpt { margin-bottom: 22px; font-size: 16px; line-height: 1.95; color: var(--h-muted); }
.home .tr-testimonials .tr-t-card--featured .tr-t-excerpt { font-size: 17px; }
.home .tr-testimonials .tr-t-more { margin-bottom: 22px; }
.home .tr-testimonials .tr-t-more summary { min-height: 44px; color: var(--h-violet); }
.home .tr-testimonials .tr-t-more summary:hover { color: var(--h-aubergine); }
.home .tr-testimonials .tr-t-more summary:focus-visible { outline-color: var(--h-violet); border-radius: 0; }
.home .tr-testimonials .tr-t-body { border-left-color: var(--h-line); }
.home .tr-testimonials .tr-t-body p { color: var(--h-ink); }
.home .tr-testimonials .tr-t-foot { gap: 16px; padding-top: 22px; border-top-color: var(--h-line-soft); }
.home .tr-testimonials .tr-t-avatar--mono { background: linear-gradient(135deg, var(--h-dark-3), var(--h-violet)); }
.home .tr-testimonials .tr-t-who strong { font-family: var(--h-sans); color: var(--h-ink); }
.home .tr-testimonials .tr-t-verified { height: 32px; padding: 0 14px; border-radius: 0; background: #F4F1FB; color: var(--h-violet); }
.home .tr-testimonials .tr-t-verified svg { width: 13px; height: 13px; fill: currentColor; }
.home .tr-testimonials .tr-t-cta { margin-top: 44px; }
.home .tr-testimonials .tr-t-btn {
  height: 50px; min-height: 50px; padding: 0 30px; border-radius: 0;
  background: var(--h-aubergine); color: var(--h-pearl); font-size: 15px; font-weight: 500;
}
.home .tr-testimonials .tr-t-btn:hover { background: var(--h-aubergine-hover); color: var(--h-pearl); }

/* =========================================================
   5. 为什么选择 + 宣传视频
   ========================================================= */
.home .h-why { padding: 120px 0 40px; }
.home .h-why__inner { display: flex; align-items: flex-start; gap: 96px; }
.home .h-why__copy { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 26px; }
.home .h-why__lead { max-width: 620px; }
.home .h-why__list { margin: 10px 0 0; padding: 0; list-style: none; }
.home .h-why__item { display: flex; gap: 26px; padding: 26px 0; border-top: 1px solid var(--h-line); }
.home .h-why__item:last-child { border-bottom: 1px solid var(--h-line); }
.home .h-why__icon {
  flex: none; width: 52px; height: 52px; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--h-line-strong); color: var(--h-violet);
}
.home .h-why__icon svg { width: 24px; height: 24px; }
.home .h-why__txt { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.home .h-why__txt p { margin: 0; font-family: var(--h-sans); font-size: 15px; line-height: 1.85; color: var(--h-muted); }

.home .h-video {
  position: relative; flex: none; width: 400px; height: 640px; overflow: hidden;
  background: radial-gradient(70% 50% at 50% 38%, #4B3D7C 0%, #2E2449 70%);
}
.home .h-video video { display: block; width: 100%; height: 100%; object-fit: cover; background: transparent; }
.home .h-video__cover {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 50% at 50% 42%, rgba(46, 36, 73, .1) 0%, rgba(46, 36, 73, .45) 100%),
    linear-gradient(180deg, rgba(46, 36, 73, 0) 55%, rgba(46, 36, 73, .85) 100%);
  transition: opacity .3s;
}
.home .h-video__play {
  position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; margin: -38px 0 0 -38px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, .6); border-radius: 50%;
  background: rgba(255, 255, 255, .12); cursor: pointer;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: background-color .2s;
}
.home .h-video__play:hover { background: rgba(255, 255, 255, .24); }
.home .h-video__play svg { margin-left: 3px; }
.home .h-video__cap {
  position: absolute; left: 24px; right: 24px; bottom: 22px; margin: 0; pointer-events: none;
  display: flex; justify-content: space-between; gap: 12px;
  font-family: var(--h-sans); font-size: 13px; line-height: 1.5; color: var(--h-dark-1);
}
.home .h-video.is-playing .h-video__cover,
.home .h-video.is-playing .h-video__play,
.home .h-video.is-playing .h-video__cap { display: none; }

/* =========================================================
   6. 服务流程
   ========================================================= */
.home .h-process__inner { padding: 90px 0 120px; display: flex; flex-direction: column; gap: 56px; }
.home .h-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; margin: 0; padding: 0; list-style: none; }
.home .h-step { display: flex; flex-direction: column; gap: 14px; padding-top: 26px; border-top: 1px solid var(--h-lavender); }
.home .h-step__no { font-family: var(--h-accent-font); font-weight: 500; font-size: 46px; line-height: 1; color: var(--h-lavender); }
.home .h-step p { margin: 0; font-family: var(--h-sans); font-size: 15px; line-height: 1.85; color: var(--h-muted); }

/* =========================================================
   7. 顾问团队
   ========================================================= */
.home .h-team { background: var(--h-surface); border-top: 1px solid var(--h-line); }
.home .h-team .h-headrow { margin-bottom: 52px; }
.home .h-team__body { display: flex; gap: 32px; align-items: flex-start; }
.home .h-team__feature { flex: none; width: 440px; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.home .h-team__feature-img { aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(165deg, #EEE9F7 0%, #DCD3EE 100%); }
.home .h-team__feature-img img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.home .h-team__feature figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.home .h-team__feature-name { font-family: var(--h-serif); font-size: 24px; line-height: 1.4; color: var(--h-ink); }
.home .h-team__feature-role { font-family: var(--h-sans); font-size: 14px; color: var(--h-muted); }
.home .h-team__side { flex: 1 1 auto; min-width: 0; }
.home .h-team__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 20px; }

.home .tr-person {
  display: flex; flex-direction: column; gap: 10px; height: auto;
  background: transparent; border: 0; border-radius: 0; box-shadow: none; overflow: visible;
}
.home .tr-person:hover, .home article.tr-person:hover { transform: none; box-shadow: none; }
.home .tr-person__photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #ECE6F6; }
.home .tr-person__photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.home .tr-person__body { display: flex; flex-direction: column; gap: 4px; padding: 0; }
.home .tr-person__name { margin: 0; font-size: 18px; font-weight: 400; line-height: 1.4; color: var(--h-ink); }
.home .tr-person__role { margin: 0; font-family: var(--h-sans); font-size: 13px; line-height: 1.5; color: var(--h-muted); }

/* 横向滑动进度条（只在手机端显示） */
.home .h-railfoot { display: none; }
.home .h-dots { display: flex; align-items: center; gap: 6px; }
.home .h-dots span { width: 22px; height: 2px; background: var(--h-line); transition: background-color .2s; }
.home .h-dots span.is-active { background: var(--h-aubergine); }
.home .h-railfoot__link {
  margin-left: auto; min-height: 44px; display: inline-flex; align-items: center;
  font-family: var(--h-sans); font-size: 14px; color: var(--h-violet);
}

/* =========================================================
   8. 隐私承诺
   ========================================================= */
.home .h-promise { display: flex; min-height: 640px; background: var(--h-aubergine); color: #F4F1FC; }
.home .h-promise__art {
  flex: none; width: calc(var(--h-gutter) + 520px);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(56% 50% at 50% 48%, #4F4184 0%, #2E2449 72%);
}
.home .h-promise__art img { display: block; width: 330px; max-width: 80%; height: auto; }
.home .h-promise__body {
  flex: 1 1 auto; min-width: 0; box-sizing: border-box;
  padding: 100px calc(var(--h-gutter) + 48px) 100px 96px;
  display: flex; flex-direction: column; justify-content: center; gap: 30px;
}
.home .h-promise .h-h2 { line-height: 1.45; color: #FFFFFF; }
.home .h-promise__accent { color: var(--h-dark-1); }
.home .h-promise__list { margin: 0; padding: 0; list-style: none; }
.home .h-promise__list li { display: flex; gap: 24px; padding: 18px 0; border-top: 1px solid rgba(207, 198, 242, .25); }
.home .h-promise__list li:last-child { border-bottom: 1px solid rgba(207, 198, 242, .25); }
.home .h-promise__no { flex: none; width: 32px; font-family: var(--h-accent-font); font-size: 20px; line-height: 1.45; color: var(--h-dark-3); }
.home .h-promise__list li > span:last-child { font-family: var(--h-sans); font-size: 16px; line-height: 1.8; color: var(--h-dark-2); }
.home .h-promise .h-link { align-self: flex-start; }

/* =========================================================
   9. 资讯
   ========================================================= */
.home .h-news { padding-bottom: 110px; }
.home .h-news .h-headrow { margin-bottom: 48px; }
.home .h-news__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.home .tr-post {
  display: flex; flex-direction: column; gap: 16px; height: auto;
  background: transparent; border: 0; border-radius: 0; box-shadow: none; overflow: visible;
  color: var(--h-ink); text-decoration: none;
}
.home .tr-post:hover { transform: none; box-shadow: none; color: var(--h-ink); }
.home .tr-post__cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(150deg, #F1ECF9, #DCD3EF); }
.home .tr-post__cover img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.home .tr-post:hover .tr-post__cover img { transform: scale(1.03); }
.home .tr-post__body { display: flex; flex-direction: column; gap: 16px; padding: 0; }
.home .tr-post__date { font-family: var(--h-sans); font-size: 13px; line-height: 1.5; letter-spacing: .04em; color: var(--h-label); }
.home .tr-post__title {
  margin: 0; font-size: 20px; font-weight: 400; line-height: 1.55; color: var(--h-ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.home .tr-post:hover .tr-post__title { color: var(--h-violet); }
.home .tr-post__excerpt {
  margin: 0; font-family: var(--h-sans); font-size: 14px; line-height: 1.8; color: var(--h-muted);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* =========================================================
   10. 预约咨询
   ========================================================= */
.home .h-contact__grid {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  grid-template-areas: "head card" "info card";
  grid-template-rows: auto 1fr;
  column-gap: 110px; row-gap: 26px;
  padding: 100px 0 120px; border-top: 1px solid var(--h-line);
}
.home .h-contact__head { grid-area: head; gap: 26px; }
.home .h-contact__info {
  grid-area: info; align-self: start;
  display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 24px 0 0; list-style: none;
  border-top: 1px solid var(--h-line);
  font-family: var(--h-sans); font-size: 15px; line-height: 1.7; color: var(--h-ink);
}
.home .h-contact__info li { display: flex; align-items: flex-start; gap: 14px; }
.home .h-contact__info svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--h-violet); }
.home .h-contact__info a { color: var(--h-ink); }
.home .h-contact__info a:hover { color: var(--h-violet); }
.home .h-contact__addr { color: var(--h-muted); }
.home .h-contact__card {
  grid-area: card; align-self: start; position: relative;
  display: flex; flex-direction: column; gap: 26px; padding: 48px; box-sizing: border-box;
  background: var(--h-surface); border: 1px solid var(--h-line);
}
.home .h-contact__card::before {
  content: ""; position: absolute; top: 0; left: 48px; right: 48px; height: 2px;
  background: linear-gradient(90deg, rgba(142, 132, 208, 0), var(--h-lavender), rgba(142, 132, 208, 0));
}
.home .h-contact__card .h-h3 { font-size: 24px; line-height: 1.4; }
.home .h-checks { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.home .h-checks li {
  display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--h-line-soft);
  font-family: var(--h-sans); font-size: 16px; line-height: 1.7; color: var(--h-ink);
}
.home .h-checks li:first-child { border-top: 1px solid var(--h-line-soft); }
.home .h-checks li::before {
  content: ""; flex: none; width: 28px; height: 28px; box-sizing: border-box; border: 1px solid var(--h-line-strong);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B4CA8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.home .h-contact__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 4px; }
.home .h-contact__actions .h-btn { width: 100%; padding: 0 16px; }
.home .h-contact__mail { margin: -8px 0 0; font-family: var(--h-sans); font-size: 14px; line-height: 1.7; color: var(--h-muted); }
.home .h-contact__mail a { color: var(--h-violet); border-bottom: 1px solid var(--h-line-strong); }
.home .h-contact__mail a:hover { color: var(--h-aubergine); }

/* =========================================================
   11. App 下载
   ========================================================= */
.home .h-app { padding-bottom: 100px; }
.home .h-app__box {
  position: relative; overflow: hidden; box-sizing: border-box;
  min-height: 400px; padding: 0 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  background: linear-gradient(120deg, #F0ECF8 0%, #E7E0F4 100%); border: 1px solid var(--h-line);
}
.home .h-app__logo-m { display: none; }
.home .h-app__copy { display: flex; flex-direction: column; gap: 18px; max-width: 640px; padding: 56px 0; }
.home .h-app .h-h2 { font-size: 40px; }
.home .h-app .h-lead { font-size: 16px; }
.home .h-app__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.home .h-store {
  display: inline-flex; align-items: center; gap: 12px; height: 56px; padding: 0 22px; box-sizing: border-box;
  border: 1px solid transparent; text-decoration: none; transition: background-color .2s, border-color .2s;
}
.home .h-store svg { flex: none; }
.home .h-store__txt { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.home .h-store__small { font-family: var(--h-sans); font-size: 11px; }
.home .h-store__big { font-family: var(--h-sans); font-size: 17px; font-weight: 500; }
.home .h-store--dark { background: var(--h-aubergine); border-color: var(--h-aubergine); color: #FFFFFF; }
.home .h-store--dark .h-store__small { color: var(--h-dark-1); }
.home .h-store--dark:hover { background: var(--h-aubergine-hover); border-color: var(--h-aubergine-hover); color: #FFFFFF; }
.home .h-store--light { background: var(--h-surface); border-color: var(--h-line-strong); color: var(--h-aubergine); }
.home .h-store--light .h-store__small { color: var(--h-muted); }
.home .h-store--light:hover { border-color: var(--h-aubergine); color: var(--h-aubergine); }

.home .h-app__phone {
  flex: none; align-self: flex-end; width: 230px; height: 330px; margin-bottom: -70px; padding: 16px; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--h-surface); border: 1.5px solid var(--h-lavender); border-radius: 34px;
  box-shadow: 0 30px 60px -30px rgba(46, 36, 73, .35);
}
.home .h-app__notch { width: 60px; height: 5px; border-radius: 3px; background: var(--h-line); }
.home .h-app__phone img { display: block; width: 150px; height: auto; margin-top: 18px; }
.home .h-app__rule { width: 150px; height: 1px; background: var(--h-line); }
.home .h-app__bar { width: 150px; height: 36px; background: var(--h-aubergine); }

/* =========================================================
   响应式：992–1199 缩放
   ========================================================= */
@media (max-width: 1199px) {
  .home .h-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .home .h-hero__copy { padding: 80px 48px 64px 40px; }
  .home .h-h1 { font-size: 50px; }
  .home .h-hero__visual { min-height: 700px; }
  .home .h-hero__arch { width: 480px; height: 600px; margin-left: -240px; border-radius: 240px 240px 0 0; }
  .home .h-hero__arch--inner { width: 440px; height: 560px; margin-left: -220px; border-radius: 220px 220px 0 0; }
  .home .h-hero__logo { width: 420px; }
  .home .h-hero__art { width: 380px; }
  .home .h-philo__text { font-size: 32px; }
  .home .h-members__grid { gap: 20px; }
  .home .h-why__inner { gap: 56px; }
  .home .h-video { width: 360px; height: 580px; }
  .home .h-steps { gap: 28px; }
  .home .h-team__body { gap: 28px; }
  .home .h-team__feature { width: 300px; }
  .home .h-team__feature-name { font-size: 20px; }
  .home .h-team__grid { gap: 20px 14px; }
  .home .h-promise__art { width: 42%; }
  .home .h-promise__body { padding: 88px 40px 88px 64px; }
  .home .h-contact__grid { grid-template-columns: 400px minmax(0, 1fr); column-gap: 64px; }
  .home .h-contact__actions { grid-template-columns: 1fr; }
  .home .h-app__box { padding: 0 48px; }
}

/* =========================================================
   响应式：768–991 平板
   ========================================================= */
@media (max-width: 991px) {
  .home .h-block-m { display: block; }
  .home .h-hero { grid-template-columns: 1fr; }
  .home .h-hero__visual { order: -1; min-height: 480px; }
  .home .h-hero__arch { width: 360px; height: 440px; margin-left: -180px; border-radius: 180px 180px 0 0; }
  .home .h-hero__arch--inner { width: 328px; height: 408px; margin-left: -164px; border-radius: 164px 164px 0 0; }
  .home .h-hero__glow { width: 440px; height: 440px; margin: -210px 0 0 -220px; }
  .home .h-hero__logo { width: 380px; margin-top: 36px; }
  .home .h-hero__art { width: 288px; }
  .home .h-hero__copy { min-height: 0; padding: 56px 40px 64px; gap: 40px; }
  .home .h-h2 { font-size: 38px; }
  .home .h-sec { padding: 88px 0 96px; }
  .home .tr-testimonials { padding: 88px 20px 96px; }
  .home .h-members__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home .h-why { padding-top: 88px; }
  .home .h-why__inner { flex-direction: column; gap: 48px; }
  .home .h-why__copy { width: 100%; }
  .home .h-video { width: 100%; max-width: 440px; height: 640px; margin: 0 auto; }
  .home .h-process__inner { padding: 72px 0 96px; }
  .home .h-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 32px; }
  .home .h-team__body { gap: 28px; }
  .home .h-team__feature { width: 38%; }
  .home .h-team__feature-name { font-size: 20px; }
  .home .h-team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
  .home .h-promise { flex-direction: column; min-height: 0; }
  .home .h-promise__art { width: 100%; padding: 64px 0 8px; }
  .home .h-promise__art img { width: 260px; }
  .home .h-promise__body { padding: 40px 40px 80px; }
  .home .h-news__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; }
  .home .h-contact__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "card" "info";
    grid-template-rows: auto;
    row-gap: 32px; padding: 80px 0 96px;
  }
  .home .h-contact__actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home .h-app__box { padding: 0 40px; gap: 24px; }
  .home .h-app .h-h2 { font-size: 34px; }
  .home .h-app__phone { width: 190px; height: 290px; }
  .home .h-app__phone img, .home .h-app__rule, .home .h-app__bar { width: 124px; }
}

/* =========================================================
   响应式：≤767 手机稿
   ========================================================= */
@media (max-width: 767px) {
  .home .h-wrap { padding: 0 20px; }
  .home .h-hide-m { display: none !important; }
  .home .h-show-m { display: inline-flex !important; }
  .home .h-block-m { display: block; }

  .home .h-eyebrow { gap: 12px; font-size: 11px; letter-spacing: .26em; }
  .home .h-eyebrow::before { width: 28px; }
  .home .h-eyebrow--center::before, .home .h-eyebrow--center::after { width: 24px; }
  .home .h-head { gap: 22px; }
  .home .h-head--center { gap: 14px; }
  .home .h-h2 { font-size: 30px; line-height: 1.45; }
  .home .h-h3 { font-size: 19px; }
  .home .h-lead { font-size: 15px; line-height: 1.85; }
  .home .h-headrow { display: block; }
  .home .h-sec { padding: 64px 0; }

  /* 首屏：光盒在上，文字在下 */
  .home .h-hero__visual { min-height: 400px; height: 400px; background: radial-gradient(70% 60% at 50% 46%, #FFFFFF 0%, #F6F2FC 42%, #EBE4F7 78%, #DFD6F1 100%); }
  .home .h-hero__arch { width: 290px; height: 360px; margin-left: -145px; border-radius: 145px 145px 0 0; }
  .home .h-hero__arch--inner { width: 262px; height: 332px; margin-left: -131px; border-radius: 131px 131px 0 0; }
  .home .h-hero__glow { width: 340px; height: 340px; margin: -160px 0 0 -170px; }
  .home .h-hero__logo { width: 300px; max-width: 80%; margin-top: 34px; filter: drop-shadow(0 16px 28px rgba(91, 76, 168, .16)); }
  .home .h-hero__art { width: 232px; }
  .home .h-hero__copy { padding: 40px 20px 44px; gap: 28px; }
  .home .h-hero__main { gap: 20px; }
  .home .h-h1 { font-size: 38px; line-height: 1.38; }
  .home .h-hero__lead { font-size: 16px; line-height: 1.9; }
  .home .h-hero__actions { flex-direction: column; align-items: stretch; gap: 20px; margin-top: 6px; }
  .home .h-hero__actions .h-btn { width: 100%; height: 52px; white-space: normal; }
  .home .h-hero__actions .h-btn--primary { height: 56px; }
  .home .h-facts { padding-top: 20px; }
  .home .h-facts li { gap: 4px; padding: 0 8px; }
  .home .h-facts__big { font-size: 24px; line-height: 1.1; }
  .home .h-facts__text { font-size: 12px; line-height: 1.5; }

  /* 品牌主张 */
  .home .h-philo .h-wrap { padding: 52px 24px; gap: 12px; }
  .home .h-philo__label { font-size: 19px; }
  .home .h-philo__text { font-size: 25px; line-height: 1.65; }
  .home .h-philo__text .h-accent { display: block; }

  /* 通用：按钮占满整行 */
  .home .h-btn--block-m { width: 100%; }
  .home .h-show-m.h-btn { width: 100%; }

  /* 会员 */
  .home .h-members .h-wrap { gap: 26px; }
  .home .tr-seg { width: 100%; box-sizing: border-box; }
  .home .tr-seg__btn { flex: 1 1 0; width: auto; min-width: 0; padding: 0 6px; font-size: 14px; }
  .home .h-members__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .home .tr-member__badge { left: 8px; top: 8px; height: 24px; padding: 0 8px; gap: 4px; font-size: 11px; }
  .home .tr-member__badge svg { width: 10px; height: 10px; }
  .home .tr-member__body { gap: 4px; padding: 12px 12px 14px; }
  .home .tr-member__name { font-size: 17px; }
  .home .tr-member__alias { font-size: 12px; }
  .home .tr-member__age { font-size: 12px; letter-spacing: 0; }
  .home .tr-member__meta { display: block; margin-top: 4px; padding-top: 6px; font-size: 12px; }
  .home .tr-member__row { display: inline; }
  .home .tr-member__row + .tr-member__row::before { content: " · "; }
  .home .tr-member__k { display: none; }
  .home .tr-portrait-fallback__arch { width: 59%; }
  .home .tr-portrait-fallback__arch > span { font-size: 46px; }
  .home .tr-person__photo .tr-portrait-fallback__arch { width: 64%; }
  .home .tr-person__photo .tr-portrait-fallback__arch > span { font-size: 44px; }

  /* 评价 */
  .home .tr-testimonials { padding: 64px 20px; }
  .home .tr-testimonials .tr-t-head { gap: 12px; margin-bottom: 26px; }
  .home .tr-testimonials .tr-t-eyebrow { gap: 12px; font-size: 11px; letter-spacing: .26em; }
  .home .tr-testimonials .tr-t-eyebrow::before,
  .home .tr-testimonials .tr-t-eyebrow::after { width: 24px; }
  .home .tr-testimonials .tr-t-title { font-size: 30px; line-height: 1.45; }
  .home .tr-testimonials .tr-t-title em { display: block; }
  .home .tr-testimonials .tr-t-sub { font-size: 14px; line-height: 1.8; }
  .home .tr-testimonials .tr-t-grid { gap: 16px; }
  .home .tr-testimonials .tr-t-card,
  .home .tr-testimonials .tr-t-card--featured { padding: 34px 22px 24px; }
  .home .tr-testimonials .tr-t-card::before,
  .home .tr-testimonials .tr-t-card--featured::before { left: 22px; right: 22px; }
  .home .tr-testimonials .tr-t-quote,
  .home .tr-testimonials .tr-t-card--featured .tr-t-quote { width: 32px; height: 24px; margin-bottom: 16px; }
  .home .tr-testimonials .tr-t-headline,
  .home .tr-testimonials .tr-t-card--featured .tr-t-headline { margin-bottom: 16px; font-size: 22px; line-height: 1.6; }
  .home .tr-testimonials .tr-t-excerpt,
  .home .tr-testimonials .tr-t-card--featured .tr-t-excerpt { margin-bottom: 12px; font-size: 15px; line-height: 1.9; }
  .home .tr-testimonials .tr-t-more { margin-bottom: 16px; }
  .home .tr-testimonials .tr-t-body p { font-size: 15px; }
  .home .tr-testimonials .tr-t-foot { gap: 12px; padding-top: 18px; }
  .home .tr-testimonials .tr-t-avatar { width: 44px; height: 44px; font-size: 22px; }
  .home .tr-testimonials .tr-t-who strong { font-size: 15px; }
  .home .tr-testimonials .tr-t-who span { font-size: 12px; }
  .home .tr-testimonials .tr-t-verified { height: 30px; padding: 0 12px; font-size: 12px; }
  .home .tr-testimonials .tr-t-cta { margin-top: 26px; }
  .home .tr-testimonials .tr-t-btn { display: flex; width: 100%; height: 52px; }

  /* 为什么选择 + 视频 */
  .home .h-why { padding: 64px 0; }
  .home .h-why__inner { gap: 30px; }
  .home .h-why__copy { gap: 22px; }
  .home .h-why__list { margin-top: 0; }
  .home .h-why__item { gap: 16px; padding: 20px 0; }
  .home .h-why__icon { width: 44px; height: 44px; }
  .home .h-why__icon svg { width: 20px; height: 20px; }
  .home .h-why__txt { gap: 4px; }
  .home .h-why__txt p { font-size: 14px; line-height: 1.8; }
  .home .h-video { max-width: none; height: 520px; }
  .home .h-video__play { width: 68px; height: 68px; margin: -34px 0 0 -34px; }
  .home .h-video__cap { left: 18px; right: 18px; bottom: 16px; font-size: 12px; }

  /* 服务流程：竖向时间线 */
  .home .h-process__inner { padding: 8px 0 64px; gap: 26px; }
  .home .h-steps { display: flex; flex-direction: column; gap: 0; margin-left: 16px; border-left: 1px solid var(--h-lavender); }
  .home .h-step { gap: 6px; padding: 0 0 26px 24px; border-top: 0; }
  .home .h-step:last-child { padding-bottom: 0; }
  .home .h-step__no { font-size: 32px; }
  .home .h-step p { font-size: 14px; line-height: 1.8; }

  /* 顾问：主图在上，网格改为横向滑动 */
  .home .h-team .h-headrow { margin-bottom: 22px; }
  .home .h-team__body { flex-direction: column; gap: 28px; align-items: stretch; }
  .home .h-team__feature { width: 100%; gap: 22px; }
  .home .h-team__feature-name { font-size: 21px; }
  .home .h-team__feature-role { font-size: 13px; }
  .home .h-team__side { display: flex; flex-direction: column; gap: 22px; }

  /* 横向滑动容器：自身滚动，隐藏滚动条，吸附对齐，不撑开页面 */
  .home .h-rail {
    display: flex; gap: 12px; margin-right: -20px;
    overflow-x: auto; overflow-y: hidden; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home .h-rail::-webkit-scrollbar { display: none; }
  .home .h-rail::after { content: ""; flex: 0 0 8px; }
  .home .h-rail > * { scroll-snap-align: start; }
  .home .h-rail > .tr-empty { flex: 1 1 100%; margin-right: 20px; }
  .home .h-team__grid > .tr-person { flex: 0 0 150px; gap: 6px; }
  .home .tr-person__body { gap: 2px; }
  .home .tr-person__name { font-size: 17px; }
  .home .tr-person__role { font-size: 12px; }
  .home .h-railfoot { display: flex; align-items: center; gap: 12px; min-height: 44px; }

  /* 隐私承诺 */
  .home .h-promise { background: radial-gradient(90% 40% at 50% 12%, #4F4184 0%, #2E2449 70%); }
  .home .h-promise__art { padding: 56px 24px 0; background: none; }
  .home .h-promise__art img { width: 190px; }
  .home .h-promise__body { padding: 32px 24px 64px; gap: 22px; }
  .home .h-promise .h-eyebrow::before { width: 28px; }
  .home .h-promise__list li { gap: 16px; padding: 16px 0; }
  .home .h-promise__no { width: 26px; font-size: 18px; }
  .home .h-promise__list li > span:last-child { font-size: 15px; line-height: 1.75; }
  .home .h-promise .h-link { min-height: 44px; padding-bottom: 0; border-bottom: 0; }

  /* 资讯：横向滑动 */
  .home .h-news { padding: 64px 0; }
  .home .h-news .h-headrow { margin-bottom: 22px; }
  .home .h-news__grid { gap: 14px; }
  .home .h-news__grid > .tr-post { flex: 0 0 268px; gap: 10px; }
  .home .tr-post__body { gap: 10px; }
  .home .tr-post__date { font-size: 12px; letter-spacing: 0; }
  .home .tr-post__title { font-size: 18px; }
  .home .tr-post__excerpt { font-size: 13px; line-height: 1.7; -webkit-line-clamp: 2; }
  .home .tr-cover-fallback__word { font-size: 38px; }
  .home .h-news .h-railfoot { margin-top: 22px; }

  /* 预约咨询 */
  .home .h-contact__grid { row-gap: 20px; padding: 56px 0 64px; }
  .home .h-contact__head { gap: 20px; }
  .home .h-contact__card { gap: 18px; padding: 28px 20px 24px; }
  .home .h-contact__card::before { left: 20px; right: 20px; }
  .home .h-contact__card .h-h3 { font-size: 21px; }
  .home .h-checks li { gap: 12px; padding: 12px 0; font-size: 15px; }
  .home .h-contact__actions { grid-template-columns: 1fr; gap: 10px; }
  .home .h-contact__actions .h-btn { height: 56px; }
  .home .h-contact__mail { margin: 0; font-size: 13px; }
  /* 触控区域 ≥ 44px */
  .home .h-contact__mail a, .home .h-contact__info a { display: inline-flex; align-items: center; min-height: 44px; }
  .home .h-contact__mail a { border-bottom: 0; text-decoration: underline; text-decoration-color: var(--h-line-strong); text-underline-offset: 3px; }
  .home .h-contact__info { gap: 4px; padding-top: 6px; border-top: 0; font-size: 14px; }
  .home .h-contact__info li { align-items: center; gap: 12px; min-height: 44px; }
  .home .h-contact__info svg { margin-top: 0; }
  .home .h-contact__info li:last-child { align-items: flex-start; }
  .home .h-contact__info li:last-child svg { margin-top: 3px; }

  /* App 下载：居中堆叠 */
  .home .h-app { padding-bottom: 64px; }
  .home .h-app__box { flex-direction: column; justify-content: flex-start; gap: 16px; min-height: 0; padding: 36px 22px 30px; text-align: center; background: linear-gradient(160deg, #F0ECF8 0%, #E7E0F4 100%); }
  .home .h-app__logo-m { display: block; width: 120px; height: auto; }
  .home .h-app__copy { align-items: center; gap: 16px; max-width: none; width: 100%; padding: 0; }
  .home .h-app .h-eyebrow { justify-content: center; }
  .home .h-app .h-eyebrow::before { display: none; }
  .home .h-app .h-h2 { font-size: 26px; line-height: 1.45; }
  .home .h-app .h-lead { font-size: 14px; line-height: 1.8; }
  .home .h-app__actions { flex-direction: column; gap: 10px; width: 100%; }
  .home .h-store { justify-content: center; gap: 10px; width: 100%; height: 54px; }
  .home .h-store__small { display: none; }
  .home .h-store__big { font-size: 16px; }
  .home .h-app__phone { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .home .tr-post__cover img, .home .h-video__cover { transition: none; }
  .home .tr-post:hover .tr-post__cover img { transform: none; }
  .home .h-rail { scroll-behavior: auto; }
}
