/* ============================================
   Cancer Page - 癌症早筛页面样式
   ============================================ */

/* Bootstrap Grid 替代样式 */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.align-items-center {
  align-items: center;
}

.col-lg-6,
.col-lg-12,
.col-lg-3,
.col-md-6 {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* 卡片间距 - 使用负margin方式兼容Bootstrap */
.row.g-4 {
  gap: 0;
}

.row.g-4 > .col-lg-3,
.row.g-4 > .col-md-6 {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

.h-100 {
  height: 100%;
}

/* 间距工具类 */
.mb-3 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 24px;
}

.mb-5 {
  margin-bottom: 48px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-5 {
  margin-top: 48px;
}

.me-2 {
  margin-right: 8px;
}

.ms-2 {
  margin-left: 8px;
}

/* 文本颜色工具类 */
.text-muted {
  color: var(--text-muted);
}

/* 字体粗细 */
.fw-bold {
  font-weight: 700;
}

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

/* ── Package Details Toggle ──────────────────────────────── */
.btn-view-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,51,102,0.25);
}

.btn-view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,51,102,0.35);
}

.package-details-content {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 简要信息展示 */
.package-summary {
  padding: 40px 0;
  width: 100%;
  text-align: center;
}

/* 按钮样式 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,51,102,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,51,102,0.35);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.package-summary-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* 居中对齐的行 */
.row.justify-content-center {
  justify-content: center;
}

/* ── 健康体检咨询与预约部分 ───────────────────────────────── */
.consultation-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
}

.consultation-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* 左侧信息卡片 */
.consultation-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 51, 102, 0.1);
  height: 100%;
}

.consultation-header {
  margin-bottom: 32px;
}

.consultation-header .section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

/* 步骤列表 */
.consultation-steps {
  margin-bottom: 32px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-top: 6px;
}

.step-content .section-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* 通知框 */
.consult-notice-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.notice-icon {
  width: 40px;
  height: 40px;
  background: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-icon i {
  color: #fff;
  font-size: 18px;
}

.notice-content p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #92400e;
  line-height: 1.6;
}

.notice-content p:last-child {
  margin-bottom: 0;
}

/* 操作按钮 */
.consultation-actions {
  display: flex;
  gap: 16px;
}

.btn-consult-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.25);
}

.btn-consult-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 51, 102, 0.35);
  color: #fff;
}

.btn-consult-primary i {
  font-size: 18px;
}

/* 右侧联系卡片 */
.contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 51, 102, 0.2);
}

.contact-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-icon-wrapper i {
  font-size: 36px;
  color: #fff;
}

.contact-card-header h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* 联系列表 */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 18px;
  color: #fff;
}

.contact-icon.whatsapp {
  background: #25d366;
}

.contact-icon.email {
  background: #ea4335;
}

.contact-icon.clock {
  background: #f59e0b;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

/* 响应式 */
@media (max-width: 991.98px) {
  .consultation-section {
    padding: 60px 0;
  }
  
  .consultation-info-card {
    padding: 32px;
  }
  
  .consultation-header .section-title {
    font-size: 28px;
  }
  
  .contact-card {
    padding: 32px;
  }
}

@media (max-width: 767.98px) {
  .consultation-info-card {
    padding: 24px;
  }
  
  .consultation-header .section-title {
    font-size: 24px;
  }
  
  .step-item {
    gap: 12px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .btn-consult-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
  }
  
  .contact-card {
    padding: 24px;
  }
}

/* ── 全套体检套餐所包含的支持服务 ───────────────────────────── */
.support-services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 0;
}

.support-services-section .section-description {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 12px;
}

/* 服务时间线卡片 */
.services-timeline {
  margin-bottom: 60px;
}

.service-timeline-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.12);
  border-color: rgba(0, 51, 102, 0.12);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 51, 102, 0.06);
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.2);
}

.service-icon-wrapper i {
  font-size: 28px;
  color: #fff;
}

.service-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* 服务底部区域 */
.services-footer {
  max-width: 800px;
  margin: 0 auto;
}

.notice-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-left: 4px solid #f59e0b;
}

.notice-box i {
  font-size: 24px;
  color: #f59e0b;
  flex-shrink: 0;
}

.notice-box p {
  margin: 0;
  font-size: 14px;
  color: #92400e;
  font-weight: 500;
}

.custom-service-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.custom-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.custom-icon i {
  font-size: 32px;
  color: #fff;
}

