/* 敢信医伴 陪诊官网 - 前端 UI */
:root {
  --primary: #1565c0;
  --primary-light: #42a5f5;
  --primary-dark: #0d47a1;
  --accent: #ff8f00;
  --accent-hover: #ef6c00;
  --text: #1a2332;
  --text-muted: #5c6b7a;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --bg-muted: #eef3f9;
  --border: #e2eaf2;
  --shadow-sm: 0 2px 8px rgba(21, 101, 192, .06);
  --shadow: 0 8px 30px rgba(21, 101, 192, .1);
  --shadow-lg: 0 16px 48px rgba(21, 101, 192, .14);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1280px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header .container.header-inner {
  max-width: var(--max-width);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -.02em;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(21, 101, 192, .35);
}

.logo span { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: linear-gradient(135deg, var(--accent), #ffb300);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 4px 14px rgba(255, 143, 0, .35);
  white-space: nowrap;
}

.header-phone a { color: #fff; }
.header-phone a:hover { color: #fff; opacity: .9; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.main-nav {
  flex: 1;
  min-width: 0;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.main-nav > ul > li {
  flex-shrink: 0;
  position: relative;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 10px;
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--primary);
  background: var(--bg-muted);
}

.main-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 4px 12px rgba(21, 101, 192, .25);
}

/* Nav dropdown */
.nav-chevron {
  opacity: .6;
  transition: transform .2s;
  flex-shrink: 0;
}

.nav-has-dropdown.open .nav-chevron,
.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 148px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 300;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 10px 14px;
  font-size: .875rem;
  border-radius: 6px;
}

.nav-dropdown a.active {
  background: var(--bg-muted);
  color: var(--primary);
  box-shadow: none;
}

/* ========== Alert ========== */
.site-alert {
  background: linear-gradient(90deg, #fff8e1, #fff3e0);
  color: #e65100;
  padding: 10px 20px;
  text-align: center;
  font-size: .88rem;
  border-bottom: 1px solid #ffe0b2;
}

.site-alert a { color: var(--primary-dark); font-weight: 600; }
.site-alert code { background: rgba(255,255,255,.7); padding: 2px 6px; border-radius: 4px; }

/* ========== Hero ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 45%, #42a5f5 100%);
  color: #fff;
  padding: 72px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-with-img,
.page-hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-img::after { display: none; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .85rem;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.hero .subtitle {
  font-size: 1.05rem;
  opacity: .92;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.85;
}

.hero-regions {
  font-size: .9rem;
  opacity: .8;
  margin-bottom: 28px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.hero-stat {
  text-align: center;
  min-width: 90px;
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.hero-stat span {
  font-size: .82rem;
  opacity: .78;
  margin-top: 4px;
  display: block;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 40px 0 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-top: 8px;
}

.page-hero .subtitle {
  font-size: 1rem;
  opacity: .9;
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.page-hero .section-label {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.95);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn:active { transform: scale(.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffb300);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 143, 0, .4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 143, 0, .5);
}

.btn-outline {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

/* ========== Sections ========== */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-soft); }

.section-title { text-align: center; margin-bottom: 40px; }

.section-label {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(21, 101, 192, .08);
  color: var(--primary);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-title p {
  color: var(--text-muted);
  font-size: .98rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== Cards ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 101, 192, .2);
}

.card-body { padding: 22px; }

.card h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.card p { color: var(--text-muted); font-size: .92rem; line-height: 1.75; }

.card-meta {
  font-size: .85rem;
  color: var(--accent);
  margin-top: 12px;
  font-weight: 600;
}

.card-link { display: block; color: inherit; }
.card-link:hover h3 { color: var(--primary); }

.card-icon-top {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #fff;
}

.hospital-card .card-icon-top { font-size: 1.4rem; font-weight: 700; letter-spacing: .04em; }
.hospital-card.xinan .card-icon-top { background: linear-gradient(135deg, #0d47a1, #1976d2); }
.hospital-card.xinqiao .card-icon-top { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.hospital-card.daping .card-icon-top { background: linear-gradient(135deg, #0277bd, #4fc3f7); }

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 12px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}

.card-link:hover .card-arrow { opacity: 1; transform: none; }

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg-muted);
}

.card-img-doctor {
  height: 240px;
  object-position: top center;
}

.card-grid-doctors {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.content-img {
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius);
  margin: 24px auto;
  box-shadow: var(--shadow);
  display: block;
}

.doctor-profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}

.doctor-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.doctor-disclaimer {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 12px 0 20px;
}

/* ========== Advantages ========== */
.advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  list-style: none;
}

