/* ==========================================================================
   陕西享邻嫂家政有限公司 — 官方网站样式表
   作者：鹏城信息 AI 专家
   说明：单一样式表，含设计令牌 / 基础重置 / 组件 / 响应式断点
   断点策略：移动优先，断点 640px / 900px / 1200px
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 设计令牌（Design Tokens）
   -------------------------------------------------------------------------- */
:root {
  /* 主色：青绿 —— 健康、专业、可信赖（养老服务行业主色） */
  --brand: #0e7c66;
  --brand-dark: #0a5c4c;
  --brand-soft: #e6f4f0;
  --brand-tint: #f3faf8;

  /* 辅助色：暖橙 —— 温暖、亲和、家政服务属性 */
  --accent: #ef8a1e;
  --accent-dark: #d97316;
  --accent-soft: #fef4e8;

  /* 中性色 */
  --ink: #12211e;
  --ink-2: #35504a;
  --muted: #61776f;
  --line: #e2eae7;
  --line-soft: #eef4f2;

  /* 背景 */
  --bg: #ffffff;
  --bg-soft: #f7faf9;
  --bg-deep: #0d2b25;

  /* 功能色 */
  --success: #1a9e6f;
  --warning: #c8801a;
  --info: #2b6fb5;

  /* 圆角 */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-full: 999px;

  /* 阴影 */
  --sh-xs: 0 1px 2px rgba(18, 33, 30, .05);
  --sh-sm: 0 2px 8px rgba(18, 33, 30, .06);
  --sh: 0 8px 26px rgba(18, 33, 30, .08);
  --sh-lg: 0 20px 50px rgba(18, 33, 30, .12);

  /* 版心与间距 —— 全部流式，自动适配手机 / 平板 / 桌面 / 超宽屏 */
  --wrap: 1240px;
  --wrap-narrow: 880px;
  --gutter: clamp(16px, 3.2vw, 34px);     /* 屏幕越宽留白越从容 */
  --sec-y: clamp(36px, 4.6vw, 66px);      /* 模块纵向节奏（原 52~96px） */
  --gap: clamp(14px, 1.7vw, 22px);        /* 栅格间距 */
  --head-gap: clamp(18px, 2.4vw, 32px);   /* 标题组到下文的距离（原 28~48px） */

  /* 流式排版尺度 */
  --fs-h1: clamp(1.85rem, 1.1rem + 3.1vw, 3.35rem);
  --fs-h2: clamp(1.5rem, 1.05rem + 1.85vw, 2.35rem);
  --fs-h3: clamp(1.12rem, .98rem + .55vw, 1.35rem);
  --fs-lead: clamp(1rem, .95rem + .35vw, 1.14rem);

  /* 动效 */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .45s;

  /* 层级（仅定位元素生效） */
  --z-base: 1;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-fab: 150;
}

/* --------------------------------------------------------------------------
   2. 基础重置与排版
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* 锚点跳转时避开吸顶导航 */
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC",
    sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

