:root {
  --primary: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --gold: #c9a96e;
  --gold-light: #e0c99a;
  --gold-bg: #faf5ec;
  --dark: #1a2e1a;
  --dark-2: #2d4a2d;
  --text-main: #1a2e1a;
  --text-sub: #5a6b5a;
  --text-light: #8a9a8a;
  --bg-light: #f7faf7;
  --bg-section: #f0f5f0;
  --bg-cream: #faf8f2;
  --white: #ffffff;
  --border: #d8e8d8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 46, 26, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 46, 26, 0.12);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}

.container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 31px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(46, 125, 50, 0.06);
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--primary);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(46, 125, 50, 0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-tag.gold {
  background: rgba(201, 169, 110, 0.12);
  color: #8d6e3f;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--primary);
}
.section-title em.gold {
  color: var(--gold);
}
.section-desc {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.8;
  max-width: 640px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.nav-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.nav-logo .badge {
  padding: 2px 8px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s;
}
.nav-cta:hover {
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
  transform: translateY(-1px);
}

/* ===== Hero ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 40%, #3d5a3d 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.12) 0%,
    transparent 60%
  );
  border-radius: 50%;
}
.hero::after {
  content: "🌿";
  position: absolute;
  top: 60px;
  right: 80px;
  font-size: 180px;
  opacity: 0.05;
  transform: rotate(-10deg);
}
.hero .container-fluid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content {
  flex: 1;
}
.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-light);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 169, 110, 0.25);
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-light);
}
.hero-stat .num span {
  font-size: 16px;
  font-weight: 400;
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}
.hero-visual {
  flex: 1;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.hero-visual .panel-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}
.hero-visual .appt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.hero-visual .appt-row.green {
  border-left-color: var(--primary-light);
}
.hero-visual .appt-row .time {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
  min-width: 56px;
}
.hero-visual .appt-row .time.green {
  color: #81c784;
}
.hero-visual .appt-row .info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.hero-visual .appt-row .room-tag {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.hero-visual .room-tag.room {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-light);
}
.hero-visual .room-tag.open {
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
}

/* ===== 通用 Section ===== */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-section);
}
.section-cream {
  background: var(--bg-cream);
}

/* ===== 痛点 ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.pain-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}
.pain-card .pain-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #fce4ec;
  color: #c62828;
  font-weight: 600;
}

/* ===== 功能双栏 ===== */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-row.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
}
.feature-text .ft-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(46, 125, 50, 0.08);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-text .ft-tag.gold-tag {
  background: rgba(201, 169, 110, 0.12);
  color: #8d6e3f;
}
.feature-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.feature-text h3 em {
  font-style: normal;
  color: var(--primary);
}
.feature-text h3 em.gold {
  font-style: normal;
  color: var(--gold);
}
.feature-text p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}
.feature-list {
  margin-top: 20px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 12px;
  line-height: 1.6;
}
.feature-list li .dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.1);
  color: var(--primary);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list li .dot.gold-dot {
  background: rgba(201, 169, 110, 0.15);
  color: #8d6e3f;
}
.feature-visual {
  flex: 1;
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* 预约看板 - 健康版 */
.schedule-board {
  width: 100%;
}
.schedule-board .board-header {
  display: grid;
  grid-template-columns: 70px repeat(3, 1fr);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.schedule-board .board-header span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}
.schedule-board .board-row {
  display: grid;
  grid-template-columns: 70px repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.schedule-board .board-row .time-label {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
}
.schedule-board .board-cell {
  border-radius: 4px;
  font-size: 11px;
  text-align: center;
  padding: 6px 2px;
  font-weight: 500;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-board .cell-massage {
  background: #e8f5e9;
  color: var(--primary-dark);
}
.schedule-board .cell-moxa {
  background: #faf5ec;
  color: #8d6e3f;
}
.schedule-board .cell-cup {
  background: #e3f2fd;
  color: #1565c0;
}
.schedule-board .cell-empty {
  background: #f5f5f5;
  color: var(--text-light);
}

/* 疗程卡 */
.treatment-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 16px;
  padding: 28px;
  color: white;
  position: relative;
  box-shadow: 0 8px 32px rgba(46, 125, 50, 0.25);
}
.treatment-card .card-label {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 4px;
}
.treatment-card .card-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}
.treatment-card .card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}
.treatment-card .card-item:last-of-type {
  border: none;
}
.treatment-card .card-item .count {
  opacity: 0.7;
  font-size: 12px;
}
.treatment-card .card-schedule {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.8;
}
.treatment-card .card-price {
  font-size: 32px;
  font-weight: 800;
  margin-top: 16px;
}
.treatment-card .card-price span {
  font-size: 16px;
  font-weight: 400;
}