.advantage-list li {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
  line-height: 1.75;
  position: relative;
  padding-left: 52px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.advantage-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent), #ffb300);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 101, 192, .2);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.advantage-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}

.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.advantage-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--primary-dark);
}

.advantage-lead {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
}

.advantage-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}

.hero-brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 0 0 12px;
  opacity: .95;
}

.hero-lead {
  font-size: 1.1rem;
  margin: 0 0 16px;
  opacity: .92;
}

.hero-stat em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  opacity: .65;
  margin-top: 4px;
  line-height: 1.35;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}

.process-tip {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: .95rem;
}

.hospital-wall {
  text-align: center;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: .95rem;
  padding: 8px 12px 0;
}

.footer-legal-meta {
  margin-top: 6px;
  font-size: .85rem;
  opacity: .9;
}

.footer-legal-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-legal-links a {
  color: inherit;
  opacity: .9;
}

.form-agree {
  margin: 8px 0 16px;
}

.form-agree.is-error {
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid #e57373;
  background: #fff5f5;
}

.form-agree-error {
  margin: 8px 0 0;
  color: #c62828;
  font-size: .85rem;
}

.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 8px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  margin-bottom: 28px;
}

.footer-nav-row a {
  color: inherit;
  opacity: .9;
  font-size: .95rem;
}

.footer-nav-row a:hover {
  opacity: 1;
  text-decoration: underline;
}

.trust-bar {
  padding: 0 0 8px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.trust-stats {
  background: #fff;
  color: #1a2332;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px;
}

.trust-stat {
  text-align: center;
  min-width: 96px;
}

.trust-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0d47a1 !important;
}

.trust-stat span {
  display: block;
  margin-top: 4px;
  font-size: .82rem;
  color: #1a2332;
  opacity: .9;
}

.trust-stat em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  line-height: 1.35;
  margin-top: 4px;
  color: #5c6b7a;
}

.hero-home .hero-brand {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 14px;
  line-height: 1.2;
}

.hero-home h1 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 600;
  margin: 0 0 16px;
  max-width: 18em;
}

@media (max-width: 768px) {
  .trust-bar { margin-top: -16px; }
  .trust-stats { padding: 18px 14px; }
  .footer-nav-row { gap: 6px 14px; font-size: .9rem; }
}


.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 400;
  cursor: pointer;
}

.agree-label input {
  margin-top: 3px;
  flex-shrink: 0;
}

.agree-label a {
  color: var(--primary);
}

.legal-doc h2 {
  margin-top: 32px;
  font-size: 1.25rem;
}

.legal-doc h3 {
  margin-top: 20px;
  font-size: 1.05rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 20px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--bg-alt, #f5f7fa);
  font-weight: 600;
}

@media (max-width: 768px) {
  .advantage-grid { grid-template-columns: 1fr; }
}

/* ========== Steps ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 22px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 4px 12px rgba(21, 101, 192, .3);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.step-item h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.step-item p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== Service tags ========== */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-tags span {
  background: #fff;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .9rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}

.service-tags span:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item[open],
.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(21, 101, 192, .25);
}

.faq-q {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--primary-dark);
  font-size: .98rem;
  transition: background .2s;
  list-style: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q:hover { background: var(--bg-soft); }

.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--bg-muted);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
}

.faq-item[open] .faq-q::after,
.faq-item.open .faq-q::after {
  content: "−";
  background: var(--primary);
  color: #fff;
}

.faq-a {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.85;
}

details.faq-item:not([open]) .faq-a {
  display: none;
}

/* ========== Reviews ========== */
.review-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.review-stars { color: var(--accent); margin-bottom: 10px; font-size: 1.1rem; letter-spacing: 2px; }

.review-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.8; }

.review-author {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

/* ========== Pricing ========== */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 480px;
}

.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-weight: 600;
}

.price-table tbody tr:hover { background: var(--bg-soft); }
.price-table tr:last-child td { border-bottom: none; }

.price-highlight { color: var(--accent); font-weight: 700; font-size: 1.15rem; }

/* ========== Forms ========== */
.inquiry-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 101, 192, .12);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.inquiry-form .btn { width: 100%; margin-top: 8px; }

.inquiry-form-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}

