/* ============================================================
   湾区口腔指南（GBA Dental Guide）— 设计系统
   深蓝 #0c4a6e（信任）· 青绿 #06b6d4（医疗）· 金 #d4a843（港式/价格）
   繁体主站 + 响应式 + 简繁切换支持
   ============================================================ */

:root {
  --primary: #0c4a6e;
  --primary-dark: #08324b;
  --secondary: #06b6d4;
  --secondary-dark: #0e7490;
  --accent: #d4a843;
  --accent-dark: #b08a2f;
  --bg: #f7fafc;
  --text: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
  --success: #0f9d58;
  --danger: #d93025;
  --warning: #f59e0b;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(12, 74, 110, 0.08);
  --font-hk: "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", "Source Han Sans TC", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary-dark); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 860px; }

/* ===== 跳过链接 ===== */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #fff;
  padding: 10px 16px; z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.2s ease;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #1a1206; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== Header ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 4px rgba(12, 74, 110, 0.06);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 500;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 17px; color: var(--primary); }
.logo-text small { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; list-style: none; gap: 4px; }
.main-nav a {
  display: block; padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text); transition: all 0.15s;
}
.main-nav a:hover { background: #f0f7fa; color: var(--primary); }
.main-nav a.active { background: #e8f4f8; color: var(--primary); font-weight: 500; }
.main-nav .nav-nobel { color: var(--accent-dark); font-weight: 500; }
.main-nav .nav-nobel:hover { background: #faf3e0; }

/* ===== 关于我们下拉菜单 ===== */
.main-nav li.nav-drop { position: relative; }
.main-nav .nav-drop-toggle { display: flex; align-items: center; gap: 4px; }
.main-nav .nav-drop-caret { font-size: 10px; color: var(--text-muted); transition: transform 0.2s; }
.main-nav .nav-drop:hover .nav-drop-caret { transform: rotate(180deg); }
.main-nav .nav-drop-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 172px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 6px; z-index: 110;
}
.main-nav .nav-drop:hover .nav-drop-menu,
.main-nav .nav-drop:focus-within .nav-drop-menu { display: block; }
.main-nav .nav-drop-menu a {
  border-radius: 8px; font-size: 13px; padding: 10px 12px; white-space: nowrap;
}
.main-nav .nav-drop-menu a:hover { background: #f0f7fa; }
.main-nav .nav-drop-menu a.active { background: #e8f4f8; color: var(--primary); font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.lang-switch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--primary); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.lang-switch:hover { border-color: var(--primary); background: #f0f7fa; }
.lang-switch.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.header-cta { padding: 8px 18px; font-size: 13px; }

.nav-toggle {
  display: none; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 面包屑 ===== */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; list-style: none; flex-wrap: wrap; padding: 10px 0; gap: 6px; font-size: 13px; color: var(--text-muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: #cbd5e1; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ===== Hero（首页屏1）===== */
.hero {
  background: linear-gradient(135deg, #0c4a6e 0%, #0e7490 55%, #06b6d4 100%);
  color: #fff; padding: 64px 0;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero-kicker {
  display: inline-block; font-size: 13px; letter-spacing: 1px;
  color: #bae6fd; background: rgba(255,255,255,0.1);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
.hero h1 { font-size: 38px; line-height: 1.3; font-weight: 500; margin-bottom: 16px; }
.hero-highlight { color: var(--accent); }
.hero-sub { font-size: 16px; color: #e0f2fe; margin-bottom: 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-cta .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,0.15); }
.hero-trust { display: flex; list-style: none; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #bae6fd; }
.hero-trust strong { color: #fff; font-size: 16px; }

.hero-card {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius); padding: 24px; backdrop-filter: blur(4px);
}
.hero-card-title { font-size: 15px; font-weight: 500; margin-bottom: 16px; color: #fff; }
.hero-compare { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hero-compare li {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 4px 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero-compare li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-compare span { font-size: 14px; color: #e0f2fe; }
.hero-compare em { font-style: normal; font-weight: 500; color: var(--accent); font-size: 16px; }
.hero-compare small { grid-column: 1 / -1; font-size: 12px; color: #bae6fd; }
.hero-card-note { margin-top: 14px; font-size: 11px; color: #bae6fd; }

/* ===== Hero 側邊門店卡 ===== */
.hero-side { display: flex; flex-direction: column; gap: 16px; }
.clinic-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); overflow: hidden;
}
.clinic-card img {
  display: block; width: 100%; height: auto; aspect-ratio: 16 / 9;
  object-fit: cover; border-bottom: 1px solid var(--border);
}
.clinic-card-body { padding: 18px 20px; }
.clinic-card-name { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.clinic-card-address { font-size: 14px; color: var(--text); margin-bottom: 10px; line-height: 1.5; }
.clinic-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.clinic-card .btn-sm { padding: 9px 16px; font-size: 14px; }

/* ===== 信任带 ===== */
.trust-band { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 28px 20px; }
.trust-item { text-align: center; }
.trust-item strong {
  display: block; font-size: 30px; font-weight: 500; color: var(--primary);
}
.trust-item span { font-size: 13px; color: var(--text-muted); }

/* ===== Section 通用 ===== */
.section { padding: 56px 0; }
.section-alt { background: var(--white); }
.section h2 {
  font-size: 26px; font-weight: 500; color: var(--text);
  margin-bottom: 8px;
}
.section-sub { color: var(--text-muted); margin-bottom: 28px; font-size: 15px; }
.section-link { margin-top: 20px; font-size: 14px; }
.section-link a { font-weight: 500; }

/* ===== 卡片栅格 ===== */
.card-grid { display: grid; gap: 16px; }
.policy-grid { grid-template-columns: repeat(3, 1fr); }
.pillar-grid { grid-template-columns: repeat(5, 1fr); }
.news-grid { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: all 0.2s ease;
}
a.card { display: block; color: var(--text); }
a.card:hover { border-color: var(--secondary); box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; color: var(--primary); }
.card p { font-size: 14px; color: var(--text-muted); }

.policy-status {
  display: inline-block; font-size: 12px; padding: 3px 10px;
  border-radius: 999px; background: #e8f7ee; color: var(--success);
  margin-bottom: 10px;
}
.pillar-hk { font-size: 12px; color: var(--secondary-dark); margin-bottom: 6px; }
.pillar-desc { font-size: 13px !important; }
.pillar-link { font-size: 13px; color: var(--primary); font-weight: 500; margin-top: 12px; display: inline-block; }
.news-card small { display: block; margin-top: 10px; font-size: 12px; color: var(--text-muted); }
.news-cover { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; background: #e2e8f0; }

/* ===== 价格对比表 ===== */
.table-wrap { overflow-x: auto; margin-bottom: 12px; border-radius: var(--radius); }
.price-table {
  width: 100%; min-width: 720px; border-collapse: collapse;
  background: var(--white); font-size: 14px;
}
.price-table th {
  background: var(--primary); color: #fff; text-align: left;
  padding: 12px 14px; font-weight: 500; white-space: nowrap;
}
.price-table th.nobel-col { background: var(--accent); color: #1a1206; }
.price-table td { padding: 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: #f8fafc; }
.price-table .item-name { font-weight: 500; color: var(--text); white-space: nowrap; }
.price-table .nobel-col { background: #fdf8ec; }
.price-table .nobel-col strong { color: var(--accent-dark); font-size: 16px; }
.saving-badge {
  display: inline-block; margin-left: 8px; font-size: 11px;
  background: #fde8e8; color: var(--danger); padding: 2px 8px; border-radius: 999px;
}
.price-note { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 16px 20px; background: none; border: none;
  font-size: 15px; font-weight: 500; color: var(--text); cursor: pointer;
  text-align: left; font-family: inherit;
}
.faq-q:hover { background: #f8fafc; }
.faq-icon { width: 10px; height: 10px; border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(45deg); transition: transform 0.2s; flex: none; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(-135deg); }
.faq-a { padding: 0 20px 18px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* ===== 诺贝尔专区 ===== */
.nobel-section {
  background: linear-gradient(135deg, #08324b 0%, #0c4a6e 100%);
  color: #fff;
}
.nobel-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.nobel-copy h2 { color: #fff; }
.nobel-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0 24px; }
.nobel-features li { font-size: 14px; color: #e0f2fe; padding-left: 24px; position: relative; }
.nobel-features li::before {
  content: ""; position: absolute; left: 4px; top: 7px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
}
.nobel-features strong { color: var(--accent); font-weight: 500; }
.nobel-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 24px;
}
.case-quote { border-left: 3px solid var(--accent); padding-left: 16px; margin: 16px 0; }
.case-quote p { font-size: 14px; color: #e0f2fe; font-style: normal; }
.case-quote cite { font-style: normal; font-size: 12px; color: #bae6fd; display: block; margin-top: 6px; }
.doctor-mini { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.doctor-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #1a1206;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.doctor-name { font-weight: 500; color: #fff; font-size: 14px; }
.doctor-info { font-size: 12px; color: #bae6fd; }

/* ===== 通关步骤 ===== */
.crossing-steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.crossing-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; position: relative;
}
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; margin-bottom: 12px;
}
.crossing-step h3 { font-size: 14px; font-weight: 500; color: var(--primary); margin-bottom: 6px; }
.crossing-step p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.crossing-step small { font-size: 12px; color: var(--secondary-dark); }

/* ===== 检查清单 ===== */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: 14px; color: var(--text-muted);
  padding-left: 52px; position: relative;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 16px; top: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #e8f7ee; color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.check-list strong { color: var(--text); font-weight: 500; }

/* ===== 频道Hero ===== */
.channel-hero {
  background: linear-gradient(135deg, #0c4a6e 0%, #0e7490 100%);
  color: #fff; padding: 56px 0;
}
.channel-hero-copy { max-width: 700px; }
.channel-hero h1 { font-size: 34px; font-weight: 500; margin-bottom: 12px; }
.channel-sub { font-size: 16px; color: #e0f2fe; margin-bottom: 28px; line-height: 1.9; }

/* ===== 最终CTA ===== */
.cta-final { background: var(--accent); color: #1a1206; text-align: center; }
.cta-final-inner { max-width: 620px; }
.cta-final h2 { color: #1a1206; }
.cta-final p { margin-bottom: 24px; font-size: 15px; }
.cta-final .btn-primary { background: #1a1206; color: var(--accent); }
.cta-final .btn-outline { border-color: #1a1206; color: #1a1206; }

/* ===== Footer ===== */
.site-footer { background: #0a2540; color: #cbd5e1; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px; padding: 48px 20px 32px;
}
.footer-logo { font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.footer-logo span { display: block; font-size: 11px; color: var(--accent); letter-spacing: 1px; }
.footer-about p { font-size: 13px; line-height: 1.8; color: #94a3b8; }
.footer-note { margin-top: 12px; font-size: 12px !important; }
.footer-h { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { font-size: 13px; color: #94a3b8; }
.footer-col ul a { color: #94a3b8; }
.footer-col ul a:hover { color: var(--accent); }
.footer-cta { margin-top: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px; font-size: 12px; color: #64748b;
}

/* ===== 移动端 Sticky CTA ===== */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  padding: 10px 16px; gap: 10px; z-index: 90;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  box-sizing: border-box; height: 64px; align-items: center;
}
.sticky-cta .btn { flex: 1; padding: 12px; font-size: 14px; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 32px; }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .crossing-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { height: 60px; }
  .main-nav {
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: #fff; transform: translateX(100%);
    transition: transform 0.3s ease; overflow-y: auto;
    padding: 20px; z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .main-nav .nav-drop-menu {
    position: static; display: block; box-shadow: none; border: none;
    padding: 4px 0 4px 18px; min-width: 0;
  }
  .main-nav .nav-drop-menu a { font-size: 15px; border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .hero { padding: 40px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 28px; }
  .hero-card { margin-top: 8px; }
  .clinic-card { margin-top: 8px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

  .policy-grid, .pillar-grid, .news-grid, .doctor-grid, .doctor-strip, .advantage-grid { grid-template-columns: 1fr 1fr; }
  .authority-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 30px 18px; }
  .authority-stat .num { font-size: 2.1rem; }
  .authority-badges { grid-template-columns: 1fr; }
  .authority-cats { grid-template-columns: 1fr; }
  .crossing-steps { grid-template-columns: 1fr; }
  .nobel-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 36px 20px 28px; }
  .section { padding: 40px 0; }
  .section h2 { font-size: 22px; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
}

/* ===== 简繁切换全局字体 ===== */
html[lang="zh-Hans"] body { font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif; }

/* ===== 文章页通用 ===== */
.article-body { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.article-body h2 { font-size: 22px; margin: 28px 0 12px; }
.article-body h3 { font-size: 18px; margin: 24px 0 10px; color: var(--primary); }
.article-body p { margin-bottom: 16px; color: #334155; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; color: #334155; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text); }
.article-body img { border-radius: var(--radius-sm); margin: 12px 0; }
.article-body .article-img { margin: 16px 0; text-align: center; }
.article-body .article-img img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 16px rgba(15,23,42,0.08); border: 1px solid var(--border); }
.article-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.article-back { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 500; }

/* ===== 404 ===== */
.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 80px; color: var(--primary); font-weight: 500; }
.error-page h2 { font-size: 22px; margin: 12px 0; }
.error-page p { color: var(--text-muted); margin-bottom: 24px; }

/* ===== 推荐标签（交通方式优先） ===== */
.recommend-badge {
  display: inline-block; font-size: 11px; font-weight: 500;
  background: var(--accent); color: #1a1206;
  padding: 2px 8px; border-radius: 999px; margin-right: 4px;
}

/* ===== 医生团队展示 ===== */
.doctor-section { padding: 56px 0; }
.doctor-section-header { text-align: center; margin-bottom: 36px; }
.doctor-section-header h2 { margin-bottom: 8px; }
.doctor-section-header p { color: var(--text-muted); font-size: 15px; }
.doctor-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.doctor-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.2s ease;
}
.doctor-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); transform: translateY(-2px); }
.doctor-photo {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  background: #f1f5f9; display: block;
}
.doctor-body { padding: 16px; }
.doctor-name { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.doctor-title { font-size: 13px; color: var(--primary); margin-bottom: 8px; }
.doctor-specialty { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.doctor-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.doctor-mini-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 14px; text-align: center;
}
.doctor-mini-card img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  margin-bottom: 10px; border: 2px solid var(--accent);
}
.doctor-mini-card .doctor-name { color: #fff; font-size: 14px; }
.doctor-mini-card .doctor-title { color: #bae6fd; font-size: 12px; }

/* ===== 诺贝尔品牌优势 ===== */
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.advantage-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px;
  text-align: center; transition: all 0.2s ease;
}
.advantage-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.advantage-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; font-size: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.advantage-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.advantage-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ===== 权威认证·实力见证（牌匾墙，品牌站同款） ===== */
.authority-section { background: linear-gradient(180deg, #f0f7fb 0%, var(--bg) 100%); }
.authority-section .doctor-section-header span { color: var(--accent); }

/* 大数字带 */
.authority-stats {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #08324b 0%, #0c4a6e 50%, #0e7490 100%);
  border-radius: 16px;
  padding: 40px 28px; margin: 28px 0 36px; color: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(12, 74, 110, 0.25);
}
.authority-stats::before {
  content: ''; position: absolute; top: -60%; left: 18%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.20), transparent 70%);
}
.authority-stats::after {
  content: ''; position: absolute; bottom: -70%; right: 8%;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 70%);
}
.authority-stat { position: relative; z-index: 2; }
.authority-stat .num {
  font-size: 2.6rem; font-weight: 800; line-height: 1.15;
  background: linear-gradient(135deg, #e8c878 0%, #fff 55%, #7dd3fc 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.authority-stat .label { color: rgba(255, 255, 255, 0.88); font-size: 0.95rem; margin-top: 4px; font-weight: 600; }
.authority-stat .desc { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); margin-top: 2px; }

/* 认证徽章墙（整卡可点击） */
.authority-badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 36px;
}
.authority-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  text-decoration: none; color: inherit;
}
.authority-badge:hover {
  transform: translateY(-4px); box-shadow: 0 8px 22px rgba(12, 74, 110, 0.14);
  border-color: rgba(212, 168, 67, 0.65);
}
.authority-badge .ab-icon {
  width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #d4a843, #e8c878);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 14px rgba(212, 168, 67, 0.35);
}
.authority-badge h3 { font-size: 0.98rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.authority-badge p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* 4大分类牌匾卡（整卡可点击） */
.authority-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.authority-cat {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 20px 18px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  transition: all 0.2s ease;
  text-decoration: none; color: inherit;
  display: block;
}
.authority-cat:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(12, 74, 110, 0.15); border-top-color: var(--accent-dark); }
.authority-cat .ac-icon { font-size: 1.6rem; margin-bottom: 10px; }
.authority-cat h3 { color: var(--primary); font-size: 1.04rem; font-weight: 700; margin-bottom: 12px; }
.authority-cat ul { list-style: none; padding: 0; margin: 0 0 12px; }
.authority-cat ul li {
  position: relative; padding-left: 18px; margin-bottom: 8px;
  color: var(--text-muted); font-size: 0.84rem; line-height: 1.6;
}
.authority-cat ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
.authority-cat .ac-more { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

/* 澳门客贴心服务横条 */
.authority-service {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  padding: 4px 0 6px;
}
.service-chip {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: #fff; border: 1px solid #dbe8f0;
  border-radius: 999px; padding: 7px 14px;
  font-size: 0.8rem; color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(12, 74, 110, 0.06);
}
.service-chip strong { color: var(--primary); font-weight: 700; }

@media (max-width: 992px) {
  .authority-stats { grid-template-columns: repeat(2, 1fr); }
  .authority-badges { grid-template-columns: repeat(2, 1fr); }
  .authority-cats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 关于页：统计带 ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #0e7490 100%);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.about-stat { text-align: center; color: #fff; }
.about-stat-num {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #f7d98a, #d4a843);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-stat-label { font-size: 15px; font-weight: 500; margin-top: 6px; }
.about-stat-desc { font-size: 12px; color: #bae6fd; margin-top: 2px; }

/* ===== 关于页：品牌大事记时间线 ===== */
.about-timeline {
  position: relative;
  margin: 8px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--border);
}
.about-tl-item {
  position: relative;
  padding: 0 0 20px 18px;
}
.about-tl-item:last-child { padding-bottom: 4px; }
.about-tl-dot {
  position: absolute;
  left: -27px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.about-tl-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-dark);
  background: #e0f2fe;
  border-radius: 20px;
  padding: 1px 12px;
  margin-bottom: 5px;
}
.about-tl-item p { font-size: 14.5px; color: #334155; line-height: 1.6; }

/* ===== 关于页：品牌荣誉 ===== */
.about-honor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-honor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.about-honor-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  background: #fdf3d7;
  border-radius: 16px;
  padding: 2px 12px;
  margin-bottom: 10px;
}
.about-honor-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.about-honor-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== 关于页：品牌合作 ===== */
.about-coop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-coop-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-coop-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.about-coop-label { font-size: 14px; font-weight: 500; margin-top: 4px; color: var(--text); }
.about-coop-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== 关于页：就诊保障 ===== */
.about-guard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-guard-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.about-guard-icon { font-size: 28px; margin-bottom: 10px; }
.about-guard-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.about-guard-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* 关于页响应式 */
@media (max-width: 768px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-honor-grid, .about-guard-grid { grid-template-columns: 1fr 1fr; }
  .about-coop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-honor-grid, .about-guard-grid { grid-template-columns: 1fr; }
}

/* ===== 荣誉/合作落地页 ===== */
.honor-card-link { margin-top: 12px !important; padding-top: 10px; border-top: 1px dashed var(--border); }
.honor-card-link a { font-size: 13px; font-weight: 500; color: var(--secondary-dark); }
.honor-card-link a:hover { text-decoration: underline; }

.honor-report-grid { grid-template-columns: repeat(3, 1fr); }
.honor-report-card { padding: 0 !important; overflow: hidden; display: flex; flex-direction: column; }
.honor-report-img {
  width: 100%; height: 168px; object-fit: cover;
  border-bottom: 1px solid var(--border);
  background: #e2e8f0;
}
.honor-report-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.honor-report-tag {
  font-size: 12px; color: var(--accent-dark); background: #fdf3d7;
  padding: 2px 10px; border-radius: 999px; align-self: flex-start; margin-bottom: 10px;
}
.honor-report-body h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text); line-height: 1.5; }
.honor-report-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.honor-report-body small { font-size: 13px; color: var(--secondary-dark); font-weight: 500; margin-top: 10px; }
@media (max-width: 768px) {
  .honor-report-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .honor-report-grid { grid-template-columns: 1fr; }
  .honor-report-img { height: 190px; }
}

/* ===== 页脚隐藏模板辅助 ===== */
@media print {
  .sticky-cta, .header-cta, .lang-switch { display: none !important; }
}

/* ===== 预约澳门客专属免费检查（book section） ===== */
.book-section { padding: 56px 0; }
.book-wrap {
  background: linear-gradient(135deg, #0c4a6e 0%, #08324b 55%, #0e7490 130%);
  border-radius: 20px;
  padding: 44px 40px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(12, 74, 110, 0.18);
}
.book-wrap::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), #f0d48a, var(--accent));
}
.book-wrap::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
}
.book-head { text-align: center; margin-bottom: 30px; position: relative; z-index: 1; }
.book-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f0c95c, var(--accent));
  color: #1a1206; font-size: 13px; font-weight: 600;
  padding: 6px 18px; border-radius: 999px; margin-bottom: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.35);
}
.book-head h2 { color: #fff; font-size: 28px; font-weight: 500; margin-bottom: 8px; }
.book-head p { color: #bcd7e8; font-size: 15px; }

.book-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 26px;
  align-items: stretch; position: relative; z-index: 1;
}

/* 左：权益卡 */
.book-perks {
  background: #fff; border-radius: 16px; padding: 26px 24px;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 24px rgba(8, 50, 75, 0.2);
}
.book-perks-title {
  font-size: 15px; font-weight: 600; color: var(--primary);
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.book-perks ul { list-style: none; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.book-perks li { display: flex; gap: 12px; align-items: flex-start; }
.perk-ico {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: #e8f6ee; color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; margin-top: 2px;
}
.book-perks li strong { display: block; font-size: 14px; color: var(--text); line-height: 1.5; }
.book-perks li em { display: block; font-style: normal; font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.book-contact { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--border); }
.book-contact p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.book-contact .btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-bottom: 8px; font-size: 14px; padding: 11px 14px; border-radius: 10px;
  border: none; cursor: pointer;
}
.btn-phone { background: var(--primary); color: #fff; }
.btn-phone:hover { background: var(--primary-dark); color: #fff; }

/* 右：表单卡 */
.book-form {
  background: #fff; border-radius: 16px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 8px 24px rgba(8, 50, 75, 0.2);
}
.book-form .form-row { display: flex; flex-direction: column; gap: 6px; }
.book-form label { font-size: 13px; font-weight: 600; color: var(--primary); }
.book-form label i { color: var(--accent-dark); font-style: normal; }
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 14px; color: var(--text);
  background: #fbfdff; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.18);
  background: #fff;
}
.book-form textarea { resize: vertical; min-height: 70px; }
.form-privacy { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.btn-book {
  width: 100%;
  background: linear-gradient(90deg, #f0c95c, var(--accent));
  color: #1a1206; font-weight: 600; font-size: 16px;
  padding: 14px 20px; border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 16px rgba(212, 168, 67, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-book:hover {
  background: linear-gradient(90deg, #f5d67a, var(--accent-dark));
  color: #1a1206; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 168, 67, 0.5);
}
.form-msg { font-size: 13px; min-height: 18px; }
.form-msg.success { color: var(--success); }
.form-msg.error { color: var(--danger); }

@media (max-width: 860px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-wrap { padding: 34px 22px 28px; }
  .book-head h2 { font-size: 23px; }
}
