/* ========================================
   卡泰驰美驰名车 · 官网样式（v2 设计系统）
   克制金 × 深色 × 衬线标题 × 暖灰底
   ======================================== */

/* ---------- 设计令牌 ---------- */
:root {
  /* 品牌金 */
  --gold: #b9965b;
  --gold-light: #dcc394;
  --gold-dark: #8c6d3b;
  --gold-rgb: 185, 150, 91;

  /* 深色 */
  --ink: #0e0f12;
  --ink-2: #16171c;
  --ink-3: #1e2026;

  /* 中性 */
  --bg: #f5f3ee;
  --bg-2: #edeae3;
  --paper: #ffffff;
  --line: #e5e1d8;
  --text: #232429;
  --muted: #77787d;

  /* 字体（系统字体栈：不依赖外网字体，国内秒开、零下载） */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', sans-serif;
  --font-serif: 'Songti SC', 'STSong', 'SimSun', Georgia, 'Times New Roman', serif;
  --font-latin: Georgia, 'Times New Roman', 'Songti SC', serif;

  /* 几何 */
  --container: 1200px;
  --radius: 20px;
  --radius-sm: 12px;

  /* 阴影 / 动效 */
  --shadow-sm: 0 2px 14px rgba(15, 15, 20, 0.06);
  --shadow-md: 0 14px 44px rgba(15, 15, 20, 0.1);
  --shadow-lg: 0 30px 80px rgba(15, 15, 20, 0.15);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 重置 ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* 滚动锚点避让固定导航 */
[id] { scroll-margin-top: 96px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
}

.btn i { font-size: 15px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.28);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(var(--gold-rgb), 0.42);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: 11px 24px; font-size: 14px; }
.btn-lg { padding: 17px 40px; font-size: 16px; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: all 0.45s var(--ease);
}

.site-header.is-scrolled {
  padding: 13px 0;
  background: rgba(14, 15, 18, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-img { height: 46px; width: auto; object-fit: contain; }

.logo-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.logo-name em { font-style: normal; color: var(--gold-light); }
.logo-sub {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 18px; }

.nav-link {
  position: relative;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-cta { display: inline-flex; flex-shrink: 0; }
.nav-cta-m { display: none; }

/* 导航增至 7 项后，≤1260px 统一收起为汉堡菜单（见下方 max-width:1260 规则），电话按钮获得完整展示空间 */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 首屏 Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('showroom.webp') center / cover no-repeat;
  transform: scale(1.1);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 90% at 80% 26%, rgba(var(--gold-rgb), 0.24), transparent 62%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(98deg, rgba(10, 10, 14, 0.92) 0%, rgba(10, 10, 14, 0.62) 46%, rgba(10, 10, 14, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 140px 0 120px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 8px 20px;
  border: 1px solid rgba(var(--gold-rgb), 0.45);
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.1);
  backdrop-filter: blur(4px);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.6vw, 66px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-title .gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 3px;
}
.scroll-hint::before {
  content: '';
  width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  animation: hintDrop 2s var(--ease) infinite;
}
@keyframes hintDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- 信任条（深色，紧接首屏） ---------- */
.trust {
  position: relative;
  background: linear-gradient(150deg, var(--ink) 0%, #1a1b20 100%);
  color: #fff;
  padding: 58px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; } }
.trust-item {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
@media (max-width: 1100px) {
  /* 3 列时，每 3 项去掉右边界 */
  .trust-item:nth-child(3n) { border-right: 0; }
  .trust-item:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.09); }
}
@media (max-width: 720px) {
  .trust-item { border-right: 0 !important; }
  .trust-item { padding: 0 10px; }
}
@media (min-width: 721px) {
  .trust-item:last-child { border-right: 0; }
}
.trust-num {
  font-family: var(--font-latin);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-light);
  white-space: nowrap;        /* 数字与单位整体成一行，如「1000 台+」不再断行 */
}
.trust-num small { font-size: 22px; margin-left: 4px; }
/* 小屏收窄字号，保证「1000 台+」等最长数据仍单行不溢出 */
@media (max-width: 1100px) {
  .trust-num { font-size: 40px; }
  .trust-num small { font-size: 19px; }
}
@media (max-width: 720px) {
  .trust-num { font-size: 32px; }
  .trust-num small { font-size: 16px; }
}
.trust-label {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

/* ---------- 通用区块 ---------- */
.section { padding: 110px 0; position: relative; }
.section--paper { background: var(--paper); }
.section--bg { background: var(--bg); }

.sec-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.sec-head--left { margin: 0 0 56px; text-align: left; }

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.sec-kicker::before, .sec-kicker::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.sec-head--left .sec-kicker::before { display: none; }

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 1px;
  color: var(--text);
}
.sec-desc {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}

/* ---------- 关于（首页） ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-media:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  right: -18px; bottom: -22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 18px 46px rgba(var(--gold-rgb), 0.38);
}
.about-badge b {
  display: block;
  font-family: var(--font-latin);
  font-size: 30px;
  line-height: 1;
}
.about-badge span { font-size: 12px; letter-spacing: 2px; opacity: 0.92; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}
.about-text { font-size: 15.5px; line-height: 2; color: var(--muted); margin-bottom: 34px; }

.city-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 36px; }
.city-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: all 0.35s var(--ease);
}
.city-card:hover {
  border-color: rgba(var(--gold-rgb), 0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.city-name { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.city-addr { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ---------- 服务项目 ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 34px;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { transform: scaleX(1); }
/* 卡片整体作为链接使用时（如 404 引导页）：a 默认行内且带链接色，需还原为块级并继承文字色 */
a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.service-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.service-icon {
  width: 62px; height: 62px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.16), rgba(var(--gold-rgb), 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-dark);
  margin-bottom: 26px;
  transition: all 0.45s var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  transform: translateY(-4px) rotate(-5deg);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p { font-size: 14.5px; line-height: 1.9; color: var(--muted); }

/* ---------- 门店 ---------- */
.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.store-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.45s var(--ease);
}
.store-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.store-media {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.store-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.store-card:hover .store-media img { transform: scale(1.07); }

.store-body { padding: 30px 30px 32px; }
.store-name {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-name i { font-size: 17px; color: var(--gold-dark); }
.store-addr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.store-addr i { color: var(--gold); margin-top: 5px; }

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.store-link:hover { gap: 14px; color: var(--text); }

/* ---------- 平台矩阵（紧凑稳重版） ---------- */
.matrix-section {
  padding: 96px 0;
  background: var(--bg);
}

.matrix-section .sec-head { margin-bottom: 44px; }

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.matrix-card {
  --brand: #b9965b;
  --brand-rgb: 185, 150, 91;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.matrix-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 6%, var(--brand) 50%, transparent 94%);
  opacity: 0.7;
}
.matrix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), 0.5);
  box-shadow: var(--shadow-md);
}
.matrix-card:hover::before { opacity: 1; }

