/* ============ 设计变量 ============ */
:root {
  --primary: #3A2A23;
  --primary-dark: #241812;
  --accent: #C89B4A;
  --accent-light: #E0BE6C;
  --bg: #F6F1E8;
  --card-bg: #FFFFFF;
  --text: #2B211B;
  --text-secondary: #7B6B5E;
  --border: #E5DACB;
  --success: #3E7C4F;
  --danger: #C0392B;
  --radius: 12px;
  --radius-panel: 16px;
  --radius-btn: 8px;
  --shadow: 0 1px 3px rgba(42, 30, 20, 0.08);
  --shadow-hover: 0 8px 24px rgba(42, 30, 20, 0.12);
  --font-sans: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
}

/* ============ Reset & Base ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ============ 通用组件 ============ */
.section-head { margin-bottom: 64px; max-width: 720px; position: relative; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.section-head h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
  border-radius: 2px;
}
.section-head.center h2::after { margin-left: auto; margin-right: auto; }
.section-head .section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(200, 155, 74, 0.4);
  outline-offset: 2px;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-accent:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: rgba(200, 155, 74, 0.1);
  border-color: var(--accent-light);
  color: var(--accent-light);
}
.btn-dark {
  background: var(--primary-dark);
  color: var(--accent-light);
  border: 1px solid var(--accent);
}
.btn-dark:hover {
  background: var(--primary);
  color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

.badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(200, 155, 74, 0.12);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--bg);
  color: var(--text-secondary);
  border-radius: 100px;
  font-size: 0.78rem;
  border: 1px solid var(--border);
}

/* ============ 导航 ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(42, 30, 20, 0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.brand-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  background: rgba(62, 124, 79, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(62, 124, 79, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(62, 124, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 124, 79, 0); }
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(42, 30, 20, 0.04);
  padding: 4px;
  border-radius: 100px;
}
.nav-link {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all .2s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.7); }
.nav-link.active {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(42, 30, 20, 0.08);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notify-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all .2s ease;
}
.notify-btn:hover { border-color: var(--accent); color: var(--accent); }
.notify-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.header-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(200, 155, 74, 0.08) 0%, transparent 60%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.gold-line {
  width: 34px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-badge .badge {
  background: rgba(200, 155, 74, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.hero-year-bg {
  position: absolute;
  left: -20px;
  top: -30px;
  font-family: var(--font-serif);
  font-size: 16rem;
  font-weight: 900;
  color: rgba(42, 30, 20, 0.04);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero-carousel {
  position: relative;
  min-height: 72px;
  margin-bottom: 32px;
}
.hero-slide {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
}
.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all .3s ease;
  cursor: pointer;
}
.carousel-dots .dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 100px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-media {
  position: relative;
}
.hero-img {
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: var(--border);
}
.countdown-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 132px;
  height: 132px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(42, 30, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.countdown-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.countdown-ring .ring-bg {
  fill: none;
  stroke: rgba(200, 155, 74, 0.2);
  stroke-width: 4;
}
.countdown-ring .ring-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  animation: ring-run 12s linear infinite;
  transform: rotate(-90deg);
  transform-origin: center;
}
@keyframes ring-run {
  from { stroke-dashoffset: 326.7; }
  to { stroke-dashoffset: 0; }
}
.ring-center {
  text-align: center;
  z-index: 1;
}
.ring-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.ring-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}
.time-card {
  position: absolute;
  bottom: -24px;
  right: 16px;
  background: rgba(36, 24, 18, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #F6F1E8;
  box-shadow: 0 8px 24px rgba(42, 30, 20, 0.25);
  min-width: 180px;
  z-index: 2;
}
.time-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(246, 241, 232, 0.8);
  margin-bottom: 10px;
}
.time-card-header .status-dot { background: var(--success); }
.time-slots {
  display: flex;
  gap: 8px;
}
.time-slots .slot {
  font-family: "SF Mono", "JetBrains Mono", "Consolas", monospace;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.time-card-footer {
  margin-top: 10px;
  font-size: 0.68rem;
  color: rgba(246, 241, 232, 0.55);
}

/* ============ 痛点区 ============ */
.pain-section {
  background: var(--primary-dark);
  padding: 96px 0;
  color: rgba(246, 241, 232, 0.85);
  position: relative;
}
.pain-section .section-head h2 { color: #F6F1E8; }
.pain-section .section-head .section-desc { color: rgba(246, 241, 232, 0.6); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.pain-card {
  padding: 48px 36px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .3s ease;
}
.pain-card:last-child { border-right: none; }
.pain-card:hover { background: rgba(255, 255, 255, 0.04); }
.pain-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.pain-card h3 {
  color: #F6F1E8;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.pain-card p {
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}
.pain-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 600;
}
.pain-transition .transition-arrow {
  font-size: 1.4rem;
  line-height: 1;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ============ 解决方案区 ============ */
.solution-section {
  padding: 96px 0;
  background: var(--bg);
  position: relative;
}
.solution-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-card {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-badges {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.s-badge {
  background: rgba(36, 24, 18, 0.85);
  backdrop-filter: blur(6px);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(200, 155, 74, 0.3);
}
.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.solution-steps::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  border-left: 2px dashed rgba(200, 155, 74, 0.35);
}
.step {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}
.step-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200, 155, 74, 0.15);
  z-index: 1;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}
.solution-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 56px;
  justify-content: center;
}
.solution-tags .tag {
  background: #fff;
  color: var(--text-secondary);
  padding: 8px 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all .2s ease;
}
.solution-tags .tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============ 成果区 ============ */
.results-section {
  padding: 96px 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.results-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-panel);
  padding: 64px 56px;
  position: relative;
}
.results-head {
  text-align: center;
  margin-bottom: 56px;
}
.results-head h2 {
  color: #F6F1E8;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.results-head p {
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.result-item {
  padding: 32px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .3s ease;
}
.result-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}
.gold-badge {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--accent-light);
  background: rgba(200, 155, 74, 0.15);
  padding: 2px 12px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.result-num {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  display: block;
  font-family: var(--font-sans);
  letter-spacing: -0.03em;
}
.result-label {
  display: block;
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.85rem;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.results-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: 48px;
  border-radius: 2px;
  opacity: 0.6;
}

