```css
/* ============================================
   蜜桃电影 — Peach Bloom Editorial System
   Visual Concept: Organic Peach Editorial
   ============================================ */

:root {
  --peach: #FF8A65;
  --peach-deep: #FF6B5E;
  --peach-light: #FFB8A5;
  --peach-pale: #FFF0EB;
  --cream: #FFFAF7;
  --teal: #2EC4B6;
  --gold: #FFC94D;
  --ink: #2E2A27;
  --ink-soft: #6B6563;
  --white: #FFFFFF;
  --shadow-peach: 0 8px 32px rgba(255, 138, 101, 0.20);
  --shadow-teal: 0 8px 32px rgba(46, 196, 182, 0.15);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

/* ========== 基础重置 ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== 核心布局 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--peach-pale);
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 138, 101, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ========== 导航 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 138, 101, 0.12);
  box-shadow: 0 2px 20px rgba(255, 138, 101, 0.06);
}

.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.35rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FF6B5E, #FFB25E);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 94, 0.35);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.25s ease;
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--peach-deep), var(--peach));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--peach-deep);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(135deg, #FF6B5E, #FF9A5E);
  box-shadow: 0 4px 16px rgba(255, 107, 94, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 94, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--peach-pale);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--peach-deep);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

/* ========== Hero区 ========== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF8F2 0%, #FFEFE8 50%, #FFE4DC 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 138, 101, 0.25), transparent 65%);
  border-radius: 50%;
  z-index: 0;
  animation: heroPulse 6s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: 30%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.1), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

@keyframes heroPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(255,107,94,0.12), rgba(255,178,94,0.12));
  color: var(--peach-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 107, 94, 0.18);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero h1 .text-accent {
  background: linear-gradient(135deg, #FF6B5E, #FF9A5E, #FFC94D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.65;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(255, 107, 94, 0.15);
  border: 4px solid rgba(255,255,255,0.8);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B5E, #FF9A5E);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 107, 94, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FFB8A5;
  color: var(--peach-deep);
}

.btn-outline:hover {
  border-color: var(--peach-deep);
  background: rgba(255, 107, 94, 0.06);
  transform: translateY(-2px);
}

/* ========== 标签/标题 ========== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--teal);
  background: rgba(46, 196, 182, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-title .text-accent {
  background: linear-gradient(135deg, #FF6B5E, #FF9A5E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ========== 卡片网格 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 24px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(255, 138, 101, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B5E, #FFB25E, #2EC4B6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 138, 101, 0.18);
  border-color: rgba(255, 138, 101, 0.2);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(46,196,182,0.12), rgba(46,196,182,0.05));
  color: var(--teal);
  transition: transform 0.3s ease;
}

.category-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--peach-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 10px;
}

/* ========== 特性块 ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(255, 138, 101, 0.14);
  border: 4px solid rgba(255,255,255,0.7);
  transition: transform 0.4s ease;
}

.feature-image:hover {
  transform: scale(1.02);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 20px 0;
}

.feature-text .section-title {
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 138, 101, 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  color: var(--teal);
  background: rgba(46, 196, 182, 0.12);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ========== 数据条 ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 36px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 138, 101, 0.1);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 138, 101, 0.14);
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B5E, #FF9A5E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ========== 内容墙 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 138, 101, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(255, 138, 101, 0.2);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.content-wall-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 138, 101, 0.12);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 138, 101, 0.3);
}

.faq-item.open {
  border-color: rgba(255, 138, 101, 0.25);
  box-shadow: 0 4px 20px rgba(255, 138, 101, 0.1);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255,250,247,1), rgba(255,240,235,0.6));
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--peach-deep);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeSlideIn 0.35s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 0.7; transform: translateY(0); }
}

/* ========== CTA横幅 ========== */
.cta-banner {
  padding: 72px 48px;
  text-align: center;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, #FF6B5E 0%, #FF8A65 40%, #FF9A5E 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 94, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--peach-deep);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* ========== 页脚 ========== */
.site-footer {
  padding: 72px 0 32px;
  background: linear-gradient(180deg, #FFF8F5, #FFEDE6);
  border-top: 1px solid rgba(255, 138, 101, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--peach-deep);
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--peach-deep);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 138, 101, 0.15);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ========== 工具类 ========== */
.text-accent {
  color: var(--peach-deep);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  text-align: center;
  line-height: 1.7;
  color: var(--ink-soft);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .feature-block {
    gap: 40px;
  }
  
  .hero {
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 250, 247, 0.98);
    padding: 32px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255, 138, 101, 0.12);
    gap: 20px;
    align-items: flex-start;
  }
  
  .main-nav.open a {
    font-size: 1rem;
    padding: 8px 0;
  }
  
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-banner {
    padding: 48px 24px;
    border-radius: 24px;
  }
  
  .section {
    padding: 64px 0;
  }
  
  .content-wall-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .header-inner {
    height: 64px;
  }
  
  .stat-item {
    padding: 24px 16px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  
  .cta-banner p {
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    font-size: 0.75rem;
  }
}