/* =========================================================
   Moreast — 网站开发页专属布局文件（页眉 / 页脚 / 导航）
   ---------------------------------------------------------
   本文件【仅 web-development.html】使用，管理该页的页面框架样式：
     · 顶部导航（.site-header / .nav / .nav__*）
     · 移动端折叠菜单（.nav__toggle / .is-open）
     · 页脚（.site-footer / .footer__*）
   与各页内容样式 styles.css 完全分离。
   对应结构由 web-development-header.js 注入（<div id="site-header"> /
   <div id="site-footer">）。
   注意：本文件依赖 styles.css 中定义的 :root 设计变量。
   ========================================================= */

/* ---------- 5. 顶部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ===== Logo（品牌标识，非按钮） ===== */
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: opacity 0.25s ease;
}
.nav__logo:hover { opacity: 0.85; }

/* 标记图标 */
.nav__logo .mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(150deg, #1b3a6b 0%, #2b62b8 55%, #f5a623 120%);
  display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 1.25rem;
  letter-spacing: -1px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 12px rgba(27,58,107,0.3);
}

/* 品牌文字（中文主标 + 英文辅标） */
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-cn {
  font-size: 1.2rem; font-weight: 800; color: var(--color-brand);
  letter-spacing: 0.04em;
}
.nav__brand-en {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.32em;
  color: var(--color-accent-dark); text-transform: uppercase;
}

/* 右侧操作区：导航菜单 + CTA + 移动端按钮 */
.nav__right { display: flex; align-items: center; gap: var(--space-md); }
.nav__menu { display: flex; align-items: center; gap: 10px; }
.nav__menu a {
  font-size: var(--fs-sm); font-weight: 600; color: var(--color-text);
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  transition: all 0.2s ease; position: relative;
}
.nav__menu a::after { display: none; }
.nav__menu a:hover,
.nav__menu a.is-active {
  color: #fff;
  background: linear-gradient(135deg, #1b3a6b, #2563eb);
  border-color: transparent;
}

.nav__lang {
  font-size: var(--fs-xs); font-weight: 700; padding: 0.4rem 0.9rem;
  border: 1px solid var(--color-border); border-radius: 20px; color: var(--color-text-muted);
}
.nav__toggle {
  display: none; background: none; border: none; font-size: 1.6rem;
  cursor: pointer; color: var(--color-brand); line-height: 1;
}

/* ---------- 12. 页脚 ---------- */
.site-footer { background: var(--color-bg-dark); color: #c7d4e6; padding: 2.2rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
.footer__grid h4 { color: #fff; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.6rem; }
.footer__grid a { color: #c7d4e6; font-size: 0.95rem; display: block; margin-bottom: 0.45rem; line-height: 1.5; }
.footer__grid a:hover { color: var(--color-accent); }
.footer__grid span { display: block; font-size: 0.95rem; color: #c7d4e6; margin-bottom: 0.45rem; line-height: 1.55; }
.footer__brand { color: #fff; font-weight: 800; font-size: 1.35rem; margin-bottom: 0.5rem; }
.footer__brand-col { grid-column: span 1; }
.footer__desc { font-size: 0.95rem; max-width: 380px; line-height: 1.65; margin-bottom: 0; color: #c7d4e6; }
.footer__contact-mini { display: flex; flex-direction: column; gap: 6px; }
.footer__contact-mini a { font-size: 0.95rem; color: #c7d4e6; margin-bottom: 0; }
.footer__contact-mini a:hover { color: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 1.25rem;
  padding-top: 0.8rem; font-size: 0.82rem; text-align: center; color: #8fa3c0;
}

/* ---------- 响应式：仅页眉 / 页脚布局 ---------- */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__right { gap: 0.6rem; }
  .nav__menu {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: var(--space-sm);
    background: #fff; padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { font-size: 1rem; padding: 10px 20px; }
  .nav__toggle { display: block; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
}

/* =========================================================
   网站开发页专属 Hero（浅色风格，参考 Orbit Media）
   ========================================================= */
.dev-hero {
  background: #f7f8fa;
  color: var(--color-text);
  padding: var(--space-xxl) 0 var(--space-xl);
}
.dev-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.dev-hero__text { max-width: 560px; }

/* 小标签 —— 无边框纯文字 */
.dev-hero__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
}

/* 主标题 */
.dev-hero__text h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1.3rem;
  letter-spacing: -0.02em;
  color: #111827;
}
.dev-hero__text h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-brand);
}

/* 描述段落 */
.dev-hero__text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #556070;
  margin-bottom: 2rem;
}

/* 双按钮行 */
.dev-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* 次要按钮（深色描边） */
.btn--outline-dark {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.92rem 1.9rem; border-radius: 10px;
  background: transparent; color: #1a1a2e;
  font-weight: 700; font-size: 0.93rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  cursor: pointer; text-decoration: none;
  border: 2px solid #d0d5dd;
}
.btn--outline-dark:hover {
  background: #f0f1f3;
  border-color: #999;
  transform: translateY(-2px);
}

/* ================================================================
   AI 生成图片水印裁剪 —— 切掉底部水印区域
   ================================================================ */
.no-wm {
  clip-path: inset(0 0 7.5% 0);
}

/* ================================================================
   右侧视觉 —— 高端数据仪表盘动画（玻璃态 + 浮动卡片 + 粒子）
   ================================================================ */
.dev-hero__visual {
  display: flex;
  justify-content: center;
  overflow: visible;
  perspective: 1000px;
}

.dev-hero-canvas {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3.1;
  border-radius: 20px;
  background: linear-gradient(145deg, #0f1629, #1a2744, #0d1424);
  box-shadow:
    0 30px 80px rgba(15, 22, 41, 0.45),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 120px rgba(245,166,35,0.06) inset;
  overflow: hidden;
}

/* ---- 背景光晕 ---- */
.canvas__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: glow-drift 8s ease-in-out infinite alternate;
}
.canvas__glow--1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.25), transparent 70%);
  top: -30px; right: -20px;
}
.canvas__glow--2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(27,58,107,0.35), transparent 70%);
  bottom: -10px; left: 10%;
  animation-delay: -4s;
}
@keyframes glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(12px, -8px) scale(1.15); }
}

