/* ===== 壹号娱乐 · 暖调玻璃态设计系统 ===== */
/* 设计语言：地中海暖光 + 玻璃态透明 + 有机曲线 */
/* 配色：奶油白 + 珊瑚暖橙 + 紫罗兰 + 薄荷绿点缀 */

:root {
  --cream: #FFFBF5;
  --warm-peach: #FFF5F0;
  --coral: #FF6B5B;
  --coral-dark: #E85548;
  --coral-light: #FFF0EC;
  --violet: #7C5CFC;
  --violet-dark: #6A48E8;
  --violet-light: #F3F0FF;
  --mint: #00C9A7;
  --mint-dark: #00AD8F;
  --mint-light: #E8FAF6;
  --brown: #2D2420;
  --brown-light: #5C4F4A;
  --warm-gray: #F5EDE6;
  --border-warm: #EDE4DC;
  --shadow-warm: 0 4px 24px rgba(255, 107, 91, 0.08);
  --shadow-card: 0 2px 20px rgba(45, 36, 32, 0.06);
  --shadow-hover: 0 8px 32px rgba(255, 107, 91, 0.14);
  --glass-bg: rgba(255, 252, 248, 0.88);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 基础重置 ========== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* 温暖光晕背景 */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255,107,91,0.04) 0%, rgba(255,107,91,0.01) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(124,92,252,0.04) 0%, rgba(124,92,252,0.01) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

::selection {
  background: rgba(255, 107, 91, 0.2);
  color: var(--brown);
}

/* ========== 核心布局 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--warm-peach);
  position: relative;
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,107,91,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* ========== 导航 — 固定顶部玻璃态 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-warm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(45, 36, 32, 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: var(--brown);
  transition: var(--transition);
  letter-spacing: -0.3px;
}

.logo:hover {
  color: var(--coral);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--coral) 0%, #FF8B7A 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(255, 107, 91, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-light);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.1px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--coral);
}

.main-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 25px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--violet) 0%, #9478FF 100%);
  box-shadow: 0 4px 14px rgba(124, 92, 252, 0.3);
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(124, 92, 252, 0.4);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--brown);
  font-size: 1.4rem;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--coral);
}

/* ========== Hero区域 ========== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(255,107,91,0.06) 0%, rgba(255,107,91,0.02) 35%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  flex: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  background: var(--mint-light);
  color: var(--mint-dark);
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 201, 167, 0.2);
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--brown);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--coral) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.7;
  color: var(--brown-light);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 0 0 380px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-warm);
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,107,91,0.08) 0%, rgba(124,92,252,0.06) 100%);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== 按钮系统 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral) 0%, #FF8B7A 100%);
  box-shadow: 0 4px 16px rgba(255, 107, 91, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(255, 107, 91, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--violet);
  color: var(--violet);
}

.btn-outline:hover {
  background: var(--violet-light);
  border-color: var(--violet-dark);
  color: var(--violet-dark);
  transform: translateY(-2px);
}

/* ========== 标签/标题 ========== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--violet);
  position: relative;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.7;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
  font-weight: 750;
  letter-spacing: -0.4px;
  color: var(--brown);
  line-height: 1.25;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown-light);
}

/* ========== 卡片网格 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--border-warm);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.category-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  transition: var(--transition);
}

.category-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #FFF0EC 0%, #FFE4DE 100%);
  color: var(--coral);
}

.category-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #F3F0FF 0%, #E8E2FF 100%);
  color: var(--violet);
}

.category-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #E8FAF6 0%, #D0F5EC 100%);
  color: var(--mint-dark);
}

.category-card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFECE4 100%);
  color: #FF8B5B;
}

.category-card:nth-child(5) .card-icon {
  background: linear-gradient(135deg, #F8F4FF 0%, #EDE5FF 100%);
  color: #9B7CFC;
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 650;
  margin-bottom: 8px;
  color: var(--brown);
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--brown-light);
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--violet);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: var(--coral);
  gap: 8px;
}

/* ========== 特性块 ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-warm);
  position: relative;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brown);
  letter-spacing: -0.3px;
}

.feature-text p {
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--brown-light);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--brown);
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--mint-dark);
  background: var(--mint-light);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-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: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.stat-item:nth-child(1)::after { background: var(--coral); }
.stat-item:nth-child(2)::after { background: var(--violet); }
.stat-item:nth-child(3)::after { background: var(--mint); }
.stat-item:nth-child(4)::after { background: #FF8B5B; }

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.stat-item:hover::after {
  width: 60px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 2px;
}

.stat-item:nth-child(1) .stat-number { color: var(--coral); }
.stat-item:nth-child(2) .stat-number { color: var(--violet); }
.stat-item:nth-child(3) .stat-number { color: var(--mint-dark); }
.stat-item:nth-child(4) .stat-number { color: #FF8B5B; }

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 6px;
  color: var(--brown-light);
}

/* ========== 内容墙 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-warm);
  transition: var(--transition);
  background: #fff;
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 22px;
}

.content-wall-body h4 {
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 6px;
  color: var(--brown);
}

.content-wall-body p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.5;
  color: var(--brown-light);
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.5);
}

.faq-item:hover {
  border-color: var(--coral-light);
  background: rgba(255, 255, 255, 0.8);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--brown);
  transition: color 0.2s ease;
  user-select: none;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-question {
  color: var(--coral);
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.7;
  line-height: 1.7;
  color: var(--brown-light);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 0.7; transform: translateY(0); }
}

/* ========== CTA横幅 ========== */
.cta-banner {
  padding: 60px 28px;
  text-align: center;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, var(--violet) 0%, #9478FF 30%, var(--coral) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(124, 92, 252, 0.25);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: ctaShimmer 6s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 750;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--violet);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  font-weight: 700;
}

.cta-banner .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transform: translateY(-2px);
  color: var(--coral);
}

/* ========== 页脚 ========== */
.site-footer {
  padding: 56px 0 28px;
  background: var(--warm-gray);
  color: var(--brown);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--coral) 50%, transparent 100%);
  opacity: 0.5;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown);
}

.footer-brand p {
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--brown-light);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 14px;
  color: var(--brown);
  letter-spacing: 0.3px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--brown-light);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: var(--transition);
  opacity: 0.7;
}

.footer-col a:hover {
  color: var(--coral);
  opacity: 1;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(45, 36, 32, 0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.55;
  color: var(--brown-light);
}

/* ========== 工具类 ========== */
.text-accent {
  color: var(--violet);
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--brown-light);
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ========== 焦点状态可访问性 ========== */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ========== 滚动条美化 (Webkit) ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: #E0D6CE;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #C8BDB4;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .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: rgba(255, 252, 248, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 24px;
    border-bottom: 1px solid var(--border-warm);
    box-shadow: 0 8px 24px rgba(45, 36, 32, 0.06);
    gap: 6px;
    z-index: 999;
  }

  .main-nav.open a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
    font-size: 1rem;
  }

  .main-nav.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .cta-banner h2 {
    font-size: 1.3rem;
  }

  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  .category-card {
    padding: 22px 20px;
  }
}