/* 各平台品牌色（仅顶部细线与按钮描边） */
.matrix-card[data-platform="douyin"] { --brand: #161823; --brand-rgb: 22, 24, 35; }
.matrix-card[data-platform="wechat"] { --brand: #07c160; --brand-rgb: 7, 193, 96; }
.matrix-card[data-platform="kuaishou"] { --brand: #ff5b1f; --brand-rgb: 255, 91, 31; }
.matrix-card[data-platform="shipinhao"] { --brand: #04a56e; --brand-rgb: 4, 165, 110; }

/* 卡片头部：小徽章 + 平台名 */
.matrix-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.matrix-badge {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, rgba(var(--brand-rgb), 0.78) 100%);
  box-shadow: 0 6px 16px rgba(var(--brand-rgb), 0.24);
  transition: transform 0.4s var(--ease);
}
.matrix-badge svg { width: 22px; height: 22px; display: block; }
.matrix-card:hover .matrix-badge { transform: translateY(-2px); }
.matrix-meta { min-width: 0; }
.matrix-platform {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.matrix-en {
  display: block;
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--muted);
  font-family: var(--font-latin);
  text-transform: uppercase;
  margin-top: 2px;
}

/* 账号信息 */
.matrix-info { margin-bottom: 14px; }
.matrix-name {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 6px;
}
.matrix-id {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}
.matrix-id strong {
  color: var(--gold-dark);
  font-weight: 700;
  font-family: var(--font-latin);
  word-break: break-all;
  margin-left: 4px;
}

/* 二维码白卡片 */
.matrix-qr {
  margin-bottom: 14px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.matrix-card:hover .matrix-qr {
  border-color: rgba(var(--brand-rgb), 0.4);
  box-shadow: 0 10px 24px rgba(15, 15, 20, 0.08);
}
.matrix-qr img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 148px;
  margin: 0 auto;
  border-radius: 8px;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}
.matrix-qr figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}
.matrix-qr figcaption i { color: var(--gold); margin-right: 3px; font-size: 10px; }

/* 跳转按钮 */
.matrix-go {
  margin-top: auto;
  padding: 10px 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--paper);
  transition: all 0.35s var(--ease);
}
.matrix-go i { font-size: 11px; transition: transform 0.35s var(--ease); }
.matrix-go:hover {
  border-color: rgba(var(--brand-rgb), 0.6);
  color: var(--brand);
  transform: translateY(-1px);
}
.matrix-go:hover i { transform: translateX(3px); }
.matrix-go--static {
  border-style: dashed;
  background: var(--bg);
  color: var(--muted);
  cursor: default;
}
.matrix-go--static:hover {
  border-color: var(--line);
  color: var(--muted);
  transform: none;
}

/* QR 灯箱（点击放大） */
.qr-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 15, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 32px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.qr-lightbox.open {
  display: flex;
  opacity: 1;
}
.qr-lightbox-inner {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(14px);
  transition: transform 0.35s var(--ease);
}
.qr-lightbox.open .qr-lightbox-inner { transform: scale(1) translateY(0); }
.qr-lightbox img {
  width: 100%;
  height: auto;
  max-width: 360px;
  margin: 0 auto;
  display: block;
}
.qr-lightbox-cap {
  margin-top: 18px;
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}
.qr-lightbox-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.qr-lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.qr-lightbox-close:hover { background: rgba(255, 255, 255, 0.25); transform: rotate(90deg); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(140deg, var(--ink) 0%, #1b1c22 55%, #14151a 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -60%; right: -8%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.22), transparent 68%);
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -70%; left: -6%;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.12), transparent 68%);
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-kicker {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.cta-sub { font-size: 15.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.9; margin-bottom: 38px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 页脚 ---------- */
.footer {
  background: #0a0a0d;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding: 76px 0 56px;
}
.footer-brand .logo { margin-bottom: 22px; }
.footer-about {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  margin-bottom: 26px;
}
.footer-hotline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a, .footer-col ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-col ul li i { color: var(--gold); width: 16px; text-align: center; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

/* ---------- 内页 Banner ---------- */
.page-hero {
  position: relative;
  padding: 186px 0 96px;
  background: linear-gradient(160deg, #101114 0%, #181920 55%, #1e1f26 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 90% at 85% 18%, rgba(var(--gold-rgb), 0.2), transparent 60%),
    radial-gradient(40% 70% at 12% 85%, rgba(var(--gold-rgb), 0.09), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-crumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.page-crumb a { color: rgba(255, 255, 255, 0.72); }
.page-crumb a:hover { color: var(--gold-light); }
.page-crumb i { font-size: 10px; color: var(--gold); }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.2;
}
.page-sub {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 2px;
}

/* ---------- 关于页：核心数据 ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 24px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb), 0.45);
  box-shadow: var(--shadow-md);
}
.stat-num {
  font-family: var(--font-latin);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
}
.stat-num small { font-size: 22px; color: var(--gold); }
.stat-label {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* 关于页：品牌理念双卡 */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--gold-rgb), 0.45);
}
.value-card i {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.16), rgba(var(--gold-rgb), 0.05));
  color: var(--gold-dark);
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.value-card p { font-size: 14.5px; line-height: 1.9; color: var(--muted); }

/* ---------- 联系页：信息卡片 ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--gold-rgb), 0.45);
}
.info-icon {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.16), rgba(var(--gold-rgb), 0.05));
  color: var(--gold-dark);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.info-card:hover .info-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  transform: scale(1.08);
}
.info-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.info-value { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: gap 0.35s var(--ease);
}
.info-link:hover { gap: 12px; }

/* 联系页：热线横幅 */
.hotline-banner {
  position: relative;
  margin-top: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ink) 0%, #1b1c22 60%, #17181d 100%);
  color: #fff;
  padding: 58px 40px;
  text-align: center;
  overflow: hidden;
}
.hotline-banner::before {
  content: '';
  position: absolute;
  top: -90%; right: -4%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.22), transparent 70%);
}
.hotline-banner::after {
  content: '';
  position: absolute;
  bottom: -120%; left: -4%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.12), transparent 70%);
}
.hotline-inner { position: relative; z-index: 2; }
.hotline-label {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.hotline-num {
  font-family: var(--font-latin);
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--gold-light);
}
.hotline-desc {
  margin: 18px 0 32px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

/* 联系页：常见问题 */
.faq-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
}
.faq-card--wide { max-width: 780px; margin: 0 auto; }
.faq-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-card h3 i { color: var(--gold); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.3s var(--ease);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary { background: rgba(var(--gold-rgb), 0.08); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 18px 16px; font-size: 14px; line-height: 1.8; color: var(--muted); }

/* ---------- 悬浮电话 + 回顶 ---------- */
.float-phone {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 14px 40px rgba(var(--gold-rgb), 0.45);
  transition: all 0.35s var(--ease);
}
.float-phone i { font-size: 18px; }
.float-phone:hover { transform: translateY(-3px); box-shadow: 0 20px 52px rgba(var(--gold-rgb), 0.55); }

.back-to-top {
  position: fixed;
  right: 34px;
  bottom: 100px;
  z-index: 89;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 25, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.4s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-color: transparent; }

/* ---------- 滚动揭示 ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- 无障碍：减弱动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { right: 18px; bottom: -18px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 1260px) {
  .header-inner { gap: 14px; }
  .logo { margin-right: auto; flex-shrink: 1; min-width: 0; }   /* 手机端：logo 靠左，电话+汉堡靠右成组；空间不足时 logo 收缩，保证电话不被挤掉 */
  .logo-text { min-width: 0; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 290px;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 36px 40px;
    background: rgba(13, 14, 17, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.5s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    z-index: 90;
  }
  .nav.open { right: 0; }
  .nav-link {
    padding: 16px 4px;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
  }
  .nav-link::after { display: none; }
  .nav-cta-m {
    display: inline-flex;
    margin-top: 26px;
    justify-content: center;
    padding: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .hamburger { display: flex; position: relative; z-index: 100; }
  body.nav-locked { overflow: hidden; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .sec-head { margin-bottom: 46px; }
  .hero-content { padding: 130px 0 110px; text-align: left; }
  .hero-sub { font-size: 15.5px; }
  .stores-grid { grid-template-columns: 1fr; }
  .store-media { height: 240px; }
  .value-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .city-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero { padding: 156px 0 70px; }
  .matrix-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .store-media { height: 220px; }
  .hotline-banner { padding: 46px 24px; }
  .hero-actions .btn { width: 100%; }
  .float-phone { right: 18px; bottom: 18px; padding: 13px 18px; }
  .float-phone .num { display: none; }
  .back-to-top { right: 26px; bottom: 92px; }
  .about-badge { right: 12px; }
  .matrix-grid { grid-template-columns: 1fr; gap: 16px; }
  .matrix-section { padding: 72px 0; }
  .matrix-card { padding: 20px 18px 18px; }
  .matrix-card-top { gap: 11px; margin-bottom: 14px; }
  .matrix-badge { width: 42px; height: 42px; border-radius: 12px; }
  .matrix-badge svg { width: 21px; height: 21px; }
  .matrix-platform { font-size: 16px; }
  .matrix-en { font-size: 9px; letter-spacing: 1.8px; }
  .matrix-name { font-size: 16px; }
  .matrix-qr { padding: 10px; margin-bottom: 12px; }
  .matrix-qr figcaption { font-size: 11px; }
  .matrix-go { font-size: 13px; padding: 11px 13px; }
  .qr-lightbox-inner { padding: 22px; }
  .qr-lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ---------- 咨询留言表单 ---------- */
.inquiry-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 38px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 9px; }
.form-field .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #b3b1aa; }
/* 意向类别：多选胶囊 */
.form-field .field-label { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 9px; }
.form-field .hint { font-size: 12px; font-weight: 400; color: var(--muted); }
.intent-group { display: flex; flex-wrap: wrap; gap: 10px; }
.intent-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.intent-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.intent-chip span {
  display: inline-block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.15s var(--ease);
}
.intent-chip span:hover { border-color: var(--gold); }
.intent-chip input:checked + span {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold-dark, #a67c1e);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.12);
}
.intent-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.25); }
.intent-chip:active span { transform: scale(0.97); }
/* 蜜罐：隐藏，真人不可见，机器人填了则静默忽略 */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { margin-top: 16px; }
.consent-label { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; line-height: 1.65; color: var(--text); cursor: pointer; user-select: none; }
.consent-label input[type="checkbox"] { width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--gold); cursor: pointer; }
.consent-label a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.consent-label a:hover { opacity: 0.82; }
.inquiry-form .btn-lg { width: 100%; margin-top: 6px; }
.form-note { margin-top: 16px; font-size: 12.5px; line-height: 1.7; color: var(--muted); text-align: center; }
.form-msg { margin-top: 16px; padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14px; line-height: 1.6; font-weight: 500; }
.form-msg--success { background: rgba(46, 160, 90, 0.1); color: #1f7a45; border: 1px solid rgba(46, 160, 90, 0.25); }
.form-msg--error { background: rgba(200, 60, 60, 0.08); color: #b3261e; border: 1px solid rgba(200, 60, 60, 0.22); }

/* 隐私政策正文排版 */
.privacy-doc { max-width: 860px; padding-bottom: 28px; }
.privacy-doc .privacy-update { color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.privacy-doc h2 { font-size: 20px; font-weight: 700; color: var(--ink); margin: 30px 0 12px; padding-left: 13px; border-left: 4px solid var(--gold); line-height: 1.4; }
.privacy-doc p { font-size: 15px; line-height: 1.9; color: var(--text); margin: 0 0 14px; }
.privacy-doc ul { margin: 0 0 16px; padding-left: 22px; }
.privacy-doc li { font-size: 15px; line-height: 1.85; color: var(--text); margin-bottom: 7px; }
.privacy-doc strong { color: var(--ink); font-weight: 700; }
.privacy-doc a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.privacy-doc .privacy-back { margin-top: 22px; }

@media (max-width: 560px) {
  .inquiry-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 18px; }
}

/* ========================================
   v3 质感细节（纯 CSS，零服务器开销）
   ======================================== */

/* 顶部滚动进度条（元素由 script.js 注入） */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 14px rgba(var(--gold-rgb), 0.55);
  z-index: 300;
  pointer-events: none;
}

/* 自定义滚动条（桌面端） */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), #6b5230);
  border-radius: 999px;
  border: 2px solid var(--ink-2);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }

/* 选中文字：品牌金色 */
::selection { background: rgba(var(--gold-rgb), 0.85); color: #fff; }

/* 键盘导航焦点可见（无障碍，不影响鼠标体验） */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* 主按钮：hover 金色流光扫过 */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}
.btn-gold:hover::after { left: 135%; }

/* 首屏入场：依次淡入上移（内页无此元素，不受影响） */
.hero-kicker,
.hero-title,
.hero-sub,
.hero-actions {
  opacity: 0;
  animation: heroIn 0.9s var(--ease) forwards;
}
.hero-kicker { animation-delay: 0.05s; }
.hero-title  { animation-delay: 0.18s; }
.hero-sub    { animation-delay: 0.32s; }
.hero-actions{ animation-delay: 0.46s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* 卡片：hover 顶部金线 + 阴影呼吸（服务/门店/数据/信息卡统一增强） */
.service-card,
.store-card,
.stat-card,
.value-card,
.info-card {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, var(--shadow-sm);
}
.service-card:hover,
.store-card:hover,
.stat-card:hover,
.value-card:hover,
.info-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(var(--gold-rgb), 0.18);
}

/* 区块标题：金色主题字（仅含 .gold 高亮处统一） */
.sec-kicker { letter-spacing: 6px; }

/* 页脚底部链接悬停 */
.footer-bottom a { transition: color 0.3s var(--ease); }
.footer-bottom a:hover { color: var(--gold-light); }