/* ---- 背景网格 ---- */
.canvas__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

/* ---- 连接线 SVG ---- */
.canvas__lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.line {
  stroke-dasharray: 6 5;
  animation: line-flow 2s linear infinite;
}
.line--1 { animation-delay: 0s; }
.line--2 { animation-delay: -0.5s; }
.line--3 { animation-delay: -1s; }
.line--4 { animation-delay: -1.5s; }
@keyframes line-flow {
  to { stroke-dashoffset: -22; }
}

/* ---- 主卡片：数据仪表盘 ---- */
.canvas__card--main {
  position: absolute;
  z-index: 3;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 72%; max-width: 320px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.3),
    0 0 1px rgba(255,255,255,0.15) inset;
  animation: main-card-in 0.9s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.2s;
  overflow: hidden;
}
@keyframes main-card-in {
  from { opacity: 0; transform: translate(-50%, -45%) scale(0.88); }
  to   { opacity: 1; transform: translate(-50%, -52%) scale(1); }
}

/* 主卡片头部 */
.card-main__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.card-main__dots {
  display: flex; gap: 5px;
}
.card-main__dots span {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.18);
}
.card-main__dots span:nth-child(1) { background: #ff5f57; }
.card-main__dots span:nth-child(2) { background: #febc2e; }
.card-main__dots span:nth-child(3) { background: #28c840; }
.card-main__title {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex: 1;
  margin-left: 4px;
}
.card-main__live {
  font-size: 0.55rem;
  font-weight: 800;
  color: #28c840;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(40,200,64,0.1);
}
.card-main__live i {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: #28c840; margin-right: 4px;
  vertical-align: middle;
  animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(40,200,64,0.5); }
  50%      { opacity: 0.6; box-shadow: 0 0 0 4px rgba(40,200,64,0); }
}

/* 指标行 */
.card-main__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 12px 14px 10px;
}
.metric {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  padding: 6px 4px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  transition: background 0.3s ease;
}
.metric:hover { background: rgba(255,255,255,0.07); }
.metric__label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  white-space: nowrap;
}
.metric__value {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.metric__value small {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-left: 1px;
}
.metric__trend {
  font-size: 0.56rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
}
.metric__trend.up {
  color: #28c840;
  background: rgba(40,200,64,0.1);
}

/* 迷你柱状图 */
.card-main__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 36px;
  padding: 0 14px 13px;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, rgba(245,166,35,0.15), rgba(245,166,35,0.45));
  border-radius: 3px 3px 0 0;
  min-height: 6px;
  transition: height 0.5s ease;
}
.chart-bar--active {
  background: linear-gradient(to top, #e88a2f, #f5a623);
  box-shadow: 0 0 10px rgba(245,166,35,0.3);
  animation: bar-glow 2s ease-in-out infinite alternate;
}
@keyframes bar-glow {
  from { box-shadow: 0 0 8px rgba(245,166,35,0.2); }
  to   { box-shadow: 0 0 16px rgba(245,166,35,0.45); }
}

/* ---- 浮动子卡片 ---- */
.canvas__card--sub {
  position: absolute;
  z-index: 4;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 10px 35px rgba(0,0,0,0.2), 0 0 1px rgba(255,255,255,0.1) inset;
  cursor: default;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.canvas__card--sub:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 1px rgba(255,255,255,0.18) inset;
  border-color: rgba(255,255,255,0.18);
}

.sub-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}
.sub-text {
  display: flex; flex-direction: column; gap: 1px;
}
.sub-text strong {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}
.sub-text span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* 子卡片位置 & 浮动动画 */
.canvas__card--seo {
  top: 14%; left: 2%;
  animation: float-sub-a 5s ease-in-out infinite, sub-enter 0.7s cubic-bezier(.16,1,.3,1) 0.5s both;
}
.canvas__card--global {
  top: 14%; right: 2%;
  animation: float-sub-b 5.5s ease-in-out infinite, sub-enter 0.7s cubic-bezier(.16,1,.3,1) 0.65s both;
}
.canvas__card--speed {
  bottom: 12%; left: 4%;
  animation: float-sub-c 6s ease-in-out infinite, sub-enter 0.7s cubic-bezier(.16,1,.3,1) 0.8s both;
}
.canvas__card--convert {
  bottom: 12%; right: 4%;
  animation: float-sub-d 5.2s ease-in-out infinite, sub-enter 0.7s cubic-bezier(.16,1,.3,1) 0.95s both;
}

