/* ============================================================
   全球租车比价平台 — 样式表
   主色：DiscoverCars 蓝 #007ac2 / 强调黄 #fcd34d
   ============================================================ */

:root {
  --blue: #007ac2;
  --blue-dark: #005a8f;
  --yellow: #fcd34d;
  --ink: #0f172a;
  --slate: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, .14);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}
.brand-logo { font-size: 24px; }
.brand-text { letter-spacing: .5px; }
.brand-logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-footer .brand-logo-img {
  /* 页脚里图本身是白底，所以深色图没问题；这里仅微调尺寸 */
  height: 40px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-weight: 600;
  color: var(--slate);
  transition: color .2s;
}
.main-nav a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
}

/* ---------- 地区 / 国家详情页 hero ---------- */
.region-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.region-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(252, 211, 77, .35), transparent 60%),
    linear-gradient(135deg, #005a8f 0%, #007ac2 55%, #0a93d6 100%);
}
.region-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
}
.region-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px 90px;
}
.region-hero-inner .eyebrow {
  background: rgba(252, 211, 77, .18);
  color: var(--yellow);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.region-hero-inner h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: .5px;
}
.region-desc {
  font-size: 17px;
  max-width: 740px;
  opacity: .95;
  margin: 0 0 26px;
  line-height: 1.7;
}
.region-meta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(252, 211, 77, .35), transparent 60%),
    linear-gradient(135deg, #005a8f 0%, #007ac2 55%, #0a93d6 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 70px 24px 40px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-inner .search-card { padding: 0; }

.search-card {
  width: 100%;
}

/* ---------- 通用 section ---------- */
.section { padding: 36px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 24px; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--blue);
  background: rgba(0, 122, 194, .1);
  padding: 4px 12px; border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.eyebrow-xl {
  font-size: 22px !important;
  padding: 7px 18px !important;
  letter-spacing: 1.2px !important;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 0 0 12px; color: var(--ink); font-weight: 800;
}
.section-head-xl {
  font-size: clamp(52px, 6.8vw, 76px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.5px;
  margin: 0 0 18px !important;
}
.section-desc { color: var(--muted); margin: 0; font-size: 16px; }

/* ---------- 国际大奖 ---------- */
.awards { background: var(--white); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.award-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.award-icon {
  height: 76px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-icon img {
  max-height: 76px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.award-card h3 { margin: 6px 0 8px; font-size: 18px; color: var(--ink); }
.award-card p { margin: 0; font-size: 14px; color: var(--muted); }

/* ---------- 对比（双面板 + 中间徽章） ---------- */
.compare { background: var(--bg); }

.cmp2 {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 84px 0.8fr;
  align-items: stretch;
}

/* 单元格通用 */
.cmp2-cell {
  position: relative;
  padding: 20px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.cmp2-cell b {
  display: block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .2px;
}
.cmp2-cell i {
  display: block;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}
/* 内缩分隔线 */
.cmp2-cell::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
}
.cmp2-last::after,
.cmp2-cap::after { display: none; }

/* 左侧：我们（主面板） */
.cmp2-us { background: #e9f4fc; }
.cmp2-us b { color: #075985; }
.cmp2-us i { color: #4d80a0; }
.cmp2-us::after { background: #d3e6f5; }

/* 右侧：传统门店（弱化面板） */
.cmp2-them { background: #f1f3f5; }
.cmp2-them b { color: #8b939b; font-weight: 700; }
.cmp2-them i { color: #a7afb7; }
.cmp2-them::after { background: #e3e7ea; }

/* 上下留白帽（让左侧面板高于右侧，形成主次层次） */
.cmp2-cap { padding: 0; min-height: 20px; }
.cmp2-cap-top { border-radius: 22px 22px 0 0; }
.cmp2-cap-bottom { border-radius: 0 0 22px 22px; }
.cmp2-spacer { background: transparent; }

/* 右侧面板圆角 */
.cmp2-them.cmp2-head { border-radius: 18px 18px 0 0; }
.cmp2-them.cmp2-last { border-radius: 0 0 18px 18px; }

/* 表头胶囊 */
.cmp2-head { padding: 24px 26px 20px; }
.cmp2-pill {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .5px;
  white-space: nowrap;
}
.cmp2-pill-us {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 122, 194, .28);
}
.cmp2-pill-them {
  background: #b9c0c7;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 18px;
}

/* 中间徽章列 */
.cmp2-badge-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cmp2-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 6px 16px rgba(0, 122, 194, .30);
  transform: translateX(-8px);
}
.cmp2-badge em { font-style: normal; font-size: 13px; font-weight: 800; }

@media (max-width: 760px) {
  .cmp2 { grid-template-columns: 1fr 56px 0.8fr; max-width: 100%; }
  .cmp2-cell { padding: 14px 10px; }
  .cmp2-cell::after { left: 10px; right: 10px; }
  .cmp2-head { padding: 16px 8px 14px; }
  .cmp2-cell b { font-size: 14px; }
  .cmp2-cell i { font-size: 11px; }
  .cmp2-pill { font-size: 13px; padding: 8px 14px; white-space: normal; }
  .cmp2-pill-them { font-size: 11px; padding: 7px 10px; }
  .cmp2-badge { width: 44px; height: 44px; font-size: 10px; transform: translateX(-5px); }
  .cmp2-badge em { font-size: 10px; }
  .cmp2-cap { min-height: 14px; }
}
@media (max-width: 460px) {
  .cmp2 { grid-template-columns: 1fr 40px 0.85fr; }
  .cmp2-cell { padding: 12px 7px; gap: 4px; }
  .cmp2-cell::after { left: 7px; right: 7px; }
  .cmp2-cell b { font-size: 12.5px; letter-spacing: 0; }
  .cmp2-cell i { font-size: 10px; }
  .cmp2-pill { font-size: 11.5px; padding: 7px 10px; letter-spacing: 0; }
  .cmp2-pill-them { font-size: 10px; padding: 6px 8px; }
  .cmp2-badge { width: 36px; height: 36px; font-size: 8.5px; line-height: 1.15; transform: translateX(-3px); }
  .cmp2-badge em { font-size: 8.5px; }
  /* 超窄屏两列太挤，退回单列 */
  .license-list { grid-template-columns: 1fr; }
}

.compare-bars { margin: 22px auto 26px; display: grid; gap: 18px; max-width: 720px; }
.bar-row { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 12px; }
.bar-label { font-size: 15px; color: var(--slate); font-weight: 700; text-align: left; }
.bar-track { background: #e9eef5; border-radius: 999px; height: 42px; overflow: hidden; }
.bar-fill {
  height: 100%; display: flex; align-items: center; justify-content: flex-end;
  padding-right: 18px; color: #fff; font-size: 15px; font-weight: 700;
  background: linear-gradient(90deg, var(--blue), #0a93d6);
  border-radius: 999px;
  width: 0; transition: width 1.2s ease;
}
@media (max-width: 680px) {
  .bar-row { grid-template-columns: 48px 1fr; gap: 10px; }
  .bar-label { font-size: 13px; }
  .bar-track { height: 34px; }
  .bar-fill { font-size: 13px; padding-right: 12px; }
}

/* ---------- 租车地点 / 地图 ---------- */
.locations { background: var(--white); }
.map-section { background: var(--bg); }
.map-wrap {
  position: relative;
  background: linear-gradient(180deg, #f1f7fd, #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.world-map { width: 100%; height: 460px; position: relative; }
/* 地图小旗帜叠加层（HTML 元素，比例可控、不变形） */
.map-pins { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.map-flag {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  pointer-events: auto; cursor: pointer; text-decoration: none;
  filter: drop-shadow(0 3px 5px rgba(15, 23, 42, .35));
  transition: transform .15s ease, filter .15s ease;
}
.map-flag:hover { transform: translate(-50%, -100%) scale(1.18); z-index: 9; }
.flag-img {
  width: 30px; height: 20px; object-fit: cover;
  border: 1.5px solid #fff; border-radius: 3px; display: block;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .3);
}
.flag-pole { width: 2px; height: 10px; background: #475569; border-radius: 1px; margin-top: 1px; }
/* 自给自足的工具提示样式（不依赖 jsvectormap CDN CSS） */
.jvm-tooltip {
  display: none;
  position: absolute;
  white-space: nowrap;
  font-family: "PingFang SC","Microsoft YaHei",sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  background: #0f172a; color: #fff;
  box-shadow: 0 4px 12px rgba(15,23,42,.25);
  border: 0; z-index: 9999;
  pointer-events: none;
}
.jvm-tooltip.active { display: block; }
.map-hint {
  position: absolute; top: 26px; right: 26px;
  background: rgba(15,23,42,.82); color: #fff;
  font-size: 13px; padding: 6px 12px; border-radius: 999px;
  pointer-events: none;
}
.sub-title { text-align: center; font-size: 24px; color: var(--ink); margin: 48px 0 24px; font-weight: 800; }
.country-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.country-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; transition: transform .2s, box-shadow .2s, border-color .2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.country-card:active { transform: translateY(-1px); background: #f8fbff; }
.country-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.country-flag-img,
.country-flag-emoji {
  width: 36px; height: 24px; flex: 0 0 36px;
  border-radius: 4px; object-fit: cover; display: inline-block;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
  font-size: 26px; line-height: 24px; text-align: center;
}
.country-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.country-name { font-weight: 800; color: var(--ink); font-size: 15px; }
.country-sub { font-size: 12px; color: var(--muted); }
.country-stats {
  display: block;
  font-size: 12px; color: var(--muted); line-height: 1.5;
}
.country-stat-row { display: block; }
.country-stat-row + .country-stat-row { margin-top: 1px; }
.country-stats .num { color: var(--ink); font-weight: 700; }

/* ---------- 热门合作车行 ---------- */
.suppliers { background: var(--bg); }
.suppliers-head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 30px;
}
.suppliers-head h2 { font-size: clamp(22px, 3vw, 30px); color: var(--ink); font-weight: 700; }
.suppliers-head h2 strong { color: var(--blue); font-weight: 800; }
.suppliers-link {
  color: var(--blue); font-weight: 700; font-size: 15px;
  text-decoration: none; transition: color .2s;
}
.suppliers-link:hover { color: var(--blue-dark); }
.suppliers-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px;
}
.supplier-logo {
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.supplier-logo:hover { transform: translateY(-3px); }
.supplier-logo img {
  width: 100%; height: auto; max-width: 88px; max-height: 88px;
  border-radius: 16px; display: block;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}
.supplier-logo-all { text-decoration: none; }

/* ---------- 驾照服务 ---------- */
.license { background: var(--bg); }
/* 桌面：卡片在左、文字在右，「驾照服务」标签紧贴文字块上方（右列） */
.license-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  grid-template-areas:
    "card eyebrow"
    "card text";
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 0;
  align-content: center;
}
.license-eyebrow { grid-area: eyebrow; align-self: end; }
.license-eyebrow .eyebrow { margin-bottom: 0; }
.license-card    { grid-area: card; align-self: center; }
.license-text    { grid-area: text; align-self: start; }
.license-text h2 { font-size: clamp(24px, 3vw, 34px); color: var(--ink); margin: 10px 0 14px; font-weight: 800; }
.license-text p { color: var(--muted); margin: 0 0 18px; }
.license-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.license-list li { font-size: 14px; color: var(--slate); background: #fff; padding: 9px 12px; border-radius: 8px; border: 1px solid #e2e8f0; }
.license-list li::before { content: "•"; color: var(--blue); margin-right: 8px; font-weight: 700; }
.btn-primary {
  display: inline-block; background: var(--blue); color: #fff; font-weight: 700;
  padding: 12px 26px; border-radius: 999px; box-shadow: 0 8px 20px rgba(0,122,194,.35);
  transition: transform .2s, background .2s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ---------- 租车流程 ---------- */
.process { background: var(--white); }
.process-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(0,122,194,.35);
}
.process-step h3 { margin: 0 0 8px; font-size: 18px; color: var(--ink); font-weight: 800; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- 租车文件 ---------- */
.docs { background: var(--bg); }
.docs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.doc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  font-size: 24px;
  background: #fff4d4;
  border-radius: 12px;
  margin-bottom: 12px;
}
.doc-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--ink); font-weight: 800; }
.doc-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* 卡片被区域筛选隐藏 */
.country-card.is-hidden { display: none; }
/* 区域筛选激活时的横向提示 */
.country-filter-active {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
}
.country-filter-active b { color: var(--blue); }
.license-card {
  background: linear-gradient(160deg, var(--blue), #0a93d6);
  color: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-lg);
}
.license-badge {
  display: inline-block; background: rgba(255,255,255,.2); font-size: 12px;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}
.license-card h3 { margin: 0 0 8px; font-size: 22px; }
.license-card h3 .h3-sub { font-size: 15px; font-weight: 400; opacity: .9; }
.license-card p { margin: 0 0 16px; opacity: .95; }
.license-meta { font-size: 13px; opacity: .85; border-top: 1px solid rgba(255,255,255,.25); padding-top: 12px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 20px; font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-icon { font-size: 22px; color: var(--blue); transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--ink); color: #cbd5e1; padding-top: 56px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; padding-bottom: 40px;
}
.site-footer .brand { color: #fff; }
.footer-about { font-size: 14px; margin-top: 14px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 16px; margin: 0 0 14px; }
.footer-col a { display: block; font-size: 14px; color: #cbd5e1; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-col p { font-size: 14px; margin: 0 0 10px; }
.footer-col-nav .footer-nav-links {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 8px 24px;
}
.footer-link { color: var(--yellow) !important; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; }
.footer-bottom .container { color: #94a3b8; }

/* ---------- 移动端底部固定导航 ---------- */
.bottom-nav {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #017dc4; border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -2px 10px rgba(15,23,42,.12);
  z-index: 1000;
}
.bottom-nav-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  padding: 8px 0 10px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .2s, background .2s;
}
.bottom-nav-item:active { background: rgba(0,0,0,.12); }
.bottom-nav-item.active,
.bottom-nav-item:hover { color: #fff; }
.bottom-nav-icon {
  width: 23px; height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 56px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  /* 移动端单列：标签 → 蓝色卡片 → 文字，三段纵向堆叠 */
  .license-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "card"
      "text";
    row-gap: 16px;
    column-gap: 0;
  }
  .license-eyebrow { align-self: start; text-align: center; }
  .license-card { align-self: stretch; }
  /* 窄屏时放大版 eyebrow 适度收小，避免长文案（如「探索全球租车目的地」）撑破容器 */
  .eyebrow-xl { font-size: 17px !important; padding: 6px 14px !important; letter-spacing: .8px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .suppliers-head { flex-direction: column; align-items: flex-start; }
  .suppliers-grid { grid-template-columns: repeat(6, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .main-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .brand-logo-img { height: 26px; max-width: 200px; }

  .hero-inner { padding: 40px 16px 26px; }
  .section { padding: 26px 0; }
  .section-head { margin-bottom: 18px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .award-card { padding: 18px 12px 16px; }
  .award-icon { height: 58px; margin-bottom: 8px; }
  .award-icon img { max-height: 58px; }
  .award-card h3 { font-size: 15px; margin: 4px 0 6px; }
  .award-card p { font-size: 12.5px; line-height: 1.55; }
  .country-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 44px 1fr; gap: 10px; }
  .world-map { height: 320px; }
  .suppliers-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .supplier-logo img { max-width: 72px; max-height: 72px; border-radius: 12px; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-step { padding: 18px 14px 16px; }
  .process-num { width: 32px; height: 32px; font-size: 15px; margin-bottom: 10px; }
  .process-step h3 { font-size: 15px; margin-bottom: 6px; }
  .process-step p { font-size: 12.5px; line-height: 1.55; }
  .doc-card { padding: 16px 14px; }
  .doc-ico { width: 36px; height: 36px; font-size: 20px; border-radius: 10px; margin-bottom: 10px; }
  .doc-card h3 { font-size: 15px; margin-bottom: 6px; }
  .doc-card p { font-size: 12.5px; line-height: 1.55; }

  /* 移动端底部导航出现 */
  body { padding-bottom: 64px; }
  .bottom-nav { display: flex; }
}