/* 小屏进度条更细、滚动条自适应系统 */
@media (max-width: 768px) {
  #scrollProgress { height: 2px; }
  ::-webkit-scrollbar { width: 6px; }
}

/* ========================================
   v4 内联 SVG 图标系统（替代 Font Awesome）
   全站图标为 stroke 风格，尺寸/颜色继承文字，零外部请求
   ======================================== */
.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* 加载旋转动画（表单提交中） */
@keyframes icSpin { to { transform: rotate(360deg); } }
.ic-spin {
  animation: icSpin 0.8s linear infinite;
  transform-origin: 50% 50%;
}

/* 原先针对 <i> 图标的颜色微调，平移到新图标类上 */
.page-crumb .ic { font-size: 10px; color: var(--gold); }
.store-name .ic { font-size: 17px; color: var(--gold-dark); }
.store-addr .ic { color: var(--gold); margin-top: 5px; }
.faq-card h3 .ic { color: var(--gold); }
.footer-col ul li .ic { color: var(--gold); width: 16px; }
.matrix-qr figcaption .ic { color: var(--gold); margin-right: 3px; font-size: 10px; }
.matrix-go .ic { font-size: 11px; transition: transform 0.35s var(--ease); }
.matrix-go:hover .ic { transform: translateX(3px); }

/* 按钮按压反馈（配合 hover 抬升，一压一弹更有手感） */
.btn:active { transform: scale(0.98); }

/* 表单即时校验反馈：手机号合法变绿、非法变红 */
.form-field input.is-valid {
  border-color: #2ea05a;
  background: #fff;
}
.form-field input.is-invalid {
  border-color: #c83c3c;
  background: #fff;
}
.form-field input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(200, 60, 60, 0.12);
}

/* ============================================================
   车源板块 & 咨询表单改版（v20260829）
   ============================================================ */

/* ---------- 车源卡片网格 ---------- */
.car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .car-grid { grid-template-columns: 1fr; } }

.car-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(14, 15, 18, 0.12);
  border-color: var(--gold-light);
}

.car-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
}
.car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.car-card:hover .car-media img { transform: scale(1.05); }
.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1d1a12;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(140, 109, 59, 0.35);
}

.car-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.car-name {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.car-meta {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
  word-break: break-all;
  overflow-wrap: anywhere;
  overflow: hidden;
  max-height: 6.3em; /* 约3行 (1.75 * 3 ≈ 5.25, 加点余量) */
}
.car-meta .dot { margin: 0 5px; color: var(--gold); }
/* meta 条目化：一条信息（如"上牌年份：2025"）是一个整体，断行只发生在条目之间 */
.car-meta .mi { display: inline-block; white-space: nowrap; max-width: 100%; vertical-align: top; }
/* 超长条目（>24字符）允许内部换行，防止横向撑破卡片 */
.car-meta .mi-long { white-space: normal; overflow-wrap: anywhere; word-break: break-all; }
.car-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.car-price {
  font-family: var(--font-latin);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dark, #a67c1e);
  line-height: 1;
}
.car-price small { font-size: 12px; font-weight: 500; color: var(--muted); margin-left: 2px; }
.car-foot .btn { flex: 0 0 auto; }

.car-more { text-align: center; margin-top: 34px; }

/* 车源为空时的占位提示 */
.car-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border: 1px dashed var(--line);
  border-radius: var(--radius, 14px);
  background: var(--paper);
}