.inquiry-form-header .form-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 18px rgba(21, 101, 192, .25);
}

.inquiry-form-header h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.inquiry-form-header p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-box {
  margin: 28px 0;
  padding: 28px;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 2;
}

.contact-box strong { color: var(--primary-dark); }

/* ========== Breadcrumb ========== */
.breadcrumb {
  padding: 16px 0 0;
  font-size: .88rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--primary); font-weight: 500; }

.breadcrumb span.sep {
  margin: 0 8px;
  opacity: .4;
}

/* ========== CTA Banner ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.1), transparent 50%);
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  opacity: .9;
  max-width: 520px;
  margin: 0 auto 24px;
  font-size: .98rem;
}

.cta-banner .hero-btns { margin-top: 0; }

/* ========== Contact cards ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0 36px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--bg-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-card h3 {
  font-size: .95rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-card p, .contact-card a {
  font-size: .92rem;
  color: var(--text-muted);
  margin: 0;
  word-break: break-all;
}

.contact-card a { color: var(--primary); font-weight: 600; }

/* ========== Page content ========== */
.page-content {
  padding: 36px 32px 64px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}

.page-content h1 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.page-content h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 28px 0 12px;
  font-weight: 600;
}

.page-content h3 { font-size: 1.08rem; margin: 18px 0 8px; }

.page-content p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

.page-content ul { padding-left: 20px; color: var(--text-muted); line-height: 2; }

.article-body {
  line-height: 1.85;
  color: var(--text);
}

.article-body p { margin-bottom: 16px; }
.article-body h2, .article-body h3 { color: var(--primary-dark); margin: 28px 0 12px; }
.article-body img { max-width: 100%; border-radius: var(--radius); margin: 16px 0; }

/* ========== Footer ========== */
.site-footer {
  background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%);
  color: rgba(255,255,255,.75);
  padding: 56px 0 28px;
  font-size: .92rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.footer-brand span {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand span em {
  color: var(--accent);
  font-style: normal;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-trust span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-grid ul { list-style: none; }

.footer-grid li { margin-bottom: 10px; }

.footer-grid a {
  color: rgba(255,255,255,.65);
  transition: color .2s;
}

.footer-grid a:hover { color: var(--accent); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: .85rem;
  line-height: 1.85;
  color: rgba(255,255,255,.5);
}

/* ========== Phone float ========== */
.phone-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--accent), #ffb300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(255, 143, 0, .45);
  transition: transform .25s, box-shadow .25s;
  animation: pulse-ring 2.5s ease infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 8px 28px rgba(255, 143, 0, .45); }
  50% { box-shadow: 0 8px 36px rgba(255, 143, 0, .65); }
}

.phone-float:hover { transform: scale(1.08); animation: none; }
.phone-float svg { width: 28px; height: 28px; fill: #fff; }

/* ========== Province bar ========== */
.province-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a2332;
  color: #fff;
  padding: 16px 20px;
  z-index: 998;
  font-size: .9rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,.2);
  border-top: 3px solid var(--accent);
}

.province-btns { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }

.province-btns button {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  transition: all .2s;
}

.province-btns button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.province-skip {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: .85rem;
  text-decoration: underline;
}

/* ========== Placeholder ========== */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-muted), #dce8f5);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .88rem;
  text-align: center;
  padding: 16px;
  font-weight: 500;
}

/* ========== 404 ========== */
.error-page {
  text-align: center;
  padding: 100px 20px;
}

.error-page h1 {
  font-size: 4rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page p { color: var(--text-muted); margin-bottom: 28px; }

.error-page .error-icon {
  font-size: 5rem;
  margin-bottom: 8px;
  opacity: .85;
}

/* ========== Scroll & animation ========== */
.site-header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .98);
}

.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); }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  transition: gap .2s;
}

.link-more:hover { gap: 10px; color: var(--accent); }