/* ============ 资讯区 ============ */
.insight-section {
  padding: 96px 0;
  background: var(--bg);
}
.insight-wrap {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 64px;
}
.insight-list {
  display: flex;
  flex-direction: column;
}
.insight-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: all .2s ease;
}
.insight-item:first-child { padding-top: 0; }
.insight-item:hover { padding-left: 8px; }
.insight-item .insight-date {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: "SF Mono", monospace;
  flex-shrink: 0;
  width: 62px;
}
.insight-item a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color .2s ease;
}
.insight-item a:hover { color: var(--accent); }
.insight-recommend {
  background: #fff;
  border-radius: var(--radius-panel);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.insight-recommend h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.rec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rec-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color .2s ease;
}
.rec-list a::before {
  content: '·';
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
}
.rec-list a:hover { color: var(--accent); }

/* ============ 证言区 ============ */
.testimonials-section {
  padding: 96px 0;
  background: var(--bg);
  position: relative;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.testimonial-card:nth-child(2) { transform: translateY(12px); }
.testimonial-card:nth-child(2):hover { transform: translateY(8px); }
.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 20px;
  background: rgba(200, 155, 74, 0.08);
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  position: relative;
  padding-left: 20px;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}
.testimonial-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.testimonial-meta .guest {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ============ FAQ ============ */
.faq-section {
  padding: 96px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .2s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-icon::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
  background: var(--accent);
  border-radius: 2px;
}
.faq-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
  background: var(--accent);
  border-radius: 2px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ============ CTA区 ============ */
.cta-section {
  padding: 96px 0;
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #B8893A 55%, #A57730 100%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: multiply;
}
.cta-box {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--primary-dark);
}
.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 32px;
  border-radius: var(--radius-panel);
  text-align: left;
  box-shadow: 0 12px 40px rgba(42, 30, 20, 0.2);
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--text);
  transition: all .2s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 155, 74, 0.25);
}
.form-group input::placeholder { color: rgba(123, 107, 94, 0.6); }
.form-submit {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 8px;
}
.form-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 20px;
}