@keyframes sub-enter {
  from { opacity: 0; transform: scale(0.82) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes float-sub-a {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes float-sub-b {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes float-sub-c {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes float-sub-d {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* ---- 装饰粒子 ---- */
.canvas__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.canvas__particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  animation: particle-float var(--dur) linear infinite;
  animation-delay: var(--delay);
}
.canvas__particles span:nth-child(1) { --dur: 12s; --delay: 0s;   left: 10%; top: 70%; }
.canvas__particles span:nth-child(2) { --dur: 15s; --delay: -3s;  left: 85%; top: 15%; }
.canvas__particles span:nth-child(3) { --dur: 10s; --delay: -6s;  left: 45%; top: 85%; }
.canvas__particles span:nth-child(4) { --dur: 14s; --delay: -2s;  left: 72%; top: 78%; }
.canvas__particles span:nth-child(5) { --dur: 11s; --delay: -8s;  left: 20%; top: 20%; }
.canvas__particles span:nth-child(6) { --dur: 13s; --delay: -5s;  left: 92%; top: 55%; }
.canvas__particles span:nth-child(7) { --dur: 16s; --delay: -10s; left: 5%;  top: 42%; }
.canvas__particles span:nth-child(8) { --dur: 9s;  --delay: -4s;  left: 60%; top: 8%; }

@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  15%  { opacity: 0.6; }
  85%  { opacity: 0.4; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}

/* ================================================================
   响应式
   ================================================================ */
@media (max-width: 960px) {
  .dev-hero__grid { grid-template-columns: 1fr; }
  .dev-hero__text { max-width: none; text-align: center; }
  .dev-hero__tag,
  .dev-hero__actions { justify-content: center; }
  .dev-hero__text p { text-align: center; }
  .dev-hero__visual { order: -1; } /* 图在上、文在下 */
  .dev-hero-canvas {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .dev-hero { padding: var(--space-lg) 0 var(--space-md); }
  .dev-hero__text h1 em { display: block; }
  .dev-hero__actions { flex-direction: column; align-items: stretch; }
  .btn--outline-dark,
  .btn--cta { justify-content: center; }
  .dev-hero-canvas {
    max-width: 100%;
    aspect-ratio: 4 / 3.4;
    border-radius: 16px;
  }
  /* 子卡片缩小 */
  .canvas__card--sub {
    padding: 8px 10px; gap: 8px;
  }
  .sub-icon { width: 28px; height: 28px; border-radius: 8px; }
  .sub-icon svg { width: 18px; height: 18px; }
  .sub-text strong { font-size: 0.64rem; }
  .sub-text span { font-size: 0.56rem; }
}

/* =========================================================
   成功要素区（参考 Orbit Media "What makes a website successful"）
   ========================================================= */
.success-section {
  padding: 80px 0 90px;
  margin-top: 0;
  background: #fafbfc;
}

/* 标题区 */
.success__head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: center;
}
.success__head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.success__head h2 strong {
  color: #111827;
}
.success__head p {
  font-size: 1rem;
  line-height: 1.7;
  color: #556070;
}
.success__head p strong {
  font-weight: 700;
  color: #222834;
}

/* 主网格：左列表 + 右预览 —— 加宽间距 */
.success__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

/* ===== 左侧：成功要素列表 ===== */
.success__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.success__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #333a4a;
  padding: 9px 0;
}
.success__dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1b3a6b;
  margin-top: 9px;
}

/* ===== 右侧：网站预览 + 环绕标注 ===== */
.success__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 标注标签（环绕在预览周围）—— 简洁紧凑 */
.success-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
/* 青绿色系标签 */
.success-tag--seo,
.success-tag--cms,
.success-tag--data,
.success-tag--leads {
  background: #e0f7f6;
  color: #007a6e;
}
/* 暖色文字标签 */
.success-tag--traffic,
.success-tag--content,
.success-tag--ga,
.success-tag--crm {
  background: #fef3e8;
  color: #8a6030;
}
/* 无障碍大标签 */
.success-tag--a11y {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #1a8a8a;
  color: #115e5e;
  font-size: 0.72rem;
  line-height: 1.35;
  box-shadow: 0 4px 16px rgba(26,138,138,0.15);
}
.success-tag__arrow {
  font-weight: 900;
  font-size: 0.9rem;
}
/* 标签定位 —— 收紧到预览边缘附近 */
.success-tag--seo    { top: 8%;   left: -4%; }
.success-tag--traffic { top: 8%;  left: calc(-4% + 52px); }
.success-tag--cms     { top: 30%; left: -6%; }
.success-tag--content { top: 30%; left: calc(-6% + 56px); }
.success-tag--data    { top: 52%; left: -4%; }
.success-tag--ga      { top: 52%; left: calc(-4% + 48px); }
.success-tag--leads   { bottom: 16%; right: -4%; }
.success-tag--crm     { bottom: 16%; right: calc(-4% + 52px); }
.success-tag--a11y    { bottom: -3%;  left: 28%; }

/* 中央预览卡片（真实图片） */
.success__mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(15,20,35,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8ecf2;
}
.success__mockup img {
  display: block;
  width: 100%;
  height: auto;
}

/* 底部说明文字 */
.success__footnote {
  margin-top: var(--space-md);
  font-size: 0.92rem;
  color: #666f82;
  text-align: center;
}

/* ---------- 响应式：成功要素区 ---------- */
@media (max-width: 960px) {
  .success__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .success__visual {
    min-height: 380px;
  }
  .success__mockup {
    max-width: 400px;
    margin: 0 auto;
  }
  /* 标签收拢 */
  .success-tag--seo,
  .success-tag--cms,
  .success-tag--data { left: -2%; }
  .success-tag--traffic { left: calc(-2% + 50px); }
  .success-tag--content { left: calc(-2% + 54px); }
  .success-tag--ga { left: calc(-2% + 44px); }
  .success-tag--leads { right: -2%; }
  .success-tag--crm { right: calc(-2% + 48px); }
  .success-tag--a11y { left: 30%; }
}

@media (max-width: 640px) {
  .success-section { padding: 48px 0 56px; }
  .success__head { margin-bottom: 32px; }
  .success__visual { min-height: 320px; }
  .success__mockup { max-width: 100%; }
  /* 移动端隐藏环绕标签 */
  .success-tag:not(.success-tag--a11y) { display: none; }
  .success-tag--a11y {
    bottom: -5%;
    left: 25%;
    font-size: 0.68rem;
    padding: 8px 12px;
  }
}

/* =========================================================
   AI 优化提升可见度（参考 Orbit Media "AI optimized"）
   ========================================================= */
.ai-visible-section {
  padding: var(--space-xxl) 0 100px;
  background: #fff;
}

/* 标题区 */
.ai-vis__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-xl);
}
.ai-vis__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}
.ai-vis__line {
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
}
.ai-vis__head p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #556070;
}

/* 六宫格卡片 */
.ai-vis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ai-vis__card {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ai-vis__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15,20,35,0.08);
}
.ai-vis__card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ai-vis__card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #5a6578;
}