/* 键盘可达性：统一焦点样式 */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 屏幕阅读器专用文本 */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 跳转到主内容（无障碍） */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: var(--z-drawer);
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. 布局工具类
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: var(--sec-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--brand-tint); }
.section--deep {
  background: var(--bg-deep);
  color: #dcefe9;
}
.section--deep h2,
.section--deep h3 { color: #fff; }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(216px, 1fr)); }

.center { text-align: center; }

/* 章节标题组 */
.sec-head { max-width: 780px; margin-bottom: var(--head-gap); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p {
  color: var(--muted);
  font-size: var(--fs-lead);
  margin-bottom: 0;
}
.section--deep .sec-head p { color: #a9c8c0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: var(--r-full);
}
.eyebrow--accent { color: var(--accent-dark); background: var(--accent-soft); }
.section--deep .eyebrow {
  color: #8fd8c6;
  background: rgba(255, 255, 255, .1);
}

/* --------------------------------------------------------------------------
   4. 按钮
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  border: 2px solid transparent;
  border-radius: var(--r-full);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
    background-color .18s var(--ease), color .18s var(--ease),
    border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(14, 124, 102, .26);
}
.btn--primary:hover {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 10px 26px rgba(14, 124, 102, .34);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(239, 138, 30, .3);
}
.btn--accent:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 10px 26px rgba(239, 138, 30, .38);
}

.btn--ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-tint);
}

.btn--onDark {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}
.btn--onDark:hover {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  color: #fff;
}

.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   5. 顶部导航
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--bg-deep);
  color: #a9c8c0;
  font-size: .82rem;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar__list li { margin: 0; }
.topbar a { color: #cde6df; }
.topbar a:hover { color: #fff; }
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8fd8c6;
  font-weight: 600;
}
@media (max-width: 760px) {
  .topbar__list--hideSm { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

/* 品牌标识 */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 800;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: auto;
  height: 47px;
  flex-shrink: 0;
  object-fit: contain;
}
.site-footer .brand__mark { height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-size: 1.1rem;
  letter-spacing: .01em;
}
.brand__sub {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
}

/* 主导航链接 */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__menu li { margin: 0; }
.nav__link {
  display: block;
  padding: 9px 14px;
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__link:hover { color: var(--brand); background: var(--brand-tint); }
.nav__link[aria-current="page"] {
  color: var(--brand);
  background: var(--brand-soft);
}

.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--brand);
  white-space: nowrap;
}
.nav__phone svg { flex-shrink: 0; }

/* 汉堡按钮 */
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background-color .2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* 移动端抽屉 */
@media (max-width: 1000px) {
  .nav__toggle { display: inline-flex; }
  .nav__phone--desktop { display: none; }

  .nav__menu {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
    padding: 96px 22px 32px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    transform: translateY(-102%);
    transition: transform .34s var(--ease);
    max-height: 100dvh;
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link {
    padding: 15px 8px;
    font-size: 1.06rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav__menu .nav__cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }
  .nav__menu .nav__cta .btn { width: 100%; }
  .nav__cta--mobile { display: flex; }
  .nav__phone--desktop { display: none; }
  .nav__toggle {
    position: relative;
    z-index: calc(var(--z-drawer) + 1);
  }
}
@media (min-width: 1001px) {
  .nav__cta--mobile { display: none; }
  .nav__phone--desktop { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   6. 首页主视觉（Hero）
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(14, 124, 102, .13), transparent 62%),
    radial-gradient(760px 420px at 4% 104%, rgba(239, 138, 30, .13), transparent 60%),
    linear-gradient(180deg, var(--brand-tint) 0%, #fff 72%);
  padding: clamp(28px, 4.2vw, 56px) 0 clamp(32px, 4.8vw, 64px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.2vw, 42px);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

.hero h1 { margin-bottom: .5em; }
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .06em;
  height: .3em;
  background: rgba(239, 138, 30, .26);
  border-radius: 3px;
  z-index: -1;
}

.hero__lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 34em;
  margin-bottom: 1.2em;
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
  display: grid;
  gap: 9px;
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: .96rem;
  color: var(--ink-2);
}
.hero__points svg { flex-shrink: 0; margin-top: 4px; }

/* Hero 右侧视觉 */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 3;
  background: var(--brand-soft);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 浮动徽章 */
.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, .97);
  border-radius: var(--r);
  box-shadow: var(--sh);
  font-size: .85rem;
  line-height: 1.35;
}
.hero__badge strong {
  display: block;
  font-size: 1.3rem;
  color: var(--brand);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.hero__badge span { color: var(--muted); }
.hero__badge--a { top: 18px; right: -10px; }
.hero__badge--b { bottom: -16px; left: -10px; }
@media (max-width: 560px) {
  .hero__badge--a { right: 8px; top: 10px; padding: 10px 13px; }
  .hero__badge--b { left: 8px; bottom: -12px; padding: 10px 13px; }
}

/* 数据条 */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(22px, 3vw, 38px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
@media (min-width: 780px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stats__item {
  background: #fff;
  padding: 18px 16px;
  text-align: center;
}
.stats__num {
  display: block;
  font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.2rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stats__label {
  display: block;
  margin-top: 6px;
  font-size: .86rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   7. 卡片与内容组件
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
    border-color .22s var(--ease);
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
  border-color: #cfe2dc;
}
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--muted); font-size: .94rem; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: var(--r);
  background: var(--brand-soft);
  color: var(--brand);
}
.card__icon--accent { background: var(--accent-soft); color: var(--accent-dark); }
.card__icon svg { width: 26px; height: 26px; }

/* 带图卡片 */
.media-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.media-card__img {
  aspect-ratio: 16 / 10;
  background: var(--brand-soft);
  overflow: hidden;
}
.media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.media-card:hover .media-card__img img { transform: scale(1.05); }
.media-card__body { padding: 18px; flex: 1; }
.media-card__body h3 { font-size: 1.08rem; }
.media-card__body p { color: var(--muted); font-size: .92rem; margin-bottom: 0; }

/* 标签 */
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 0; padding: 0; list-style: none; }
.tags li {
  margin: 0;
  padding: 4px 11px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-tint);
  border: 1px solid #d8ece7;
  border-radius: var(--r-full);
}
.tags--accent li {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-color: #f7e0c4;
}