/* ---------- 车源列表页筛选栏 ---------- */
.car-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  padding: 16px 20px;
  margin-bottom: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
}
.car-filters .fgroup { display: flex; align-items: center; gap: 10px; }
.car-filters .flabel { font-size: 13px; color: var(--muted); white-space: nowrap; }
.car-filters select {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.car-filters select:hover { border-color: var(--gold); }
.car-filters select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.15); }
.car-count { margin-left: auto; font-size: 13px; color: var(--muted); white-space: nowrap; }
.car-count b { color: var(--gold-dark, #a67c1e); font-size: 15px; }
@media (max-width: 720px) { .car-count { margin-left: 0; width: 100%; } }

/* ---------- 咨询表单改版 ---------- */
/* 分组标题：让"咨询类型 → 基本信息 → 详细描述"有步骤感 */
.form-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.form-group-title:first-of-type { margin-top: 0; }
.form-group-title .gnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1d1a12;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}
.form-group-title .ghint { font-size: 12px; font-weight: 400; color: var(--muted); }

/* 意向 chips 增强：更大点击区、选中更醒目 */
.intent-group { display: flex; flex-wrap: wrap; gap: 10px; }
.intent-chip span { padding: 10px 20px; font-size: 14.5px; }

/* 留言字数统计 */
.msg-counter {
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.msg-counter.is-near { color: #b3261e; }

/* 提交成功卡片：附企微客服二维码，趁热引导加顾问 */
.form-success {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(46, 160, 90, 0.08);
  border: 1px solid rgba(46, 160, 90, 0.25);
  border-radius: var(--radius, 14px);
}
.form-success img {
  width: 120px;
  height: 120px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}
.form-success b { display: block; font-size: 15.5px; color: #1f7a45; margin-bottom: 5px; }
.form-success p { font-size: 13px; line-height: 1.75; color: var(--text); margin: 0; }
@media (max-width: 560px) { .form-success { flex-direction: column; text-align: center; } }

/* ============================================================
   关于美驰 · 扩写内容板块（v20260829）
   ============================================================ */

/* ---------- 战略股东（海尔赋能）---------- */
.backer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .backer-grid { grid-template-columns: 1fr; } }

.backer-card {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.backer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 15, 18, 0.1);
  border-color: var(--gold-light);
}
.backer-num {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold-dark, #a67c1e);
  background: linear-gradient(135deg, rgba(255, 215, 110, 0.18), rgba(255, 195, 80, 0.1));
  border-radius: 999px;
  margin-bottom: 18px;
}
.backer-title {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.backer-card p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- 业务板块（流程链）---------- */
.biz-chain {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}
.biz-node {
  flex: 1 1 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.biz-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(14, 15, 18, 0.1);
  border-color: var(--gold-light);
}
.biz-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-family: var(--font-latin);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-dark, #a67c1e);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(140, 109, 59, 0.3);
}
.biz-node h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}
.biz-node p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--muted);
}
.biz-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 24px;
  color: var(--gold);
  padding-bottom: 24px;
}
@media (max-width: 880px) { .biz-arrow { display: none; } }

/* ---------- 六大服务承诺 ---------- */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .promises-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promises-grid { grid-template-columns: 1fr; } }

.promise-item {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius, 14px);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.promise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(14, 15, 18, 0.08);
}
.promise-num {
  display: block;
  font-family: var(--font-latin);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-dark, #a67c1e), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.promise-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.promise-item p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- 发展历程时间线 ---------- */
.timeline {
  position: relative;
  padding: 24px 0 24px 30px;
  border-left: 2px dashed var(--gold);
  margin-left: 16px;
}
.tl-item {
  position: relative;
  padding: 12px 0 12px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 22px;
  width: 14px;
  height: 14px;
  background: var(--paper);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}
.tl-year {
  flex: 0 0 auto;
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark, #a67c1e);
  letter-spacing: 1px;
  min-width: 80px;
}
.tl-txt {
  flex: 1;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
}
@media (max-width: 560px) {
  .timeline { margin-left: 0; padding-left: 20px; }
  .tl-year { min-width: 60px; font-size: 15px; }
  .tl-txt { font-size: 13.5px; }
}

/* ============================================================
   v15 新增板块：slogan / 砸车故事 / 资质荣誉 / 购车服务 / 品质保障
   ============================================================ */

/* ---------- 通用：暗色 section + 浅色 head ---------- */
.section--dark { background: #0e0f12; color: #f4f1e8; }
.section--dark .sec-title { color: #f4f1e8; }
.section--dark .sec-desc { color: rgba(244, 241, 232, 0.72); }
.section--dark .sec-kicker { color: var(--gold-light); }
.sec-head--light .sec-title { color: #f4f1e8; }
.sec-head--light .sec-desc { color: rgba(244, 241, 232, 0.72); }
.sec-head--light .sec-kicker { color: var(--gold-light); }

/* ---------- slogan / 使命双卡片 ---------- */
.slogan-section { position: relative; overflow: hidden; }
.slogan-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(255, 195, 80, 0.12), transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(140, 109, 59, 0.10), transparent 50%);
  pointer-events: none;
}
.slogan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}
@media (max-width: 860px) { .slogan-grid { grid-template-columns: 1fr; } }

.slogan-card {
  padding: 48px 44px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 195, 80, 0.25);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.slogan-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.slogan-label {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-light);
  background: rgba(255, 195, 80, 0.12);
  border-radius: 999px;
  margin-bottom: 22px;
}
.slogan-line {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  color: #f4f1e8;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.slogan-line em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slogan-note {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(244, 241, 232, 0.72);
}
@media (max-width: 560px) {
  .slogan-card { padding: 36px 28px; }
  .slogan-line { font-size: 25px; }
}