/* ---------- 响应式：AI 可见度区 ---------- */
@media (max-width: 960px) {
  .ai-vis__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ai-visible-section { padding: var(--space-lg) 0; }
  .ai-vis__head { margin-bottom: var(--space-md); }
  .ai-vis__grid { grid-template-columns: 1fr; gap: 14px; }
  .ai-vis__card { padding: 22px 18px; }
}

/* =========================================================
   优秀 UX 创造卓越体验（参考 Orbit Media "Great UX"）
   ========================================================= */
.ux-section {
  padding: 100px 0 var(--space-xxl);
  background: #fafbfc;
  margin-top: 100px;
  border-top: 1px solid #e8ecf2;
}

/* 左右分栏 */
.ux__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

/* 左侧文字 */
.ux__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.02em;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-md);
}
.ux__line {
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
}
.ux__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #556070;
  margin-bottom: 12px;
}
.ux__tagline {
  margin-top: var(--space-sm);
  font-size: 1.05rem !important;
  color: #111827;
}

/* ===== 右侧：真实预览图 + 标注 ===== */
.ux__visual {
  position: relative;
}
.ux__mockup-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 14px 48px rgba(15,20,35,0.15), 0 2px 8px rgba(0,0,0,0.05);
  display: block;
}

/* 标注标签 */
.ux-label {
  position: absolute;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111827;
  white-space: nowrap;
  z-index: 3;
}
.ux-label::before,
.ux-label::after {
  content: '';
  position: absolute;
  height: 2px;
  background: #e85a3c;
  top: 50%;
  width: 24px;
}
.ux-label::before { right: 100%; margin-right: 4px; }
.ux-label::after  { left: 100%;  margin-left: 4px; }
/* 左箭头标签（箭头在左） */
.ux-label--sitemap::before,
.ux-label--layout::before,
.ux-label--responsive::before,
.ux-label--visuals::before { display: none; }
.ux-label--sitemap::after,
.ux-label--layout::after,
.ux-label--responsive::after,
.ux-label--visuals::after {
  right: 100%;
  left: auto;
  margin-right: 4px;
  margin-left: 0;
}
/* 定位 */
.ux-label--brand     { top: 8%;  left: -18%; }
.ux-label--sitemap    { top: 8%;  right: -14%; }
.ux-label--layout     { top: 34%; left: -16%; }
.ux-label--visuals    { top: 34%; right: -12%; }
.ux-label--content    { top: 64%; right: -14%; }
.ux-label--responsive{ bottom: 8%;left: -20%; }

/* ---------- 响应式：UX 区 ---------- */
@media (max-width: 960px) {
  .ux__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .ux__visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .ux-label { font-size: 0.72rem; }
  .ux-label--brand     { left: -10%; }
  .ux-label--sitemap    { right: -6%; }
  .ux-label--layout     { left: -8%; }
  .ux-label--visuals    { right: -4%; }
  .ux-label--content    { right: -6%; }
  .ux-label--responsive{ left: -12%; }
}

@media (max-width: 640px) {
  .ux-section { padding: var(--space-lg) 0; }
  /* 移动端隐藏标注避免拥挤 */
  .ux-label:not(.ux-label--responsive) { opacity: 0; pointer-events: none; }
}

/* =========================================================
   转化文案区（Conversion Copywriting）
   ========================================================= */
.copy-section {
  padding: var(--space-xxl) 0;
  background: #fff;
  margin-top: 100px;
}
.copy__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.copy__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.copy__line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 4px;
}
.copy__head p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4a5568;
}

/* 两栏卡片 */
.copy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.copy__card {
  background: #fafbfc;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  padding: 32px 28px;
}
.copy__card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.copy__card-intro {
  font-size: 0.95rem;
  color: #556070;
  line-height: 1.7;
  margin-bottom: 16px;
}
.copy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.copy__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 7px;
}
.copy__list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: #e85a3c;
  font-weight: 700;
  font-size: 1.1rem;
}
.copy__card p {
  font-size: 0.94rem;
  line-height: 1.72;
  color: #444c5a;
  margin-bottom: 10px;
}
.copy__card-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e8ecf2;
  font-weight: 600;
  color: #222834;
}

/* ---------- 响应式：转化文案区 ---------- */
@media (max-width: 960px) {
  .copy__grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

@media (max-width: 640px) {
  .copy-section { padding: var(--space-lg) 0; }
  .copy__card { padding: 24px 20px; }
}

/* =========================================================
   视觉设计区（Web Design Showcase）
   ========================================================= */
.design-section {
  padding: var(--space-xxl) 0;
  background: #fafbfc;
  margin-top: 100px;
}
.design__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.design__visual {
  position: relative;
}
.design__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 56px rgba(15,20,35,0.14), 0 2px 8px rgba(0,0,0,0.04);
  display: block;
}
.design__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.design__line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 4px;
}
.design__text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444c5a;
  margin-bottom: 14px;
}

/* ---------- 响应式：视觉设计区 ---------- */
@media (max-width: 960px) {
  .design__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .design__visual { order: -1; }
}

@media (max-width: 640px) {
  .design-section { padding: var(--space-lg) 0; }
}

/* =========================================================
   网站开发费用区（Website Pricing）
   ========================================================= */
.pricing-section {
  padding: var(--space-xxl) 0;
  background: #fff;
  margin-top: 100px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-lg);
  align-items: center;
}
.pricing__text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.pricing__line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 4px;
}
.pricing__text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444c5a;
  margin-bottom: 12px;
}

/* ===== 右侧：流程时间线 ===== */
.pricing__visual {
  position: relative;
}
.pricing__timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  padding: 10px 0 28px;
}
/* 连接线 */
.pricing__timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: #e85a3c;
  z-index: 0;
}
/* 箭头 */
.pricing__timeline::after {
  content: '→';
  position: absolute;
  top: 21px;
  right: -4px;
  font-size: 1rem;
  color: #e85a3c;
  font-weight: 900;
  z-index: 1;
}