/* 服务矩阵（大卡片 + 明细列表） */
.svc-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.svc-block:hover { box-shadow: var(--sh); border-color: #cfe2dc; }
@media (min-width: 820px) {
  .svc-block { grid-template-columns: 248px 1fr; gap: 26px; padding: 26px 26px; }
}
.svc-block__head { display: flex; align-items: flex-start; gap: 14px; }
.svc-block__no {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  background: var(--brand);
  border-radius: 12px;
  font-variant-numeric: tabular-nums;
}
.svc-block__head h3 { margin-bottom: .2em; }
.svc-block__head p {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
}
.svc-block__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.svc-block__list li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  font-size: .93rem;
  color: var(--ink-2);
}
.svc-block__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* 清单（对勾列表） */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  font-size: .95rem;
  color: var(--ink-2);
}
.checklist svg { flex-shrink: 0; margin-top: 4px; color: var(--brand); }

/* --------------------------------------------------------------------------
   8. 服务流程时间线
   -------------------------------------------------------------------------- */
.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  counter-reset: flow;
}
.flow__item {
  position: relative;
  padding: 22px 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.flow__item::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  top: -15px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  padding: 0 9px;
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: var(--r-full);
  font-variant-numeric: tabular-nums;
}
.flow__item h3 { font-size: 1.02rem; margin: .4em 0 .35em; }
.flow__item p { margin: 0; font-size: .9rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   9. 承诺 / 保障条
   -------------------------------------------------------------------------- */
.assure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}
.assure__item {
  display: flex;
  gap: 13px;
  padding: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
}
.assure__item svg { flex-shrink: 0; color: #8fd8c6; margin-top: 2px; }
.assure__item h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .3em;
}
.assure__item p {
  margin: 0;
  font-size: .89rem;
  color: #a9c8c0;
}

/* --------------------------------------------------------------------------
   10. 长护险专题（高亮信息块）
   -------------------------------------------------------------------------- */
