/* 基础重置 + 全局样式 - 多米体育 · 阳光活力风 */
*, *::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: #FFF8F0; /* 米白基底 */
  color: #2D3436;
  line-height: 1.6;
}

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0; /* 加大留白 */
  position: relative;
}

.section:nth-child(even) {
  background: #FFF3E8; /* 浅暖色交替 */
}

/* 导航 - 固定顶部 + 磨砂玻璃 + 暖橙边框 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.18);
}

.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.4rem;
  text-decoration: none;
  color: #FF6B35;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: #FF6B35;
  color: #fff;
  transform: rotate(8deg);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2D3436;
  transition: all 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #FF6B35;
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 30px;
  background: linear-gradient(135deg, #FF6B35, #FFB347);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.25s ease;
  border: none;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #FF6B35;
  border-radius: 2px;
  transition: 0.3s;
}

/* 首页 Hero - 层叠倾斜布局 */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(160deg, #FFF8F0 0%, #FFEDD9 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle at 80% 50%, rgba(255, 179, 71, 0.18) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 30px;
  background: #FF6B35;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
  color: #1E272E;
  letter-spacing: -1px;
}

.hero h1::after {
  content: '🔥';
  display: inline-block;
  margin-left: 8px;
  font-size: 2.6rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero p {
  font-size: 1.15rem;
  color: #636E72;
  max-width: 540px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: -20px 20px 40px rgba(255, 107, 53, 0.12);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.04);
}

/* 按钮系统 - 圆润 + 渐变 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35, #FF8E4A);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: #FF6B35;
  color: #FF6B35;
}

.btn-outline:hover {
  background: #FF6B35;
  color: #fff;
}

/* 标签 / 标题 */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.08);
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1E272E;
  letter-spacing: -0.5px;
}

.section-desc {
  max-width: 650px;
  opacity: 0.75;
  margin-bottom: 48px;
  font-size: 1.05rem;
  color: #636E72;
}

/* 卡片网格 - 圆润 + 温暖阴影 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(255, 107, 53, 0.08);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #FFB347);
  transition: height 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.12);
  border-color: #FF6B35;
}

.category-card:hover::before {
  height: 6px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #FF6B35;
  margin-top: 12px;
  display: inline-block;
  transition: 0.2s;
}

.card-link:hover {
  gap: 12px;
  text-decoration: underline;
}

/* 特性块 - 非对称布局 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 16px 16px 0 #FFE0C0;
  transition: 0.3s;
}

.feature-image:hover {
  box-shadow: 20px 20px 0 #FFB347;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 12px 0;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: #FF6B35;
  font-size: 1.2rem;
}

/* 数据条 - 暖色卡片 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255, 107, 53, 0.12);
  transition: 0.3s;
}

.stat-item:hover {
  background: #FFF3E8;
  border-color: #FF6B35;
  transform: scale(1.03);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FF6B35;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 8px;
  font-weight: 500;
}

/* 内容墙 - 杂志风格叠层 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.1);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

.content-wall-item:hover img {
  transform: scale(1.03);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.content-wall-body p {
  opacity: 0.7;
  font-size: 0.95rem;
}

/* FAQ - 暖橙色边框 + 展开动画 */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: 0.2s;
}

.faq-item:hover {
  border-color: #FF6B35;
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: #1E272E;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #FF6B35;
  font-weight: 300;
  transition: 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 24px 18px;
  display: none;
  opacity: 0.8;
  color: #636E72;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeSlideIn 0.35s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

/* CTA横幅 - 渐变 + 圆形装饰 */
.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(135deg, #FF6B35, #FF8E4A, #FFB347);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.cta-banner p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 28px;
  color: #FFECD2;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #FF6B35;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-banner .btn-primary:hover {
  background: #FFECD2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 页脚 - 暖色背景 + 橙色文字 */
.site-footer {
  padding: 64px 0 32px;
  background: #2D3436;
  color: #DFE6E9;
  margin-top: 80px;
}

.site-footer a {
  color: #FFB347;
  text-decoration: none;
  transition: 0.2s;
}

.site-footer a:hover {
  color: #FF6B35;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  opacity: 0.7;
  margin-top: 12px;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFB347;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 179, 71, 0.15);
  margin-top: 48px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* 工具类 */
.text-accent {
  color: #FF6B35;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #636E72;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* 响应式 */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-image {
    position: relative;
    width: 100%;
    top: auto;
    transform: none;
    margin-top: 40px;
  }
  .hero {
    flex-direction: column;
    padding: 100px 0 60px;
  }
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .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: #FFF8F0;
    padding: 24px;
    border-bottom: 2px solid #FF6B35;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-image {
    margin-top: 24px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .stat-number {
    font-size: 2rem;
  }
}