/* ==========================================================================
   组件库 - 通用可复用模块（日系温柔风）
   核心：左右图文渐变融合 · 每个模块独立原创
   ========================================================================== */

/* ---------- 网格系统 ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   左右图文渐变融合模块（核心骨架 · 独一无二）
   一半实景图、一半文字，背景渐变自然衔接，无硬切割
   ========================================================================== */
.fuse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream);
}

/* 图片侧：带柔光渐变与底色融合 */
.fuse-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.fuse-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fuse:hover .fuse-media img {
  transform: scale(1.06);
}

/* 图文衔接处的渐变蒙版，让图自然"融"进文字底色 */
.fuse-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fuse:not(.reverse) .fuse-media::after {
  background: linear-gradient(90deg, rgba(250, 247, 240, 0) 60%, var(--cream) 100%);
}

.fuse.reverse .fuse-media::after {
  background: linear-gradient(270deg, rgba(250, 247, 240, 0) 60%, var(--cream) 100%);
}

/* 不同底色段对应融合色 */
.fuse.on-sage .fuse-media::after {
  background: linear-gradient(90deg, rgba(232, 237, 222, 0) 60%, var(--sage-mist) 100%);
}
.fuse.reverse.on-sage .fuse-media::after {
  background: linear-gradient(270deg, rgba(232, 237, 222, 0) 60%, var(--sage-mist) 100%);
}

.fuse.on-beige .fuse-media::after {
  background: linear-gradient(90deg, rgba(237, 228, 208, 0) 60%, var(--beige) 100%);
}
.fuse.reverse.on-beige .fuse-media::after {
  background: linear-gradient(270deg, rgba(237, 228, 208, 0) 60%, var(--beige) 100%);
}

/* 文字侧 */
.fuse-body {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.fuse .fuse-no {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--sage-deep);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fuse .fuse-no::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--sage-soft);
}

.fuse-body h3 {
  font-size: 27px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  line-height: 1.35;
}

.fuse-body p.lead {
  font-size: 15px;
  color: var(--body);
  line-height: 1.92;
  margin-bottom: 22px;
}

.fuse-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin-bottom: 28px;
}

.fuse-feat li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--body);
}

.fuse-feat li svg {
  flex-shrink: 0;
  color: var(--sage-deep);
}

/* 倒序：图在右 */
.fuse.reverse .fuse-media {
  order: 2;
}

.fuse.reverse .fuse-body {
  order: 1;
}

/* 标签角标 */
.fuse-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: rgba(250, 247, 240, 0.9);
  backdrop-filter: blur(6px);
  color: var(--sage-ink);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.fuse.reverse .fuse-badge {
  left: auto;
  right: 22px;
}

/* ==========================================================================
   通用卡片网格（服务/案例/资讯）
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-soft);
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.card:hover .card-media img {
  transform: scale(1.07);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  background: rgba(250, 247, 240, 0.92);
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  flex: 1;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--sage-deep);
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.card-foot .more {
  transition: transform 0.3s ease;
}

.card:hover .card-foot .more {
  transform: translateX(5px);
}

/* ==========================================================================
   资讯列表项（首页 / 列表页通用）
   ========================================================================== */
.news-list {
  margin-bottom: 22px;
}

.news-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: all 0.36s ease;
  align-items: center;
}

.news-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
  transform: translateX(4px);
}

.news-item .n-thumb {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.news-item .n-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-item:hover .n-thumb img {
  transform: scale(1.06);
}

.news-item .n-body h4 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 9px;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.news-item:hover .n-body h4 {
  color: var(--sage-deep);
}

.news-item .n-excerpt {
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item .n-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.news-item .n-foot .read {
  color: var(--sage-deep);
  font-weight: 600;
}

/* ==========================================================================
   资讯列表页两栏布局
   ========================================================================== */
.news-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.news-page-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 侧边栏卡片 */
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  margin-bottom: 22px;
}

.side-card h4 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
}

.side-card h4::before {
  content: "";
  width: 4px;
  height: 16px;
  background: var(--sage-deep);
  border-radius: 2px;
}

/* 热门服务 / 标签列表 */
.side-list li {
  margin-bottom: 12px;
}