.custom-content p {
  margin: 0 0 8px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.custom-content p:last-child {
  margin-bottom: 0;
}

/* ── 为什么选择癌症早筛 ──────────────────────────────────── */
.why-choose-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 51, 102, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-section .section-description {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 12px;
}

.why-choose-grid {
  position: relative;
  z-index: 1;
}

/* 为什么选择卡片 */
.why-choose-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 51, 102, 0.15);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-discovery .card-glow {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.card-personalized .card-glow {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.card-health .card-glow {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.why-choose-card:hover .card-glow {
  opacity: 1;
}

.why-choose-icon {
  margin-bottom: 24px;
}

.icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.card-discovery .icon-circle {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.card-discovery .icon-circle i {
  color: #059669;
  font-size: 36px;
}

.card-personalized .icon-circle {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.card-personalized .icon-circle i {
  color: #2563eb;
  font-size: 36px;
}

.card-health .icon-circle {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.card-health .icon-circle i {
  color: #7c3aed;
  font-size: 36px;
}

.why-choose-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-choose-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.card-decoration {
  margin-top: 24px;
}

.decoration-line {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto;
}

.card-discovery .decoration-line {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.card-personalized .decoration-line {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.card-health .decoration-line {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

/* ── CTA Banner 现代化设计 ───────────────────────────────── */
.cta-banner-modern {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.cta-badge i {
  color: #34d399;
  font-size: 14px;
}

.cta-badge span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon i {
  font-size: 16px;
}

/* 响应式 */
@media (max-width: 991.98px) {
  .support-services-section,
  .why-choose-section {
    padding: 60px 0;
  }
  
  .service-timeline-card {
    padding: 24px;
  }
  
  .service-number {
    font-size: 36px;
  }
  
  .custom-service-box {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-banner-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .why-choose-card {
    padding: 32px 24px;
  }
  
  .icon-circle {
    width: 72px;
    height: 72px;
  }
  
  .icon-circle i {
    font-size: 28px;
  }
  
  .cta-banner-modern {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

.package-summary-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  flex: 0 0 280px;
  max-width: 280px;
}

.package-summary-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.summary-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,51,102,0.2);
}

.summary-icon i {
  font-size: 26px;
  color: #fff;
}

.package-summary-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.package-summary-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .package-summary-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .package-summary-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }
}

/* ── Hero Section New Design ────────────────────────────────────────── */
.cancer-hero-new {
  position: relative;
  height: 350px;
  margin-top: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cancer-hero-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cancer-hero-new::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cancer-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
}

.cancer-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.cancer-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #d4a853;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cancer-hero-title {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.cancer-hero-title span {
  font-weight: 700;
  color: #d4a853;
}

.cancer-hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cancer-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cancer-hero-stat {
  text-align: center;
}

.cancer-hero-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #d4a853;
  line-height: 1;
  margin-bottom: 8px;
}

.cancer-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* 旧Hero样式保留兼容 */
.unified-hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  overflow: hidden;
  margin-top: 70px;
}

.unified-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.4) 0%, rgba(0,64,128,.35) 100%);
  z-index: 1;
}

.unified-hero .container { 
  position: relative; 
  z-index: 2; 
}

.unified-hero .hero-content { 
  padding: 60px 0; 
}

.unified-hero .hero-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(230,126,34,.2);
  border: 1px solid rgba(230,126,34,.4);
  color: var(--accent);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.unified-hero .hero-title {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.unified-hero .hero-description {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta-buttons { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(230,126,34,.3);
}

.btn-hero-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 30px rgba(230,126,34,.4); 
  color: #fff; 
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-secondary:hover { 
  background: rgba(255,255,255,.22); 
  color: #fff; 
}

/* ── Page Content ────────────────────────────────────────── */
.page-content {
  padding: 80px 0;
}

.page-content.section-gray {
  background: var(--gray-50);
}

/* ── Section Title & Description ─────────────────────────── */
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.header-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 20px;
}

.section-header.text-center .header-accent-line {
  margin-left: auto;
  margin-right: auto;
}

/* ── Service Block ───────────────────────────────────────── */
.service-block {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  height: 100%;
}

.service-block h4 { 
  color: var(--primary); 
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 20px;
}

.service-block h4 i {
  color: var(--accent);
  margin-right: 8px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-list li i { 
  color: var(--success); 
}

/* ── 追加项目卡片样式 (与 personalized.html 统一) ───────────── */
.package-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.package-card-inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-header {
    padding: 32px 24px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: #fff;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.package-icon i {
    font-size: 26px;
    color: #fff;
}

.package-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.package-price {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.package-divider {
    display: none;
}

.package-body {
    padding: 24px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* ── Cancer Package Table ────────────────────────────────── */
.cancer-package-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cancer-package-table thead tr { 
  background: var(--primary); 
}

.cancer-package-table thead th {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 12px;
  border: none;
}

.cancer-package-table tbody tr { 
  transition: background .2s; 
}

.cancer-package-table tbody tr:nth-child(even) { 
  background: var(--gray-50); 
}

.cancer-package-table tbody tr:hover { 
  background: rgba(0,51,102,.04); 
}

.cancer-package-table tbody td {
  padding: 11px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  border: none;
  border-bottom: 1px solid var(--gray-100);
}

.cancer-package-table tbody td:first-child { 
  color: var(--text-primary); 
  font-size: 13px; 
}

.cancer-package-table .table-footer-row td {
  background: rgba(0,51,102,.04);
  color: var(--primary);
  font-weight: 700;
}

/* 表格响应式 - 小屏幕时横向滚动 */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 文本对齐 */
.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .unified-hero .hero-title { 
    font-size: 40px; 
  }
  
  .package-card {
    margin-bottom: 20px;
  }
  
  .cancer-package-table {
    font-size: 12px;
  }
  
  .cancer-package-table thead th,
  .cancer-package-table tbody td {
    padding: 10px 8px;
  }
}

@media (max-width: 767.98px) {
  .unified-hero { 
    min-height: 350px; 
  }
  
  .unified-hero .hero-title { 
    font-size: 32px; 
    letter-spacing: -0.5px; 
  }
  
  .unified-hero .hero-description { 
    font-size: 16px; 
  }
  
  .page-content {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .service-block {
    padding: 24px;
    margin-top: 30px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .unified-hero .hero-title { 
    font-size: 26px; 
  }
  
  .cancer-package-table {
    font-size: 11px;
  }
  
  .cancer-package-table thead th,
  .cancer-package-table tbody td {
    padding: 8px 4px;
  }
}