.insurance {
  background:
    radial-gradient(760px 380px at 100% 0%, rgba(239, 138, 30, .12), transparent 60%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.insurance__body { padding: clamp(20px, 3vw, 34px); }
.insurance__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: ins;
}
.insurance__steps li {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 56px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  font-size: .92rem;
  color: var(--ink-2);
}
.insurance__steps li::before {
  counter-increment: ins;
  content: counter(ins);
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
}
.insurance__steps strong { display: block; color: var(--ink); margin-bottom: 3px; }

/* 政策免责提示 */
.notice {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  font-size: .88rem;
  color: var(--warning);
  background: #fff9ef;
  border: 1px solid #f5e2c4;
  border-left: 4px solid var(--warning);
  border-radius: var(--r-sm);
}
.notice svg { flex-shrink: 0; margin-top: 3px; }
.notice p { margin: 0; color: #7a5a1c; }
.notice strong { color: var(--warning); }

/* --------------------------------------------------------------------------
   11. 客户评价
   -------------------------------------------------------------------------- */
.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.quote__stars { display: flex; gap: 3px; margin-bottom: 12px; color: var(--accent); }
.quote__text {
  flex: 1;
  font-size: .95rem;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.quote__who {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.quote__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
}
.quote__who strong { display: block; font-size: .92rem; }
.quote__who span { font-size: .8rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   12. 表单
   -------------------------------------------------------------------------- */
.form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: clamp(20px, 2.8vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-2);
}
.field .req { color: #d64545; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 124, 102, .13);
  outline: none;
}
.field input:user-invalid,
.field select:user-invalid { border-color: #d64545; }

.field__hint { font-size: .78rem; color: var(--muted); }

.form__foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
}
.form__foot .field__hint { flex: 1; min-width: 200px; }

/* 表单状态提示 */
.form__alert {
  grid-column: 1 / -1;
  display: none;
  padding: 14px 16px;
  font-size: .92rem;
  border-radius: var(--r-sm);
}
.form__alert.is-visible { display: block; }
.form__alert--ok {
  color: #0f6b4c;
  background: #eafaf3;
  border: 1px solid #bfe8d7;
}
.form__alert--err {
  color: #a5343a;
  background: #fdf0f0;
  border: 1px solid #f3cfd1;
}

/* --------------------------------------------------------------------------
   13. 联系方式块
   -------------------------------------------------------------------------- */
.contact-item {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}
.contact-item h3 { font-size: .95rem; margin-bottom: .2em; }
.contact-item p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.contact-item a { font-weight: 700; }

/* 地图占位 */
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}
.map-frame p { color: var(--muted); font-size: .9rem; margin: 0; }

/* --------------------------------------------------------------------------
   14. 面包屑 / 内页头
   -------------------------------------------------------------------------- */
.page-head {
  padding: clamp(22px, 3.4vw, 44px) 0 clamp(18px, 2.6vw, 32px);
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(14, 124, 102, .14), transparent 62%),
    linear-gradient(180deg, var(--brand-tint), #fff);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 { margin-bottom: .35em; }
.page-head p {
  max-width: 46em;
  margin: 0;
  font-size: var(--fs-lead);
  color: var(--muted);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  font-size: .84rem;
  color: var(--muted);
}
.crumbs li { margin: 0; }
.crumbs li::after { content: "/"; margin-left: 8px; color: #c6d4d0; }
.crumbs li:last-child::after { content: none; }

/* 通用正文排版 */
.prose { max-width: 76ch; }
.prose h2 { margin-top: 1.35em; }
.prose h3 { margin-top: 1.1em; }
.prose ul, .prose ol { color: var(--ink-2); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: .92rem;
}
.prose th, .prose td {
  padding: 11px 13px;
  border: 1px solid var(--line);
  text-align: left;
}
.prose th { background: var(--bg-soft); font-weight: 700; }

/* --------------------------------------------------------------------------
   15. 行动号召（CTA）条
   -------------------------------------------------------------------------- */
.cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 2.8vw, 32px);
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  border-radius: var(--r-lg);
  color: #fff;
}
.cta-bar h2 { color: #fff; margin-bottom: .25em; }
.cta-bar p { margin: 0; color: #bfe4da; }

/* --------------------------------------------------------------------------
   16. 页脚
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-deep);
  color: #a9c8c0;
  padding: clamp(30px, 4.2vw, 50px) 0 0;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 2.8vw, 32px);
}
@media (min-width: 700px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 32px; }
}
.site-footer h3 {
  color: #fff;
  font-size: .98rem;
  margin-bottom: 1em;
}
.site-footer a { color: #a9c8c0; }
.site-footer a:hover { color: #fff; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: .55em; }
.site-footer .brand { color: #fff; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand__sub { color: #7fa8a0; }

.footer__bottom {
  margin-top: clamp(22px, 2.8vw, 32px);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  font-size: .82rem;
  color: #7fa8a0;
}
.footer__bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   17. 浮动操作按钮与回顶
   -------------------------------------------------------------------------- */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  box-shadow: var(--sh);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.04); color: #fff; }
.fab--call { background: var(--brand); }
.fab--top {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease),
    transform .2s var(--ease);
}
.fab--top.is-visible { opacity: 1; visibility: visible; }

/* 移动端底部固定咨询条 */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-fab);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
}
.mobile-bar .btn { flex: 1; padding: 12px 10px; font-size: .92rem; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  .fab-stack { bottom: 78px; }
  .fab--top { display: none; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* --------------------------------------------------------------------------
   18. 滚动入场动画（尊重 prefers-reduced-motion）
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   18.5 分类锚点导航（chips）
   -------------------------------------------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chips a {
  padding: 9px 17px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  transition: background-color .18s var(--ease), color .18s var(--ease),
    border-color .18s var(--ease), transform .18s var(--ease);
}
.chips a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* 服务区块序号在移动端收窄时居中排布 */
@media (max-width: 819px) {
  .svc-block__list { margin-top: 4px; }
}

/* 正文表格在小屏可横向滚动，避免撑破布局 */
@media (max-width: 640px) {
  .prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ---------------- 招聘岗位卡片 ---------------- */
.job-list { display: grid; gap: var(--gap); grid-template-columns: repeat(2, 1fr); margin-top: 22px; }
@media (max-width: 860px) { .job-list { grid-template-columns: 1fr; } }
.job-card {
  background: var(--card, #fff);
  border: 1px solid var(--line, rgba(14, 124, 102, .14));
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(15, 43, 38, .05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(15, 43, 38, .10);
}
.job-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.job-card__head h3 { margin: 0; font-size: 1.08rem; }
.job-card__pay {
  color: #d9531e;
  font-weight: 800;
  font-size: 1.12rem;
  white-space: nowrap;
}
.job-card__pay em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted, #5b6b68);
  margin-left: 2px;
}
.job-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: .86rem;
  color: var(--muted, #5b6b68);
}
.job-card__meta li { display: inline-flex; align-items: center; gap: 5px; }
.job-card__meta li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand, #0e7c66);
  flex-shrink: 0;
}
.job-card p { margin: 0; font-size: .93rem; color: var(--muted, #5b6b68); }
.job-card .tags { margin-top: 0; }
.job-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------------- 招聘页 dl FAQ ---------------- */
.prose dl dt { font-weight: 700; margin-top: 18px; }
.prose dl dd { margin: 6px 0 0; color: var(--muted, #5b6b68); }

/* --------------------------------------------------------------------------
   18.5 品牌叙事组件（品牌释义 / 品牌口号 / 使命与理念 / 页脚标语）
   -------------------------------------------------------------------------- */

/* --- 品牌释义：三字拆解 --- */
.glyph-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
}
.glyph {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.glyph:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.glyph__char {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 17px;
}
.glyph__body { min-width: 0; }
.glyph__body h3 { margin-bottom: .3em; font-size: 1.02rem; }
.glyph__body p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.72; }
.glyph__coda {
  margin: 0;
  padding-top: 20px;
  margin-top: 22px;
  border-top: 1px dashed var(--line);
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-2);
}
.glyph__coda strong { color: var(--brand); }
.section--deep .glyph__coda { color: #a9c8c0; border-top-color: rgba(255, 255, 255, .16); }
.section--deep .glyph__coda strong { color: #8fd8c6; }

/* --- 品牌口号横幅 --- */
.slogan-band {
  padding: clamp(28px, 4.2vw, 52px) 0;
  background: var(--bg-deep);
  text-align: center;
}
.slogan-band__mark {
  margin: 0;
  font-size: clamp(1.3rem, .95rem + 1.75vw, 2.25rem);
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  line-height: 1.4;
}
.slogan-band__mark em { font-style: normal; color: #8fd8c6; }
.slogan-band__note {
  margin: 14px 0 0;
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #7ea79d;
}

/* --- 使命 · 愿景 · 理念（标签 + 正文，细分隔线） --- */
.creed { border-top: 1px solid var(--line); }
.creed__row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.creed__label {
  padding-top: .3em;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand);
}
.creed__text { margin: 0; font-size: 1.02rem; color: var(--ink-2); line-height: 1.82; }
.creed__text strong { color: var(--ink); }

/* --- 页脚品牌标语 --- */
.footer__slogan {
  margin: 14px 0 0;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: #8fd8c6;
}

@media (max-width: 640px) {
  .creed__row { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
  .creed__label { padding-top: 0; }
  .creed__text { font-size: .98rem; line-height: 1.75; }
  .glyph { padding: 20px 17px; }
  .glyph__char { width: 54px; height: 54px; font-size: 1.72rem; border-radius: 15px; }
}
@media (max-width: 400px) {
  .glyph { flex-direction: column; gap: 12px; }
  .slogan-band__mark { letter-spacing: .06em; }
}

/* --------------------------------------------------------------------------
   18.6 版式自适应增强（手机 / 平板 / 桌面 / 超宽屏）
   间距令牌在各断点二次收敛；版心随屏幕放大，避免大屏两侧大片空白
   -------------------------------------------------------------------------- */

/* --- 全部元素宽度约束：任何屏幕都不出现横向滚动 --- */
html, body { max-width: 100%; }
img, svg, video, canvas, iframe { max-width: 100%; height: auto; }
/* 长链接 / 长英文串 / 连续数字不撑破容器 */
h1, h2, h3, h4, p, li, dd, dt, td, th, a, strong { overflow-wrap: break-word; }
/* 表格与 pre 在中等屏幕也可横滑（原先仅 <=640px） */
@media (max-width: 900px) {
  .prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .prose table { white-space: normal; }
}

/* --- 桌面：版心随屏幕放大，内容自动占据可视宽度 --- */
@media (min-width: 1320px) {
  :root { --wrap: 1280px; }
}
@media (min-width: 1500px) {
  :root { --wrap: 1380px; --gutter: clamp(28px, 2.6vw, 44px); }
}
@media (min-width: 1780px) {
  :root { --wrap: 1480px; --gutter: 48px; }
}
/* 大屏让首屏更饱满（渐进增强：支持 svh 的浏览器才生效） */
@supports (height: 100svh) {
  @media (min-width: 1024px) {
    .hero { min-height: min(88svh, 820px); }
  }
  @media (min-width: 720px) and (max-width: 1023px) {
    .hero { min-height: min(80svh, 720px); }
  }
}

/* --- 平板（768~1023）：三/四栏收敛为两栏，避免卡片过窄 --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .assure { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- 平板竖屏偏小 & 手机横屏（641~767）：单栏但不能失去呼吸感 --- */
@media (min-width: 641px) and (max-width: 767px) {
  :root { --sec-y: clamp(34px, 4.4vw, 46px); --gutter: 22px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- 手机：进一步收紧纵向节奏 --- */
@media (max-width: 640px) {
  :root {
    --gutter: 16px;
    --sec-y: 30px;
    --gap: 13px;
    --head-gap: 16px;
  }
  .section { padding: var(--sec-y) 0; }
  .stats__item { padding: 16px 12px; }
  .card { padding: 20px 17px; }
  .quote { padding: 20px 17px; }
  .flow__item { padding: 20px 16px 16px; }
  .svc-block { padding: 20px 17px; }
  .hero__badge { padding: 10px 13px; font-size: .8rem; }
  .hero__badge strong { font-size: 1.15rem; }
  .cta-bar { padding: 20px 18px; }
  .page-head { padding: 20px 0 16px; }
  h1, h2, h3, h4 { margin-bottom: .45em; }
  body { line-height: 1.7; }
}

/* --- 小屏手机（<=400px）：极限压缩但不牺牲可读性 --- */
@media (max-width: 400px) {
  :root { --gutter: 14px; --sec-y: 26px; --gap: 12px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item { padding: 14px 10px; }
  .btn { padding: 12px 20px; font-size: .94rem; }
}

/* --- 超宽屏避免正文行长过宽影响阅读 --- */
@media (min-width: 1500px) {
  .prose { max-width: 82ch; }
  .sec-head { max-width: 860px; }
}

/* --------------------------------------------------------------------------
   19. 打印样式
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .topbar, .fab-stack, .mobile-bar, .cta-bar { display: none !important; }
  body { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