.side-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--body);
  padding: 9px 12px;
  border-radius: var(--r-sm);
  transition: all 0.25s ease;
}

.side-list li a:hover {
  background: var(--sage-mist);
  color: var(--sage-ink);
  transform: translateX(3px);
}

.side-list li a span {
  color: var(--sage-deep);
}

/* 标签云 */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-cloud a {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--sage-mist);
  color: var(--sage-ink);
  font-size: 12.5px;
  transition: all 0.25s ease;
}

.tag-cloud a:hover {
  background: var(--sage-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* 侧边迷你资讯 */
.news-mini {
  margin-bottom: 16px;
}

.news-mini:last-child {
  margin-bottom: 0;
}

.mini-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-item .m-thumb {
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.mini-item .m-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-item .m-body h5 {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.mini-item:hover .m-body h5 {
  color: var(--sage-deep);
}

.mini-item .m-date {
  font-size: 11.5px;
  color: var(--muted);
}

/* ==========================================================================
   文章详情
   ========================================================================== */
.article-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
}

.article-head h1 {
  font-size: 30px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 18px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  font-size: 13.5px;
  color: var(--muted);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-content {
  font-size: 15.5px;
  line-height: 2;
  color: var(--body);
}

.article-content img {
  border-radius: var(--r-md);
  margin: 24px 0;
  width: 100%;
}

.article-content p {
  margin-bottom: 18px;
}

.article-content h2,
.article-content h3 {
  margin: 30px 0 14px;
  color: var(--ink);
}

.article-content h2 {
  font-size: 22px;
  padding-left: 14px;
  border-left: 4px solid var(--sage-deep);
}

.article-content h3 {
  font-size: 18px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 18px 4px;
  padding-left: 22px;
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 8px;
  list-style: disc;
  color: var(--body);
}

.article-content ol li {
  list-style: decimal;
}

.article-content blockquote {
  margin: 22px 0;
  padding: 18px 24px;
  background: var(--sage-mist);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--sage-ink);
  font-style: italic;
}

.article-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.article-tags a {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--beige);
  color: var(--sage-ink);
  font-size: 12.5px;
  transition: all 0.25s ease;
}

.article-tags a:hover {
  background: var(--sage-deep);
  color: #fff;
}

/* ==========================================================================
   步骤流程（建站流程页）
   ========================================================================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px dashed var(--line);
  position: relative;
}

.step-row:last-child {
  border-bottom: none;
}

.step-no {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 700;
  color: var(--sage-soft);
  line-height: 1;
  transition: color 0.3s ease;
}

.step-row:hover .step-no {
  color: var(--sage-deep);
}

.step-row h3 {
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-row p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 12px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tags span {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--sage-mist);
  color: var(--sage-ink);
  font-size: 12px;
}

/* ==========================================================================
   FAQ 折叠
   ========================================================================== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  font-size: 22px;
  color: var(--sage-deep);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 0 24px 22px;
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.9;
}

/* ==========================================================================
   套餐卡片
   ========================================================================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.price-card.featured {
  border-color: var(--sage-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.price-card.featured::before {
  content: "推荐";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 13px;
  border-radius: var(--r-pill);
  background: var(--terracotta);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured:hover {
  transform: translateY(-14px);
}

.price-card h3 {
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 8px;
}

.price-card .price-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.price-card .price-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 24px;
}

.price-card .price-num small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.price-feat {
  text-align: left;
  margin-bottom: 28px;
}

.price-feat li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 0;
  font-size: 13.8px;
  color: var(--body);
  border-bottom: 1px dashed var(--line);
}

.price-feat li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sage-deep);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   团队卡片
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card .t-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.team-card .t-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-card:hover .t-photo img {
  transform: scale(1.05);
}

.team-card .t-info {
  padding: 20px 18px 24px;
}

.team-card .t-info h4 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-card .t-role {
  font-size: 12.5px;
  color: var(--sage-deep);
  margin-bottom: 10px;
}

.team-card .t-desc {
  font-size: 12.8px;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   优势时间轴
   ========================================================================== */
.adv-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.adv-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-soft) 15%, var(--sage-soft) 85%, transparent);
}