/* ========== Utilities ========== */
.text-center { text-align: center; }
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 8px;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* ========== Mobile ========== */
@media (min-width: 769px) {
  .header-phone { display: flex; }
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
  }
  .main-nav { margin-left: 0; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .main-nav a { padding: 6px 8px; font-size: .8125rem; }
  .logo { font-size: 1.1rem; }
  .logo-mark { width: 34px; height: 34px; }
  .header-phone { padding: 6px 12px; font-size: .82rem; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    order: 4;
    width: 100%;
    flex: none;
    border-top: 1px solid var(--border);
    padding: 12px 0 16px;
  }
  .main-nav.open { display: block; }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .main-nav > ul > li { width: 100%; }
  .main-nav a { padding: 12px 16px; font-size: .95rem; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--bg-soft);
    margin: 0 8px 4px;
    padding: 4px;
    display: none;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-has-dropdown:hover .nav-dropdown { display: none; }
  .nav-has-dropdown.open:hover .nav-dropdown { display: block; }
  .hero { padding: 48px 0 56px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .advantage-list { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .inquiry-form { padding: 24px 20px; }
  .phone-float { right: 16px; bottom: 20px; width: 54px; height: 54px; }
  .back-top { right: 16px; bottom: 84px; }
  .hero-stats { gap: 20px; margin-top: 36px; padding-top: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .doctor-profile { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto 24px; }
}

/* ========== v2 背景图与视觉增强 ========== */
.site-body {
  background-color: var(--bg-soft);
  background-image:
    linear-gradient(180deg, rgba(244, 248, 252, .97) 0%, rgba(255, 255, 255, .94) 40%, rgba(244, 248, 252, .97) 100%),
    var(--site-bg, none);
  background-size: auto, cover;
  background-position: center top;
  background-attachment: scroll, fixed;
  background-repeat: no-repeat;
}

.site-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(66, 165, 245, .08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(21, 101, 192, .05), transparent 50%);
}

/* Hero 大图 */
.hero-with-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-home {
  padding: 88px 0 96px;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-home::before {
  background:
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, .14) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .1) 0%, transparent 40%);
}

.hero-home .hero-stats {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-top: 40px;
  border-top: none;
}

.page-hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 56px 0 60px;
}

.page-hero-img .container {
  position: relative;
  z-index: 1;
}

.page-hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, .1), transparent 55%);
  pointer-events: none;
}

/* 区块背景图 */
.section-bg {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(244, 248, 252, .94), rgba(238, 243, 249, .92)),
    url('/static/images/og.jpg') center/cover no-repeat;
  opacity: 1;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231565c0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
}

.section-bg > .container {
  position: relative;
  z-index: 1;
}

/* CTA 背景图 */
.cta-banner-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-banner-img::before {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 143, 0, .08), transparent 45%);
}

/* 页脚背景 */
.site-footer-bg {
  position: relative;
  overflow: hidden;
}

.site-footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 35, 50, .97) 0%, rgba(15, 20, 25, .98) 100%),
    var(--footer-bg, none) center/cover no-repeat;
  z-index: 0;
}

.site-footer-bg > .container {
  position: relative;
  z-index: 1;
}

/* 卡片增强 */
.card {
  border: 1px solid rgba(226, 234, 242, .9);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, .15);
}

.card-link:hover .card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.card-arrow {
  display: inline-block;
  transition: transform .2s, color .2s;
}

/* 流程步骤 */
.step-item {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* 优势列表 */
.advantage-list li {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}

.advantage-list li:hover {
  border-color: rgba(21, 101, 192, .25);
  box-shadow: var(--shadow);
}

/* 服务标签 */
.service-tags span {
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(21, 101, 192, .04);
  transition: background .2s, border-color .2s, transform .2s;
}

.service-tags span:hover {
  background: #fff;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.contact-card {
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 101, 192, .2);
}

.content-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0 28px;
}

/* FAQ */
.faq-item {
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(21, 101, 192, .04);
  transition: box-shadow .2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

/* 评价卡片 */
.review-card {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .site-body { background-attachment: scroll; }
  .hero-home { padding: 56px 0 64px; min-height: auto; }
  .hero-home .hero-stats { padding: 20px 16px; }
  .page-content { padding: 24px 18px; margin-bottom: 32px; }
  .page-hero-img { padding: 40px 0 44px; }
}

/* ========== 医院名录 ========== */
.hospital-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  font-size: .85rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all .2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.hospital-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.hospital-list-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
}

.hospital-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.hospital-list-img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  background-color: var(--bg-muted);
  display: block;
}

.hospital-list-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hospital-list-body h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin: 0 0 8px;
  line-height: 1.45;
}

.hospital-tag {
  display: inline-block;
  font-size: .72rem;
  background: linear-gradient(135deg, var(--accent), #ffb300);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.hospital-list-meta {
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.hospital-list-price {
  font-size: .88rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.hospital-list-note {
  margin-top: 32px;
  font-size: .82rem;
  color: var(--text-muted);
}
