/* ============================================================
   M&C 海外仓 官网主页 v2 — 基于 Stitch 设计稿重制
   自包含：无外部字体 / 无 CDN，所有图标为内联 SVG
   配色：藏蓝主色 + 国际橙点缀（来自设计稿 primary #00081e / #FF4D00）
   ============================================================ */

:root {
  --navy: #00081e;          /* 主色（页脚/深区/主按钮） */
  --navy-2: #0a1f44;        /* 主色容器 */
  --navy-3: #34466d;        /* 深底上的次级文字 */
  --accent: #ff4d00;        /* 国际橙（CTA/强调） */
  --accent-dark: #d43f00;
  --green: #10b981;
  --surface: #f7f9fb;       /* 页面底 */
  --surface-2: #f2f4f6;
  --card: #ffffff;
  --line: #e3e7ee;
  --ink: #101828;
  --body: #44464e;
  --muted: #75777f;
  --radius: 8px;
  --shadow-card: 0 4px 20px rgba(10, 31, 68, 0.08);
  --font-sans: -apple-system, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", Arial, sans-serif;
  --font-mono: "SF Mono", Consolas, "Cascadia Mono", Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 顶部导航 ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: 68px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img { width: 36px; height: 26px; flex: none; }
.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.brand-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--accent-dark); border-color: var(--accent-dark); }
.nav-links a.active { color: var(--accent-dark); border-color: var(--accent-dark); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(255, 77, 0, 0.28); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  color: var(--body);
  padding: 10px 14px;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--accent-dark); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { padding: 14px 30px; font-size: 15px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  padding: 6px;
}

/* 移动端抽屉 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--surface-2);
}
.mobile-menu .btn { width: 100%; margin-top: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: 68px;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-home.jpg") center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 8, 30, 0.92) 0%, rgba(10, 31, 68, 0.78) 55%, rgba(10, 31, 68, 0.55) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-inner {
  padding: 96px 0 128px;
  max-width: 720px;
}
.hero h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.hero p {
  color: rgba(217, 226, 255, 0.88);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 悬浮数据条 ---------- */