.adv-node {
  text-align: center;
  position: relative;
}

.adv-node .adv-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
  color: var(--sage-deep);
}

.adv-node:hover .adv-dot {
  background: var(--sage-deep);
  color: #fff;
  transform: scale(1.08);
  border-color: var(--sage-deep);
}

.adv-node h4 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}

.adv-node p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 8px;
}

/* ==========================================================================
   联系页
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-info li {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info .c-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sage-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-deep);
}

.contact-info h4 {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 7px;
  font-weight: 600;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--body);
  background: var(--cream);
  transition: all 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--sage-deep);
  background: #fff;
  box-shadow: 0 0 0 3px var(--sage-mist);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-tip {
  margin-top: 12px;
  font-size: 13.5px;
  min-height: 20px;
}

/* ==========================================================================
   案例筛选
   ========================================================================== */
.case-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.case-filter button {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 13.5px;
  color: var(--body);
  transition: all 0.28s ease;
}

.case-filter button:hover {
  border-color: var(--sage-soft);
  color: var(--sage-deep);
}

.case-filter button.active {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: #fff;
  border-color: var(--sage-deep);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   CTA 横幅
   ========================================================================== */
.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 50px 56px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--sage-ink) 0%, var(--sage-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 155, 125, 0.22) 0%, transparent 70%);
}

.cta-band h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(250, 247, 240, 0.78);
  font-size: 14.5px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   404 页
   ========================================================================== */
.err-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.err-code {
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 700;
  color: var(--sage-soft);
  line-height: 1;
  margin-bottom: 16px;
}

.err-wrap h1 {
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 12px;
}

.err-wrap p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* ==========================================================================
   站点地图
   ========================================================================== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sitemap-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
}

.sitemap-col h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage-soft);
}

.sitemap-col ul li {
  margin-bottom: 9px;
}

.sitemap-col ul li a {
  font-size: 13.8px;
  color: var(--body);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sitemap-col ul li a::before {
  content: "·";
  color: var(--sage-deep);
  font-size: 18px;
}

.sitemap-col ul li a:hover {
  color: var(--sage-deep);
}

/* ==========================================================================
   通用段落正文（about/process 等）
   ========================================================================== */
.prose {
  max-width: 820px;
  margin: 0 auto;
}

.prose p {
  font-size: 15px;
  line-height: 2;
  color: var(--body);
  margin-bottom: 18px;
}

.prose h3 {
  font-size: 21px;
  color: var(--ink);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--sage-deep);
}

.prose blockquote {
  margin: 24px 0;
  padding: 20px 26px;
  background: var(--sage-mist);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--sage-ink);
  font-size: 15px;
}

/* ==========================================================================
   组件响应式
   ========================================================================== */
@media (max-width: 980px) {
  .fuse {
    grid-template-columns: 1fr;
  }
  .fuse-media,
  .fuse.reverse .fuse-media {
    order: 1;
    min-height: 280px;
  }
  .fuse-body,
  .fuse.reverse .fuse-body {
    order: 2;
    padding: 36px 30px;
  }
  .fuse-media::after,
  .fuse.on-sage .fuse-media::after,
  .fuse.on-beige .fuse-media::after,
  .fuse.reverse .fuse-media::after,
  .fuse.reverse.on-sage .fuse-media::after,
  .fuse.reverse.on-beige .fuse-media::after {
    background: linear-gradient(180deg, rgba(250, 247, 240, 0) 70%, var(--cream) 100%);
  }
  .card-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-item {
    grid-template-columns: 1fr;
  }
  .news-page-grid {
    grid-template-columns: 1fr;
  }
  .team-grid,
  .adv-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .adv-timeline::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .sitemap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .card-grid,
  .price-grid,
  .team-grid,
  .adv-timeline,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .fuse-body {
    padding: 30px 22px;
  }
  .fuse-body h3 {
    font-size: 22px;
  }
  .fuse-feat {
    grid-template-columns: 1fr;
  }
  .article-wrap {
    padding: 28px 22px;
  }
  .article-head h1 {
    font-size: 23px;
  }
  .cta-band {
    padding: 34px 26px;
  }
  .step-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .err-code {
    font-size: 80px;
  }
}
