/* 基础重置 */
*, *::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: #FFFAF5;
  color: #3D2C2A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #FFF3EF;
  position: relative;
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 107, 138, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(92, 224, 200, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 导航 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 220, 215, 0.6);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(255, 107, 138, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: #3D2C2A;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, #FF6B8A 0%, #FF9A56 50%, #FFE4A0 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(255, 107, 138, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5C4033;
  transition: color 0.2s, transform 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6B8A, #FF9A56);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #FF6B8A;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 24px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B8A 0%, #FF7B6C 100%);
  box-shadow: 0 4px 16px rgba(255, 107, 138, 0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 107, 138, 0.4);
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #3D2C2A;
  font-size: 1.4rem;
}

/* 首页Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFAF5 0%, #FFF5F0 40%, #FFF0EC 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 154, 86, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 166, 255, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  background: rgba(92, 224, 200, 0.15);
  color: #2DA892;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  color: #3D2C2A;
  letter-spacing: -0.8px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #FF6B8A 0%, #FF9A56 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 32px;
  color: #5C4033;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 138, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 3px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #FF6B8A 0%, #FF7B6C 50%, #FF9A56 100%);
  box-shadow: 0 6px 22px rgba(255, 107, 138, 0.3);
  background-size: 100% 100%;
  transition: transform 0.2s, box-shadow 0.2s, background-size 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255, 107, 138, 0.4);
  background-size: 120% 120%;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #FF6B8A;
  color: #FF6B8A;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover {
  background: rgba(255, 107, 138, 0.06);
  color: #E85575;
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  color: #FF6B8A;
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B8A, #FF9A56);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #3D2C2A;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  color: #5C4033;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid #F0E8E3;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 138, 0.04) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.4s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 107, 138, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 107, 138, 0.25);
}

.category-card:hover::after {
  transform: scale(1.6);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FFF0F3 0%, #FFE8EC 100%);
  color: #FF6B8A;
}

.category-card:nth-child(2n) .card-icon {
  background: linear-gradient(135deg, #EDFFF9 0%, #E0FFF4 100%);
  color: #2DA892;
}

.category-card:nth-child(3n) .card-icon {
  background: linear-gradient(135deg, #FFF5ED 0%, #FFEDE0 100%);
  color: #FF9A56;
}

.category-card:nth-child(4n) .card-icon {
  background: linear-gradient(135deg, #F8F4FF 0%, #F0E8FF 100%);
  color: #8B6FCC;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: #FF6B8A;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: #E85575;
}

.card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.card-link:hover::after {
  transform: translateX(3px);
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(255, 107, 138, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D2C2A;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-text p {
  color: #5C4033;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3D2C2A;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: #FF6B8A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 107, 138, 0.1);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-radius: 16px;
  border: 1.5px solid #F0E8E3;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
}

.stat-item:nth-child(1)::before {
  background: linear-gradient(90deg, #FF6B8A, #FF9A56);
}

.stat-item:nth-child(2)::before {
  background: linear-gradient(90deg, #5CE0C8, #3DC8B0);
}

.stat-item:nth-child(3)::before {
  background: linear-gradient(90deg, #C4A6FF, #A685E0);
}

.stat-item:nth-child(4)::before {
  background: linear-gradient(90deg, #FFE4A0, #FFD066);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 138, 0.06);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #3D2C2A;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 6px;
  color: #5C4033;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #F0E8E3;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(255, 107, 138, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.content-wall-body {
  padding: 20px;
}

.content-wall-body h4 {
  font-weight: 700;
  color: #3D2C2A;
  margin-bottom: 6px;
  font-size: 1rem;
}

.content-wall-body p {
  font-size: 0.9rem;
  color: #5C4033;
  opacity: 0.7;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid #F0E8E3;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 107, 138, 0.2);
}

.faq-item.open {
  border-color: rgba(255, 107, 138, 0.3);
  box-shadow: 0 4px 16px rgba(255, 107, 138, 0.06);
}

.faq-item .faq-question {
  padding: 16px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3D2C2A;
  transition: color 0.2s;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: #FF6B8A;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 20px 16px;
  display: none;
  opacity: 0.7;
  color: #5C4033;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 0.7;
    transform: translateY(0);
  }
}

/* CTA横幅 */
.cta-banner {
  padding: 56px 24px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #FF6B8A 0%, #FF7B6C 30%, #FF9A56 60%, #FFB88C 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(255, 107, 138, 0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 12px 0 24px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #FF6B8A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  color: #E85575;
}

/* 页脚 */
.site-footer {
  padding: 56px 0 28px;
  background: #F8F0EC;
  color: #3D2C2A;
  border-top: 1px solid #EDE0D8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
  color: #5C4033;
  line-height: 1.6;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: #3D2C2A;
}

.footer-col a {
  display: block;
  color: #5C4033;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: #FF6B8A;
}

.footer-bottom {
  border-top: 1px solid #E8D8CF;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #5C4033;
  opacity: 0.6;
}

/* 工具类 */
.text-accent {
  color: #FF6B8A;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #5C4033;
  line-height: 1.7;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 48px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-image {
    order: -1;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #FFFAF5;
    padding: 20px 24px;
    border-bottom: 1px solid #F0E8E3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    gap: 12px;
  }

  .main-nav.open a {
    padding: 10px 0;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .stat-item {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 1.7rem;
  }
}