/* 阶段圆点 */
.pricing__phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  position: relative;
}
.pricing__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8ecf2;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  border: 2px solid transparent;
  transition: transform 0.25s ease;
}
.pricing__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #333a4a;
  white-space: nowrap;
}
/* 激活态（第一个） */
.pricing__phase--active .pricing__icon {
  background: #17a2b8;
  color: #fff;
  box-shadow: 0 4px 14px rgba(23,162,184,0.35);
}
.pricing__phase--active .pricing__label { color: #17a2b8; }
/* 高亮态（上线） */
.pricing__phase--highlight .pricing__icon {
  background: #f5a623;
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
}
.pricing__phase--highlight .pricing__label { color: #d4880f; }

/* 阶段详情条 */
.pricing__detail-bar {
  background: linear-gradient(135deg, #17a2b8, #138496);
  border-radius: 50px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-around;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(23,162,184,0.2);
}
.pricing__detail-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.pricing__detail-icon {
  font-size: 1.05rem;
}

/* ---------- 响应式：费用区 ---------- */
@media (max-width: 960px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .pricing__visual { order: -1; }
  .pricing__detail-bar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
    padding: 14px 20px;
  }
}

@media (max-width: 640px) {
  .pricing-section { padding: var(--space-lg) 0; }
  .pricing__timeline { gap: 2px; overflow-x: auto; justify-content: flex-start; padding-bottom: 20px; }
  .pricing__icon { width: 38px; height: 38px; font-size: 0.95rem; }
  .pricing__label { font-size: 0.7rem; }
}

/* =========================================================
   专业建站 vs 传统代理（Comparison Chart）
   ========================================================= */
.vs-section {
  padding: var(--space-xxl) 0;
  background: #fafbfc;
  margin-top: 100px;
}
.vs__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

/* ===== 左：柱状图 ===== */
.vs__chart {
  display: flex;
  gap: 16px;
}
.vs-chart__y-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.72rem;
  color: #8892a0;
  font-weight: 600;
  letter-spacing: 0.08em;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
}
.vs-chart__area {
  flex: 1;
  position: relative;
  padding-left: 28px;
}
/* Y轴刻度 */
.vs-chart__ticks {
  position: absolute;
  left: 0; top: 0; bottom: 40px;
  width: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vs-chart__ticks span {
  font-size: 0.7rem;
  color: #a0a8b4;
}
/* 网格线 */
.vs-chart__area::before {
  content: '';
  position: absolute;
  left: 26px; top: 0; right: 0; bottom: 40px;
  background-image: repeating-linear-gradient(to bottom, #e8ecf2 0, #e8ecf2 1px, transparent 1px, transparent calc(20% - 1px));
  pointer-events: none;
}

/* 柱状容器 */
.vs-chart__bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 280px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.vs-chart__bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 42%;
}
.vs-chart__bar {
  width: 100%;
  max-width: 110px;
  height: var(--h);
  border-radius: 6px 6px 3px 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 24px;
}
.vs-chart__bar:hover {
  transform: scaleY(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
/* 低柱：黄色（传统代理） */
.vs-chart__bar--low {
  background: linear-gradient(180deg, #f5c842, #e5a823);
}
/* 高柱：青色（专业建站） */
.vs-chart__bar--high {
  background: linear-gradient(180deg, #2bb8b8, #179494);
}
.vs-chart__bar-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #333a4a;
  white-space: nowrap;
}

/* ===== 右：文案 ===== */
.vs__text h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.vs__line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 4px;
}
.vs__text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444c5a;
  margin-bottom: 12px;
}
.vs__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
}
.vs__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.72;
  color: #374151;
  margin-bottom: 9px;
}
.vs__list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #e85a3c;
  font-weight: 800;
  font-size: 1.15rem;
}

/* ---------- 响应式：对比区 ---------- */
@media (max-width: 960px) {
  .vs__grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .vs__chart { justify-content: center; }
  .vs-chart__bars { height: 220px; }
}

@media (max-width: 640px) {
  .vs-section { padding: var(--space-lg) 0; }
  .vs-chart__bars { height: 200px; }
  .vs__chart { flex-direction: column; align-items: center; }
  .vs-chart__y-label { writing-mode: horizontal-tb; transform: none; }
}

/* =========================================================
   服务过的项目类型（Project Types — 三卡片）
   ========================================================= */
.project-types-section {
  padding: var(--space-xxl) 0;
  background: #fff;
  margin-top: 100px;
}

/* 标题区 */
.pt__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}
.pt__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pt__head h2 strong {
  color: #111827;
}
.pt__line {
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
  margin: 0 auto var(--space-md);
}
.pt__head p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #556070;
}

/* 三列卡片 */
.pt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pt__card {
  background: #fafbfc;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pt__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(15,20,35,0.08);
}
.pt__card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #e85a3c;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.pt__card p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: #444c5a;
}

/* ---------- 响应式：项目类型区 ---------- */
@media (max-width: 960px) {
  .pt__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .project-types-section { padding: var(--space-lg) 0; }
  .pt__grid { grid-template-columns: 1fr; gap: 16px; }
  .pt__card { padding: 26px 22px; }
}

/* =========================================================
   一站式系统集成展示（Integration Showcase）
   ========================================================= */
.integration-showcase-section {
  padding: var(--space-xxl) 0;
  background: #fafbfc;
  margin-top: 100px;
}
.is__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

/* 左侧文字 */
.is__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.is__text h2 strong { color: #111827; }
.is__line {
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}
.is__text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444c5a;
  margin-bottom: 14px;
}
.is__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}
.is__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 8px;
}
.is__list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #e85a3c;
  font-weight: 800;
  font-size: 1.15rem;
}
.is__tagline {
  font-size: 1.02rem !important;
  color: #111827;
  margin-top: var(--space-sm);
}

/* ===== 右侧：集成示意图 ===== */
.is__visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 420px;
}