/* 产后康复卡 */
.postpartum-card {
  background: linear-gradient(135deg, #8d6e3f, var(--gold));
  border-radius: 16px;
  padding: 28px;
  color: white;
  position: relative;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.25);
}
.postpartum-card .card-label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.postpartum-card .card-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}
.postpartum-card .card-phase {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}
.postpartum-card .card-phase:last-of-type {
  border: none;
}
.postpartum-card .card-phase .phase-name {
  font-weight: 700;
  margin-bottom: 2px;
}
.postpartum-card .card-phase .phase-detail {
  opacity: 0.75;
  font-size: 12px;
}
.postpartum-card .card-price {
  font-size: 32px;
  font-weight: 800;
  margin-top: 16px;
}
.postpartum-card .card-price span {
  font-size: 16px;
  font-weight: 400;
}

/* 健康档案 */
.health-profile {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.health-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.health-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8e6c9, #4caf50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  font-weight: 700;
}
.health-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.health-info {
  font-size: 12px;
  color: var(--text-light);
}
.health-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.health-tag {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.health-tag.pain {
  background: #fce4ec;
  color: #c62828;
}
.health-tag.constitution {
  background: #faf5ec;
  color: #8d6e3f;
}
.health-tag.contraindication {
  background: #ffebee;
  color: #b71c1c;
}
.health-reminder {
  background: rgba(46, 125, 50, 0.06);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.health-reminder::before {
  content: "📋";
}

/* 家庭账户 */
.family-account {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.family-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.family-icon {
  font-size: 24px;
}
.family-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.family-balance {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-left: auto;
}
.family-member {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-section);
  font-size: 13px;
  color: var(--text-sub);
}
.family-member:last-child {
  border: none;
}
.family-member .member-icon {
  font-size: 18px;
}
.family-member .member-name {
  font-weight: 600;
  color: var(--dark);
  min-width: 50px;
}
.family-member .member-status {
  margin-left: auto;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.member-status.active {
  background: #e8f5e9;
  color: var(--primary-dark);
}
.member-status.scheduled {
  background: #faf5ec;
  color: #8d6e3f;
}

/* 技师管理 */
.technician-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.tech-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-section);
}
.tech-row:last-child {
  border: none;
}
.tech-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.tech-rank.rank-1 {
  background: linear-gradient(135deg, #ffd700, #ffa000);
  color: white;
}
.tech-rank.rank-2 {
  background: linear-gradient(135deg, #c0c0c0, #9e9e9e);
  color: white;
}
.tech-rank.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: white;
}
.tech-rank.rank-n {
  background: var(--bg-section);
  color: var(--text-light);
}
.tech-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  min-width: 70px;
}
.tech-specialty {
  font-size: 12px;
  color: var(--primary);
  background: rgba(46, 125, 50, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}
.tech-score {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

/* 营销 */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mkt-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.mkt-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.mkt-card .mkt-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.mkt-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.mkt-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}
.mkt-card .mkt-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.mkt-tag.tag-hot {
  background: #e8f5e9;
  color: var(--primary-dark);
}
.mkt-tag.tag-new {
  background: #faf5ec;
  color: #8d6e3f;
}
.mkt-tag.tag-rec {
  background: #e3f2fd;
  color: #1565c0;
}

/* 行业覆盖 */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.industry-card .ind-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.industry-card .ind-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.industry-card .ind-keywords {
  font-size: 12px;
  color: var(--text-light);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
.faq-q::before {
  content: "Q";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}
.faq-a {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  padding-left: 24px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #1a2e1a, #2d4a2d);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "🌿";
  position: absolute;
  top: 20px;
  left: 8%;
  font-size: 120px;
  opacity: 0.04;
  transform: rotate(-20deg);
}
.cta-section::after {
  content: "🍵";
  position: absolute;
  bottom: 20px;
  right: 6%;
  font-size: 100px;
  opacity: 0.04;
  transform: rotate(15deg);
}
.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section h2 em {
  font-style: normal;
  color: var(--gold-light);
}
.cta-section .cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.cta-trust span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.cta-trust span::before {
  content: "✓ ";
  color: var(--primary-light);
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .f-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand .f-desc {
  font-size: 13px;
  line-height: 1.6;
}
.footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.footer ul li a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
}

/* 信任背书 */
.trust-section {
  padding: 60px 0;
  background: var(--bg-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.trust-icon {
  font-size: 32px;
}
.trust-label {
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 场景图片 */
.scene-img-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.scene-img-box {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 200px;
}
.scene-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.scene-img-box:hover img {
  transform: scale(1.05);
}
.scene-img-box .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.scene-img-full {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 260px;
  margin-top: 32px;
}
.scene-img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.scene-img-full:hover img {
  transform: scale(1.03);
}
.scene-img-full .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .scene-img-row {
    flex-direction: column;
  }
  .scene-img-box {
    height: 160px;
  }
  .scene-img-full {
    height: 200px;
  }
}