/* ---------- 30 万砸车故事卡 ---------- */
.story-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 50px 52px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(14, 15, 18, 0.08);
  position: relative;
}
@media (max-width: 720px) { .story-card { padding: 36px 26px; } }
.story-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
}
.story-year {
  padding: 5px 14px;
  font-weight: 600;
  color: var(--gold-dark, #a67c1e);
  background: linear-gradient(135deg, rgba(255, 215, 110, 0.2), rgba(255, 195, 80, 0.12));
  border-radius: 999px;
}
.story-tag {
  padding: 5px 12px;
  background: rgba(14, 15, 18, 0.04);
  border-radius: 999px;
  color: var(--muted);
}
.story-quote {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}
.story-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 560px) { .story-quote { font-size: 21px; } }
.story-body {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
  margin: 0 0 14px;
}
.story-body b { color: var(--text); font-weight: 700; }
.story-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0 26px;
  padding: 22px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
@media (max-width: 560px) { .story-tags { grid-template-columns: 1fr; } }
.story-tag-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 0 8px;
}
.story-tag-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1d1a12;
  border-radius: 50%;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 12px rgba(140, 109, 59, 0.3);
}
.story-tag-item b { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: 1px; }
.story-tag-item span { font-size: 13px; color: var(--muted); }
.story-core {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 215, 110, 0.15), rgba(255, 195, 80, 0.08));
  border-radius: 12px;
  text-align: center;
}
.story-core span { font-size: 12px; letter-spacing: 2px; color: var(--muted); }
.story-core b { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: 4px; }
@media (max-width: 560px) { .story-core b { font-size: 18px; letter-spacing: 2px; } }

/* ---------- 资质荣誉 5 卡 ---------- */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .honor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .honor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .honor-grid { grid-template-columns: 1fr; } }

.honor-card {
  padding: 32px 22px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.honor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(14, 15, 18, 0.1);
  border-color: var(--gold-light);
}
.honor-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1d1a12;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(140, 109, 59, 0.3);
}
.honor-ic .ic { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
.honor-card h4 {
  font-size: 16px; font-weight: 700; color: var(--text);
  letter-spacing: 1px; margin-bottom: 10px; line-height: 1.5;
}
.honor-card p {
  font-size: 13px; line-height: 1.8; color: var(--muted);
}

/* ---------- 荣誉墙：真实牌匾图（缺图自动隐藏，不裂图） ---------- */
.honor-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.honor-frame {
  margin: 0;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.honor-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(14, 15, 18, 0.1);
  border-color: var(--gold-light);
}
.honor-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f3f1ec;
  border-radius: 8px;
  display: block;
}
.honor-frame figcaption {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}
@media (max-width: 1080px) { .honor-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .honor-wall { grid-template-columns: 1fr; } }

/* ---------- 双城门店：规模徽标 ---------- */
.store-card { position: relative; }
.store-scale {
  position: absolute;
  top: 14px; right: 14px;
  padding: 6px 14px;
  font-size: 14px; font-weight: 700;
  color: #1d1a12;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(140, 109, 59, 0.35);
  z-index: 2;
}
.store-meta {
  font-size: 13.5px;
  color: var(--muted);
  margin: 8px 0 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

/* ============================================================
   购车服务 / 品质保障 页面通用块
   ============================================================ */

/* ---------- 服务目录 5 卡 ---------- */
.service-toc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .service-toc { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .service-toc { grid-template-columns: repeat(2, 1fr); } }

.toc-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.toc-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: 0 14px 30px rgba(14, 15, 18, 0.08);
}
.toc-num {
  font-family: var(--font-latin);
  font-size: 13px; font-weight: 700;
  color: var(--gold-dark, #a67c1e);
  letter-spacing: 1px;
}
.toc-card b { font-size: 16px; font-weight: 700; color: var(--text); }
.toc-card span:last-child { font-size: 12.5px; color: var(--muted); }

/* ---------- 服务详情行（左右布局） ---------- */
.srv-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .srv-row { grid-template-columns: 1fr; gap: 24px; }
  .srv-row--reverse .srv-text { order: 2; }
  .srv-row--reverse .srv-aside { order: 1; }
}
.srv-text h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--gold);
}
.srv-h3-2 { margin-top: 28px !important; }
.srv-list {
  list-style: none;
  margin: 0 0 10px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.srv-list li {
  position: relative;
  padding: 4px 0 4px 26px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
}
.srv-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.srv-list li b { color: var(--text); font-weight: 700; margin-right: 4px; }

.srv-aside {
  position: sticky; top: 100px;
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--paper), var(--bg-2));
  border: 1px solid var(--gold-light);
  border-radius: 14px;
  text-align: center;
}
.srv-aside-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--gold-dark, #a67c1e);
  background: rgba(255, 195, 80, 0.15);
  border-radius: 999px;
  margin-bottom: 14px;
}
.srv-aside h4 {
  font-size: 19px; font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.srv-aside p {
  font-size: 13.5px; line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}
.srv-aside .btn { width: 100%; justify-content: center; }

/* ---------- 质保承诺 双卡（重点区）---------- */
.guarantee-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  padding: 36px 32px;
  background: linear-gradient(135deg, #1a1c1f 0%, #0e0f12 100%);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(14, 15, 18, 0.15);
}
@media (max-width: 760px) { .guarantee-bar { grid-template-columns: 1fr; padding: 28px 22px; } }

.guarantee-bar--lg { padding: 44px 40px; }

.guarantee-card {
  position: relative;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 195, 80, 0.3);
  border-radius: 14px;
  color: #f4f1e8;
}
.guarantee-num {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.guarantee-card h4 {
  font-size: 20px; font-weight: 700;
  color: #f4f1e8;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.guarantee-card p {
  font-size: 14px; line-height: 1.9;
  color: rgba(244, 241, 232, 0.78);
  margin: 0 0 6px;
}
.guarantee-card strong { color: var(--gold-light); font-weight: 700; }
.guarantee-foot {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  color: var(--gold-light);
  background: rgba(255, 195, 80, 0.12);
  border-radius: 999px;
}

/* ---------- 配套增值 4 卡 ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 30px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(14, 15, 18, 0.08);
  border-color: var(--gold-light);
}
.value-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1d1a12;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(140, 109, 59, 0.3);
}
.value-ic .ic { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; line-height: 1.85; color: var(--muted); }

/* ---------- 品质保障页：4 个核心数字 ---------- */
.quality-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .quality-numbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .quality-numbers { grid-template-columns: 1fr; } }
.qnum-card {
  padding: 36px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.qnum-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(14, 15, 18, 0.08); }