/* 中央网站模型 */
.is-mockup {
  width: 200px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,20,35,0.12), 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid #e2e6ef;
  z-index: 2;
  position: relative;
}
.is-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #e8ecf2;
}
.is-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ddd;
}
.is-dot--c { background: #2bb8b8; }
.is-mockup__url {
  flex: 1;
  font-size: 0.62rem;
  color: #8892a0;
  text-align: center;
}
.is-mockup__body { padding: 12px; }
.is-mockup__hero {
  height: 80px;
  background: linear-gradient(135deg, #3aa8a8, #2b9090);
  border-radius: 6px;
  margin-bottom: 12px;
  position: relative;
}
.is-mockup__hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 24px;
  background: rgba(255,255,255,0.18);
  border-radius: 4px 4px 0 0;
}
.is-mockup__content { margin-bottom: 10px; }
.is-mockup__line {
  height: 7px;
  background: #e8ecf2;
  border-radius: 3px;
  margin-bottom: 7px;
}
.is-mockup__line--short { width: 55%; }
.is-mockup__line--medium { width: 78%; }
.is-mockup__line--tag { width: 35%; background: #d0f0ee; }
.is-mockup__line--xs { width: 60%; }

.is-mockup__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f7f8fa;
  border-radius: 8px;
  margin-bottom: 10px;
}
.is-mockup__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5bc0de, #2b9090);
  flex-shrink: 0;
}
.is-mockup__texts { flex: 1; }

/* 外部系统节点 */
.is-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.is-node--left { left: 0; }
.is-node--right { right: 0; }

.is-node__icon {
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 3px 12px rgba(15,20,35,0.08);
  border: 1px solid #e8ecf2;
  flex-shrink: 0;
}
.is-node__info {
  display: flex;
  flex-direction: column;
}
.is-node__info strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #222834;
  white-space: nowrap;
}
.is-node__info span {
  font-size: 0.68rem;
  color: #8892a0;
}

/* 连接箭头 */
.is-arrow {
  flex-shrink: 0;
  display: block;
}

/* ---------- 响应式：集成展示区 ---------- */
@media (max-width: 960px) {
  .is__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .is__visual {
    min-height: 360px;
    order: -1;
  }
  .is-mockup { width: 160px; }
  .is-mockup__hero { height: 60px; }
}

@media (max-width: 640px) {
  .integration-showcase-section { padding: var(--space-lg) 0; }
  .is__visual { min-height: 300px; }
  /* 移动端隐藏外部节点避免拥挤 */
  .is-node:not(:first-child) { display: none; }
  .is-mockup { width: 140px; }
}

/* =========================================================
   SEO 安全改版（SEO-Safe Redesign — 图表 + 文字）
   ========================================================= */
.seo-redesign-section {
  padding: var(--space-xxl) 0;
  background: #fff;
  margin-top: 100px;
}
.sr__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ===== 左侧：浏览器窗口 + 流量图表 ===== */
.sr__chart { display: flex; justify-content: center; }
.sr-browser {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,20,35,0.10), 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid #e2e6ef;
}
.sr-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f4f5f7;
  border-bottom: 1px solid #e8ecf2;
}
.sr-dot { width: 9px; height: 9px; border-radius: 50%; background: #d0d5dd; }
.sr-dot:nth-child(1) { background: #ff5f57; }
.sr-dot:nth-child(2) { background: #febc2e; }
.sr-dot:nth-child(3) { background: #28c840; }
.sr-browser__url {
  flex: 1;
  height: 22px;
  background: #fff;
  border-radius: 11px;
  border: 1px solid #e2e6ef;
  padding: 0 12px;
  display: flex;
  align-items: center;
}
.sr-browser__url span {
  width: 40%; height: 6px; background: #e8ecf2; border-radius: 3px;
}
.sr-browser__search { font-size: 0.85rem; }

/* 浏览器内容区 */
.sr-browser__body { padding: 20px 16px 16px; }
.sr-chart-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222834;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.sr-chart-title em {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8892a0;
  font-style: normal;
  display: block;
}

/* SVG 流量图 */
.sr-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}
.sr-chart-labels {
  display: flex;
  justify-content: space-around;
  margin-top: 8px;
  padding-top: 8px;
}
.sr-chart-labels span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #333a4a;
  position: relative;
  padding-top: 6px;
}

/* ===== 右侧：文字 ===== */
.sr__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sr__line {
  width: 48px;
  height: 3px;
  background: #e85a3c;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}
.sr__text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444c5a;
  margin-bottom: 12px;
}
.sr__text p strong {
  font-weight: 800;
  color: #111827;
}
.sr__list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}
.sr__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 7px;
}
.sr__list li::before {
  content: "•";
  position: absolute;
  left: 3px;
  color: #e85a3c;
  font-weight: 800;
  font-size: 1.15rem;
}
.sr__tagline {
  font-size: 1.02rem !important;
  color: #111827;
  margin-top: var(--space-sm);
}

/* ---------- 响应式：SEO 改版区 ---------- */
@media (max-width: 960px) {
  .sr__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .sr__chart { order: -1; }
}

@media (max-width: 640px) {
  .seo-redesign-section { padding: var(--space-lg) 0; }
  .sr-browser { max-width: 100%; }
}

/* =========================================================
   无障碍合规（Accessibility / WCAG — 左文字右模型+标注）
   ========================================================= */