/* ============ 页脚 ============ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(246, 241, 232, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #F6F1E8;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F6F1E8;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(246, 241, 232, 0.6);
  transition: all .2s ease;
}
.footer-links a:hover { color: var(--accent-light); padding-left: 6px; }
.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.7;
  padding: 4px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(246, 241, 232, 0.45);
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .solution-wrap { gap: 40px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .results-panel { padding: 48px 32px; }
  .insight-wrap { grid-template-columns: 1fr 0.8fr; gap: 40px; }
  .footer-grid { gap: 40px; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .header-inner { height: auto; flex-wrap: wrap; padding: 12px 0; gap: 10px; }
  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    border-radius: 100px;
    padding: 4px;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }
  .nav-link {
    padding: 7px 14px;
    font-size: 0.82rem;
    flex-shrink: 0;
  }
  .header-actions { margin-left: auto; }
  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-media { order: 2; }
  .hero-img { aspect-ratio: 16 / 12; }
  .countdown-ring { width: 110px; height: 110px; top: -12px; left: -8px; }
  .ring-num { font-size: 1.8rem; }
  .time-card { bottom: -16px; right: 8px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .pain-card:last-child { border-bottom: none; }
  .solution-wrap { grid-template-columns: 1fr; gap: 40px; }
  .solution-steps::before { left: 5px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .results-panel { padding: 40px 24px; }
  .insight-wrap { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-card:nth-child(2) { transform: none; }
  .testimonial-card:nth-child(2):hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-form { grid-template-columns: 1fr; padding: 24px; }
  .form-submit { grid-column: 1; }
}
@media (max-width: 520px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .header-actions { width: 100%; justify-content: space-between; }
  .brand { justify-content: space-between; width: 100%; }
  .main-nav { order: 2; }
  .hero-actions .btn { width: 100%; }
  .results-grid { grid-template-columns: 1fr; }
  .time-card { right: 4px; left: 4px; }
}

:root {
  --primary: #3A2A23;
  --primary-dark: #241812;
  --primary-deep: #1A110C;
  --accent: #C89B4A;
  --accent-light: #E0BE6C;
  --accent-lighter: #F0D69A;
  --accent-soft: rgba(200, 155, 74, 0.12);
  --bg: #F6F1E8;
  --surface: #FFFFFF;
  --text: #2B211B;
  --text-secondary: #7B6B5E;
  --text-muted: #9A8A7A;
  --border: #E5DACB;
  --green: #3E7C4F;
  --green-dark: #2D5E3A;
  --radius-card: 12px;
  --radius-panel: 16px;
  --radius-btn: 8px;
  --shadow-sm: 0 1px 3px rgba(42, 30, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(42, 30, 20, 0.12);
  --shadow-lg: 0 16px 40px rgba(42, 30, 20, 0.16);
  --transition: all 0.2s ease;
  --font-sans: "PingFang SC", "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  transition: var(--transition);
  outline: none;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 2px;
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 155, 74, 0.35);
}

.btn-accent:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  color: var(--accent-light);
}

.btn-outline-light {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-dark:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ===== 标签 ===== */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: #8A6A2F;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* ===== 面包屑 ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(246, 241, 232, 0.7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(246, 241, 232, 0.7);
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb span {
  color: rgba(246, 241, 232, 0.4);
}

.breadcrumb .current {
  color: var(--accent-light);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  background: rgba(62, 124, 79, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--accent-soft);
  color: var(--primary);
}

.nav-link.active {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.notify-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
  background: transparent;
}

.notify-btn:hover {
  background: var(--accent-soft);
  color: var(--primary);
}