.qnum {
  font-family: var(--font-latin);
  font-size: 64px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-dark, #a67c1e), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -2px;
}
.qnum-unit {
  display: block;
  font-family: var(--font-latin);
  font-size: 14px; font-weight: 600;
  color: var(--gold-dark, #a67c1e);
  letter-spacing: 1px;
  margin: 4px 0 14px;
}
.qnum-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.qnum-card p { font-size: 13px; line-height: 1.85; color: var(--muted); }

/* ---------- 整备工艺 4 卡 ---------- */
.refurbish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .refurbish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .refurbish-grid { grid-template-columns: 1fr; } }
.ref-card {
  padding: 30px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.ref-card:hover { transform: translateY(-4px); border-color: var(--gold-light); }
.ref-step {
  display: inline-block;
  padding: 4px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold-dark, #a67c1e);
  background: linear-gradient(135deg, rgba(255, 215, 110, 0.2), rgba(255, 195, 80, 0.12));
  border-radius: 999px;
  margin-bottom: 14px;
}
.ref-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ref-card p { font-size: 13.5px; line-height: 1.85; color: var(--muted); }

/* ---------- 透明化 4 卡 ---------- */
.trans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .trans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trans-grid { grid-template-columns: 1fr; } }
.trans-card {
  padding: 28px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.trans-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(14, 15, 18, 0.08); }
.trans-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1d1a12;
  border-radius: 50%;
}
.trans-ic .ic { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; }
.trans-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.trans-card p { font-size: 13.5px; line-height: 1.85; color: var(--muted); }
/* ============================================================
 *  v17 · 产品改进：去重 + 快捷条 + 紧凑头部 + 悬浮组
 * ============================================================ */

/* ---------- 头部 CTA：紧凑（icon + 短文字） ---------- */
.header-cta { padding: 8px 14px; font-size: 13px; letter-spacing: 0; white-space: nowrap; }
.header-cta .ic { width: 16px; height: 16px; }
.header-cta-num { margin-left: 4px; }
@media (max-width: 720px) {
  .header-cta { display: none; }          /* 手机端隐藏顶部电话（嫌大/丑），改用右下角悬浮拨号 */
  .logo-sub { display: none; }            /* 移动端只保留主标题，干净置顶 */
  .logo-name { font-size: 17px; display: block; white-space: nowrap; }  /* 完整显示标题，不再省略 */
  .logo-img { height: 38px; }
}
@media (max-width: 400px) {
  .logo-name { font-size: 15px; }
  .logo-img { height: 34px; }
  .header-cta { display: none; }
}