.a11y-section {
  padding: var(--space-xxl) 0;
  background: #fafbfc;
  margin-top: 100px;
}
.a11y__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ===== 左侧：文字 ===== */
.a11y__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.a11y__text h2 strong { color: #111827; }
.a11y__line {
  width: 48px; height: 3px;
  background: #e85a3c; border-radius: 2px;
  margin-bottom: var(--space-md);
}
.a11y__text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444c5a;
  margin-bottom: 12px;
}
.a11y__text p strong { font-weight: 800; color: #111827; }

.a11y__list {
  list-style: none; padding: 0;
  margin: var(--space-sm) 0;
}
.a11y__list li {
  position: relative; padding-left: 18px;
  font-size: 0.94rem; line-height: 1.75;
  color: #374151; margin-bottom: 7px;
}
.a11y__list li::before {
  content: "•"; position: absolute; left: 3px;
  color: #e85a3c; font-weight: 800; font-size: 1.15rem;
}
.a11y__tagline { font-size: 1.02rem !important; color: #111827; margin-top: var(--space-sm); }

/* ===== 右侧：网站模型 + 标注连线 ===== */
.a11y__visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 400px;
}

/* 网站模型 */
.a11y-mockup {
  width: 200px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,20,35,0.12), 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid #e2e6ef;
  z-index: 2;
  position: relative;
}
.a11y-mockup__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #e8ecf2;
}
.a11y-badge {
  width: 26px; height: 22px; border-radius: 5px;
  background: linear-gradient(135deg, #5bc0de, #2b9090);
  color: #fff; font-weight: 800; font-size: 0.7rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.a11y-mockup__body { padding: 10px 12px; }
.a11y-mockup__hero {
  height: 75px;
  background: linear-gradient(135deg, #3aa8a8, #2b9090);
  border-radius: 6px;
  margin-bottom: 10px;
  position: relative;
}
.a11y-mockup__hero::after {
  content: '';
  position: absolute; bottom: 0; left: 25%; right: 25%;
  height: 18px; background: rgba(255,255,255,0.16); border-radius: 3px 3px 0 0;
}
.a11y-mockup__center {
  text-align: center;
  margin-bottom: 10px;
}
.a11y-mockup__pill {
  width: 45%; height: 9px;
  background: #d0f0ee; border-radius: 5px;
  margin: 6px auto 0;
}
.a11y-mockup__content { margin-bottom: 8px; }
.a11y-mockup__line {
  height: 6px; background: #e8ecf2; border-radius: 3px; margin-bottom: 6px;
}
.a11y-mockup__line--short { width: 55%; }
.a11y-mockup__line--tag { width: 32%; background: #d0f0ee; }
.a11y-mockup__line--xs { width: 58%; }

.a11y-mockup__card-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px; background: #f7f8fa; border-radius: 8px; margin-bottom: 8px;
}
.a11y-mockup__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #5bc0de, #2b9090); flex-shrink: 0;
}
.a11y-mockup__texts { flex: 1; }

/* 标注标签 */
.a11y-label {
  position: absolute;
  font-size: 0.78rem;
  font-weight: 700;
  color: #222834;
  white-space: nowrap;
  z-index: 4;
  background: rgba(255,255,255,0.92);
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.a11y-label--top-left  { top: 2%;  left: -4%; }
.a11y-label--top-right { top: 2%;  right: -4%; }
.a11y-label--mid-right { top: 42%; right: -6%; }
.a11y-label--bot-left  { bottom: 24%;left: -6%; }
.a11y-label--bot-right{ bottom: 4%; right: -6%; }

/* 连线 SVG */
.a11y-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ---------- 响应式：无障碍区 ---------- */
@media (max-width: 960px) {
  .a11y__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .a11y__visual { min-height: 340px; order: -1; }
  .a11y-mockup { width: 170px; }
}

@media (max-width: 640px) {
  .a11y-section { padding: var(--space-lg) 0; }
  .a11y__visual { min-height: 280px; }
  /* 移动端隐藏标注 */
  .a11y-label { opacity: 0; pointer-events: none; }
  .a11y-lines { display: none; }
  .a11y-mockup { width: 150px; }
}

/* =========================================================
   品牌升级与改版（Rebranding — 新旧网站对比 + 文字）
   ========================================================= */
.rebrand-section {
  padding: var(--space-xxl) 0;
  background: #fff;
  margin-top: 100px;
}
.rb__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ===== 左侧：新旧对比 ===== */
.rb__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* 网站模型（通用） */
.rb-mockup {
  width: 160px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(15,20,35,0.10), 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid #e2e6ef;
  flex-shrink: 0;
}
.rb-mockup__bar {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 10px; border-bottom: 1px solid #e8ecf2;
  background: #fafbfc;
}
.rb-mockup__body { padding: 8px 9px; }

/* 旧网站 Hero（红色系） */
.rb-mockup__hero--old {
  height: 55px;
  background: linear-gradient(135deg, #d9534f, #c9302c);
  border-radius: 5px;
  position: relative;
  margin-bottom: 8px;
}
.rb-mockup__hero--old::after {
  content: '';
  position: absolute; bottom: -4px; left: 12px; right: 12px;
  height: 14px; border-bottom: 2px solid rgba(255,255,255,0.25);
}
.rb-mockup__lines { margin-bottom: 8px; }
.rb-mockup__lines span {
  display: block; height: 5px; background: #e8ecf2;
  border-radius: 2px; margin-bottom: 4px;
}
.rb-mockup__lines span:nth-child(2) { width: 80%; }
.rb-mockup__lines span:nth-child(3) { width: 60%; }

/* 颜色块 */
.rb-mockup__colors {
  display: flex; gap: 6px; margin-bottom: 8px;
}
.rb-color {
  width: 28px; height: 20px; border-radius: 4px;
}
.rb-color--red   { background: #d9534f; }
.rb-color--teal  { background: #3aa8a8; }
.rb-color--yellow{ background: #f0c040; }

/* 黄色卡片 */
.rb-mockup__card--yellow {
  height: 36px;
  background: linear-gradient(135deg, #fce8a0, #f0c040);
  border-radius: 5px;
}

/* 新网站 Hero（青色系） */
.rb-mockup--new .rb-mockup__hero {
  height: 65px;
  background: linear-gradient(135deg, #3aa8a8, #2b9090);
  border-radius: 5px;
  position: relative;
  margin-bottom: 8px;
}
.rb-mockup--new .rb-mockup__hero::after {
  content: '';
  position: absolute; bottom: 0; left: 18%; right: 18%;
  height: 14px; background: rgba(255,255,255,0.16); border-radius: 3px 3px 0 0;
}
/* 横幅条 */
.rb-mockup__banner {
  height: 22px;
  background: linear-gradient(90deg, #3aa8a8, #2b9090);
  border-radius: 4px;
  margin-bottom: 8px;
}
/* 内容行 */
.rb-mockup__item-row {
  display: flex; align-items: center; gap: 7px;
  padding: 7px; background: #f7f8fa; border-radius: 6px;
  margin-bottom: 6px;
}
.rb-mockup__thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #3aa8a8, #2b9090);
  flex-shrink: 0;
}
.rb-mockup__texts { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.rb-mockup__texts span {
  display: block; height: 4px; background: #e8ecf2; border-radius: 2px;
}
.rb-mockup__texts span:first-child { width: 45%; background: #d0f0ee; }
.rb-mockup__texts span:last-child  { width: 70%; }

/* 中间工具区 */
.rb__tools {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.rb-tool {
  width: 34px; height: 34px;
  background: #fff; border: 1px solid #e2e6ef;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.rb-palette { display: flex; gap: 3px; margin-top: 2px; }
.rb-swatch { width: 18px; height: 12px; border-radius: 3px; }
.rb-fonts { text-align: center; line-height: 1.2; }

/* ===== 右侧：文字 ===== */
.rb__text h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 900; line-height: 1.15;
  color: #111827; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.rb__text h2 strong { color: #111827; }
.rb__line {
  width: 48px; height: 3px;
  background: #e85a3c; border-radius: 2px;
  margin-bottom: var(--space-md);
}
.rb__text p {
  font-size: 1rem;
  line-height: 1.78;
  color: #444c5a;
  margin-bottom: 12px;
}
.rb__text p strong { font-weight: 800; color: #111827; }

/* ---------- 响应式：品牌升级区 ---------- */
@media (max-width: 960px) {
  .rb__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .rb__visual { order: -1; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; }
  .rb-mockup { width: 140px; flex-shrink: 0; }
}

@media (max-width: 640px) {
  .rebrand-section { padding: var(--space-lg) 0; }
  .rb__tools { display: none; } /* 移动端隐藏中间工具 */
}

/* =========================================================
   忙碌营销人的流程（Busy Marketers — 时间投入条形图）
   ========================================================= */
.busy-process-section {
  padding: var(--space-xxl) 0;
  background: #fafbfc;
  margin-top: 100px;
}
.bp__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: var(--space-xl);
  align-items: start;
}

/* ===== 左侧：文字 ===== */
.bp__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900; line-height: 1.15;
  color: #111827; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bp__text h2 strong { color: #111827; }
.bp__line {
  width: 48px; height: 3px;
  background: #e85a3c; border-radius: 2px;
  margin-bottom: var(--space-md);
}
.bp__text p {
  font-size: 1rem; line-height: 1.78;
  color: #444c5a; margin-bottom: 12px;
}
.bp__text p strong { font-weight: 800; color: #111827; }

.bp__list {
  list-style: none; padding: 0;
  margin: var(--space-sm) 0;
}
.bp__list li {
  position: relative; padding-left: 18px;
  font-size: 0.94rem; line-height: 1.75;
  color: #374151; margin-bottom: 7px;
}
.bp__list li::before {
  content: "•"; position: absolute; left: 3px;
  color: #e85a3c; font-weight: 800; font-size: 1.15rem;
}
.bp__tagline { font-size: 1.02rem !important; color: #111827; margin-top: var(--space-sm); }

/* ===== 右侧：时间投入条形图 ===== */
.bp__chart {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  padding: 24px 20px 16px;
  box-shadow: 0 4px 16px rgba(15,20,35,0.05);
}
.bp-chart__title {
  text-align: right;
  font-size: 0.72rem;
  color: #8892a0;
  font-style: italic;
  margin-bottom: 4px;
}
.bp-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 图例 */
.bp-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f1f3;
}
.bp-legend__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #556070;
  white-space: nowrap;
}
.bp-legend__item i {
  width: 14px; height: 8px;
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- 响应式：忙碌流程区 ---------- */
@media (max-width: 960px) {
  .bp__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .bp__chart { order: -1; }
}

@media (max-width: 640px) {
  .busy-process-section { padding: var(--space-lg) 0; }
  .bp-legend { gap: 8px; }
  .bp-legend__item { font-size: 0.65rem; }
}

/* =========================================================
   网站生命周期（Website Lifespan — 曲线图 + 文字）
   ========================================================= */
.lifecycle-section {
  padding: var(--space-xxl) 0;
  background: #fff;
  margin-top: 100px;
}
.lc__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ===== 左侧：曲线图 ===== */
.lc__chart {
  background: #fff;
  border-radius: 12px;
}
.lc-chart__header {
  text-align: center;
  margin-bottom: 6px;
}
.lc-chart__header strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #222834;
  letter-spacing: -0.01em;
}
.lc-chart__header span {
  font-size: 0.78rem;
  color: #8892a0;
  font-style: italic;
}

.lc-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 图例 */
.lc-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  padding-top: 10px;
}
.lc-legend__item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: #556070; white-space: nowrap;
}
.lc-legend__item i {
  width: 16px; height: 9px; border-radius: 3px; display: inline-block; flex-shrink: 0;
}

/* ===== 右侧：文字 ===== */
.lc__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900; line-height: 1.15;
  color: #111827; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.lc__text h2 strong { color: #111827; }
.lc__line {
  width: 48px; height: 3px;
  background: #e85a3c; border-radius: 2px;
  margin-bottom: var(--space-md);
}
.lc__text p {
  font-size: 1rem; line-height: 1.78;
  color: #444c5a; margin-bottom: 12px;
}
.lc__text p strong { font-weight: 800; color: #111827; }
.lc__tagline { font-size: 1.02rem !important; color: #111827; margin-top: var(--space-sm); }

/* ---------- 响应式：生命周期区 ---------- */
@media (max-width: 960px) {
  .lc__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .lc__chart { order: -1; }
}

@media (max-width: 640px) {
  .lifecycle-section { padding: var(--space-lg) 0; }
  .lc-legend { gap: 10px; flex-direction: column; align-items: center; }
}
