@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@700;900&family=ZCOOL+XiaoWei&display=swap');

/* ============ 基础重置 ============ */
*, *::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: #FDF8F2;
  color: #2D2D2D;
  line-height: 1.6;
}

/* ============ 核心布局 ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #F0F7F4;
}

/* 装饰性圆角形状 */
.section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 178, 102, 0.08);
  top: 20px;
  right: -100px;
  pointer-events: none;
}

.section:nth-child(even)::before {
  background: rgba(46, 196, 182, 0.08);
  top: auto;
  bottom: 20px;
  right: auto;
  left: -100px;
}

/* ============ 导航 ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 248, 242, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 91, 0.15);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(255, 107, 91, 0.08);
}

.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: #2D2D2D;
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, #FF6B5B, #FFB347);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 91, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: #4A4A4A;
  transition: color 0.3s;
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6B5B, #FFB347);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #FF6B5B;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B5B, #FF8E53);
  box-shadow: 0 4px 15px rgba(255, 107, 91, 0.3);
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 91, 0.4) !important;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 91, 0.3);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FF6B5B;
}

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(170deg, #FDF8F2 0%, #F3EBE1 40%, #E8F4F0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.2) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.15) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.15), rgba(255, 179, 71, 0.15));
  color: #FF6B5B;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 107, 91, 0.2);
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  font-family: 'Noto Serif SC', 'PingFang SC', sans-serif;
  background: linear-gradient(135deg, #2D2D2D 40%, #FF6B5B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.75;
  max-width: 560px;
  margin-bottom: 36px;
  color: #5A5A5A;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 45, 45, 0.12);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 浮动装饰元素 */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-float-card.top {
  top: 18%;
  right: 8%;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.bottom {
  bottom: 12%;
  left: 5%;
  animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #FF6B5B, #FF8E53);
  box-shadow: 0 6px 20px rgba(255, 107, 91, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 91, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #2EC4B6;
  color: #2EC4B6;
}

.btn-outline:hover {
  background: rgba(46, 196, 182, 0.1);
  transform: translateY(-2px);
}

/* ============ 标签/标题 ============ */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: #2EC4B6;
  padding: 4px 16px;
  border-radius: 30px;
  background: rgba(46, 196, 182, 0.1);
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.2;
  font-family: 'Noto Serif SC', 'PingFang SC', sans-serif;
  letter-spacing: -0.5px;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  color: #5A5A5A;
  font-size: 1.05rem;
}

/* ============ 卡片网格 ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(45, 45, 45, 0.08);
  background: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B5B, #FFB347, #2EC4B6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(45, 45, 45, 0.08);
  border-color: transparent;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 91, 0.1), rgba(255, 179, 71, 0.1));
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #FF6B5B;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
  margin-top: 12px;
}

.card-link:hover {
  gap: 12px;
}

/* ============ 特性块 ============ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(45, 45, 45, 0.1);
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}

.feature-image:hover {
  transform: rotate(0deg);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 20px 0;
}

.feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 800;
  font-family: 'Noto Serif SC', 'PingFang SC', sans-serif;
}

.feature-text p {
  margin-bottom: 24px;
  color: #5A5A5A;
  opacity: 0.8;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  color: #2EC4B6;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ============ 数据条 ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 36px 24px;
  border-radius: 20px;
  border: 1px solid rgba(45, 45, 45, 0.06);
  background: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B5B, #FFB347);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.stat-item:hover {
  box-shadow: 0 10px 40px rgba(45, 45, 45, 0.06);
  transform: translateY(-4px);
}

.stat-item:hover::after {
  width: 80px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B5B, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'ZCOOL XiaoWei', serif;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  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;
  border: 1px solid rgba(45, 45, 45, 0.06);
  background: #fff;
  transition: all 0.4s ease;
}

.content-wall-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 50px rgba(45, 45, 45, 0.1);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Noto Serif SC', 'PingFang SC', sans-serif;
}

.content-wall-body p {
  font-size: 0.9rem;
  color: #6A6A6A;
  line-height: 1.7;
  opacity: 0.8;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 107, 91, 0.3);
}

.faq-item.open {
  border-color: rgba(255, 107, 91, 0.3);
  box-shadow: 0 8px 30px rgba(255, 107, 91, 0.08);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #2D2D2D;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #FF6B5B;
  transition: transform 0.3s ease;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 107, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.75;
  color: #5A5A5A;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 0.75; transform: translateY(0); }
}

/* ============ CTA横幅 ============ */
.cta-banner {
  padding: 64px 48px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #FF6B5B 0%, #FF8E53 50%, #FFB347 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 91, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  font-family: 'Noto Serif SC', 'PingFang SC', sans-serif;
}

.cta-banner p {
  position: relative;
  z-index: 2;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #FF6B5B;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ============ 页脚 ============ */
.site-footer {
  padding: 64px 0 32px;
  background: #2D2D2D;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 107, 91, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  padding-right: 40px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.6;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: #FF6B5B;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ============ 工具类 ============ */
.text-accent {
  color: #FF6B5B;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #5A5A5A;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ============ 装饰形状 ============ */
.shape-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  pointer-events: none;
  opacity: 0.5;
}

/* 展示墙区域 */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.showcase-item {
  grid-column: span 4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #FFB347, #FF8E53);
  box-shadow: 0 12px 40px rgba(255, 107, 91, 0.2);
  transition: all 0.4s ease;
}

.showcase-item:nth-child(2) {
  background: linear-gradient(135deg, #2EC4B6, #7FD8C8);
  grid-column: span 5;
}

.showcase-item:nth-child(3) {
  background: linear-gradient(135deg, #FF6B5B, #FFB347);
  grid-column: span 3;
}

.showcase-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(45, 45, 45, 0.15);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.showcase-item:hover img {
  opacity: 0.35;
}

.showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
}

.showcase-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.showcase-content p {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* 合作伙伴 logo 墙 */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
}

.logo-wall span {
  font-size: 1.3rem;
  font-weight: 800;
  opacity: 0.3;
  transition: opacity 0.3s;
  cursor: default;
  font-family: 'Noto Serif SC', serif;
}

.logo-wall span:hover {
  opacity: 0.7;
}

/* 时间线 */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #FF6B5B, #FFB347, #2EC4B6);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF6B5B;
  box-shadow: 0 0 0 4px rgba(255, 107, 91, 0.2);
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.92rem;
  opacity: 0.7;
  color: #5A5A5A;
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero {
    padding-top: 140px;
  }
  
  .hero-image {
    max-width: 560px;
    margin: 0 auto;
  }
  
  .showcase-item {
    grid-column: span 6;
  }
  
  .showcase-item:nth-child(2) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #FDF8F2;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(45, 45, 45, 0.1);
    border-bottom: 1px solid rgba(255, 107, 91, 0.1);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-nav.open {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero {
    min-height: auto;
    padding: 130px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-wrap: wrap;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-item,
  .showcase-item:nth-child(2),
  .showcase-item:nth-child(3) {
    grid-column: span 1;
  }
  
  .cta-banner {
    padding: 48px 28px;
  }
  
  .cta-banner h2 {
    font-size: 1.6rem;
  }
}

@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;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .logo span {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline-item::before {
    left: -26px;
  }
}