*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --peach-cream: #FFF9F5;
  --peach-bg-light: #FFF2EB;
  --peach-100: #FFE8DE;
  --peach-200: #FFD4C3;
  --peach-300: #FFB59E;
  --peach-400: #FF9673;
  --peach-500: #FF7A4D;
  --peach-600: #F0643A;
  --peach-700: #E8542A;
  --teal: #178A7E;
  --teal-soft: #4AA69C;
  --teal-opacity: rgba(23, 138, 126, 0.1);
  --text-primary: #2D1F1B;
  --text-secondary: #7D6B64;
  --border-light: #F0E2DC;
  --shadow-soft: 0 8px 32px rgba(255, 122, 77, 0.10);
  --shadow-hover: 0 16px 48px rgba(255, 122, 77, 0.16);
  --radius-organic: 18px;
  --radius-pill: 40px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  background: var(--peach-cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--peach-400);
  color: #fff;
}

/* ===== 核心布局 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--peach-bg-light);
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--peach-200), transparent);
}

/* ===== 导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 244, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(240, 226, 220, 0.8);
  transition: box-shadow 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
  box-shadow: 0 4px 14px rgba(255, 122, 77, 0.35);
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(6deg) scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.03em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--peach-500), var(--peach-300));
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav a:hover {
  color: var(--peach-600);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
  box-shadow: 0 4px 16px rgba(255, 122, 77, 0.3);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 77, 0.4);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 4px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.menu-toggle span {
  width: 14px;
  margin-left: 8px;
}

.menu-toggle:hover span {
  width: 22px;
  margin-left: 0;
}

/* ===== Hero ===== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 181, 158, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 12% 82%, var(--teal-opacity) 0%, transparent 45%),
    linear-gradient(135deg, var(--peach-100) 0%, var(--peach-cream) 50%, var(--peach-200) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 40% 60% 58% 42% / 40% 45% 55% 60%;
  background: linear-gradient(135deg, rgba(255, 122, 77, 0.07), rgba(255, 181, 158, 0.12));
  animation: blob-float 12s ease-in-out infinite alternate;
}

@keyframes blob-float {
  0% { border-radius: 40% 60% 58% 42% / 40% 45% 55% 60%; }
  100% { border-radius: 58% 42% 45% 55% / 52% 58% 42% 48%; }
}

.hero::after {
  content: '蜜';
  position: absolute;
  right: 140px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  font-weight: 900;
  color: transparent;
  opacity: 0.08;
  -webkit-text-stroke: 2px var(--peach-500);
  pointer-events: none;
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 122, 77, 0.12), rgba(255, 181, 158, 0.2));
  color: var(--peach-700);
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 122, 77, 0.15);
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero h1 .text-accent {
  background: linear-gradient(120deg, var(--peach-600), var(--peach-400), var(--teal));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.75;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 38% 62% 55% 45% / 40% 38% 62% 60%;
  overflow: hidden;
  box-shadow: 24px 30px 60px rgba(255, 122, 77, 0.15);
  position: relative;
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
  box-shadow: 0 6px 20px rgba(255, 122, 77, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 122, 77, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--peach-300);
  color: var(--peach-700);
}

.btn-outline:hover {
  border-color: var(--peach-500);
  background: rgba(255, 122, 77, 0.06);
  transform: translateY(-3px);
}

/* ===== 标签 / 标题 ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 14px;
  color: var(--peach-600);
  text-transform: uppercase;
  position: relative;
  padding-left: 32px;
}

.section-label::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--peach-400);
  font-size: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-desc {
  max-width: 600px;
  opacity: 0.75;
  margin-bottom: 48px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 122, 77, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--peach-200);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--peach-100), var(--peach-200));
  color: var(--peach-700);
  transition: transform 0.4s ease;
}

.category-card:hover .card-icon {
  transform: rotate(-8deg) scale(1.08);
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--peach-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 10px;
  color: var(--peach-700);
}

/* ===== 特性块 ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 3px solid #fff;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 77, 0.08), transparent 50%);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-text {
  position: relative;
}

.feature-text::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  width: 3px;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--peach-400), var(--teal));
  opacity: 0.4;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--peach-500), var(--peach-700));
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(255, 122, 77, 0.3);
}

/* ===== 数据条 ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.stat-item {
  padding: 36px 20px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, var(--peach-100));
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 122, 77, 0.08);
  transition: transform 0.5s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-item:hover::after {
  transform: scale(1.5);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--peach-600);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 8px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== 内容墙 ===== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow-hover);
  border-color: var(--peach-200);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 22px 24px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--peach-300);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  gap: 16px;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--peach-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.75;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item.open .faq-answer {
  display: block;
  animation: fade-up 0.4s ease;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 0.75; transform: translateY(0); }
}

.faq-item.open .faq-question {
  color: var(--peach-700);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--peach-700);
}

/* ===== CTA横幅 ===== */
.cta-banner {
  padding: 72px 48px;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--peach-500) 0%, var(--peach-700) 50%, var(--peach-400) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 122, 77, 0.35);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 120px;
  height: 120px;
  border-radius: 40% 60% 50% 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--peach-700);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

/* ===== 页脚 ===== */
.site-footer {
  padding: 72px 0 28px;
  background: linear-gradient(180deg, var(--peach-cream), var(--peach-bg-light));
  border-top: 1px solid var(--border-light);
  position: relative;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--peach-600);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== 工具类 ===== */
.text-accent {
  color: var(--peach-600);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-center .section-label {
  padding-left: 0;
}

.text-center .section-label::before {
  display: none;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ===== 滚动条 ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--peach-cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--peach-300), var(--peach-500));
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--peach-600);
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero::after {
    font-size: 8rem;
    right: 20px;
    opacity: 0.05;
  }

  .hero::before {
    width: 200px;
    height: 200px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-text::before {
    display: none;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--peach-cream);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .main-nav.open {
    display: flex;
    animation: fade-down 0.35s ease;
  }

  @keyframes fade-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav a {
    font-size: 1rem;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    width: auto;
    padding: 10px 28px;
    margin-top: 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner {
    padding: 56px 24px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .header-inner {
    height: 64px;
    padding: 0 20px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .main-nav {
    top: 64px;
    padding: 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .category-card {
    padding: 24px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .cta-banner {
    padding: 44px 20px;
    border-radius: 24px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }
}

/* ===== 动画 & 精致细节 ===== */
.site-header:hover {
  box-shadow: 0 4px 30px rgba(255, 122, 77, 0.06);
}

.hero-content .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach-500);
  margin-left: 8px;
  vertical-align: middle;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--peach-500), var(--peach-200));
  margin-top: 12px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.content-wall-item:hover .content-wall-body h3 {
  color: var(--peach-700);
}

.content-wall-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}