.notify-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: #D9534F;
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 4px;
}

/* ===== 首屏横幅 ===== */
.page-hero {
  position: relative;
  background-image: url('/assets/images/backpic/back-1.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 17, 12, 0.92) 0%, rgba(36, 24, 18, 0.85) 45%, rgba(58, 42, 35, 0.55) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero-kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.hero-copy h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #F6F1E8;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--accent-light);
  display: block;
  font-size: 0.82em;
  margin-top: 6px;
}

.hero-copy p {
  color: rgba(246, 241, 232, 0.82);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 255, 255, 0.12);
}

.hero-card {
  position: absolute;
  right: -12px;
  bottom: 32px;
  background: rgba(246, 241, 232, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 18px 22px;
  min-width: 180px;
  box-shadow: var(--shadow-md);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F6F1E8;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-card-header .dot {
  width: 7px;
  height: 7px;
  background: #7BC493;
  border-radius: 50%;
  position: relative;
}

.hero-card-header .dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #7BC493;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}

.hero-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F6F1E8;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.hero-card li em {
  font-style: normal;
  font-size: 12px;
  color: #9FD8B2;
  font-weight: 500;
  background: rgba(62, 124, 79, 0.35);
  padding: 1px 8px;
  border-radius: 100px;
}

/* ===== 分类筛选工具栏 ===== */
.filter-section {
  padding-top: 72px;
  padding-bottom: 24px;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin-top: 12px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 640px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.filter-pill {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  font-weight: 600;
}

/* ===== 卡片网格 ===== */
.service-grid-section {
  padding-bottom: 80px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card[hidden] {
  display: none;
}

.card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--accent-soft);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.05);
}

.card-img .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(36, 24, 18, 0.78);
  color: var(--accent-light);
  backdrop-filter: blur(4px);
  font-weight: 600;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.card-scene {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.card-scene svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-footer .time {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== 预约引导横幅 ===== */
.service-banner {
  background: var(--primary-dark);
  border-radius: var(--radius-panel);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 74, 0.18) 0%, transparent 70%);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h2 {
  color: #F6F1E8;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.banner-content p {
  color: rgba(246, 241, 232, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.service-banner .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-section {
  padding-bottom: 96px;
}

.faq-section .section-title {
  margin-bottom: 32px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
  gap: 20px;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 16px;
  color: var(--accent);
  transition: var(--transition);
  background: var(--surface);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 4px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-answer-inner p {
  max-width: 760px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--primary-deep);
  color: rgba(246, 241, 232, 0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(246, 241, 232, 0.6);
  max-width: 320px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h4,
.footer-contact h4 {
  color: #F6F1E8;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.footer-links a {
  font-size: 14px;
  color: rgba(246, 241, 232, 0.6);
  line-height: 1.8;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(246, 241, 232, 0.6);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 232, 0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(246, 241, 232, 0.4);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
  }

  .hero-visual img {
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
    flex-wrap: nowrap;
  }

  .brand-logo-text {
    font-size: 18px;
  }

  .brand-status {
    display: none;
  }

  .main-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 6px;
    flex: 1;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 6px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .header-actions .notify-btn {
    display: none;
  }

  .header-divider {
    display: none;
  }

  .btn-sm {
    padding: 8px 16px;
    font-size: 13px;
  }

  .page-hero {
    padding: 56px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .hero-visual img {
    height: 300px;
  }

  .hero-card {
    right: 8px;
    bottom: 16px;
    padding: 14px 18px;
    min-width: 150px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .service-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }

  .service-banner .btn {
    width: 100%;
  }

  .faq-section {
    padding-bottom: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    padding: 20px 24px;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual img {
    height: 240px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .card-content {
    padding: 20px;
  }

  .service-banner {
    padding: 28px 20px;
    margin-bottom: 56px;
  }

  .banner-content h2 {
    font-size: 20px;
  }

  .btn {
    padding: 12px 24px;
  }
}