/* ---------- 快捷服务条（hero 下方） ---------- */
.quick-actions {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
  font: inherit;
}
.quick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 15, 18, 0.08);
  border-color: var(--gold-light);
}
.quick-ic {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5e7c0, var(--gold));
  color: #1d1a12;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(140, 109, 59, 0.2);
}
.quick-ic--wechat { background: linear-gradient(135deg, #d6f4e2, #2bb673); color: #fff; }
.quick-ic--phone  { background: linear-gradient(135deg, #f5e7c0, var(--gold)); color: #1d1a12; }
.quick-ic--store  { background: linear-gradient(135deg, #d8e6f2, #2c5b8d); color: #fff; }
.quick-ic--cars   { background: linear-gradient(135deg, #f3dada, #b04848); color: #fff; }
.quick-ic .ic { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.quick-body { display: flex; flex-direction: column; line-height: 1.4; }
.quick-title { font-size: 15px; font-weight: 700; letter-spacing: 0.5px; }
.quick-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.quick-arrow { margin-left: auto; color: var(--muted); }
.quick-arrow .ic { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
@media (max-width: 900px) { .quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .quick-grid { grid-template-columns: 1fr; } }

/* ---------- 悬浮行动组（4 按钮：看车 / 微信 / 电话 / 回顶） ---------- */
.float-cluster {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(14, 15, 18, 0.1);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
  text-decoration: none;
  position: relative;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(14, 15, 18, 0.15); }
.float-btn .ic { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.float-btn--phone  { background: var(--gold); color: #1d1a12; border-color: var(--gold); }
.float-btn--phone:hover { background: #c79853; }
.float-btn--cars   { background: #b04848; color: #fff; border-color: #b04848; }
.float-btn--cars:hover { background: #92393a; }
.float-btn--top    { background: #1d1a12; color: #fff; border-color: #1d1a12; }
.float-btn--top.is-hidden { display: none; }
/* Tooltip */
.float-btn::after {
  content: attr(data-tip);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: #1d1a12;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}
.float-btn:hover::after { opacity: 1; }
/* 隐藏旧版 .float-phone / .back-to-top（兼容老 markup；新 markup 也用 .float-cluster） */
.float-phone, .back-to-top { display: none !important; }
@media (max-width: 480px) {
  .float-cluster { right: 12px; bottom: 16px; gap: 8px; }
  .float-btn { width: 46px; height: 46px; }
  .float-btn .ic { width: 20px; height: 20px; }
}

/* ---------- Footer 联系列去重：只隐藏"统一热线"那一行（不破坏布局） ---------- */
.footer-col li.no-hotline { display: none; }

/* ---------- 诚聘英才：简历投递表单（自包含，不依赖后台 .fld 样式） ---------- */
.apply-form { max-width: 680px; margin: 18px auto 0; text-align: left; }
.apply-form .arow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.apply-form .afld label { display: block; font-size: 13px; color: rgba(255,255,255,0.72); margin-bottom: 6px; }
.apply-form .afld label .req { color: #ff9b9b; font-style: normal; margin-left: 2px; }
.apply-form .afld input,
.apply-form .afld select,
.apply-form .afld textarea {
  width: 100%; padding: 11px 14px; font-size: 14px; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 9px; outline: none; font-family: inherit; transition: border-color .2s;
}
.apply-form .afld textarea { min-height: 88px; resize: vertical; line-height: 1.6; }
.apply-form .afld input:focus,
.apply-form .afld select:focus,
.apply-form .afld textarea:focus { border-color: var(--gold-light); }
.apply-form .achk { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.72); margin: 2px 0 16px; cursor: pointer; }
.apply-form .achk input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold); flex: 0 0 auto; }
.apply-form .achk a { color: var(--gold-light); }
.apply-form .aactions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.apply-tip { font-size: 13px; }
.apply-tip.ok { color: #7fdca0; }
.apply-tip.err { color: #ff9b9b; }
@media (max-width: 560px) { .apply-form .arow { grid-template-columns: 1fr; } }

/* 简历投递弹窗（点击职位「投递简历」才出现） */
.apply-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,.62); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.apply-modal.open { display: flex; }
.apply-modal-box { position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; background: #14151a; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 30px 26px 26px; box-shadow: 0 24px 70px rgba(0,0,0,.6); animation: applyPop .22s ease; }
@keyframes applyPop { from { transform: translateY(14px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.apply-modal-title { font-size: 20px; color: #fff; margin-bottom: 4px; }
.apply-modal-sub { font-size: 12.5px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.apply-modal-sub b { color: var(--gold-light); }
.apply-modal-close { position: absolute; top: 14px; right: 16px; width: 32px; height: 32px; border: none; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; transition: background .2s; }
.apply-modal-close:hover { background: rgba(255,255,255,.18); }
.apply-modal .apply-form { max-width: none; margin: 0; }

/* ============================================================
   诚聘英才（v22）：职位手风琴列表 + 雇主优势 + 应聘流程
   ============================================================ */
.job-list { display: flex; flex-direction: column; gap: 14px; }
.job-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.job-item:hover { border-color: rgba(var(--gold-rgb), 0.5); box-shadow: var(--shadow-sm); }
.job-item.open { border-color: rgba(var(--gold-rgb), 0.6); box-shadow: var(--shadow-md); }

.job-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  user-select: none;
}
.job-head-main { flex: 1; min-width: 0; }
.job-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-hot {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 2px 9px;
  border-radius: 99px;
  background: rgba(200, 60, 60, 0.1);
  color: #c83c3c;
  border: 1px solid rgba(200, 60, 60, 0.28);
}
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.job-tag {
  font-size: 12.5px;
  padding: 3px 11px;
  border-radius: 99px;
  background: var(--bg-2);
  color: var(--muted);
  white-space: nowrap;
}
.job-salary {
  margin-left: auto;
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}
.job-arrow {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--muted);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.job-item.open .job-arrow { transform: rotate(180deg); background: var(--gold); color: #fff; }

.job-body {
  display: none;
  padding: 4px 26px 26px;
  border-top: 1px solid var(--line);
  margin-top: 2px;
}
.job-item.open .job-body { display: block; }
.jb-block { margin-top: 20px; }
.jb-block h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-left: 11px;
  border-left: 3px solid var(--gold);
}
.jb-lines {
  font-size: 14.5px;
  line-height: 2;
  color: var(--muted);
  white-space: pre-line;   /* 后台录入的换行原样呈现 */
  margin: 0;
}
.job-apply {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.job-apply .ja-tip { font-size: 13px; color: var(--muted); }

/* 应聘流程：横向步骤 */
.hire-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hire-step { position: relative; text-align: center; padding: 34px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.hire-step .hs-no {
  width: 42px; height: 42px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold); color: #fff;
  font-family: var(--font-latin); font-size: 18px; font-weight: 700;
}
.hire-step h4 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.hire-step p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

@media (max-width: 992px) {
  .hire-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .job-head { flex-wrap: wrap; gap: 12px; padding: 18px 20px; }
  .job-salary { margin-left: 0; width: 100%; }
  .job-body { padding: 4px 20px 20px; }
  .job-title { font-size: 16.5px; }
}
@media (max-width: 560px) {
  .hire-steps { grid-template-columns: 1fr; }
  .job-arrow { width: 26px; height: 26px; }
}

/* ============================================================
   移动端适配补强（v26）
   ============================================================ */

/* 全局移动端安全基线（零副作用，兼顾老浏览器与现代浏览器） */
html { -webkit-text-size-adjust: 100%; }
body { overflow-wrap: break-word; word-break: break-word; }  /* 长串（手机号/网址）不撑破窄屏 */
a, button, .intent-chip, .car-card, .job-item { -webkit-tap-highlight-color: transparent; }  /* 去除移动端点击灰块 */

/* 老版本移动浏览器（如 Safari < 15）不支持 aspect-ratio，
   会导致图片容器高度为 0、图片塌陷/错位。用 @supports 兜底给图片媒体最小高度，
   现代浏览器支持 aspect-ratio 时此规则自动忽略，零副作用。 */
@supports not (aspect-ratio: 1 / 1) {
  .about-media, .car-media, .honor-frame { min-height: 220px; }
}

/* 手机端收紧留白与栅格间距：原 110px 区块间距、28px 容器边距在窄屏上
   会让内容显得松散错位，统一收紧到更紧凑的密度。 */
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .sec-head { margin-bottom: 38px; }
  .sec-head--left { margin-bottom: 30px; }
  .trust { padding: 40px 0; }
  .hero-content { padding: 118px 0 88px; }
  .car-filters { gap: 10px 14px; padding: 14px 16px; }
  .car-filters select { flex: 1 1 auto; min-width: 0; }
  .form-success { padding: 16px; }
  .form-success img { width: 96px; height: 96px; }
}

/* 超窄屏（≤400px）进一步收敛，避免按钮/标题顶边 */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .section { padding: 52px 0; }
  .hero-content { padding: 104px 0 76px; }
  .hero-title { font-size: 32px; }
  .hero-actions { gap: 12px; }
  .btn { padding: 13px 26px; font-size: 14.5px; }
}

/* ---------- 官方微店入口（v26.8.3）：移动端直跳微店，PC 弹二维码扫码 ---------- */
.car-more { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.btn-weidian { margin-left: auto; }
.weidian-strip { text-align: center; margin-top: 30px; }
.weidian-strip-sub { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 12px; }
@media (max-width: 768px) { .btn-weidian { margin-left: 0; } }