.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -56px;
}
.stats-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 28px;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat svg { width: 30px; height: 30px; color: var(--navy-2); opacity: 0.85; flex: none; }
.stat-num { font-size: 22px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ---------- 通用 section ---------- */
.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-head h2, .section h2.h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.section-head p { color: var(--body); margin-top: 14px; }

/* ---------- 服务卡片 ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.svc-card:hover {
  border-color: var(--navy-2);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: #d9e2ff;
  color: var(--navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s, color 0.2s;
}
.svc-card:hover .svc-icon { background: var(--navy); color: #fff; }
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: 13.5px; color: var(--body); line-height: 1.75; }

/* ---------- 流程时间轴 ---------- */
.process-wrap { overflow-x: auto; padding-bottom: 8px; }
.process {
  display: flex;
  min-width: 860px;
  position: relative;
  margin-top: 8px;
}
.step {
  flex: 1;
  min-width: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 0 6px;
}
.step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
}
.step:last-child::before { display: none; }
.step-dot {
  position: relative;
  z-index: 1;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--navy-2);
  color: var(--navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-dot svg { width: 20px; height: 20px; }
.step.hot .step-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.35);
}
.step h4 { font-size: 14px; font-weight: 700; color: var(--navy); }
.step.hot h4 { color: var(--accent-dark); }
.step p { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ---------- WMS 深色区 ---------- */
.wms-section {
  background: var(--navy);
  color: #fff;
  padding: 96px 0 128px;
}
.wms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.wms-tag {
  display: inline-block;
  background: #d9e2ff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.wms-section h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
}
.wms-lede { color: #b4c6f4; max-width: 480px; margin-bottom: 38px; }
.wms-feature { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.wms-feature-icon {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: var(--navy-3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}
.wms-feature:first-of-type .wms-feature-icon { background: var(--accent); }
.wms-feature-icon svg { width: 18px; height: 18px; }
.wms-feature h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.wms-feature p { font-size: 13px; color: #b4c6f4; line-height: 1.7; }

/* 仪表盘模拟窗 */
.mock-window {
  background: #14181f;
  border: 1px solid rgba(76, 94, 134, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.mock-titlebar {
  background: #1e2329;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.mock-dots i:nth-child(1) { background: #ff5f56; }
.mock-dots i:nth-child(2) { background: #ffbd2e; }
.mock-dots i:nth-child(3) { background: #27c93f; }
.mock-title { margin: 0 auto; font-size: 11px; color: #8a93a5; }
.mock-body { padding: 20px; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.mock-stat {
  background: #1e2329;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 12px 14px;
}
.mock-stat b { display: block; font-size: 10px; font-weight: 500; color: #8a93a5; letter-spacing: 0.08em; margin-bottom: 4px; }
.mock-stat span { font-family: var(--font-mono); font-size: 17px; color: #fff; }
.mock-stat span.orange { color: var(--accent); }
.mock-stat span.green { color: var(--green); }
.mock-table {
  background: #1e2329;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  font-size: 12px;
}
.mock-row {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.8fr 0.9fr;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #e8edf5;
  align-items: center;
}
.mock-row.head {
  border-top: none;
  background: rgba(0, 0, 0, 0.25);
  color: #8a93a5;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.mock-row .mono { font-family: var(--font-mono); }
.pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  justify-self: start;
}
.pill.ok { background: rgba(16, 185, 129, 0.18); color: var(--green); }
.pill.low { background: rgba(255, 77, 0, 0.18); color: #ff7a40; }

/* ---------- 三端一体 ---------- */
.trio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trio-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.trio-card .svc-icon { background: var(--navy); color: #fff; }
.trio-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 6px;
}
.trio-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.trio-card ul { list-style: none; margin-top: 2px; }
.trio-card li {
  font-size: 13.5px;
  color: var(--body);
  padding: 6px 0 6px 22px;
  position: relative;
}
.trio-card li::before {
  content: "";
  position: absolute;
  left: 2px; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.trio-link {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.trio-link:hover { color: var(--accent-dark); }

/* ---------- 联系 / 转化区 ---------- */
.contact-card {
  max-width: 980px;
  margin: -64px auto 0;
  position: relative;
  z-index: 3;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(10, 31, 68, 0.16);
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.contact-left {
  background: #f8fafc;
  border-right: 1px solid var(--line);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.contact-left h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.contact-left p { font-size: 13.5px; color: var(--body); margin-bottom: 24px; }
.contact-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-point svg { width: 18px; height: 18px; color: var(--accent-dark); flex: none; }
.contact-right { padding: 40px 36px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--surface-2); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row svg { width: 20px; height: 20px; color: var(--navy-2); flex: none; margin-top: 2px; }
.contact-row b { display: block; font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.contact-row span { font-size: 15px; color: var(--ink); font-weight: 600; }
.contact-right .btn { width: 100%; margin-top: 20px; }

/* ---------- 页脚 ---------- */
.footer {
  background: var(--navy);
  color: #c5c6cf;
  margin-top: 96px;
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { width: 34px; height: 25px; }
.footer-brand span { font-size: 17px; font-weight: 800; color: #fff; }
.footer p { font-size: 13px; color: #8b93ad; max-width: 320px; }
.footer h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9e2ff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #c5c6cf;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ffb59e; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #8b93ad;
}

/* ---------- 仓储网络（地图区） ---------- */
.map-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 28px;
  align-items: stretch;
}
.map-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
}
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.map-side { display: flex; flex-direction: column; gap: 16px; }
.map-point {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.map-point svg { width: 22px; height: 22px; color: var(--accent-dark); flex: none; margin-top: 2px; }
.map-point h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.map-point p { font-size: 13px; color: var(--body); line-height: 1.65; }
.map-note {
  margin-top: auto;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.map-note span { font-size: 13.5px; color: #d9e2ff; }
.map-note a { font-size: 13.5px; font-weight: 700; color: #ffb59e; white-space: nowrap; }

/* ---------- 照片条 ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-strip figure:hover img { transform: scale(1.04); }

/* ---------- 子页 hero ---------- */
.page-hero {
  position: relative;
  margin-top: 68px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero .hero-bg { opacity: 0.9; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 84px 0;
  max-width: 680px;
}
.page-hero h1 { color: #fff; font-size: 36px; font-weight: 800; line-height: 1.3; margin-bottom: 14px; }
.page-hero p { color: rgba(217, 226, 255, 0.88); font-size: 16px; }

/* WMS 页首屏（左文右图） */
.split-hero {
  margin-top: 68px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}
.split-grid h1 { font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1.3; margin: 12px 0 18px; }
.split-grid .lede { color: var(--body); font-size: 15.5px; margin-bottom: 30px; max-width: 480px; }
.split-img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.split-img img { width: 100%; display: block; }

/* 对接方式横条 */
.band {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.band-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.band-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--navy); }
.band-item svg { width: 20px; height: 20px; color: var(--accent-dark); }
.band-item small { display: block; font-size: 12px; font-weight: 400; color: var(--muted); }

/* 深色截图卡区 */
.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.shot-card { display: flex; flex-direction: column; }
.shot-card .shot-img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(76, 94, 134, 0.45);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}
.shot-card img { width: 100%; display: block; }
.shot-card h4 { font-size: 17px; font-weight: 700; color: #fff; margin: 18px 0 6px; }
.shot-card p { font-size: 13.5px; color: #b4c6f4; line-height: 1.7; }

/* 安全三联 */
.secure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.secure-item {
  text-align: center;
  padding: 30px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.secure-item svg { width: 30px; height: 30px; color: var(--navy-2); margin: 0 auto 14px; }
.secure-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.secure-item p { font-size: 13px; color: var(--body); line-height: 1.7; }

/* ---------- 合作服务商 ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-cat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}
.partner-cat .svc-icon { margin: 0 auto 16px; }
.partner-cat h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.partner-cat p { font-size: 12.5px; color: var(--muted); }
.partner-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.partner-slot {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  background: var(--surface-2);
}
.partner-slot svg { width: 26px; height: 26px; opacity: 0.55; }
.partner-slot span { font-size: 13.5px; }
.partner-cta {
  margin-top: 48px;
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.partner-cta h3 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.partner-cta p { color: #b4c6f4; font-size: 14px; }

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .services-grid, .trio-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid, .split-grid, .shot-grid { grid-template-columns: 1fr; }
  .split-grid { padding: 48px 0; gap: 32px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .secure-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-slots { grid-template-columns: repeat(2, 1fr); }
  .wms-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .contact-card { grid-template-columns: 1fr; margin-top: 0; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wms-section { padding-bottom: 96px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .hero-inner { padding: 64px 0 96px; }
  .section { padding: 64px 0; }
  .section-head h2, .section h2.h2 { font-size: 24px; }
  .wms-section h2 { font-size: 26px; }
  .services-grid, .trio-grid { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr; }
  .gallery-strip, .partner-grid, .partner-slots { grid-template-columns: 1fr; }
  .page-hero h1, .split-grid h1 { font-size: 27px; }
  .stat + .stat { border-left: none !important; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .brand-sub { display: none; }
}
